holado 0.2.8__py3-none-any.whl → 0.3.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of holado might be problematic. Click here for more details.

Files changed (108) hide show
  1. holado/common/handlers/undefined.py +7 -1
  2. {holado-0.2.8.dist-info → holado-0.3.0.dist-info}/METADATA +4 -1
  3. {holado-0.2.8.dist-info → holado-0.3.0.dist-info}/RECORD +106 -99
  4. holado_ais/ais/ais_messages.py +97 -6
  5. holado_ais/tests/behave/steps/ais/ais_manager_steps.py +1 -1
  6. holado_ais/tests/behave/steps/ais/ais_messages_steps.py +45 -6
  7. holado_binary/ipc/bit_series.py +3 -3
  8. holado_binary/tests/behave/steps/ipc/binary_steps.py +1 -1
  9. holado_binary/tests/behave/steps/ipc/bit_series_steps.py +4 -3
  10. holado_context/tests/behave/steps/private/common/context_steps.py +1 -1
  11. holado_core/common/resource/persisted_data_manager.py +13 -16
  12. holado_core/common/resource/resource_manager.py +10 -10
  13. holado_core/common/tables/converters/table_converter.py +47 -9
  14. holado_core/common/tables/table_manager.py +6 -7
  15. holado_core/common/tables/table_with_header.py +6 -0
  16. holado_core/tests/behave/steps/common/common_steps.py +2 -1
  17. holado_core/tests/behave/steps/common/config_steps.py +1 -1
  18. holado_core/tests/behave/steps/common/resource_steps.py +1 -1
  19. holado_core/tests/behave/steps/common/tables_steps.py +18 -2
  20. holado_data/data/generator/generator_manager.py +39 -0
  21. holado_data/tests/behave/steps/data/generator_steps.py +1 -1
  22. holado_data/tests/behave/steps/tools/utils_steps.py +1 -2
  23. holado_db/tests/behave/steps/tools/db/db_client_steps.py +1 -1
  24. holado_db/tests/behave/steps/tools/db/postgresql_client_steps.py +1 -1
  25. holado_db/tests/behave/steps/tools/db/sqlite_client_steps.py +1 -1
  26. holado_db/tools/db/clients/base/db_client.py +81 -28
  27. holado_db/tools/db/clients/postgresql/postgresql_client.py +17 -7
  28. holado_db/tools/db/query/base/query_builder.py +58 -7
  29. holado_db/tools/db/query/pypika/pypika_query_builder.py +73 -21
  30. holado_docker/tests/behave/steps/tools/docker_steps.py +1 -1
  31. holado_grpc/tests/behave/steps/api/grpc_client_steps.py +1 -1
  32. holado_grpc/tests/behave/steps/private/api/grpc_steps.py +1 -1
  33. holado_json/tests/behave/steps/ipc/json_steps.py +1 -1
  34. holado_keycloak/tests/behave/steps/tools/keycloak_client_steps.py +1 -1
  35. holado_multitask/tests/behave/steps/multiprocessing_steps.py +1 -1
  36. holado_multitask/tests/behave/steps/multithreading_steps.py +1 -1
  37. holado_protobuf/ipc/protobuf/types/google/protobuf.py +1 -1
  38. holado_protobuf/tests/behave/steps/ipc/protobuf_steps.py +1 -1
  39. holado_python/common/tools/datetime.py +31 -12
  40. holado_python/standard_library/socket/blocking_socket.py +37 -24
  41. holado_python/standard_library/socket/message_socket.py +11 -3
  42. holado_python/standard_library/socket/non_blocking_socket.py +24 -24
  43. holado_python/standard_library/socket/socket.py +132 -19
  44. holado_python/standard_library/ssl/resources/certificates/NOTES.txt +1 -1
  45. holado_python/standard_library/ssl/resources/certificates/rootCACert.pem +24 -0
  46. holado_python/standard_library/ssl/resources/certificates/tcpbin.crt +21 -0
  47. holado_python/standard_library/ssl/resources/certificates/tcpbin.key +28 -0
  48. holado_python/standard_library/ssl/ssl.py +138 -21
  49. holado_python/tests/behave/steps/convert_steps.py +1 -1
  50. holado_python/tests/behave/steps/iterable_steps.py +1 -1
  51. holado_python/tests/behave/steps/standard_library/csv_steps.py +1 -1
  52. holado_python/tests/behave/steps/standard_library/datetime_steps.py +1 -1
  53. holado_python/tests/behave/steps/standard_library/hashlib_steps.py +1 -1
  54. holado_python/tests/behave/steps/standard_library/multiprocessing_steps.py +1 -1
  55. holado_python/tests/behave/steps/standard_library/queue_steps.py +1 -1
  56. holado_python/tests/behave/steps/standard_library/socket_steps.py +132 -18
  57. holado_python/tests/behave/steps/standard_library/ssl_steps.py +87 -16
  58. holado_rabbitmq/tests/behave/steps/tools/rabbitmq_client_steps.py +48 -20
  59. holado_rabbitmq/tests/behave/steps/tools/rabbitmq_server_steps.py +1 -1
  60. holado_rabbitmq/tools/rabbitmq/rabbitmq_client.py +19 -13
  61. holado_rabbitmq/tools/rabbitmq/rabbitmq_manager.py +2 -29
  62. holado_redis/tests/behave/steps/tools/redis_client_steps.py +1 -1
  63. holado_rest/tests/behave/steps/api/rest_client_steps.py +1 -1
  64. holado_rest/tests/behave/steps/private/api/rest_steps.py +1 -1
  65. holado_s3/tests/behave/steps/private/tools/s3_steps.py +1 -1
  66. holado_s3/tests/behave/steps/tools/s3_client_steps.py +1 -1
  67. holado_s3/tests/behave/steps/tools/s3_server_steps.py +1 -1
  68. holado_scripting/tests/behave/steps/common/tools/variable_convert_steps.py +3 -2
  69. holado_scripting/tests/behave/steps/common/tools/variable_new_steps.py +1 -1
  70. holado_scripting/tests/behave/steps/common/tools/variable_steps.py +1 -1
  71. holado_scripting/tests/behave/steps/common/tools/variable_verify_steps.py +1 -1
  72. holado_scripting/tests/behave/steps/scenario/function_steps.py +1 -1
  73. holado_scripting/tests/behave/steps/scenario/if_steps.py +1 -1
  74. holado_scripting/tests/behave/steps/scenario/loop_steps.py +1 -1
  75. holado_sftp/tests/behave/steps/private/tools/sftp_steps.py +1 -1
  76. holado_sftp/tests/behave/steps/tools/sftp_client_steps.py +1 -1
  77. holado_sftp/tests/behave/steps/tools/sftp_server_steps.py +1 -1
  78. holado_swagger/tests/behave/steps/swagger_hub/mockserver_steps.py +1 -1
  79. holado_system/system/command/command.py +14 -9
  80. holado_system/tests/behave/steps/system/commands_steps.py +1 -1
  81. holado_system/tests/behave/steps/system/file_steps.py +1 -1
  82. holado_system/tests/behave/steps/system/system_steps.py +1 -1
  83. holado_test/scenario/step_tools.py +1 -1
  84. holado_test/scenario/tester_tools.py +6 -3
  85. holado_test/tests/behave/steps/scenario/exception_steps.py +1 -1
  86. holado_test/tests/behave/steps/scenario/scenario_steps.py +1 -1
  87. holado_test/tests/behave/steps/scenario/tester_steps.py +4 -4
  88. holado_value/common/tables/converters/value_table_converter.py +52 -8
  89. holado_value/common/tables/value_table_manager.py +0 -10
  90. holado_ws/tests/behave/steps/api/web_service_steps.py +1 -1
  91. holado_yaml/tests/behave/steps/yaml_steps.py +1 -1
  92. holado_yaml/yaml/yaml_manager.py +2 -2
  93. test_holado/features/NonReg/common/tables/table.feature +30 -24
  94. test_holado/features/NonReg/holado_ais/ais_message-bitarray_to_nmea.feature +1 -1
  95. test_holado/features/NonReg/holado_python/standard_library/socket/local_echo_server/socket_reset.feature +191 -0
  96. test_holado/features/NonReg/holado_python/standard_library/{socket_with_ssl.feature → socket/local_echo_server/socket_with_tls_and_verify.feature} +53 -30
  97. test_holado/features/NonReg/holado_python/standard_library/socket/local_echo_server/socket_with_tls_without_verify.feature +299 -0
  98. test_holado/features/NonReg/holado_python/standard_library/{socket.feature → socket/local_echo_server/socket_without_tls.feature} +2 -2
  99. test_holado/features/NonReg/holado_python/standard_library/socket/tcpbin.com/socket_with_mtls.feature +214 -0
  100. test_holado/features/NonReg/holado_python/standard_library/socket/tcpbin.com/socket_with_tls.feature +184 -0
  101. test_holado/features/NonReg/holado_python/standard_library/socket/tcpbin.com/socket_without_tls.feature +169 -0
  102. test_holado/features/NonReg/tools/RabbitMQ.feature +9 -9
  103. test_holado/features/NonReg/tools/RabbitMQ_steps.feature +8 -8
  104. test_holado/logging.conf +5 -3
  105. holado_core/common/transport/__init__.py +0 -0
  106. holado_core/common/transport/crc.py +0 -40
  107. {holado-0.2.8.dist-info → holado-0.3.0.dist-info}/WHEEL +0 -0
  108. {holado-0.2.8.dist-info → holado-0.3.0.dist-info}/licenses/LICENSE +0 -0
@@ -44,6 +44,12 @@ to_be_defined = Undefined("To be defined", 3) # Usage: initial var
44
44
  # Note: Real value is defined by methods managing these values as argument.
45
45
 
46
46
  default_value = Undefined("Default value", 10)
47
- default_context = Undefined("Defautl context", 11) # Example of real value: for ThreadsManager it means "current ScenarioContext" if a scenario context exists else "SessionContext".
47
+ default_context = Undefined("Default context", 11) # Example of real value: for ThreadsManager it means "current ScenarioContext" if a scenario context exists else "SessionContext".
48
+
49
+
50
+ # Define symbolic values
51
+
52
+ any_value = Undefined("Any value", 20)
53
+ not_defined_value = Undefined("Not defined value", 21)
48
54
 
49
55
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: holado
3
- Version: 0.2.8
3
+ Version: 0.3.0
4
4
  Summary: HolAdo framework
5
5
  Project-URL: Homepage, https://gitlab.com/holado_framework/python
6
6
  Project-URL: Issues, https://gitlab.com/holado_framework/python/-/issues
@@ -21,8 +21,10 @@ Provides-Extra: ais
21
21
  Requires-Dist: pyais; extra == 'ais'
22
22
  Provides-Extra: db
23
23
  Requires-Dist: pypika; extra == 'db'
24
+ Requires-Dist: sql-metadata; extra == 'db'
24
25
  Provides-Extra: db-postgresql
25
26
  Requires-Dist: psycopg; extra == 'db-postgresql'
27
+ Requires-Dist: psycopg-binary; extra == 'db-postgresql'
26
28
  Provides-Extra: docker
27
29
  Requires-Dist: docker; extra == 'docker'
28
30
  Provides-Extra: grpc
@@ -56,6 +58,7 @@ Requires-Dist: sftpserver; extra == 'sftp'
56
58
  Provides-Extra: ssl
57
59
  Requires-Dist: certifi; extra == 'ssl'
58
60
  Requires-Dist: pip-system-certs; extra == 'ssl'
61
+ Requires-Dist: pyopenssl; extra == 'ssl'
59
62
  Provides-Extra: ws-suds
60
63
  Requires-Dist: suds; extra == 'ws-suds'
61
64
  Provides-Extra: ws-zeep
@@ -8,30 +8,30 @@ holado/common/context/session_context.py,sha256=jyCXydCk7RnTf35MFcqaEflOsjX5eK2U
8
8
  holado/common/handlers/__init__.py,sha256=d0KDUpaAAw1eBXyX08gaRh4RECnJlXjYQ0TcU-Ndicc,1372
9
9
  holado/common/handlers/enums.py,sha256=ieqKVoukEiNyfE3KrKmMOImdbFS1ocUMud8JHe2xNLs,1662
10
10
  holado/common/handlers/object.py,sha256=-KL3HgNpQq5iOrztLEUgJJEjhgcnnpaV20GAQNSCMSw,6446
11
- holado/common/handlers/undefined.py,sha256=hZDKEljK5YO3Kq1uoQJSyZ9-AjYPdSnu7Ty7DoVEnBw,2407
11
+ holado/common/handlers/undefined.py,sha256=yXZRPIDZI8R0vT4kdf87JPkFhnltLcQwwc3zmKhmv30,2529
12
12
  holado/common/tools/__init__.py,sha256=z-T6zX_tOVkJjniTDA0KSKmdtosjfEhjaNa1-3g8wTs,1374
13
13
  holado/common/tools/gc_manager.py,sha256=TjQg7MisGRhxuiQ22hB3IuqNhnWCVEWpU253-rOjR0w,7611
14
14
  holado_ais/__init__.py,sha256=Mudcgu_7p1hBDBs6LpSz757H4haB0yLHgT70sznG82c,1807
15
15
  holado_ais/ais/MaritimeIdentificationDigits.csv,sha256=r-uHt4wOvxlbA26af9e-N3BKbuiMf6ia3PN0ZGfYk2A,8547
16
16
  holado_ais/ais/ais_manager.py,sha256=QvN94JoUBbSXT08HABl2FNsAVOM-YCmQO5tN9COg6Rc,6496
17
- holado_ais/ais/ais_messages.py,sha256=Fh35mDS1mcZcH1XKmrAxxgfnGq-xp6Vgapc_C0dK_xU,10899
17
+ holado_ais/ais/ais_messages.py,sha256=gDN03NPl5BD1jGS4wYFuX2Od_4V0OUtVU4OyxyPhtCw,14508
18
18
  holado_ais/ais/ais_payload.py,sha256=mdOa_4JIbkFLK4_KUmQF5jUt1nLxvZhmIcqK8i-YY6w,1791
19
19
  holado_ais/ais/enums.py,sha256=bsqfJVg65fWiJwL_VlSKwKgTY0pLoDcI4T06aEOcQnw,1108
20
20
  holado_ais/ais/patch_pyais.py,sha256=ViRXz3__FXm-VBwD5C4bQ_gGvujCJuJSOoqewkFM6GI,54835
21
21
  holado_ais/tests/behave/steps/__init__.py,sha256=cM4YsjHIq0Tb9mTTJjvDojzhLwov6mc2RyjZz8XLVA8,1321
22
22
  holado_ais/tests/behave/steps/ais/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
- holado_ais/tests/behave/steps/ais/ais_manager_steps.py,sha256=q3-JrpJbPo0eQi3ys1NEGVg6yvhPj-3BX3cwffEMVl0,2149
24
- holado_ais/tests/behave/steps/ais/ais_messages_steps.py,sha256=F5opkhYIJCzCPsgfuVP22ADIZM3ZfWX5PqQB1PCaEug,8489
23
+ holado_ais/tests/behave/steps/ais/ais_manager_steps.py,sha256=nRtJUEyAzAqgm0UWwRUFAyOzhDxzRZKTGsEYU1DwE-Q,2170
24
+ holado_ais/tests/behave/steps/ais/ais_messages_steps.py,sha256=bHhKdv5qV5y4AgUGEaYUn3Uv5_MtkBMEZtgF1aJSJpU,10716
25
25
  holado_binary/__init__.py,sha256=Gl285tg-QaPE-3etWwZql9sH26G7EnVoQn97B0NMvOI,1248
26
26
  holado_binary/ipc/binary.py,sha256=QYwK7jK4dzXRKprHMxnTxFljMy1LZDSXjMJ406yEOHk,5520
27
- holado_binary/ipc/bit_series.py,sha256=T3hOYZrP1w7LAGJSXTZEQIyOJXgoQFqr-_Rxby-OIiM,15489
27
+ holado_binary/ipc/bit_series.py,sha256=PNuW_OXGV8yeRrMHxMPImR75np52KpcDOfXXdDKObWw,15508
28
28
  holado_binary/tests/behave/steps/__init__.py,sha256=E86PgqFh7q9Tw6Aar94QBxflQRTNaq5vNV8qRTTg5zQ,1314
29
- holado_binary/tests/behave/steps/ipc/binary_steps.py,sha256=wq_FuBrBYCkb4jm_EOf8NJ_nazev65raeyWfTmBfrzQ,2557
30
- holado_binary/tests/behave/steps/ipc/bit_series_steps.py,sha256=WDOHwsLt13Qu6_ineBRGxjdx7BLFYvg7HRwjHT7DmyI,6413
29
+ holado_binary/tests/behave/steps/ipc/binary_steps.py,sha256=2ievhh6-gaM2COFkP2DxfTfyH4JCnQMFrsJv3B5JCx8,2578
30
+ holado_binary/tests/behave/steps/ipc/bit_series_steps.py,sha256=x0YZHTBnvFOUkWglRqTh0QCDDEHOLuNRVD3BzI0MFPg,6568
31
31
  holado_context/__init__.py,sha256=z0SNFOdBBWUouC12WKDmL18T_OH3TdmfcgIbnNQzbjU,1247
32
32
  holado_context/tests/behave/steps/__init__.py,sha256=BHp8TYE_X4lWn4B8A51nXSYaJlczuiDVJLcKMy7p0Lw,1267
33
33
  holado_context/tests/behave/steps/private/__init__.py,sha256=FrQhfaQLz8qTsJVyIGUxV7Hc4jxwSl-CP7rS0EFg4Bk,1281
34
- holado_context/tests/behave/steps/private/common/context_steps.py,sha256=y0cXzB0cVIQeicbotOYwM-e0qBr7buSKJRJ82nCIM7g,1805
34
+ holado_context/tests/behave/steps/private/common/context_steps.py,sha256=SCMnfbsq3CWwlF4UPmq7v4nzfXhG5HNE2ibOHh636h0,1826
35
35
  holado_core/__init__.py,sha256=4k0q27nlm4GF9FEIG_7jfc4YUDS82FG_2j50WtGim-Y,2015
36
36
  holado_core/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
37
37
  holado_core/common/actors/actions.py,sha256=UeD0mFlSyqhU0l5STjJbPNtcDBZuZQaFDFtpwmu9Fvs,4220
@@ -97,16 +97,16 @@ holado_core/common/inspectors/tree_inspector.py,sha256=DYXmzGFQAzAT1pypKqxpOGPze
97
97
  holado_core/common/inspectors/tools/inspect_builder.py,sha256=v7azgwciXHtO-o7gcgI5gOo3B-7rfRs8RQNO_q5LWjI,6830
98
98
  holado_core/common/inspectors/tools/inspect_context.py,sha256=lzhhO5HxG00c6uMPyIXEUz0FHA61VCNUZr_39ykZ8lQ,2700
99
99
  holado_core/common/inspectors/tools/inspect_parameters.py,sha256=2vXUpnZlP2cCYTvI9ddI6NGhONideoM1hBJ0vGdvPKo,7346
100
- holado_core/common/resource/persisted_data_manager.py,sha256=Zyxj99tKmL3cN_Bun44JNrlXOD4sjGPAhkHj2JcZPKc,5914
100
+ holado_core/common/resource/persisted_data_manager.py,sha256=gvqXdpRmteP3pGk-z7g2trbT3mHtksVfzlKZys653Hk,6295
101
101
  holado_core/common/resource/persisted_method_to_call_manager.py,sha256=M_1G8OKwOUn5ha18MOwXD3kXz2-1XOyUP0H9QYvg6FQ,7756
102
- holado_core/common/resource/resource_manager.py,sha256=3UmKaZGfCGJUJ9EvwHibuf6ILANshl6zVK6CkGDrtwo,7182
102
+ holado_core/common/resource/resource_manager.py,sha256=9U1maNSvqDbBYzMxzNDlaxXTnUr8Dj2VRHtgBppi000,7750
103
103
  holado_core/common/tables/__init__.py,sha256=i2-gExPOUa_AnmEPgZJQ2lAXeK02PLpPnjEqbsgj1Co,8
104
104
  holado_core/common/tables/enums.py,sha256=YtYTSI1m6KQ3XFzOSFPi5De6Jc-nkDMTbnmqfRfsiJ0,1395
105
105
  holado_core/common/tables/table.py,sha256=VV-68K0J7lzgWpmzesYdU3-ZrkmaIfu9eIYlNhAA02c,10252
106
106
  holado_core/common/tables/table_cell.py,sha256=O7pfDg1MVZOOgU_sQ3MkWDtT2VJGJwCHbiyTXvdvVmI,5036
107
- holado_core/common/tables/table_manager.py,sha256=cKS8JM2JSaN6O38e71kIkRjsfgn8QVPXcs24BZfTN-U,17200
107
+ holado_core/common/tables/table_manager.py,sha256=Rr-cO9vvvFtM6nXFJSb6lklkCdKZ70x5alsmMByX2Y4,17126
108
108
  holado_core/common/tables/table_row.py,sha256=t0c9IS3F2DSuewl6obkfC3tHeI-AsdNAHArQoLf9jyM,6662
109
- holado_core/common/tables/table_with_header.py,sha256=4rBJB0ckRoadgiyz5RH_5gomZvTCzp1fxkmFz__n2uU,10690
109
+ holado_core/common/tables/table_with_header.py,sha256=nO9kXbibCHYLZ7CbnFParI-1uDMVZGeAVRpVwfkQRZc,10912
110
110
  holado_core/common/tables/comparators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
111
111
  holado_core/common/tables/comparators/boolean_table_cell_comparator.py,sha256=9ZBYIs2HUGEFEPpqV7hZM_ycQNPp2ZSBN6p7GCFmb3w,1604
112
112
  holado_core/common/tables/comparators/bytes_table_cell_comparator.py,sha256=klsJS5xpA6rF5riAFQJsbCSKbluYTYgXSF-PxoJ7UuM,1592
@@ -123,7 +123,7 @@ holado_core/common/tables/comparators/table_comparator_manager.py,sha256=A5a1xQK
123
123
  holado_core/common/tables/comparators/table_row_comparator.py,sha256=1_3N2E-PD6QyFwO9a-D3VpNVX8R7lSj0imyVTLajciI,6842
124
124
  holado_core/common/tables/comparators/table_with_header_comparator.py,sha256=j7BcT8thQtz5fCYZik78tdMbhrQqB5lC8g_zFwRgFnM,4642
125
125
  holado_core/common/tables/converters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
126
- holado_core/common/tables/converters/table_converter.py,sha256=lFt1NKFo5aMPMpKQi_krBdVYUlm8zEg3JbDOy4bwWyA,8200
126
+ holado_core/common/tables/converters/table_converter.py,sha256=TLKLOXIAhxM2ENu1ajtyr6MRtZxgizhsx0_7w5wZHCg,10165
127
127
  holado_core/common/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
128
128
  holado_core/common/tools/path_manager.py,sha256=dgdm8wAaVubh-krpquCXXeGUTtGqRKDpuEKmvhA9dKA,8899
129
129
  holado_core/common/tools/string_tools.py,sha256=bQuMlI_yS7OoSPFL7qyfyXkrnjC8xHVpIsfmEC6JxhI,5590
@@ -131,41 +131,40 @@ holado_core/common/tools/tools.py,sha256=N-MfdMPYQs2BVnX4QWgop5PflzanboHjOeKgoSm
131
131
  holado_core/common/tools/comparators/comparator.py,sha256=K4LcXIRORHX5vkmDibI6P6Bu1L-6Xezb63ZzzOMKrWY,6812
132
132
  holado_core/common/tools/comparators/object_comparator.py,sha256=RPI319h_tij6z75UVbZII3gBggQolRFMNMD4cN6z37Y,1399
133
133
  holado_core/common/tools/converters/converter.py,sha256=8XBzapzxQRX-ciFdNtkhK75Q1ZhJUbfdaOhGCCfZmNk,3639
134
- holado_core/common/transport/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
135
- holado_core/common/transport/crc.py,sha256=byAZlKO-33BPd0cLN4wUJmgqaZWpIlq17rmD8iv9lJU,1700
136
134
  holado_core/tests/behave/steps/__init__.py,sha256=H5vtbXvgGaNgLh2OsdeKQQn-xGvCBQz_2Mq17eEEF2U,1389
137
135
  holado_core/tests/behave/steps/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
138
- holado_core/tests/behave/steps/common/common_steps.py,sha256=SAsi_UD9khKfXfS23IEQIPp4sTLG4EkDXrjc-9a9yDg,6295
139
- holado_core/tests/behave/steps/common/config_steps.py,sha256=fuV-83Aol9J92Ho9c-bt48G6ARbTM0vyfritQo-GpvY,1910
140
- holado_core/tests/behave/steps/common/resource_steps.py,sha256=FPQpN6I-vsxIkqTOSyB9i8P7oyg7Mf1XepHiPzmrlMk,3030
141
- holado_core/tests/behave/steps/common/tables_steps.py,sha256=XWd_VXEtL4Joa-8KKYE5hERlmypqUbRQK05d_QdF9b8,26856
136
+ holado_core/tests/behave/steps/common/common_steps.py,sha256=GRMm562xO1g6tHzuY5JNbJ3jRVFG0JUqSpEQJEmmcgA,6351
137
+ holado_core/tests/behave/steps/common/config_steps.py,sha256=0XKdw5Mg4IyweoZ1Y_ta6tyqlelNtncysqPtrYxdao4,1931
138
+ holado_core/tests/behave/steps/common/resource_steps.py,sha256=YZjIAhsqoDmn2GGhR24P3oJXm-Lp0Txi3lOsvPltK8E,3051
139
+ holado_core/tests/behave/steps/common/tables_steps.py,sha256=NGbDQCRPraIRr0ioiQAFZjyE3qp0iob41dunIgWm094,27758
142
140
  holado_core/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
143
141
  holado_core/tools/abstracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
144
142
  holado_core/tools/abstracts/blocking_command_service.py,sha256=8EFNQZONFw1jeGAG7gJ59FmookKkjiC4IYkk2UTsbSs,2603
145
143
  holado_core/tools/abstracts/service.py,sha256=07JkHz5bK2WBpAtiH2YmpZnUZY6roaUbHfD4QJ1spD4,2062
146
144
  holado_data/__init__.py,sha256=KpbIi2cm1BYZgoWf0LuhE0ei3ZCE15UcUtjC1cSA55M,1653
147
145
  holado_data/data/generator/base.py,sha256=axzEsz0A_6Ty0gnZ-ebFskY40dqEb_hX4D2qjrB6b3o,3764
146
+ holado_data/data/generator/generator_manager.py,sha256=IKcQXdRaHJ3pvLQM_xGb938JqHdO-zRgnd2Q5a5NtzI,1956
148
147
  holado_data/data/generator/python_generator.py,sha256=4ceEBAahGsCM6_u0Ea-0nvhzYKwt8C6INS-Uc0iEjVk,1738
149
148
  holado_data/tests/behave/steps/__init__.py,sha256=_ykaOZqP9MUCf48E9V3Ze4Kt74Dr36iHFJcq6Cxukjw,1315
150
- holado_data/tests/behave/steps/data/generator_steps.py,sha256=hdMZv7q6fHx0w9cDOOSae7wHvivFFbzm1LXsG-YNZww,3787
151
- holado_data/tests/behave/steps/tools/utils_steps.py,sha256=xN8pGbUAxH3QfWAonudu5rv7S22Xuiila2dvvDLVaNY,2867
149
+ holado_data/tests/behave/steps/data/generator_steps.py,sha256=6rzSVnUOnub0q7yjV87AQjb7y3nRutSz9ObjaKQLKdU,3808
150
+ holado_data/tests/behave/steps/tools/utils_steps.py,sha256=VXILhZrIJhJzRN8NT3E3zKwJJHzIcahuKDD1uICt8wA,2816
152
151
  holado_db/__init__.py,sha256=iLHUcQCC90goPlnWATXgxt6Srn6ozp-DqkphxN1TqGU,2126
153
152
  holado_db/tests/behave/steps/__init__.py,sha256=tvVvm8eZaEuostVuWgZnfjABzkfzMAu1MfIHqNUSfOI,1378
154
- holado_db/tests/behave/steps/tools/db/db_client_steps.py,sha256=mES-mruAIPcXrfF3QoUkitbpgNc7VOt7sjCtB4n3z1U,6419
155
- holado_db/tests/behave/steps/tools/db/postgresql_client_steps.py,sha256=t0J-Hh2mIRQag6WitP_UXFGUL7AZ2ACNllbmXJQvy_Y,2933
156
- holado_db/tests/behave/steps/tools/db/sqlite_client_steps.py,sha256=h47myyq11js9sr952DnR3kg-pAAh7ce4TFwLWkix8tQ,2909
153
+ holado_db/tests/behave/steps/tools/db/db_client_steps.py,sha256=BmQ1M1ol3TGHu10YvXBAAjGpvaz9nHRhcuGmujOSJo8,6440
154
+ holado_db/tests/behave/steps/tools/db/postgresql_client_steps.py,sha256=HtO-NSlTG3figZxcRo88PG9Tdo2dfd8GlfkoscS7MMk,2954
155
+ holado_db/tests/behave/steps/tools/db/sqlite_client_steps.py,sha256=6B8GGBJxxG6Z49cGCPykm8BP7nQQZWUrWpw0XgaYGaE,2930
157
156
  holado_db/tools/db/db_manager.py,sha256=0llXc6YhXfLr6oNfncPNjh4_ZInIm8XYywutQYvvLso,5400
158
- holado_db/tools/db/clients/base/db_client.py,sha256=sj_kH3Z53Tc9XVlH_qp7n17b9No7zX_wpPj39uCl7-w,8475
159
- holado_db/tools/db/clients/postgresql/postgresql_client.py,sha256=UTWU9OYWAa5g7UqMuZ5jyKJvbnf_qoJwsdnAQcgR860,3439
157
+ holado_db/tools/db/clients/base/db_client.py,sha256=D2ZwnK9Pq44hUKEOkis5ECJTnIgn4wLI8ITgnF6ouqA,11508
158
+ holado_db/tools/db/clients/postgresql/postgresql_client.py,sha256=Ntfs4D-Fvdsy9T0ewCsouP2-80DAsFIem79AWkOp3pE,4032
160
159
  holado_db/tools/db/clients/sqlite/sqlite_client.py,sha256=QwYfwdF4ZZ50drZcXmmpvtCfrpBnoVl_2UoLe6Mfot4,2695
161
160
  holado_db/tools/db/query/query_manager.py,sha256=7n-d_Q373hlsKQshY3accIH8XfqaLScqnhMdTT2oWC4,3642
162
- holado_db/tools/db/query/base/query_builder.py,sha256=-E5N-N-pzowokgj9u_7GO3p2EsDAlECDbr9s2jV9mBg,3454
163
- holado_db/tools/db/query/pypika/pypika_query_builder.py,sha256=f25zj3Vo35DZ_GzzL0WfBjnOFKZR0w1nptvN2q_7NsI,8268
161
+ holado_db/tools/db/query/base/query_builder.py,sha256=-nCyBe8zsRhOX39uCV0P7OY_YKobQJVIpJDL2sUA_H8,5926
162
+ holado_db/tools/db/query/pypika/pypika_query_builder.py,sha256=qwFtd-7dSRju-qwGkiaDPwSkNgYpdfKsunq-TM3HhI8,10988
164
163
  holado_docker/__init__.py,sha256=CtGYR7aEkaCdAHPDAsu_ErjpVtYE0yz9wbgbfRUwS8s,1574
165
164
  holado_docker/sdk/docker/docker_client.py,sha256=bSJ66HkukTRDQxZuyUT_4CJctxYAO68kHZ6oxVmuqaI,10744
166
165
  holado_docker/sdk/docker/docker_service.py,sha256=SvMSIZ7XTCbC7q5rur03lJhJVSHL3uIq1dBQz9oDpkw,3767
167
166
  holado_docker/tests/behave/steps/__init__.py,sha256=5ozqOPsU8BKBESh6Xxcj9nfTmLHLAmI9xmQtrs0BNBE,1280
168
- holado_docker/tests/behave/steps/tools/docker_steps.py,sha256=0axjgFTdFSmtqoA40cstuB9vun82qT_2uKdtCv22CyY,1679
167
+ holado_docker/tests/behave/steps/tools/docker_steps.py,sha256=U7zRFC7TWjIDy9PZXRfKVaJLMHNV6PbClI9fFQzuXe8,1700
169
168
  holado_docker/tools/docker_controler/__init__.py,sha256=QBkE1ydbCvARUimeSY2PvBkZ-Jp0bCv6k_l89a_8zNw,1551
170
169
  holado_docker/tools/docker_controler/docker_controler_client.py,sha256=8njfYpkZ9KlHOdBpquDXi8zzrn5xsOB1xgoM3H8-ax4,1701
171
170
  holado_docker/tools/docker_controler/docker_controler_server.py,sha256=TehDMUNh2GouU6gXNvnNxjuBLTFAYjuW8ZhjRWkXrP4,1525
@@ -181,9 +180,9 @@ holado_grpc/ipc/rpc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
181
180
  holado_grpc/ipc/rpc/grpc_compiler.py,sha256=f_v1Rj6gDpLSCpkN8a6Jn4w9d826JqNRII16HSPPrWA,2477
182
181
  holado_grpc/ipc/rpc/grpc_services.py,sha256=8nYMq9z5_zLW8T20Pg01DaziNNRXW7wor_WQVPpIA6o,9159
183
182
  holado_grpc/tests/behave/steps/__init__.py,sha256=WBK90EHst7ZPtq9kvDCtv-3NL5h3FJ9_CYjKiquQEBk,1283
184
- holado_grpc/tests/behave/steps/api/grpc_client_steps.py,sha256=GtCO1S9C1qBle8z47xhv-B_fPvyenQl_ugbZHkXerlM,9510
183
+ holado_grpc/tests/behave/steps/api/grpc_client_steps.py,sha256=h3o7w3g3xpE22lp3Pprd8-5kU0StkdRCHl-Dsr2mz04,9531
185
184
  holado_grpc/tests/behave/steps/private/__init__.py,sha256=CWs_e6XSEnr9Y_kF3PxF3esA0EeRNnsqp4PEN8gBxrI,1276
186
- holado_grpc/tests/behave/steps/private/api/grpc_steps.py,sha256=7XqackVsNy-ceX-WpjUCkM0wmfhCG9vpBO0R4obC030,3922
185
+ holado_grpc/tests/behave/steps/private/api/grpc_steps.py,sha256=nTsOZZjolMciOqJ01p9L4iqYIeSeBRjvrwL2_Py6rpg,3943
187
186
  holado_helper/__init__.py,sha256=U5rV9zTT4OFE4MU2yiOIDlAmwQ_NO2CB0Adih2sn8eQ,1780
188
187
  holado_helper/initialize_holado.py,sha256=UxNphXyjs-xraorzMWjDe6-QYw_Q3mtykyY-ENYZB1o,3464
189
188
  holado_helper/debug/README.txt,sha256=kpsK1Ii5-t5pJCL9ChcEbZYyYTKt34fjKdiMC5DGOjc,2045
@@ -212,10 +211,10 @@ holado_json/ipc/json_converter.py,sha256=i4sPg9jZ2EziW8L6K-Rlm5-ubweFIWHq2R19avm
212
211
  holado_json/ipc/json_types.py,sha256=MP72SmSUqFnoNC_YFMLUmU4prJv4uzO1VUoUBVLYwD8,7883
213
212
  holado_json/tests/behave/steps/__init__.py,sha256=FVGM5by0yswjfo8yC58x3onJKjKcQx919TOcYEUOWEw,1276
214
213
  holado_json/tests/behave/steps/ipc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
215
- holado_json/tests/behave/steps/ipc/json_steps.py,sha256=f90mHxhClFAQX2Vjs9H2kIfrwofnuX0kqPANxbtuiJk,5987
214
+ holado_json/tests/behave/steps/ipc/json_steps.py,sha256=3cF2OazFoXztt-X7fXaCu_Fv5DAgc7reu0DbEgCRPX0,6008
216
215
  holado_keycloak/__init__.py,sha256=z0SNFOdBBWUouC12WKDmL18T_OH3TdmfcgIbnNQzbjU,1247
217
216
  holado_keycloak/tests/behave/steps/__init__.py,sha256=NBE4L-am7jgPiJxcHRlZ4PQRjJ_83PvN9-I-qUb8kKA,1289
218
- holado_keycloak/tests/behave/steps/tools/keycloak_client_steps.py,sha256=Ku3G7GAmmX9Wzsv5ihj1tiPWae8gQDjpxYieMim6CrQ,3005
217
+ holado_keycloak/tests/behave/steps/tools/keycloak_client_steps.py,sha256=Dc1xB3qtUcBNwdlTsMS8z_9oG9yyePEJSI0MZQ_3jac,3026
219
218
  holado_keycloak/tools/keycloak/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
220
219
  holado_keycloak/tools/keycloak/keycloak_client.py,sha256=QXAsf9rF0pKq1dHhXeZFZOxuEg_1uzp6vqXnwWDnegg,4019
221
220
  holado_logging/__init__.py,sha256=EMmwm_jHe739gftVCmf6lb_dT20IVseVg0bbGGADn8w,2176
@@ -242,8 +241,8 @@ holado_multitask/multithreading/reflection/inspect.py,sha256=yntSXI6YEZDBfqoDnB0
242
241
  holado_multitask/multithreading/reflection/sys.py,sha256=1Q7hX9nddjqUvfn-k39SuPQhwLjXJmB9gegV6vNM534,1558
243
242
  holado_multitask/multithreading/reflection/traceback.py,sha256=Bnq-Xp0aA3D4kYtb7JJyXNASw3iU35WRSePredxWziQ,1891
244
243
  holado_multitask/tests/behave/steps/__init__.py,sha256=H3pe2qGVRV8gj5hLg9xvQM_S0u3UZH_3X3mSwvkAgH8,1319
245
- holado_multitask/tests/behave/steps/multiprocessing_steps.py,sha256=SgDBUpU_j7NjPS-HRZUo7fhE4ukMYa8MuQhjNhvX7fM,7441
246
- holado_multitask/tests/behave/steps/multithreading_steps.py,sha256=ZiPifzvN_L9vfY5xu2yqX8T-XLurX4TWT4-uXD9P0wI,6827
244
+ holado_multitask/tests/behave/steps/multiprocessing_steps.py,sha256=Wserv2xejglsZyUU8H4eLaUzrh4mm_v9JVmuQjfVM4g,7462
245
+ holado_multitask/tests/behave/steps/multithreading_steps.py,sha256=DniGgMne6pBRVvT3zjR_BC6al3yyPUX-rJmsW23xGss,6848
247
246
  holado_protobuf/__init__.py,sha256=PsfsVCEC663IoDbDGyAjRUnOzXXSammPd9MH4nkOp28,3491
248
247
  holado_protobuf/ipc/protobuf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
249
248
  holado_protobuf/ipc/protobuf/protobuf_compiler.py,sha256=RIHyjsLpgv6jwsIz4hXUStTnn_TGwFL3LOgrzxKhEOw,6349
@@ -253,13 +252,13 @@ holado_protobuf/ipc/protobuf/protobuf_modifier.py,sha256=TZUfUYJd2nPoDYw3GXaGy5G
253
252
  holado_protobuf/ipc/protobuf/abstracts/type.py,sha256=xr6CvHTJJQBDKtpPdOlUJyWjdjbHsm5uPHa3eOZlvLQ,2234
254
253
  holado_protobuf/ipc/protobuf/types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
255
254
  holado_protobuf/ipc/protobuf/types/google/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
256
- holado_protobuf/ipc/protobuf/types/google/protobuf.py,sha256=_0DjzXwVwUvFYU9PswMEVV-fu7tISs9VVqhsxQbnYSM,5324
255
+ holado_protobuf/ipc/protobuf/types/google/protobuf.py,sha256=8vlpyreY0pzt-rUZTI0bDmkyH91_oFiAwQvmZPvBaQs,5331
257
256
  holado_protobuf/tests/behave/steps/__init__.py,sha256=y2cb2NXe15g8sBts6vB3SicDEUy7XvY0bZbhUiY7Qnk,1280
258
- holado_protobuf/tests/behave/steps/ipc/protobuf_steps.py,sha256=Sac4-Qn5fOW0RAIF3ISQ0D_LXD_QgbqDij3DF-Ja5KI,17115
257
+ holado_protobuf/tests/behave/steps/ipc/protobuf_steps.py,sha256=Pbw5E-AbTTSKR_i_JXxSkq922F2oFML3rsCF8ILSqXA,17136
259
258
  holado_python/__init__.py,sha256=uZzFUgE2zqLWiM-2yF9D5KinWqZYqoXYMCiD02A3iW8,1657
260
259
  holado_python/common/enums.py,sha256=iwffWOqUdiFaOn83RPmjRVVHakTjQve55sNsbY4x8Ek,1535
261
260
  holado_python/common/iterables.py,sha256=YxJYr_Xg1st-E5tDbdg14JpVI_8kYsrBjMEM7Sqh4yY,1629
262
- holado_python/common/tools/datetime.py,sha256=0OTWucaP2L_tmkppzB_hVmKcQCzbpo4BqcFGHTWJzP0,10794
261
+ holado_python/common/tools/datetime.py,sha256=1Oj6NQhTqRug3N-i5GtcfgTS0sTfHHC08GpFDFghwgI,11680
263
262
  holado_python/common/tools/comparators/boolean_comparator.py,sha256=66AtqQ1u7NLTKAmgZHdnbE8vMPfgwJ2ZrzMiea90jX0,2042
264
263
  holado_python/common/tools/comparators/bytes_comparator.py,sha256=VKD5Q734n1k5Q0zX14fYgvM-66ysyRWkjo2fLgleyt0,2412
265
264
  holado_python/common/tools/comparators/datetime_comparator.py,sha256=6smSvQ7ErnNuBNHkSbkf4HoSUJU54DNS2ILhxM1FHAk,3487
@@ -272,38 +271,41 @@ holado_python/standard_library/hashlib.py,sha256=si-j4L7OJa-oGdoo1lKy4VFeqs7oYqj
272
271
  holado_python/standard_library/multiprocessing.py,sha256=vThmJzdDTtdFyGUL3i3evmt2JBUK-jrorKbEtQ7TSFU,2786
273
272
  holado_python/standard_library/queue.py,sha256=RIFid85_CMFmanpt61LSaYqeHdlFwAuhcpBhxgyWj_o,3059
274
273
  holado_python/standard_library/typing.py,sha256=8F9Iolh-c9GbDGlNr3V6uPdTEhSBdkLQu46oVwHPYKk,7693
275
- holado_python/standard_library/socket/blocking_socket.py,sha256=LHDBlK2r6tgpNTzUpYiG55QZMpjQ9seGarQMct6s5ZU,9292
274
+ holado_python/standard_library/socket/blocking_socket.py,sha256=d7LnOoHY8k6WW4Zzy54AITw4-QDxaXTfXtWUCBBWfI8,10366
276
275
  holado_python/standard_library/socket/echo_server.py,sha256=ntApbwcckiEEBw-qjE487An81i4IEVFRPkoFbUrcCL4,1793
277
- holado_python/standard_library/socket/message_socket.py,sha256=yceHseE5JyOH-dzWRvXrrrIzhCY-nyQLGIc78_FrPIs,5396
278
- holado_python/standard_library/socket/non_blocking_socket.py,sha256=PHTTwzVkOHpGEGD4kKHdOm8S38y--BXBstqO33O4paA,6924
279
- holado_python/standard_library/socket/socket.py,sha256=TKxgN9EXes9VfiGQ9q7k25dmrNzQpoajFimRJSATa4M,11145
280
- holado_python/standard_library/ssl/ssl.py,sha256=9HMOo7YrUWLfgTtPbN1oNDZuGdEPeq8gum85LDpK-l4,4051
281
- holado_python/standard_library/ssl/resources/certificates/NOTES.txt,sha256=7VKjsrIAwxKtRrzul_4TKGQtknNBbFOeuLUc1lhkHNg,383
276
+ holado_python/standard_library/socket/message_socket.py,sha256=r9cAs-HWGE0t1Dn09RA-HJ5pBExEjBwN_y9F-JYxno8,5638
277
+ holado_python/standard_library/socket/non_blocking_socket.py,sha256=FGJHbSTTe5KgCBXva9YrU8Fxn7fGbckQy9jsBNtbQiI,7164
278
+ holado_python/standard_library/socket/socket.py,sha256=K2EURF_C8FttqOy7bfiMkVR74W8y3yH5Wbg_wXhzzyM,15781
279
+ holado_python/standard_library/ssl/ssl.py,sha256=LzCXS0qxRq4OiUMvr_2HG36mM7MLPvOPUIl2Ue6zGq4,10775
280
+ holado_python/standard_library/ssl/resources/certificates/NOTES.txt,sha256=GlPGGZT_lqV2fNeh-JKQZDC7xJOa3fLTYuwnC_-UYNg,384
282
281
  holado_python/standard_library/ssl/resources/certificates/localhost.crt,sha256=iLmZpDuOQVawUlbZkb72g2-uv1c4SAmRJOrm4Th5anY,1123
283
282
  holado_python/standard_library/ssl/resources/certificates/localhost.key,sha256=lP2NCvB9mr2E5sk8whA8FyQRcyU6H7sdWkJeKz80Hyc,1704
283
+ holado_python/standard_library/ssl/resources/certificates/rootCACert.pem,sha256=ECQDZ8OHRfqpZHCu6JRLMUjiONaPIhKZQF0-kidVrWQ,1424
284
+ holado_python/standard_library/ssl/resources/certificates/tcpbin.crt,sha256=C7mk5fRBkwm_zeoLa6kymjWqliOO1vdwz0jxr7nDZcQ,1237
285
+ holado_python/standard_library/ssl/resources/certificates/tcpbin.key,sha256=asKZXE3HbJseytFBBaRmBrXRHWn6LqYrJnMtrzIrT84,1708
284
286
  holado_python/tests/behave/steps/__init__.py,sha256=TWEk-kBTTDHi9I4nuu48nufmNMdZ9FHAhPZv0A_cWzc,1661
285
- holado_python/tests/behave/steps/convert_steps.py,sha256=US_8S9hmT-XU8Rsr3enVbxxNlUA6_ANADsNtNF_mnF8,2707
286
- holado_python/tests/behave/steps/iterable_steps.py,sha256=zzigcE1bQ5SiV-JpWJubMYiHhSclnki9IdeX7636e2Q,4020
287
+ holado_python/tests/behave/steps/convert_steps.py,sha256=bZqRvJVp_u6fSPpdu4ne9NwVyZmui7R-AVdO2-H-I1A,2728
288
+ holado_python/tests/behave/steps/iterable_steps.py,sha256=f4vGIWBH8Qnjq69Q-ZBluYyctQ8SKauazTc41dsktZA,4041
287
289
  holado_python/tests/behave/steps/builtins/str_steps.py,sha256=ugNIz5v5EpkiRBDmwDl2JtAq5RWXu6UnLv7HH73WiXw,2101
288
- holado_python/tests/behave/steps/standard_library/csv_steps.py,sha256=GxRBsmdVGHzoX-o_4TlTut61kamaNTljs4JeeGfjHNg,7439
289
- holado_python/tests/behave/steps/standard_library/datetime_steps.py,sha256=1XZ2DL_KhD4OaMfwhxf1KPl4i405_9lYob6nWrccESQ,7794
290
- holado_python/tests/behave/steps/standard_library/hashlib_steps.py,sha256=TI1WXL0nDU6p7ri7VotOK57IssBH8cKuFq3T61ip9Nc,2958
291
- holado_python/tests/behave/steps/standard_library/multiprocessing_steps.py,sha256=uMiDMuIDfsVc5QVTJqUEqi4Rt9LutAUTqGsrm95JJyY,2498
292
- holado_python/tests/behave/steps/standard_library/queue_steps.py,sha256=sKpExnfOxDO7NXQGVFNVy9KY_lOVK-2EZtd5nEIEiUM,17408
293
- holado_python/tests/behave/steps/standard_library/socket_steps.py,sha256=VNzUOnCDY7RJVeBuzV46nRxvZnePKuRejXnjcep202k,11912
294
- holado_python/tests/behave/steps/standard_library/ssl_steps.py,sha256=06vlvf8cwfi4lQe6q3OyZUZIBvbgcl1-ItiT5v5-GjA,3256
290
+ holado_python/tests/behave/steps/standard_library/csv_steps.py,sha256=VJ5wmr0CQ8voBSgnXQUBAdYkEGFOCs95JKcV52tVMOo,7460
291
+ holado_python/tests/behave/steps/standard_library/datetime_steps.py,sha256=mWbYb-CjSVKKWNcBaBzL24jP86C0v-NZ8W3hfrzHlbc,7815
292
+ holado_python/tests/behave/steps/standard_library/hashlib_steps.py,sha256=zhLtKeHhLED-s-67chSqG9asCdOG9fRBUWbF8deKBoU,2979
293
+ holado_python/tests/behave/steps/standard_library/multiprocessing_steps.py,sha256=DD--5bxCvFTXY6KBqKzKAuOrOK0aZdPjbRR5SO0PZBo,2519
294
+ holado_python/tests/behave/steps/standard_library/queue_steps.py,sha256=GdHKKIka5tzFxVTBYPJNywyVLDtggZF2RB_mFIbyLdI,17429
295
+ holado_python/tests/behave/steps/standard_library/socket_steps.py,sha256=IkZ88bR9QK3ji3JhnfKbEBWL1lDje2bzKv1iCaXUg4A,17742
296
+ holado_python/tests/behave/steps/standard_library/ssl_steps.py,sha256=t2qZrlI9541ythkRRJyZFOLlDUkXSYE_w-uw3CrOMiA,5752
295
297
  holado_rabbitmq/__init__.py,sha256=4QWQhcore0gjLpI72i3m9CZpNP4RyvT-qiNUdP6AkCU,1770
296
298
  holado_rabbitmq/tests/behave/steps/__init__.py,sha256=l-VWY2Qv9f-9ZoPmWjUmeurF8kayJCDMReHsCRwNwYc,1332
297
- holado_rabbitmq/tests/behave/steps/tools/rabbitmq_client_steps.py,sha256=H5_r6LKaw_ElmmjcghZMT5KQInoJrdYNOtATh8GG3MQ,28833
298
- holado_rabbitmq/tests/behave/steps/tools/rabbitmq_server_steps.py,sha256=35cXpKCuqg827dpf22rjmD4dJeXUnfOEN1cFkUr9P7Q,3060
299
+ holado_rabbitmq/tests/behave/steps/tools/rabbitmq_client_steps.py,sha256=z5BKvzoAZhiflSS7FCLOjV5V0HUcSbW5Fuxpp6JL3ZE,29795
300
+ holado_rabbitmq/tests/behave/steps/tools/rabbitmq_server_steps.py,sha256=hG6sXnZhiJ2RzxFUmlyx2ymTQNTqL_99B0dp5od7PT8,3081
299
301
  holado_rabbitmq/tools/rabbitmq/rabbitmq_blocking_client.py,sha256=ABv8GlwdZ_lvJQswL1Yz9kO6C7nXIKv4BSNb0JiByFo,15116
300
- holado_rabbitmq/tools/rabbitmq/rabbitmq_client.py,sha256=ChKiC5C4i00tW6tn2Pw70g6P4mXG-xHtB5UlmULQMro,29723
301
- holado_rabbitmq/tools/rabbitmq/rabbitmq_manager.py,sha256=lCbbow3qFNhLNMzFHKEKhsaO4GmAH5DPYXwcjIittkA,9021
302
+ holado_rabbitmq/tools/rabbitmq/rabbitmq_client.py,sha256=mLDVuUZg5C2um4fo1FdXJaiEXRD0eFGS89aRkdCCuOI,29911
303
+ holado_rabbitmq/tools/rabbitmq/rabbitmq_manager.py,sha256=jFxghEOohM8dUjXQg4FYLslJV-lT5xMSdVcKKAiQ8x4,7761
302
304
  holado_rabbitmq/tools/rabbitmq/rabbitmq_select_client.py,sha256=urWn9A8XZqpAAtbvRZ-YUGVbOX_1Y0uSBA2lHGqJxLA,21039
303
305
  holado_rabbitmq/tools/rabbitmq/rabbitmq_server.py,sha256=FW8iKAHm0I78bHQEbRk4rl0dtCmv4dvAe5BY_HfOQVM,1613
304
306
  holado_redis/__init__.py,sha256=Gl285tg-QaPE-3etWwZql9sH26G7EnVoQn97B0NMvOI,1248
305
307
  holado_redis/tests/behave/steps/__init__.py,sha256=NRGOfk44y5JAusLtcX_fDZp6UULxFksheG9H2NFQjyU,1286
306
- holado_redis/tests/behave/steps/tools/redis_client_steps.py,sha256=S2pDsX18cuh7qYN2j9dU05jSY834VMuxPeXYzXuUolM,5003
308
+ holado_redis/tests/behave/steps/tools/redis_client_steps.py,sha256=lOh0YlumJcsztkQZ3Yc2_9JrqTZ2wbypDvUA0DFHErs,5024
307
309
  holado_redis/tools/redis/TODO.txt,sha256=cmFyx6qS6_FgL1Ph0OWRsWch6MQaklfv1j0qBO2ZpZU,202
308
310
  holado_redis/tools/redis/redis_client.py,sha256=KWuOrnwTcwt5xkD3rtI_l07v164Y_bsoo1kE0IGzqaQ,8316
309
311
  holado_redis/tools/redis/redis_manager.py,sha256=tMO0XrCZTCfGdByFfgWXk9R-I_TUPLO9wXMQf8yCYcQ,1814
@@ -328,16 +330,16 @@ holado_rest/api/rest/rest_client.py,sha256=DPKvGuXC4DTsVqlVp5PebUHAW6z2H94fLmygf
328
330
  holado_rest/api/rest/rest_manager.py,sha256=JA1yzXIn3KEMhBzYs7HqN47xh4JaWA_UULkopYaqu2o,3392
329
331
  holado_rest/tests/behave/steps/__init__.py,sha256=lEH5NYkKtpgDV2ZAO1qAGNN4ipwILWMpgvQgnamgYKk,1283
330
332
  holado_rest/tests/behave/steps/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
331
- holado_rest/tests/behave/steps/api/rest_client_steps.py,sha256=w48pjpYyC6gqcIJ0rVyrMlW5IktqcsYdKbb2TVqJ_ec,7563
333
+ holado_rest/tests/behave/steps/api/rest_client_steps.py,sha256=jL-8rYicYxrkQVUIzxybxgbb_a5TWZE7P-nB-_Yvxh8,7584
332
334
  holado_rest/tests/behave/steps/private/__init__.py,sha256=TGsd7qLZpPQRxphFzgepFa22NhHSoZgxAWSIqwvA4L8,1276
333
335
  holado_rest/tests/behave/steps/private/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
334
- holado_rest/tests/behave/steps/private/api/rest_steps.py,sha256=31klZgcU5AnLZ9BpjxQC8ccIGxiwoCfzDkHjYLVnqi4,3339
336
+ holado_rest/tests/behave/steps/private/api/rest_steps.py,sha256=Sca0EM6uuzG-Zk976vz-EKvbwViha2vABAOpkXp9gTg,3360
335
337
  holado_s3/__init__.py,sha256=Gl285tg-QaPE-3etWwZql9sH26G7EnVoQn97B0NMvOI,1248
336
338
  holado_s3/tests/behave/steps/__init__.py,sha256=q64qGCCey5QivEezEXq9LjABSBnjavTpq03PpaMSLkY,1320
337
339
  holado_s3/tests/behave/steps/private/__init__.py,sha256=JmVFxoOewwdE3uAgX4u2Y3tLWL_GdYW3h2ZawNdpn38,1276
338
- holado_s3/tests/behave/steps/private/tools/s3_steps.py,sha256=uVr90SmyOP2ZYdh5d91bGTfEM44PQoIdiO1QlQRfF8k,4341
339
- holado_s3/tests/behave/steps/tools/s3_client_steps.py,sha256=bcmeyFl31FwCxaFphmV7tlPtPzqncaJXThTB9QRfdgM,23005
340
- holado_s3/tests/behave/steps/tools/s3_server_steps.py,sha256=mp2M4uvul5Vx3vJpY--wHXhLK4vd8QzTEzuiwv-gjM8,2700
340
+ holado_s3/tests/behave/steps/private/tools/s3_steps.py,sha256=gqi1DhMjxPF2rNup-tQxb76Ji_BG86JREBBpbIDWqe0,4362
341
+ holado_s3/tests/behave/steps/tools/s3_client_steps.py,sha256=hW5dcbY1XbMb0vmBVA6XMRHcVK7EBJXlfYFx5Q7WFXg,23026
342
+ holado_s3/tests/behave/steps/tools/s3_server_steps.py,sha256=xRNdynOEBdxz44OtkW8xhpfpGO8yvWugxh0dIDm95PE,2721
341
343
  holado_s3/tools/s3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
342
344
  holado_s3/tools/s3/boto3_s3_client.py,sha256=NaYTvyxqiUZ5UshpLONSLLDEBHQU_etDlXDOqGNxR-w,2360
343
345
  holado_s3/tools/s3/minio_client.py,sha256=B_Ie2fNIqyJE5vXO4iQw3Tg5yk8k-yGBuJtaf4aDQyU,3193
@@ -348,13 +350,13 @@ holado_scripting/common/tools/evaluate_parameters.py,sha256=zru4_vwqIx_KxWVG_luO
348
350
  holado_scripting/common/tools/expression_evaluator.py,sha256=pig2dNisHTuRnLh7vR6ciwn0o8rnDvVOQKT44iF0QB4,24309
349
351
  holado_scripting/common/tools/variable_manager.py,sha256=VGJH_OYPduTCSA_CLMpZUiC_nqAJJtGWZ2mwPEGzpW8,15672
350
352
  holado_scripting/tests/behave/steps/__init__.py,sha256=GSug7OdldGvwbSuJOuLQVIZ8qU4bsfdvTY6VzSnMbTE,1544
351
- holado_scripting/tests/behave/steps/common/tools/variable_convert_steps.py,sha256=2tOzgggZMlZR-6IAk7H4XEuKOBkmA93wNvnhxfvd5R4,7837
352
- holado_scripting/tests/behave/steps/common/tools/variable_new_steps.py,sha256=rgmwV9A3W7Gkdp-P7GzYJqoz0szBGKPeAA4mylUch_o,6132
353
- holado_scripting/tests/behave/steps/common/tools/variable_steps.py,sha256=NCTGD9YUVamhA1jRy8NzNUIfO5DhAvqAoSRW6z0XJoQ,4947
354
- holado_scripting/tests/behave/steps/common/tools/variable_verify_steps.py,sha256=NQaqJKOoAt1NVGJ4MXL0akXfL5IP-xeGl-B0yVUk3Uc,7918
355
- holado_scripting/tests/behave/steps/scenario/function_steps.py,sha256=tVsBWy5yvSv8tUyz67v_jmXVP68Ik67Vf2u3IKnjudo,3424
356
- holado_scripting/tests/behave/steps/scenario/if_steps.py,sha256=aIbAgImaqwCxZT0sAIvSkdRAUI3OlZz3RkJPbOlshq8,4465
357
- holado_scripting/tests/behave/steps/scenario/loop_steps.py,sha256=2D7knm_i8XzUujgvauYlmL9pMq13MptHz_aBTeuoMIE,5610
353
+ holado_scripting/tests/behave/steps/common/tools/variable_convert_steps.py,sha256=sPxZ1U1Wm9LBUjwEKvxE2nfz6cRatlXUZCGIK-QPpi0,7902
354
+ holado_scripting/tests/behave/steps/common/tools/variable_new_steps.py,sha256=0VqwuzKdD_ZiUxzqF5vPoTbrTIhiPOpWEXK8qljqmQA,6153
355
+ holado_scripting/tests/behave/steps/common/tools/variable_steps.py,sha256=TKTwlEDnQ7XADRfvefWWeXujiZZlujwoy5suiA3Gmc8,4968
356
+ holado_scripting/tests/behave/steps/common/tools/variable_verify_steps.py,sha256=Ux_bOH1Kga1RNILhfrlvkBdlr3AyTV2ob5Chy97GBcU,7939
357
+ holado_scripting/tests/behave/steps/scenario/function_steps.py,sha256=pgVnVF2o_VDLe07VJhnNIQa9_DOAopUXkIlwcgT_UVA,3445
358
+ holado_scripting/tests/behave/steps/scenario/if_steps.py,sha256=-OascifNMnvykvdSTTbJmdjKVxak_anyNwPFxvQddhM,4486
359
+ holado_scripting/tests/behave/steps/scenario/loop_steps.py,sha256=dAtxdbCGuGzakRjFEpD3Qco17nNQKwfkLkyW4VaZX38,5631
358
360
  holado_scripting/text/base/base_function.py,sha256=GX-xVt5dhPQipRkgJ5J9Un-0GhK1NOt_fMOrcs_THB8,1469
359
361
  holado_scripting/text/base/base_verify_function.py,sha256=7ivJ-Om9o5KB1pBoh4MU5UZYb40msHvnuEdgKK7EWdg,1494
360
362
  holado_scripting/text/base/text_inspecter.py,sha256=Hw7aU7vShmVRwPFcChhrm9rbTYHeUzokPTbUSxXGDJg,8981
@@ -379,9 +381,9 @@ holado_scripting/text/verifier/functions/verify_function_match_pattern.py,sha256
379
381
  holado_sftp/__init__.py,sha256=z0SNFOdBBWUouC12WKDmL18T_OH3TdmfcgIbnNQzbjU,1247
380
382
  holado_sftp/tests/behave/steps/__init__.py,sha256=tgwKMWPfDgQo67a8jr-msU9XbtkXgMYWkDwWi6uDo2Y,1324
381
383
  holado_sftp/tests/behave/steps/private/__init__.py,sha256=MMqOHizgrNAbOKUYDGb2EPbX-NranicvqDJVCMQrLzE,1278
382
- holado_sftp/tests/behave/steps/private/tools/sftp_steps.py,sha256=igURsLd76k0010uL3ieHn5YiVD8xl-8AVw2EDNSd1fk,3940
383
- holado_sftp/tests/behave/steps/tools/sftp_client_steps.py,sha256=hhrDzpEqQ_B4o_S8yjdedSSoRAJFugdtI3RBcfU29NQ,4675
384
- holado_sftp/tests/behave/steps/tools/sftp_server_steps.py,sha256=wYJJAYrhirQx1riYBq8LaKoRlsKJByQtfQjj5-kuJvw,3862
384
+ holado_sftp/tests/behave/steps/private/tools/sftp_steps.py,sha256=mUvaLM6QBTzppZIQcXMc6ui6eCJ_uKv8SEJtnNdGukQ,3961
385
+ holado_sftp/tests/behave/steps/tools/sftp_client_steps.py,sha256=DcOfRaYokQj9ZMHCHsCxFxBC4hNT3eniv52vcfo5Rzo,4696
386
+ holado_sftp/tests/behave/steps/tools/sftp_server_steps.py,sha256=LGTVt1MZLbSB6gEJjfgYDKfIl875GRNak7JlGFNsAso,3883
385
387
  holado_sftp/tools/sftp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
386
388
  holado_sftp/tools/sftp/sftp_client.py,sha256=ExpIQoImZt9KpHuGLuZmxZetvuzK426-DQ67pDPenOM,4486
387
389
  holado_sftp/tools/sftp/sftp_server.py,sha256=N_Ym3Rm8w_QS6E0id543LZXfQ7G38DeKjVwCRH2irKA,1969
@@ -389,17 +391,17 @@ holado_swagger/__init__.py,sha256=VSOq3mr1SaTEnceP_4kwYBYAMTuyVE9_61wOdKKasis,16
389
391
  holado_swagger/swagger_hub/mockserver/mockserver_client.py,sha256=gLb1n9Jl9UjxznvXvQbgNB4QBvRHJ8--kGVGqKK7QsQ,4052
390
392
  holado_swagger/swagger_hub/mockserver/mockserver_manager.py,sha256=5ubBMgtNNaoXcgDjPNM0BcJ0N_QaE_hvmy4i05Pq53w,1646
391
393
  holado_swagger/tests/behave/steps/__init__.py,sha256=joCT_nKaotXBBMNTXxOBcmr98gjmjDkY1Zbu5lCL8B4,1290
392
- holado_swagger/tests/behave/steps/swagger_hub/mockserver_steps.py,sha256=Bcrv6y3zD_7ktTnowwaoxvVLBSxaC7b5MwPfhKRs_U0,3728
394
+ holado_swagger/tests/behave/steps/swagger_hub/mockserver_steps.py,sha256=_M5WyF35qBjvDnXbohhMA9kV3D1H1aRnTBQ1iOtmxHA,3749
393
395
  holado_system/system/global_system.py,sha256=d0Qb7_toXeQfgWp4iFqqaTVr_z7n4Gx2TQWiSiF0J28,8233
394
- holado_system/system/command/command.py,sha256=vY1ew7qRaXX0QMTU5CGYEOdYBPzA1q3Np4VaiRV_hio,7981
396
+ holado_system/system/command/command.py,sha256=7--EoIlTO5tsh7d5nugmt4UIY7yv8pUp2q7eJ7jlN7M,8169
395
397
  holado_system/system/command/command_result.py,sha256=sunGDegNVOtpK9s9r4HCAJlREu4iKS0w3HY4KKDEQkw,4613
396
398
  holado_system/system/command/curl_command.py,sha256=CEMaO0_qLyKe4tLytMlHzmCuS_gi-oU479hwOaEyZ60,3743
397
399
  holado_system/system/command/exceptions.py,sha256=InT6t8GVeGCiBE-NpRr4NzycWVAvzmc6WpM6mk7_1yk,2363
398
400
  holado_system/system/filesystem/file.py,sha256=Y5uq2n-ttimdRvLh3QQjpECoOSUzcj9DesuT2HerYuk,2840
399
401
  holado_system/tests/behave/steps/__init__.py,sha256=7LrCSTHk5oHNuEsr4IhJuNDsohtR2cq3YT1owXrhdjc,1351
400
- holado_system/tests/behave/steps/system/commands_steps.py,sha256=ASB4cKMrXCZvSkTz_2trKGChcjH23Ydr6eITVgi0klA,3880
401
- holado_system/tests/behave/steps/system/file_steps.py,sha256=7khaD_vwsgFRrEJb9yPIp_PVMKsrb6hrgmK21RO4jXU,9831
402
- holado_system/tests/behave/steps/system/system_steps.py,sha256=crpmUS21zMAPgtbRcNGtboHUCSIdDCqEelICxRNJAE8,3757
402
+ holado_system/tests/behave/steps/system/commands_steps.py,sha256=uYiojPpYPkfif8l8afRrJ0sj-wFBE4j1x67BDMNs76Q,3901
403
+ holado_system/tests/behave/steps/system/file_steps.py,sha256=QxiBNe5GPSlHenaK2cEK_sMYQD7a9vTz8I8Ma-24uh0,9852
404
+ holado_system/tests/behave/steps/system/system_steps.py,sha256=2XrZwuAaYDjB_HvPgxZq9MpYB_Zo7FVZ0DYcmtKht2s,3778
403
405
  holado_test/__init__.py,sha256=A0edMOLhnuU-A_NazQ50WghvKvB889KNCBddtBPa9Ag,1539
404
406
  holado_test/test_config.py,sha256=yQK2jNHEGltGc3fmsAgcsKN4y3_nuldZHD45XEMrsQA,1575
405
407
  holado_test/behave/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -414,23 +416,23 @@ holado_test/common/context/feature_context.py,sha256=GhC0lihnvTBhv5tE4JzPt39eP7g
414
416
  holado_test/common/context/scenario_context.py,sha256=pmo-xGtn6oHtbTmcH6Vtp8Dj2iGrYVdHd0b6smtlhbY,10527
415
417
  holado_test/common/context/step_context.py,sha256=j6S4ozTPrdlpV9Slopc998fYOV8KfMLAUSW4mcEFUI8,2383
416
418
  holado_test/common/exceptions/undefined_step_exception.py,sha256=SHHX22iz4Ip-V4Y3aM2EJFDt30CCS5EaauN6KB-JORo,1461
417
- holado_test/scenario/step_tools.py,sha256=E4njtSDf11cD0ZMnNEUlIaqx5Xgzl6dLx5_YQcDodL8,25552
418
- holado_test/scenario/tester_tools.py,sha256=GB2AV_T1lluiNZtt5_cAhstEenhIeHC48x-hkK337Uk,2369
419
+ holado_test/scenario/step_tools.py,sha256=eovzeSDmkfyrRjGga-bVW9VcoLRCdGjN1z8xlBNovmc,25506
420
+ holado_test/scenario/tester_tools.py,sha256=Tv035FyXPjQ46Ep8KuPOjOvzJFvxnbv9EsrSihUzAwg,2479
419
421
  holado_test/tests/behave/steps/__init__.py,sha256=rdqrp-UN7vRplIqORx4sXyKwMUkptRizyLWudsmYehM,1362
420
- holado_test/tests/behave/steps/scenario/exception_steps.py,sha256=ayMUmIJI4a7w95RL2NYiBWA8jSBwKyjdaRJL3IKdYQ0,4033
421
- holado_test/tests/behave/steps/scenario/scenario_steps.py,sha256=TPLpatwXrY_Dd71VxzrABs9L2pxNgdMAgSRckjEaC1I,3976
422
- holado_test/tests/behave/steps/scenario/tester_steps.py,sha256=4mJA6CjyHvQmRv7P_bt8k6SrTr_zrc4AetuSB35Wsow,2896
422
+ holado_test/tests/behave/steps/scenario/exception_steps.py,sha256=ZIE92Dz7a6O_c0jAP_0dj6Hc0tnW6YRgNKd4_aBpeR0,4054
423
+ holado_test/tests/behave/steps/scenario/scenario_steps.py,sha256=fhEpdue6cYsMw0zc62AQyDrGtDZy5SCUbRyOTjObIKI,3997
424
+ holado_test/tests/behave/steps/scenario/tester_steps.py,sha256=zEm36-su8jrqe0uv8ai4xN97j3_p2jmcPv_-jRRu688,2997
423
425
  holado_value/__init__.py,sha256=60VyLyWux76dFwn03uH4Fz3R6itf6fqKu0pQUdvwblU,1561
424
426
  holado_value/common/tables/value_table.py,sha256=fJgb-HWdlMwHOAx5CS38sPiVrjGelEiQBbG9HuHqe-A,1726
425
427
  holado_value/common/tables/value_table_cell.py,sha256=vCL8uSTEKOpI9G5f0epgJMArFxQidfWTCRHBZbdrsjc,3344
426
- holado_value/common/tables/value_table_manager.py,sha256=1Q7V9RQyJrI5V7GfVcAn2MC_EZ494WeTgO7XvB7wtq8,3000
428
+ holado_value/common/tables/value_table_manager.py,sha256=S_UUCnLj7ywtqfh8GMqos2qw-do35U53Vr2KvPVZ0rI,2537
427
429
  holado_value/common/tables/value_table_row.py,sha256=tA8D5rMNBMa2JKumM9ST3qn-MyPrjomS0Fms67OwcyY,2482
428
430
  holado_value/common/tables/value_table_with_header.py,sha256=6uHR05tUD_EmPz-Qv8ul3kmQ55VjFKIj2G6jGkjXZyU,1763
429
431
  holado_value/common/tables/comparators/table_2_value_table_cell_comparator.py,sha256=gYYxEfey_xRp80VahqGF5N0RDIvT-NqCslTXTId_3Vw,10423
430
432
  holado_value/common/tables/comparators/table_2_value_table_comparator.py,sha256=rITxTgXami05plxk1qaCVqDcwZaKWoXpKAzur4ingTE,1807
431
433
  holado_value/common/tables/comparators/table_2_value_table_row_comparator.py,sha256=_VglWUQWspG1Fo2iAo41auCwWYR24q0TniFck99BF_E,1752
432
434
  holado_value/common/tables/comparators/table_2_value_table_with_header_comparator.py,sha256=VKwA7PbXnE-gFSKWlDCsJv0tkWVuNY-C4aWt2tyIybE,1911
433
- holado_value/common/tables/converters/value_table_converter.py,sha256=L0XIMxXv09fgcB6aJ8Wjg8FUw70PJ8A66ZBvBcA-P0o,9790
435
+ holado_value/common/tables/converters/value_table_converter.py,sha256=OESQ-wghR7gc42lDHSF1__Swfxj56bvNsLJq3u76gJE,12067
434
436
  holado_value/common/tools/unique_value_manager.py,sha256=UXKdDKWznp4auYKQeWB7zYEzfm_0GxAiGfyoFM5ZM3s,5223
435
437
  holado_value/common/tools/value.py,sha256=BwAx9L_xHA-v4K55osnXjI9z9bQn_MKQ8Cvk3mhqBjA,9108
436
438
  holado_value/common/tools/value_types.py,sha256=7nJp5D7xdoT9jMeeOxHIuPRykDyI9fXpve37ndK32gs,1801
@@ -439,17 +441,17 @@ holado_value/tests/behave/steps/private/__init__.py,sha256=BHp8TYE_X4lWn4B8A51nX
439
441
  holado_ws/__init__.py,sha256=z0SNFOdBBWUouC12WKDmL18T_OH3TdmfcgIbnNQzbjU,1247
440
442
  holado_ws/api/ws/TODO.txt,sha256=mNbcjK3LQZpNNh7P3-JVCCyyeS9Q8g1XeX9EdbfL49o,28
441
443
  holado_ws/tests/behave/steps/__init__.py,sha256=pQFh5y-mg2rGTlTBejuur8dd38govzBGXmbM1U61TP8,1283
442
- holado_ws/tests/behave/steps/api/web_service_steps.py,sha256=toZzWd_ZVDdGOKigpjM1010qlP4bafPavulUE5rbQOs,8959
444
+ holado_ws/tests/behave/steps/api/web_service_steps.py,sha256=iEKq0b1KUiqOAqAw2z8HdaaaIbE-zx50E4CayazuMvw,8980
443
445
  holado_yaml/__init__.py,sha256=KpbIi2cm1BYZgoWf0LuhE0ei3ZCE15UcUtjC1cSA55M,1653
444
446
  holado_yaml/tests/behave/steps/__init__.py,sha256=mXzHzGy9gkIDjYXdlxQ6BzaT4AfithgRmL_1sMxr63g,1272
445
- holado_yaml/tests/behave/steps/yaml_steps.py,sha256=PLloDByW8wCASlfyPVgQ-XEX-sfwzFVF4NiW-TmaLaQ,3465
446
- holado_yaml/yaml/yaml_manager.py,sha256=QdzCWOXJ17vk7bcHz-5M3ZH3olIEBuSrBjV5Kudx34g,3458
447
+ holado_yaml/tests/behave/steps/yaml_steps.py,sha256=t3uNpyXey9UFAJB0g9IIxkweQvw8cFBvxamvjZuiqMs,3486
448
+ holado_yaml/yaml/yaml_manager.py,sha256=IeHfKrc1r2Q6ysr8MC6JDcKDLQNb7pITaZfScz_bIOg,3466
447
449
  test_holado/Dockerfile_test_holado,sha256=zO6OUFnC1X9ZG7fPWWWfcWgZwnxif4WDE4ZDEmI_JU0,1953
448
450
  test_holado/__init__.py,sha256=TIHAHrF05rvz6-VDKuDBSBjasD6PxTxXvcXjMEC3D6E,54
449
451
  test_holado/__main__.py,sha256=PVdCX8V_RGRzbQQKVxf7eyt8a10XfUJ1pcaajGgIlus,1509
450
452
  test_holado/build_docker_image_to_test_holado_in_docker.sh,sha256=B3hbi0yKnEC-t9S18o6ZR27AU1bqiuptwOqm6H7tv8s,142
451
453
  test_holado/environment.py,sha256=X4a6q9Km_Ya8XFIjwlDULgEQOkucumXxjIrIRtK1GDY,2294
452
- test_holado/logging.conf,sha256=fI2P1eKEkDZm_GW0CFkgy7ASaIWwvgmLHUoLBfGqlwo,1132
454
+ test_holado/logging.conf,sha256=lXttFc6GDYbUoM_u0_V27Rhs4AQ3G7dD2Xkzz7F11t0,1174
453
455
  test_holado/test_holado_session_context.py,sha256=qOB_i2k8mYjkR3-q2uv0B04xFc1K3p-K20ttYwe1Z18,1364
454
456
  test_holado/features/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
455
457
  test_holado/features/NonReg/api/REST.feature,sha256=ouaDdgXulNlXcZ7fSrSGCX-qDmQoCpXWnR_hKcKh8M4,469
@@ -457,18 +459,23 @@ test_holado/features/NonReg/api/gRPC.feature,sha256=2cQP2nWzrOG94HoxMFGIrfpPkLc_
457
459
  test_holado/features/NonReg/common/multiprocessing/simple.feature,sha256=bNDoWWTg1vOy0O_-0fmAlBPDXSxt7GBdDNy3XvtoEfU,1729
458
460
  test_holado/features/NonReg/common/system/commands.feature,sha256=vx-ARlO21uPwJl7MNy7SD6EoLtAFRxPspEYVc8psSsU,1412
459
461
  test_holado/features/NonReg/common/system/system.feature,sha256=LILoPYkkHuG9n-8vMNcgu1getgJpQ8WZRE3WDsJOpUU,700
460
- test_holado/features/NonReg/common/tables/table.feature,sha256=dia2lpyBWHodREYwSwliGrt1LXYdPQ1LVScfAnqnMv0,8270
462
+ test_holado/features/NonReg/common/tables/table.feature,sha256=JRBfjuhCF7gmU_HascOeYnm-TpZMglHzbvtV4KNkgC4,8581
461
463
  test_holado/features/NonReg/common/tables/value_table_conversion.feature,sha256=FRpm7ai5l7rvIbjy2fFXYZU-7juV_ZrOv2LUZtl4YtM,1061
462
464
  test_holado/features/NonReg/common/tools/DateTime.feature,sha256=Gf59f3iOdlE2fDnnZyNhz9SMqnl0W9mfLKvaWQVPuv4,3606
463
465
  test_holado/features/NonReg/common/tools/UniqueValueManager.feature,sha256=Ok-f0RB01KQGIbEVyZ8nNmXJ3Y-qs3rzHg1_EPHIkuQ,995
464
- test_holado/features/NonReg/holado_ais/ais_message-bitarray_to_nmea.feature,sha256=TmkcvApBeUgZtehad1scUxJHwtGycv_8C9c8jRJl6Ds,14188
466
+ test_holado/features/NonReg/holado_ais/ais_message-bitarray_to_nmea.feature,sha256=ILT9HR_v9kRSfoycMWtH329G5Wtx6H4Tu-V_uXXWphA,14188
465
467
  test_holado/features/NonReg/holado_binary/bit_series.error.feature,sha256=6RVQIb5oeuEHM-MvR0z9t_uT81GY0MbpZOxZp4qf_x4,1903
466
468
  test_holado/features/NonReg/holado_binary/bit_series.feature,sha256=_FS1JMDFtt3LzBOhl92wgdznZJxbPAiFx9Z_p4mpJ_U,5730
467
469
  test_holado/features/NonReg/holado_protobuf/protobuf.feature,sha256=5PjD4R_ow3lMwWNFuemGZ6J0_A2_pzn-oNY4aV-wsGg,11857
468
470
  test_holado/features/NonReg/holado_python/convert.feature,sha256=rVBWdy43UbWNfnBB_mENQwN6ArdcxJ5fN2C2nPKihhE,498
469
471
  test_holado/features/NonReg/holado_python/iterable.feature,sha256=dqdkCYM1xsWWOBowCpW7t6hG2ZBWHS4NqrFgfgcKp7Q,1574
470
- test_holado/features/NonReg/holado_python/standard_library/socket.feature,sha256=qNncGlJCOGz_fad8QeLhToX743nZNZcEe--mjHbMg3I,5313
471
- test_holado/features/NonReg/holado_python/standard_library/socket_with_ssl.feature,sha256=FZRZVGlmRBvikX915R3AQ4GDVhOSGo-K2fFfM7wTPoo,10812
472
+ test_holado/features/NonReg/holado_python/standard_library/socket/local_echo_server/socket_reset.feature,sha256=NyDsohMtrprmMsfCzCHHiiwsTydzlmSCdikyp257fp4,6158
473
+ test_holado/features/NonReg/holado_python/standard_library/socket/local_echo_server/socket_with_tls_and_verify.feature,sha256=YUjFoyWttGCBenGrUSp1kWYEf99sRfh2MC2XHxBw1iI,12071
474
+ test_holado/features/NonReg/holado_python/standard_library/socket/local_echo_server/socket_with_tls_without_verify.feature,sha256=YTmmOH8Yov5BZLhiQOi4xCUjTogatEgEvK1Qr77fc4o,13709
475
+ test_holado/features/NonReg/holado_python/standard_library/socket/local_echo_server/socket_without_tls.feature,sha256=KqjDKhvdtV2crc7yZWjfyAwNrKV-NBS0ywBuBVGLr2o,5299
476
+ test_holado/features/NonReg/holado_python/standard_library/socket/tcpbin.com/socket_with_mtls.feature,sha256=tLXrAVtZHNk8hSBG-yEocMo58g_GOrZiCNNC9Dlnk18,8506
477
+ test_holado/features/NonReg/holado_python/standard_library/socket/tcpbin.com/socket_with_tls.feature,sha256=wrunvv81U0v0JbbSD8QidzIbMt_JwoBpak_KFcO6Zq4,6191
478
+ test_holado/features/NonReg/holado_python/standard_library/socket/tcpbin.com/socket_without_tls.feature,sha256=5VFfcAD04WHaFW-qqkfiljig6SuA5yr7JxSzkGLGWTI,5266
472
479
  test_holado/features/NonReg/holado_scripting/common/tools/dynamic_text_manager.feature,sha256=z4OEQ_Mk_XX58rStfWHpXWq07FKRgF43AcgRkOCxDhI,452
473
480
  test_holado/features/NonReg/holado_scripting/common/tools/expression_evaluator.feature,sha256=QBjeF-V_PjAXEog2npCspor9YMxEcW9pS0KgaKNVG8A,5396
474
481
  test_holado/features/NonReg/holado_scripting/common/tools/variable_manager.feature,sha256=EeGskI6KVgIPzfZvL-bncASwXcSKb6PDu1mRDcpd5vE,2006
@@ -479,8 +486,8 @@ test_holado/features/NonReg/ipc/json.feature,sha256=zDtpngH-8Hn4Kx7tJ02OozzmZZnr
479
486
  test_holado/features/NonReg/scenario/scenario.feature,sha256=0zSkDhxB1dDFyetbNY4AzQR3RVM00o8FoQONdxL6pBI,4806
480
487
  test_holado/features/NonReg/test_steps/behave.feature,sha256=JOcJo-TOFPrENsCHOwsgKxIuDDzMY4SopnPs2qG6lw4,6596
481
488
  test_holado/features/NonReg/test_steps/common.feature,sha256=4zF8L-PoqoQBbqL5YCVIUv8mEN2G7OoLsd4Q1Y1DfEU,4181
482
- test_holado/features/NonReg/tools/RabbitMQ.feature,sha256=z9Wt-besBO2fTh730YWFmruJu1cdcGbFk65u1gkcfnY,19204
483
- test_holado/features/NonReg/tools/RabbitMQ_steps.feature,sha256=Mm8iho2w44DQYm2brwTYMzaq-s2W2Z15gEbiSXK-xwY,9767
489
+ test_holado/features/NonReg/tools/RabbitMQ.feature,sha256=wUA6a-n_F8rxmPHODQgwmFFuuf0V4ahUmGQcMtD0sGc,19141
490
+ test_holado/features/NonReg/tools/RabbitMQ_steps.feature,sha256=liBPyg5DD9JML9LGpUl3aVojLkeEQzLle0Grc-Hs9WQ,9714
484
491
  test_holado/features/NonReg/tools/db_sqlite3.feature,sha256=3mmF69O-_oidKyPEn2cGPeYuM8_3ePUkfWWEcLw6Ra4,1362
485
492
  test_holado/features/NonReg/tools/sFTP.feature,sha256=LWhkOSlvCGN90qx3zXSlZrgWZsdnq4nur0j2R3XxQZM,595
486
493
  test_holado/features/NonReg/tools/S3/boto3_client.feature,sha256=mAGMcyQRSy3VSAzkGUKIGM00F_OD8hfXZv1JYWztpqU,3384
@@ -532,7 +539,7 @@ test_holado/tools/django/api_rest/api_rest/api1/serializers.py,sha256=o_YxFr-tgC
532
539
  test_holado/tools/django/api_rest/api_rest/api1/tests.py,sha256=mrbGGRNg5jwbTJtWWa7zSKdDyeB4vmgZCRc2nk6VY-g,60
533
540
  test_holado/tools/django/api_rest/api_rest/api1/views.py,sha256=kOt2xT6bxO47_z__5yYR9kcYIWWv4qYzpX0K8Tqonik,758
534
541
  test_holado/tools/django/api_rest/api_rest/api1/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
535
- holado-0.2.8.dist-info/METADATA,sha256=r5NOLjSm0RPD6yvuN6OD-fLNRK1Wkxv2UD4QcHxXsUY,5903
536
- holado-0.2.8.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
537
- holado-0.2.8.dist-info/licenses/LICENSE,sha256=IgGmNlcFHnbp7UWrLJqAFvs_HIgjJDTmjCNRircJLsk,1070
538
- holado-0.2.8.dist-info/RECORD,,
542
+ holado-0.3.0.dist-info/METADATA,sha256=6_P7Ukb6sh53S603UEpYVACcVgWDWrun95rGLaJOMFo,6043
543
+ holado-0.3.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
544
+ holado-0.3.0.dist-info/licenses/LICENSE,sha256=IgGmNlcFHnbp7UWrLJqAFvs_HIgjJDTmjCNRircJLsk,1070
545
+ holado-0.3.0.dist-info/RECORD,,