orionis 0.362.0__py3-none-any.whl → 0.363.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.
Files changed (104) hide show
  1. orionis/console/output/console.py +1 -1
  2. orionis/container/container.py +2 -2
  3. orionis/container/resolver/resolver.py +2 -2
  4. orionis/container/validators/implements.py +2 -2
  5. orionis/container/validators/is_abstract_class.py +1 -1
  6. orionis/container/validators/is_concrete_class.py +1 -1
  7. orionis/container/validators/is_instance.py +1 -1
  8. orionis/foundation/config/testing/entities/testing.py +1 -1
  9. orionis/metadata/framework.py +1 -1
  10. orionis/services/asynchrony/coroutines.py +2 -2
  11. orionis/services/environment/{dot_env.py → core/dot_env.py} +2 -3
  12. orionis/services/environment/{types.py → dynamic/types.py} +1 -2
  13. orionis/services/environment/env.py +1 -20
  14. orionis/services/environment/exceptions/__init__.py +7 -0
  15. orionis/services/environment/helpers/functions.py +21 -0
  16. orionis/services/{parsers/exceptions/exception_parser.py → formatter/exceptions/parser.py} +1 -1
  17. orionis/services/{parsers → formatter}/serializer.py +1 -1
  18. orionis/services/introspection/abstract/contracts/__init__.py +0 -0
  19. orionis/services/introspection/abstract/{reflection_abstract.py → reflection.py} +7 -5
  20. orionis/services/introspection/callables/contracts/__init__.py +0 -0
  21. orionis/services/introspection/callables/contracts/reflection.py +141 -0
  22. orionis/services/introspection/callables/{reflection_callable.py → reflection.py} +7 -4
  23. orionis/services/introspection/concretes/contracts/__init__.py +0 -0
  24. orionis/services/introspection/{contracts/reflection_concrete.py → concretes/contracts/concrete.py} +1 -1
  25. orionis/services/introspection/concretes/{reflection_concrete.py → reflection.py} +8 -6
  26. orionis/services/introspection/dependencies/contracts/__init__.py +0 -0
  27. orionis/services/introspection/dependencies/entities/callable_dependencies.py +1 -1
  28. orionis/services/introspection/dependencies/entities/class_dependencies.py +1 -1
  29. orionis/services/introspection/dependencies/entities/method_dependencies.py +1 -1
  30. orionis/services/introspection/dependencies/entities/resolved_dependencies.py +1 -2
  31. orionis/services/introspection/dependencies/{reflect_dependencies.py → reflection.py} +2 -2
  32. orionis/services/introspection/exceptions/__init__.py +9 -0
  33. orionis/services/introspection/instances/contracts/__init__.py +0 -0
  34. orionis/services/introspection/instances/{reflection_instance.py → reflection.py} +7 -5
  35. orionis/services/introspection/modules/contracts/__init__.py +0 -0
  36. orionis/services/introspection/modules/{reflection_module.py → reflection.py} +5 -3
  37. orionis/services/introspection/objects/__init__.py +0 -0
  38. orionis/services/introspection/{inspection.py → objects/types.py} +1 -1
  39. orionis/services/introspection/reflection.py +27 -27
  40. orionis/services/paths/exceptions/__init__.py +7 -0
  41. orionis/services/paths/resolver.py +4 -2
  42. orionis/services/system/runtime/__init__.py +0 -0
  43. orionis/support/standard/exceptions/__init__.py +5 -0
  44. orionis/support/standard/std.py +1 -1
  45. orionis/support/wrapper/__init__.py +5 -0
  46. orionis/test/contracts/{test_unit.py → unit_test.py} +1 -1
  47. orionis/test/core/__init__.py +0 -0
  48. orionis/test/{suite/test_unit.py → core/unit_test.py} +11 -7
  49. orionis/test/entities/test_result.py +1 -1
  50. orionis/test/enums/__init__.py +7 -0
  51. orionis/test/exceptions/__init__.py +13 -0
  52. orionis/test/logs/history.py +1 -2
  53. orionis/test/output/dumper.py +1 -1
  54. orionis/test/output/printer.py +2 -2
  55. orionis/test/test_suite.py +2 -2
  56. orionis/unittesting.py +8 -8
  57. {orionis-0.362.0.dist-info → orionis-0.363.0.dist-info}/METADATA +1 -1
  58. {orionis-0.362.0.dist-info → orionis-0.363.0.dist-info}/RECORD +104 -93
  59. tests/foundation/config/testing/test_foundation_config_testing.py +1 -1
  60. tests/services/asynchrony/test_services_asynchrony_coroutine.py +1 -1
  61. tests/services/inspection/dependencies/test_reflect_dependencies.py +1 -1
  62. tests/services/inspection/reflection/test_reflection_abstract.py +1 -1
  63. tests/services/inspection/reflection/test_reflection_callable.py +2 -2
  64. tests/services/inspection/reflection/test_reflection_concrete.py +1 -1
  65. tests/services/inspection/reflection/test_reflection_instance.py +1 -1
  66. tests/services/inspection/reflection/test_reflection_module.py +2 -3
  67. tests/services/parsers/test_services_parser_exceptions.py +1 -1
  68. tests/services/path/test_services_resolver.py +1 -1
  69. tests/support/standard/test_services_std.py +1 -1
  70. tests/support/wrapper/test_services_wrapper_docdict.py +1 -1
  71. tests/testing/test_testing_result.py +5 -1
  72. tests/testing/test_testing_unit.py +10 -2
  73. /orionis/services/{introspection/contracts → environment/core}/__init__.py +0 -0
  74. /orionis/services/{parsers → environment/dynamic}/__init__.py +0 -0
  75. /orionis/services/environment/exceptions/{environment_value_exception.py → exception.py} +0 -0
  76. /orionis/services/environment/exceptions/{environment_value_error.py → value.py} +0 -0
  77. /orionis/services/{parsers/contracts → environment/helpers}/__init__.py +0 -0
  78. /orionis/services/{parsers/exceptions → formatter}/__init__.py +0 -0
  79. /orionis/{support/wrapper/dicts → services/formatter/exceptions}/__init__.py +0 -0
  80. /orionis/{test/suite → services/formatter/exceptions/contracts}/__init__.py +0 -0
  81. /orionis/services/{parsers/contracts/exception_parser.py → formatter/exceptions/contracts/parser.py} +0 -0
  82. /orionis/services/introspection/{contracts/reflection_abstract.py → abstract/contracts/reflection.py} +0 -0
  83. /orionis/services/introspection/{contracts/reflect_dependencies.py → dependencies/contracts/reflection.py} +0 -0
  84. /orionis/services/introspection/exceptions/{reflection_attribute_error.py → attribute.py} +0 -0
  85. /orionis/services/introspection/exceptions/{reflection_type_error.py → type.py} +0 -0
  86. /orionis/services/introspection/exceptions/{reflection_value_error.py → value.py} +0 -0
  87. /orionis/services/introspection/{contracts/reflection_instance.py → instances/contracts/reflection.py} +0 -0
  88. /orionis/services/introspection/{contracts/reflection_module.py → modules/contracts/reflection.py} +0 -0
  89. /orionis/services/paths/exceptions/{path_value_exceptions.py → exception.py} +0 -0
  90. /orionis/services/paths/exceptions/{not_found_exceptions.py → file.py} +0 -0
  91. /orionis/services/system/{runtime_imports.py → runtime/imports.py} +0 -0
  92. /orionis/support/standard/exceptions/{std_value_exception.py → value.py} +0 -0
  93. /orionis/support/wrapper/{dicts/dot_dict.py → dot_dict.py} +0 -0
  94. /orionis/test/enums/{test_mode.py → execution_mode.py} +0 -0
  95. /orionis/test/enums/{test_status.py → status.py} +0 -0
  96. /orionis/test/exceptions/{test_config_exception.py → config.py} +0 -0
  97. /orionis/test/exceptions/{test_failure_exception.py → failure.py} +0 -0
  98. /orionis/test/exceptions/{test_persistence_error.py → persistence.py} +0 -0
  99. /orionis/test/exceptions/{test_runtime_error.py → runtime.py} +0 -0
  100. /orionis/test/exceptions/{test_value_error.py → value.py} +0 -0
  101. {orionis-0.362.0.dist-info → orionis-0.363.0.dist-info}/WHEEL +0 -0
  102. {orionis-0.362.0.dist-info → orionis-0.363.0.dist-info}/licenses/LICENCE +0 -0
  103. {orionis-0.362.0.dist-info → orionis-0.363.0.dist-info}/top_level.txt +0 -0
  104. {orionis-0.362.0.dist-info → orionis-0.363.0.dist-info}/zip-safe +0 -0
@@ -1,5 +1,5 @@
1
1
  orionis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- orionis/unittesting.py,sha256=_NU3_sm3R6bUUH_Y-KSPgNVBajUGCtKo_CGgjB1YD5k,2094
2
+ orionis/unittesting.py,sha256=_ukXPOOQTaaBxmWScsCO0FdlEC0uYFIxlytBXQpl1Bk,2030
3
3
  orionis/_contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
4
  orionis/_contracts/application.py,sha256=ltuDA1mN5P73l89jJto_A96ePJWE02OZ_B2NOPpfeWs,1061
5
5
  orionis/_contracts/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -93,12 +93,12 @@ orionis/console/exceptions/cli_exception.py,sha256=HsZ_vSeNiJWQ0gznVFNcIdhM0Bj_v
93
93
  orionis/console/exceptions/cli_runtime_error.py,sha256=DaCDGu6mXBk1LIzc7cwRROw1mePAigPNASjNZHhUSBE,1154
94
94
  orionis/console/exceptions/cli_schedule_exception.py,sha256=IBbXb_5zi02pyo1laHdjGn6FYZK7WWRp4j2fkZOCT6I,1161
95
95
  orionis/console/output/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
96
- orionis/console/output/console.py,sha256=TE_Hl720ADd82dbERFSWhkoQRukDQZmETSw4nkw1fuk,18887
96
+ orionis/console/output/console.py,sha256=VMmd11WcMuxhMG0NyEw3PpkP7bOPQ3aC9aTYsNbvTyI,18889
97
97
  orionis/console/output/executor.py,sha256=bdvkzW2-buy0BPpy2r5qUGrRFW2Ay6k-5rSeHb0gQ3o,3352
98
98
  orionis/console/output/progress_bar.py,sha256=vFy582z6VJS46LV6tuyrmr9qvdVeTEtw3hyNcEHezeg,3088
99
99
  orionis/console/output/styles.py,sha256=6a4oQCOBOKMh2ARdeq5GlIskJ3wjiylYmh66tUKKmpQ,4053
100
100
  orionis/container/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
101
- orionis/container/container.py,sha256=aF0syjCUDWTmNLCkgq-GBaoyPvmAPS1hGmNmZP5kQwE,23101
101
+ orionis/container/container.py,sha256=1fGOHN_4M4YAA_6ljGHB669hY6egl_Cyb6L9EZtFK9E,23083
102
102
  orionis/container/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
103
103
  orionis/container/context/manager.py,sha256=9yODWkHBoJ2kgJZ5ONLqcEcex50vaWuMcxsvmDgnQo4,2437
104
104
  orionis/container/context/scope.py,sha256=CWFiLLTAC_IdmeFKWX-jrphdxB0_TMEVBlz6lQVMPC8,937
@@ -119,13 +119,13 @@ orionis/container/facades/facade.py,sha256=22AMMDEqfUCIj2EsGTnjTKLsnLq3QhhqpV6mp
119
119
  orionis/container/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
120
120
  orionis/container/providers/service_provider.py,sha256=9SHDzeuJbktRhrLq0zo2fZhRR4xOaYGOb2wKl7iBR4k,1923
121
121
  orionis/container/resolver/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
122
- orionis/container/resolver/resolver.py,sha256=dj0HJQZkJ0sI0gQM-K3U1XM5gJrSI335durQke-zOeY,17994
122
+ orionis/container/resolver/resolver.py,sha256=YRohopELIol-UT17xrjNN-5ndefxJ790BZqBZcLZWMM,17976
123
123
  orionis/container/validators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
124
- orionis/container/validators/implements.py,sha256=Bv1rqlDRTmIuYMNfj6NifhK6e1Sx63yY6mWKepe3DEE,3119
125
- orionis/container/validators/is_abstract_class.py,sha256=iAUDwmCqVRv5dKMz1YFjvZAKXzIHekhVmrBEcc2mXyU,1150
124
+ orionis/container/validators/implements.py,sha256=xDXK7yhG5GGGRT9Mj1UbbVrcVTgifmjFZdaAJG4Ke8o,3110
125
+ orionis/container/validators/is_abstract_class.py,sha256=vJqUPn610YZS0sEkV8c_gPZskIgWmFHjg3D3MF2OTs8,1141
126
126
  orionis/container/validators/is_callable.py,sha256=ZW-e3ljJGXbD9GUEfPNqVcyBbpVHFlfYaTf9rSmJmBk,824
127
- orionis/container/validators/is_concrete_class.py,sha256=DV5RxyVIgTVXyMV3DGiDRfR1E6RiFeEXTI4j7MCwvdc,1196
128
- orionis/container/validators/is_instance.py,sha256=TJHY6Tyl_A9gumv_u1nkYTujNT_Ng5VRiXiu7UaHEbM,980
127
+ orionis/container/validators/is_concrete_class.py,sha256=CLStCMuf40amVLvg1x0utlUz64xJnp9guc8j50J95d8,1187
128
+ orionis/container/validators/is_instance.py,sha256=IkpSyd81jTc3WnmQyrh6TmQb-4suD38h03ckhjfrI90,971
129
129
  orionis/container/validators/is_not_subclass.py,sha256=xq2NI-ZJjSAnq2C_tEOyncadY4i9vjj9Pa2MKVow3Ek,1149
130
130
  orionis/container/validators/is_subclass.py,sha256=4sBaGLoRs8nUhuWjlP0VJqyTwVHYqIVB8zXVN-bYnBI,1117
131
131
  orionis/container/validators/is_valid_alias.py,sha256=4uAYcq8xov7jZbXnpKpjNkxcZtlTNnL5RRctVPMwJes,1424
@@ -216,7 +216,7 @@ orionis/foundation/config/session/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-
216
216
  orionis/foundation/config/session/helpers/secret_key.py,sha256=yafjzQ9KVQdXzCQCMthpgizlNCo5F5UTLtAnInipUMk,447
217
217
  orionis/foundation/config/testing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
218
218
  orionis/foundation/config/testing/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
219
- orionis/foundation/config/testing/entities/testing.py,sha256=NNodhJzFSzf7q2R8S1ZHK6kV8xvqWeRxPiYQGeM1HrE,12899
219
+ orionis/foundation/config/testing/entities/testing.py,sha256=keU7dSuRv0rgaG-T4VoHFpRmpeXCTuG-Qnj9fvwVyDU,12904
220
220
  orionis/foundation/config/testing/enums/__init__.py,sha256=tCHed6wBzqHx8o3kWBGm8tZYkYOKdSAx8TvgC-Eauv0,75
221
221
  orionis/foundation/config/testing/enums/test_mode.py,sha256=IbFpauu7J-iSAfmC8jDbmTEYl8eZr-AexL-lyOh8_74,337
222
222
  orionis/foundation/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -226,92 +226,103 @@ orionis/foundation/exceptions/integrity.py,sha256=mc4pL1UMoYRHEmphnpW2oGk5URhu7D
226
226
  orionis/foundation/exceptions/value.py,sha256=hQhXybXEnaa59ba7JxG65jceHt3mnql9MyekF-TChpM,465
227
227
  orionis/foundation/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
228
228
  orionis/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
229
- orionis/metadata/framework.py,sha256=WwXxsMOnR1ryZF5yCjxxPWlrk5NcT_UXkeZh14z5upo,4960
229
+ orionis/metadata/framework.py,sha256=Il9-o4guoW_iViDjbr79Y3RVPMmate7SXbmgxmkEcOc,4960
230
230
  orionis/metadata/package.py,sha256=tqLfBRo-w1j_GN4xvzUNFyweWYFS-qhSgAEc-AmCH1M,5452
231
231
  orionis/patterns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
232
232
  orionis/patterns/singleton/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
233
233
  orionis/patterns/singleton/meta.py,sha256=YN5mSSQeIX_Gh_TK5HD-ms6IYBTRsRcuzoUtpX-9kYY,2134
234
234
  orionis/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
235
235
  orionis/services/asynchrony/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
236
- orionis/services/asynchrony/coroutines.py,sha256=IuB2vQX9A4heYjMhRNy4KpQuJwwcU8jr8n2Tww-482M,2374
236
+ orionis/services/asynchrony/coroutines.py,sha256=GkTyv-uHo-MOzwo8akwIS2HDSkTaL3CpnaRPG-4iXUY,2365
237
237
  orionis/services/asynchrony/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
238
238
  orionis/services/asynchrony/contracts/coroutines.py,sha256=Wuwp2k4HXAX-tQ3waVIT8AmzX_HeIbjliRchKIqy2k0,688
239
239
  orionis/services/asynchrony/exceptions/__init__.py,sha256=COm6RhSiuwWqy3YcJ_0gVu6XHjn5P3zVaiUp5Pw_h48,99
240
240
  orionis/services/asynchrony/exceptions/exception.py,sha256=eopQpl-2chut-iN1drBy-53EDKava1icwtcWUF4S1Cc,472
241
241
  orionis/services/environment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
242
- orionis/services/environment/dot_env.py,sha256=5jVrI7CC8V6Gc1ymlsEVxhBy4Ufd67m_7K7IpYxQiiE,10250
243
- orionis/services/environment/env.py,sha256=jbELcOGNvTslgs96j3PNisEy6967SifV3rourHnnxR4,2799
244
- orionis/services/environment/types.py,sha256=3lw1luvdligW54YPbPTHo36AZQjoQY1HHSgielbPGqA,18440
242
+ orionis/services/environment/env.py,sha256=vKx9zO2DpUK089fL17qxQ4X4tLYzN3exGAKg3d-rp3c,2272
245
243
  orionis/services/environment/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
246
244
  orionis/services/environment/contracts/env.py,sha256=7lezGxABAG63pEEvzAmHXgr9izBI6TCp05Trx_SRvc4,2054
247
245
  orionis/services/environment/contracts/types.py,sha256=n0USxUblz0Ofbo1ef0hnGHGkuGjSiWk-SBWVPXv33mE,1994
248
- orionis/services/environment/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
249
- orionis/services/environment/exceptions/environment_value_error.py,sha256=Pe1qNHRrM9T0AzESN284CzA3GQYxzokfXPMOVqOTlyQ,475
250
- orionis/services/environment/exceptions/environment_value_exception.py,sha256=NnxWmgoSca7LXi7GLDa95HSBPKotFfy8u729d1OAmCc,479
246
+ orionis/services/environment/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
247
+ orionis/services/environment/core/dot_env.py,sha256=Rz0-T-mCOXWmZaqhjQ6hWeHw3hH6RzpmVVNZH6NYCy4,10154
248
+ orionis/services/environment/dynamic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
249
+ orionis/services/environment/dynamic/types.py,sha256=nf7HJjm-1S-BH2YnuBQNNWvb3Aqu-QYPUTfJRgVYZ1Y,18336
250
+ orionis/services/environment/exceptions/__init__.py,sha256=YwLc8GsB0swlwu9T9Qt2vevaCoq5V2vmPUSlEUAqg2Q,199
251
+ orionis/services/environment/exceptions/exception.py,sha256=NnxWmgoSca7LXi7GLDa95HSBPKotFfy8u729d1OAmCc,479
252
+ orionis/services/environment/exceptions/value.py,sha256=Pe1qNHRrM9T0AzESN284CzA3GQYxzokfXPMOVqOTlyQ,475
253
+ orionis/services/environment/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
254
+ orionis/services/environment/helpers/functions.py,sha256=OtODfKCwiiJEEI55bWvhrMPN3PhwWTMMqVAeljZxbQk,616
255
+ orionis/services/formatter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
256
+ orionis/services/formatter/serializer.py,sha256=JZ_aMIDg4-8VRCF2HmzXJ91NXjh-mWqg2EWZxKoiqC4,523
257
+ orionis/services/formatter/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
258
+ orionis/services/formatter/exceptions/parser.py,sha256=wyR-OjNf17ZEKFuaw7IzcZqv-PIqPJJNGa0flQKC5Bs,3637
259
+ orionis/services/formatter/exceptions/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
260
+ orionis/services/formatter/exceptions/contracts/parser.py,sha256=HcWN7nJrvD7xLREPKEnBhyG30IkkAB7Bx_hGpcfb0ZE,912
251
261
  orionis/services/introspection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
252
- orionis/services/introspection/inspection.py,sha256=jxHaC5Q7aydCJ66WPugplB7cfHVOgyTP9zMubqyLjUo,6349
253
- orionis/services/introspection/reflection.py,sha256=_3Zns_hRFoz7pG8C3YoZWJ5P7ikzwjJi0J09WLAJIXk,11639
262
+ orionis/services/introspection/reflection.py,sha256=_Wdy8Wtt3RKXAqg9o5rvYa_Hyu-Z4674LKnNVg7u7pU,11467
254
263
  orionis/services/introspection/abstract/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
255
- orionis/services/introspection/abstract/reflection_abstract.py,sha256=SPK2X11VvGORxxPOYloaD6hPAvky--obRU4CO1DE4zM,43865
264
+ orionis/services/introspection/abstract/reflection.py,sha256=mOiWeOUUcd0LGtMXa8QxrObMBPfyCbUWxTVtkrAXdXI,43695
265
+ orionis/services/introspection/abstract/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
266
+ orionis/services/introspection/abstract/contracts/reflection.py,sha256=-ugpFcAkGTlk0Md5ft8NrvupnlfVji8QZjGYqWBxqeY,22370
256
267
  orionis/services/introspection/callables/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
257
- orionis/services/introspection/callables/reflection_callable.py,sha256=0B2B6ZV-ql_aZk97W4Q12MVvi0gwErjekgWaMBxjfV0,6147
268
+ orionis/services/introspection/callables/reflection.py,sha256=yrkZ5gnMFktC1ZhgNEGTq8_69JgXpb5rDjFcP5r-Atg,6165
269
+ orionis/services/introspection/callables/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
270
+ orionis/services/introspection/callables/contracts/reflection.py,sha256=faN4gvz46lrc3OkU7vp-vsXleKut2RXCv6I1AaGVm0U,4451
258
271
  orionis/services/introspection/concretes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
259
- orionis/services/introspection/concretes/reflection_concrete.py,sha256=3qSGwk0GGCxjSvyIJIzqyRWF1Odq-YIAkNzR_16QumY,51518
260
- orionis/services/introspection/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
261
- orionis/services/introspection/contracts/reflect_dependencies.py,sha256=5fdImZarC1ixoFM-1JSBx28RvYbY3GGZhDGjar7cvHc,1771
262
- orionis/services/introspection/contracts/reflection_abstract.py,sha256=-ugpFcAkGTlk0Md5ft8NrvupnlfVji8QZjGYqWBxqeY,22370
263
- orionis/services/introspection/contracts/reflection_concrete.py,sha256=9ZQjJpZwvlqpePErRhMGBZL2yeRtchWj0SBs1JDW-F4,25066
264
- orionis/services/introspection/contracts/reflection_instance.py,sha256=D9sH-uOSZ_E7luAfbjI_ML6kfxuO5MtvLk6037iQJ7o,20936
265
- orionis/services/introspection/contracts/reflection_module.py,sha256=YLqKg5EhaddUBrytMHX1-uz9mNsRISK1iVyG_iUiVYA,9666
272
+ orionis/services/introspection/concretes/reflection.py,sha256=d7848VWJFcFB3h8bmA7C-v7tbtsKwUEHQpPERkUa5PU,51338
273
+ orionis/services/introspection/concretes/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
274
+ orionis/services/introspection/concretes/contracts/concrete.py,sha256=vsbJqMslYQTUbHkgYqviY3vVIx_BlFznhUCprLq5djo,25057
266
275
  orionis/services/introspection/dependencies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
267
- orionis/services/introspection/dependencies/reflect_dependencies.py,sha256=OXMfWqacFM7Mo5y0zmPprP4ECHqImChDFsfzTyhqS9A,9414
276
+ orionis/services/introspection/dependencies/reflection.py,sha256=8LqJb14D38b3B8B-s_lX7TbeROd1KKse_DNr9RwLWwU,9394
277
+ orionis/services/introspection/dependencies/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
278
+ orionis/services/introspection/dependencies/contracts/reflection.py,sha256=5fdImZarC1ixoFM-1JSBx28RvYbY3GGZhDGjar7cvHc,1771
268
279
  orionis/services/introspection/dependencies/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
269
- orionis/services/introspection/dependencies/entities/callable_dependencies.py,sha256=GJPS1pO8aIhYjtYw7bEoV8WfUCn-ZPGt5mD1WvfoAxg,2198
270
- orionis/services/introspection/dependencies/entities/class_dependencies.py,sha256=pALvV_duAvDYmNp7PJYWkpIIQYmqWxuc_RGruEckfPA,2063
271
- orionis/services/introspection/dependencies/entities/method_dependencies.py,sha256=FDwroILMPhqPxaxisPVEeKeLUg57GNQ4tQfWjGMh40E,2194
272
- orionis/services/introspection/dependencies/entities/resolved_dependencies.py,sha256=0qnEj-3H8iclCc79AduQrqAAdAihv7k39gipo3RT2zc,2216
273
- orionis/services/introspection/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
274
- orionis/services/introspection/exceptions/reflection_attribute_error.py,sha256=_JerTjfhikYwC2FKJV8XbVZqiZdLcBt7WGtw8r6vkqo,473
275
- orionis/services/introspection/exceptions/reflection_type_error.py,sha256=73DB8JoTbxd7LNMnZKXf4jJ8OzLyC0HPXgDo5pffkYY,466
276
- orionis/services/introspection/exceptions/reflection_value_error.py,sha256=ywO_cwawEmB22uP3i4ofsZytO9QTbvy7axm9NzEfHr4,467
280
+ orionis/services/introspection/dependencies/entities/callable_dependencies.py,sha256=mv-nb0xPnJfRdxkLqj6MuHvcrcOMd0WEWPv-nF4aErE,2176
281
+ orionis/services/introspection/dependencies/entities/class_dependencies.py,sha256=MMQW9p1jspDllPF9rjMihUY_a1Z2GH-mYZUFGnnsxvc,2041
282
+ orionis/services/introspection/dependencies/entities/method_dependencies.py,sha256=-8fMJD1LUNP7T8x-db0a92rjXm_VEvWq6x4xglLy_n8,2172
283
+ orionis/services/introspection/dependencies/entities/resolved_dependencies.py,sha256=Q8EqpBkO7PHDM_y7h8pKK-TXWFOQWZem4BYdUdTrGr8,2192
284
+ orionis/services/introspection/exceptions/__init__.py,sha256=oe7uzaGwjeMgz62ZTeNn6ersCApOVv3PXFlUw0vYLQM,234
285
+ orionis/services/introspection/exceptions/attribute.py,sha256=_JerTjfhikYwC2FKJV8XbVZqiZdLcBt7WGtw8r6vkqo,473
286
+ orionis/services/introspection/exceptions/type.py,sha256=73DB8JoTbxd7LNMnZKXf4jJ8OzLyC0HPXgDo5pffkYY,466
287
+ orionis/services/introspection/exceptions/value.py,sha256=ywO_cwawEmB22uP3i4ofsZytO9QTbvy7axm9NzEfHr4,467
277
288
  orionis/services/introspection/instances/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
278
- orionis/services/introspection/instances/reflection_instance.py,sha256=xQQ4fNW24_OUQMPmhyJNCy-EyhzWSDH1umz7_yvQzjA,54945
289
+ orionis/services/introspection/instances/reflection.py,sha256=bdgVPlLOKNXb1rm5tDgK6Iz5EN2MufcLB1PohVCpUzE,54776
290
+ orionis/services/introspection/instances/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
291
+ orionis/services/introspection/instances/contracts/reflection.py,sha256=D9sH-uOSZ_E7luAfbjI_ML6kfxuO5MtvLk6037iQJ7o,20936
279
292
  orionis/services/introspection/modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
280
- orionis/services/introspection/modules/reflection_module.py,sha256=1QB_853_ct5ehDNSxNQaaJDCeY9eXciXJwRYkNHgYd4,15632
293
+ orionis/services/introspection/modules/reflection.py,sha256=I-8lMA_9ebBJo33MuZe4M0aymCKBojIj-IRuE9fO1Go,15549
294
+ orionis/services/introspection/modules/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
295
+ orionis/services/introspection/modules/contracts/reflection.py,sha256=YLqKg5EhaddUBrytMHX1-uz9mNsRISK1iVyG_iUiVYA,9666
296
+ orionis/services/introspection/objects/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
297
+ orionis/services/introspection/objects/types.py,sha256=vNKWc2b7K-X7B2X8RCimgAWQqbQlVT-aL24nUB8t_yQ,6343
281
298
  orionis/services/log/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
282
299
  orionis/services/log/log_service.py,sha256=jnKIeTxy4p16SfKYYLpJ1p1CqAqpF1BIp7IBSOdSuJY,8295
283
- orionis/services/parsers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
284
- orionis/services/parsers/serializer.py,sha256=mxWlzqgkoO7EeIr3MZ5gdzQUuSfjqWDMau85PEqlBQY,531
285
- orionis/services/parsers/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
286
- orionis/services/parsers/contracts/exception_parser.py,sha256=HcWN7nJrvD7xLREPKEnBhyG30IkkAB7Bx_hGpcfb0ZE,912
287
- orionis/services/parsers/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
288
- orionis/services/parsers/exceptions/exception_parser.py,sha256=hKL2-ZzZvC_nuRB0KrdoIzOy_n-hR26jFYABNPnQrwo,3634
289
300
  orionis/services/paths/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
290
- orionis/services/paths/resolver.py,sha256=Qx_A95FRnnFnjko5XerfrBxOU1j-K8ym1S1J0OWr2RU,3065
301
+ orionis/services/paths/resolver.py,sha256=TZC7tp8zIKqJAOnk03jm7sQz_MX9sgJAJBLSjVA4Bo4,2991
291
302
  orionis/services/paths/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
292
303
  orionis/services/paths/contracts/resolver.py,sha256=v7uTgByE2nQS2ZM_b1rtMzY6HH03MNKfAYQoTswPf9o,1627
293
- orionis/services/paths/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
294
- orionis/services/paths/exceptions/not_found_exceptions.py,sha256=bsK0QoXwRFyDeHvITxwmgaBuwiO2eoRUhRzNizmX1No,475
295
- orionis/services/paths/exceptions/path_value_exceptions.py,sha256=cK-TbUT02X2lvbAP4yFdfHx4S45wBOcYl3_tiWd67UM,472
304
+ orionis/services/paths/exceptions/__init__.py,sha256=r5b4D4XWNK07zLtqaXBk_PNYszScqbp_8kUN37cOk4E,184
305
+ orionis/services/paths/exceptions/exception.py,sha256=cK-TbUT02X2lvbAP4yFdfHx4S45wBOcYl3_tiWd67UM,472
306
+ orionis/services/paths/exceptions/file.py,sha256=bsK0QoXwRFyDeHvITxwmgaBuwiO2eoRUhRzNizmX1No,475
296
307
  orionis/services/system/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
297
308
  orionis/services/system/imports.py,sha256=5j2Rkf6vMLnCQjqcox4-0y0tZoxgPfv7EP8eruG7vnA,4990
298
- orionis/services/system/runtime_imports.py,sha256=eWp_MmrvxWHl-lsNO0M5FC9OsCcY1BXsiJTlPk0cfRU,2550
299
309
  orionis/services/system/workers.py,sha256=1HJCLHEJ7VcQZ4dqs0lYLVafEzvowLRdLvKffV1fewA,1877
300
310
  orionis/services/system/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
301
311
  orionis/services/system/contracts/imports.py,sha256=nE2fDS2bDbwltHCmzOsEMhUymYy092zoGX-NOXLE4J4,1167
302
312
  orionis/services/system/contracts/workers.py,sha256=aZfQlij6mkPM2TcodDai7JYpTFNKL4YFAEj8Bd9Y4nw,707
313
+ orionis/services/system/runtime/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
314
+ orionis/services/system/runtime/imports.py,sha256=eWp_MmrvxWHl-lsNO0M5FC9OsCcY1BXsiJTlPk0cfRU,2550
303
315
  orionis/support/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
304
316
  orionis/support/standard/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
305
- orionis/support/standard/std.py,sha256=_EtIoAxKImQto6Le7RYzuEI6wh2PuoF5C50Rrhrv5Zw,3699
317
+ orionis/support/standard/std.py,sha256=afe3m7XzzzbFa89RhPVN11LKcgkL3afQHNXHhH3GwjQ,3679
306
318
  orionis/support/standard/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
307
319
  orionis/support/standard/contracts/std.py,sha256=w4F0fIHIOhCPPiBgTLIIWR9EFdjeTjLsDktiLaUgmj8,3108
308
- orionis/support/standard/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
309
- orionis/support/standard/exceptions/std_value_exception.py,sha256=7xry_TZz3k-BLAZTR_uDiQ0RfXOkSBOnBzp9kKUl5xE,471
310
- orionis/support/wrapper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
311
- orionis/support/wrapper/dicts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
312
- orionis/support/wrapper/dicts/dot_dict.py,sha256=VdAUH-DO6y86pl_9N6v-vU9mdLraWh5HjVzI5iC1dMs,5295
320
+ orionis/support/standard/exceptions/__init__.py,sha256=MPwL4i8GSUtLJ82wQ_SlcdgtnIBRk3_CR7JbDhxHf20,93
321
+ orionis/support/standard/exceptions/value.py,sha256=7xry_TZz3k-BLAZTR_uDiQ0RfXOkSBOnBzp9kKUl5xE,471
322
+ orionis/support/wrapper/__init__.py,sha256=jGoWoIGYuRYqMYQKlrX7Dpcbg-AGkHoB_aM2xhu73yc,62
323
+ orionis/support/wrapper/dot_dict.py,sha256=VdAUH-DO6y86pl_9N6v-vU9mdLraWh5HjVzI5iC1dMs,5295
313
324
  orionis/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
314
- orionis/test/test_suite.py,sha256=2lfaE3gPT5IG18p1GPtAZpEWCaPprcYLWJmdHux01sc,5969
325
+ orionis/test/test_suite.py,sha256=ndRyRd_EQtvrYXjsQCTkV8Ebi4JwzjItGOWENv1RvMI,5946
315
326
  orionis/test/cases/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
316
327
  orionis/test/cases/test_async.py,sha256=YwycimGfUx9-kd_FFO8BZXyVayYwOBOzxbu3WZU_l5s,1927
317
328
  orionis/test/cases/test_case.py,sha256=GVN3cxYuE47uPOEqFUiMreLdXjTyqzHjjxfyEM5_D4w,1446
@@ -320,28 +331,28 @@ orionis/test/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3
320
331
  orionis/test/contracts/dumper.py,sha256=5OqGc4GEXCXX76sCX185giQMyKwwZvlOv3I7tTwV2fQ,1324
321
332
  orionis/test/contracts/history.py,sha256=v3vjWmvn73DF_C8Ur-aWdHUMrztX584mXKwYgsYQgCE,1435
322
333
  orionis/test/contracts/printer.py,sha256=FcTii6uglVIfvsgbmG0lj3hv1RGmDWuDo0eo4Z8rMbQ,6014
323
- orionis/test/contracts/test_unit.py,sha256=A22uLMbJXEh1Hi7ET7-RpnSGtzHhFYEc94MwmAexzc8,7781
334
+ orionis/test/contracts/unit_test.py,sha256=oT2ibX1iVSK2g0ZZmvnfcST2M0VCKUKjFuR1QM_0CGQ,7786
335
+ orionis/test/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
336
+ orionis/test/core/unit_test.py,sha256=uzf_t8B6yD5KZIjw5_g4dGGqRWHC4YsGK3NdHqqOsHk,52208
324
337
  orionis/test/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
325
- orionis/test/entities/test_result.py,sha256=hz_0NXX5lSVSf4OWhHktrn1kFD43WiL5HugNuHvYRtg,3035
326
- orionis/test/enums/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
327
- orionis/test/enums/test_mode.py,sha256=CHstYZ180MEX84AjZIoyA1l8gKxFLp_eciLOj2in57E,481
328
- orionis/test/enums/test_status.py,sha256=vNKRmp1lud_ZGTayf3A8wO_0vEYdFABy_oMw-RcEc1c,673
329
- orionis/test/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
330
- orionis/test/exceptions/test_config_exception.py,sha256=GCiS4Fja80tx9L-qlv2lV_1viMsSqqNWzYo2KxXaGLI,473
331
- orionis/test/exceptions/test_failure_exception.py,sha256=Rf7xHsQ-fSiFg4NmpwDLbFo525DL9ecA3BxTQRiOfD8,1652
332
- orionis/test/exceptions/test_persistence_error.py,sha256=yFgSmgEWM0VJkPuZNO7vm8f_U3oe42FBsCtMFexuks8,474
333
- orionis/test/exceptions/test_runtime_error.py,sha256=YL9cAjhm1gf4wkOXCY_pZPMDPb4Nm9jS1JH038EAZpA,470
334
- orionis/test/exceptions/test_value_error.py,sha256=r3tVWTE3gNp7of2gXk71NN-VYoAlOpB0kulw0LOJ9mI,466
338
+ orionis/test/entities/test_result.py,sha256=8HRLg32bRLZX8NWgsGimJbSG8aX6n0VpbUEG57ClTGo,3023
339
+ orionis/test/enums/__init__.py,sha256=p7eC1AY5vKUHmLpL6ZLmN15faPCsNF0F-vHjA7PP0Ro,131
340
+ orionis/test/enums/execution_mode.py,sha256=CHstYZ180MEX84AjZIoyA1l8gKxFLp_eciLOj2in57E,481
341
+ orionis/test/enums/status.py,sha256=vNKRmp1lud_ZGTayf3A8wO_0vEYdFABy_oMw-RcEc1c,673
342
+ orionis/test/exceptions/__init__.py,sha256=HcFudBMqi86hzgxEyNhh29hNMOle4KZmKosJRqX5ayc,424
343
+ orionis/test/exceptions/config.py,sha256=GCiS4Fja80tx9L-qlv2lV_1viMsSqqNWzYo2KxXaGLI,473
344
+ orionis/test/exceptions/failure.py,sha256=Rf7xHsQ-fSiFg4NmpwDLbFo525DL9ecA3BxTQRiOfD8,1652
345
+ orionis/test/exceptions/persistence.py,sha256=yFgSmgEWM0VJkPuZNO7vm8f_U3oe42FBsCtMFexuks8,474
346
+ orionis/test/exceptions/runtime.py,sha256=YL9cAjhm1gf4wkOXCY_pZPMDPb4Nm9jS1JH038EAZpA,470
347
+ orionis/test/exceptions/value.py,sha256=r3tVWTE3gNp7of2gXk71NN-VYoAlOpB0kulw0LOJ9mI,466
335
348
  orionis/test/logs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
336
- orionis/test/logs/history.py,sha256=eAEPWpubs1fFzL-0o8K82hd2lC0S98VOu1AEblCmjYI,13144
349
+ orionis/test/logs/history.py,sha256=JIH_jiCpYkGblKY439ro7aBTeo4772QxDxOTflmsc-w,13068
337
350
  orionis/test/output/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
338
- orionis/test/output/dumper.py,sha256=q1_S5AYMce01ukPkEJ73gQT7gyLBK5XA1NyOeVINQMI,4280
339
- orionis/test/output/printer.py,sha256=I7hkZ5z1VQkt1TowWyxfARb1ODYLSpHDX3fzrxMPBzg,16959
340
- orionis/test/suite/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
341
- orionis/test/suite/test_unit.py,sha256=wUn2WBv3HoO3Fv2sYD-mpUcA8E9g7nZVpSWHUzicjRM,52370
351
+ orionis/test/output/dumper.py,sha256=gAdjs-UWOrQB8PQTCzbPKcmIXRPlA4aEaj1WAG-Xiz4,4269
352
+ orionis/test/output/printer.py,sha256=WGjGW2lgu_l5wWJ6Z8qTTV7NAObhoTBcvhM1TcNvwU4,16938
342
353
  orionis/test/view/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
343
354
  orionis/test/view/render.py,sha256=jXZkbITBknbUwm_mD8bcTiwLDvsFkrO9qrf0ZgPwqxc,4903
344
- orionis-0.362.0.dist-info/licenses/LICENCE,sha256=-_4cF2EBKuYVS_SQpy1uapq0oJPUU1vl_RUWSy2jJTo,1111
355
+ orionis-0.363.0.dist-info/licenses/LICENCE,sha256=-_4cF2EBKuYVS_SQpy1uapq0oJPUU1vl_RUWSy2jJTo,1111
345
356
  tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
346
357
  tests/example/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
347
358
  tests/example/test_example.py,sha256=kvWgiW3ADEZf718dGsMPtDh_rmOSx1ypEInKm7_6ZPQ,601
@@ -395,7 +406,7 @@ tests/foundation/config/session/test_foundation_config_session.py,sha256=rha4p_-
395
406
  tests/foundation/config/startup/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
396
407
  tests/foundation/config/startup/test_foundation_config_startup.py,sha256=yKlXr1ICUfFw9arg4kE0yWVuZyoN1s-3fQMJtx6nXlg,6769
397
408
  tests/foundation/config/testing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
398
- tests/foundation/config/testing/test_foundation_config_testing.py,sha256=hQFHvkxtSFGb_CvH_D1Zxd_vS0Af46NrxY2NNHLN58Q,8209
409
+ tests/foundation/config/testing/test_foundation_config_testing.py,sha256=kWt18PSKNkU9NWPdJutoJcNj3hhLy9uMVORVxsovJog,8214
399
410
  tests/foundation/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
400
411
  tests/foundation/exceptions/test_foundation_config_exceptions.py,sha256=ESxCIIting2ZEDDz0xfN83Gl7KAOrjmfHM6M8mkuG8M,4079
401
412
  tests/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -406,44 +417,44 @@ tests/patterns/singleton/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
406
417
  tests/patterns/singleton/test_patterns_singleton.py,sha256=nExpNHQyqph5lNMlUEVCzdMky-qQda4yZuVQQGlRiD0,945
407
418
  tests/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
408
419
  tests/services/asynchrony/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
409
- tests/services/asynchrony/test_services_asynchrony_coroutine.py,sha256=YF3piWpSuKCCBJEoxgMHIVpEZIYshSh7-zdHPuTYUqQ,1647
420
+ tests/services/asynchrony/test_services_asynchrony_coroutine.py,sha256=BoEMVoP4aRZQmzbvE4E0ke1tNvONrTlxdVN0r6Inf0U,1637
410
421
  tests/services/environment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
411
422
  tests/services/environment/test_services_environment.py,sha256=fdkjwbY-aDEA1FT-9vBT5ihwaCdg_-UgAx--kQXFPGA,3745
412
423
  tests/services/inspection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
413
424
  tests/services/inspection/test_reflection.py,sha256=ZApQeaDxYLsrfGN6UqEDPbyNzocMV9CURflQ35YMfqk,13678
414
425
  tests/services/inspection/dependencies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
415
- tests/services/inspection/dependencies/test_reflect_dependencies.py,sha256=s_P4ST_dmjzRKmUL4bPFs-oR-Mf5PENGmYk56WiGO9g,7388
426
+ tests/services/inspection/dependencies/test_reflect_dependencies.py,sha256=2VlOFX7AZW_HCyuNhYGm4OBDofh80lo_qyVKIu5oxmc,7378
416
427
  tests/services/inspection/dependencies/mocks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
417
428
  tests/services/inspection/dependencies/mocks/mock_user.py,sha256=RxATxe0-Vm4HfX5jKz9Tny42E2fmrdtEN6ZEntbqRL8,912
418
429
  tests/services/inspection/dependencies/mocks/mock_user_controller.py,sha256=P3sOUXVZ55auudwiNtvNCEQuTz0cgAZjvhicLZ4xaz4,1208
419
430
  tests/services/inspection/dependencies/mocks/mock_users_permissions.py,sha256=oENXbS2qmQUudYSmnhB8fgHBqXZdbplplB-Y2nbx4hw,1388
420
431
  tests/services/inspection/reflection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
421
- tests/services/inspection/reflection/test_reflection_abstract.py,sha256=MbGDfCDkfj8wVJcyAlwV6na98JLzbGaYa3QjXR1alL8,27395
422
- tests/services/inspection/reflection/test_reflection_callable.py,sha256=ZcZ1_v4Nv22gIleflCRzE0Kfwy5Kjj8XjZ9Z1cKdXt8,6855
423
- tests/services/inspection/reflection/test_reflection_concrete.py,sha256=5-iQh1whfpBa47jBWwtg-MIk6ysg92my5J9JdrTBm5E,44622
424
- tests/services/inspection/reflection/test_reflection_instance.py,sha256=ZCFTLY_KtLAIq58PuDWak-T1c2PcCKiwTOdI9EDubww,46281
425
- tests/services/inspection/reflection/test_reflection_module.py,sha256=Cl-3kWoJMQ2ufOO4VP6M28Tk6kmY4OhVEoW_b0wqw7Y,19849
432
+ tests/services/inspection/reflection/test_reflection_abstract.py,sha256=zDzbHcfeyXgd-2qXcd3GHQ8AXQZO7NnLuE1jROfZDmA,27386
433
+ tests/services/inspection/reflection/test_reflection_callable.py,sha256=AvPn-qLv9oIqTaaoWjMA05IN4wDiqIfh1-Tv4t0Z6dQ,6824
434
+ tests/services/inspection/reflection/test_reflection_concrete.py,sha256=rmXBqVvtI9OvLaQkYyqo6fkBSCUC8c83Eq2PNomBJqE,44613
435
+ tests/services/inspection/reflection/test_reflection_instance.py,sha256=Gnmo-xGIed6_IJG3pALIcuWI60L7QbVlvmWwMFkI5tg,46272
436
+ tests/services/inspection/reflection/test_reflection_module.py,sha256=0T7sd9WSmFwf1bWgC51J9Tgl6Z-5zu7Pza5BNY4TYdg,19743
426
437
  tests/services/inspection/reflection/mock/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
427
438
  tests/services/inspection/reflection/mock/fake_reflect_instance.py,sha256=iqWoT6tNym3OijK0wcF0iKMp3HTlq5kAoztzC4fdTlM,18595
428
439
  tests/services/parsers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
429
- tests/services/parsers/test_services_parser_exceptions.py,sha256=fCi_nUsXSh80r7HzQibXbUuYMpqjBefsP-QPF76MLfM,2650
440
+ tests/services/parsers/test_services_parser_exceptions.py,sha256=A-b4XeQDprvdHB27K3yIc6DMfvxye1sY1kOxfOMSx68,2652
430
441
  tests/services/parsers/mocks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
431
442
  tests/services/parsers/mocks/mock_custom_error.py,sha256=LWgjeog2rpmfw6j7Bgzvfvmeby8uSBuB1B3d_DgRcFQ,752
432
443
  tests/services/path/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
433
- tests/services/path/test_services_resolver.py,sha256=ny6vyx_psF9iWXyMhqI95SJs84_dD1NIOXt0k1MfBQA,3902
444
+ tests/services/path/test_services_resolver.py,sha256=_KvfY3GefauHwfbLlfpRf0fdDRKFl1We7Dip7y9xD-4,3881
434
445
  tests/services/system/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
435
446
  tests/services/system/test_services_system_imports.py,sha256=dqNFspZCVHIupSV9u7mGCUlyJImmExURp-p0PhwpvRI,2945
436
447
  tests/services/system/test_services_system_workers.py,sha256=g9Nq0V-xmrLAl089Nz3t7xEjeSJxNaplAt_KgzMqJ5o,3002
437
448
  tests/support/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
438
449
  tests/support/standard/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
439
- tests/support/standard/test_services_std.py,sha256=jRL3QbfbDaMH2Qs9W6tmMgzM-fhrVqOUnD-JeMAK0uA,5515
450
+ tests/support/standard/test_services_std.py,sha256=jR1A_4uAhFYkt0DxC3WX899gWyXHKDf-L7hNjM4CbA8,5495
440
451
  tests/support/wrapper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
441
- tests/support/wrapper/test_services_wrapper_docdict.py,sha256=yeVwl-VcwkWSQYyxZu3qfqT7YtP8LIEJgHo2ejzISh0,4984
452
+ tests/support/wrapper/test_services_wrapper_docdict.py,sha256=hIVqGt19vbW22xPjQSmbUvLw5eeKyQImZ2KhR59WrRg,4969
442
453
  tests/testing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
443
- tests/testing/test_testing_result.py,sha256=MrGK3ZimedL0b5Ydu69Dg8Iul017AzLTm7VPxpXlpfU,4315
444
- tests/testing/test_testing_unit.py,sha256=DjLBtvVn8B1KlVJNNkstBT8_csA1yeaMqnGrbanN_J4,7438
445
- orionis-0.362.0.dist-info/METADATA,sha256=fZSD0E7ZpO9NzgALYDKm381Ynzl7sz-sm0hLRN97-W8,4772
446
- orionis-0.362.0.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
447
- orionis-0.362.0.dist-info/top_level.txt,sha256=2bdoHgyGZhOtLAXS6Om8OCTmL24dUMC_L1quMe_ETbk,14
448
- orionis-0.362.0.dist-info/zip-safe,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
449
- orionis-0.362.0.dist-info/RECORD,,
454
+ tests/testing/test_testing_result.py,sha256=1O_8xjsFPnzwZOpLT6ImqjO9HY5_jIgP7DTVBsgHvQA,4335
455
+ tests/testing/test_testing_unit.py,sha256=S3anwYcF2DBWYh_UfqKcZq2FgNpQjP0SfYVRd5sD5rI,7442
456
+ orionis-0.363.0.dist-info/METADATA,sha256=A1dW0IZuTmo_ooacK7b-9UUvsXGGfPxBPaLIoxJAK_g,4772
457
+ orionis-0.363.0.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
458
+ orionis-0.363.0.dist-info/top_level.txt,sha256=2bdoHgyGZhOtLAXS6Om8OCTmL24dUMC_L1quMe_ETbk,14
459
+ orionis-0.363.0.dist-info/zip-safe,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
460
+ orionis-0.363.0.dist-info/RECORD,,
@@ -1,6 +1,6 @@
1
1
  from orionis.foundation.config.testing.entities.testing import Testing
2
2
  from orionis.foundation.exceptions.integrity import OrionisIntegrityException
3
- from orionis.test.enums.test_mode import ExecutionMode
3
+ from orionis.test.enums.execution_mode import ExecutionMode
4
4
  from orionis.unittesting import TestCase
5
5
 
6
6
  class TestFoundationConfigTesting(TestCase):
@@ -1,6 +1,6 @@
1
1
 
2
2
  from orionis.services.asynchrony.coroutines import Coroutine
3
- from orionis.services.asynchrony.exceptions.exception import OrionisCoroutineException
3
+ from orionis.services.asynchrony.exceptions import OrionisCoroutineException
4
4
  from orionis.unittesting import TestCase
5
5
 
6
6
  class TestServicesAsynchronyCoroutine(TestCase):
@@ -1,6 +1,6 @@
1
1
  import asyncio
2
2
  from orionis.services.introspection.dependencies.entities.callable_dependencies import CallableDependency
3
- from orionis.services.introspection.dependencies.reflect_dependencies import (
3
+ from orionis.services.introspection.dependencies.reflection import (
4
4
  ReflectDependencies,
5
5
  ClassDependency,
6
6
  MethodDependency,
@@ -1,4 +1,4 @@
1
- from orionis.services.introspection.abstract.reflection_abstract import ReflectionAbstract
1
+ from orionis.services.introspection.abstract.reflection import ReflectionAbstract
2
2
  from orionis.services.introspection.dependencies.entities.class_dependencies import ClassDependency
3
3
  from tests.services.inspection.reflection.mock.fake_reflect_instance import AbstractFakeClass
4
4
  from orionis.unittesting import TestCase
@@ -1,7 +1,7 @@
1
- from orionis.services.introspection.callables.reflection_callable import ReflectionCallable
1
+ from orionis.services.introspection.callables.reflection import ReflectionCallable
2
2
  from orionis.services.introspection.dependencies.entities.callable_dependencies import CallableDependency
3
3
  from orionis.unittesting import TestCase
4
- from orionis.services.introspection.exceptions.reflection_type_error import ReflectionTypeError
4
+ from orionis.services.introspection.exceptions import ReflectionTypeError
5
5
 
6
6
  class TestReflectionCallable(TestCase):
7
7
 
@@ -1,4 +1,4 @@
1
- from orionis.services.introspection.concretes.reflection_concrete import ReflectionConcrete
1
+ from orionis.services.introspection.concretes.reflection import ReflectionConcrete
2
2
  from orionis.services.introspection.dependencies.entities.class_dependencies import ClassDependency
3
3
  from tests.services.inspection.reflection.mock.fake_reflect_instance import FakeClass
4
4
  from orionis.unittesting import TestCase
@@ -1,6 +1,6 @@
1
1
  from orionis.services.introspection.dependencies.entities.class_dependencies import ClassDependency
2
2
  from tests.services.inspection.reflection.mock.fake_reflect_instance import FakeClass
3
- from orionis.services.introspection.instances.reflection_instance import ReflectionInstance
3
+ from orionis.services.introspection.instances.reflection import ReflectionInstance
4
4
  from orionis.unittesting import TestCase
5
5
 
6
6
  class TestServiceReflectionInstance(TestCase):
@@ -1,7 +1,6 @@
1
1
  from orionis.unittesting import TestCase
2
- from orionis.services.introspection.modules.reflection_module import ReflectionModule
3
- from orionis.services.introspection.exceptions.reflection_type_error import ReflectionTypeError
4
- from orionis.services.introspection.exceptions.reflection_value_error import ReflectionValueError
2
+ from orionis.services.introspection.modules.reflection import ReflectionModule
3
+ from orionis.services.introspection.exceptions import ReflectionTypeError, ReflectionValueError
5
4
 
6
5
  class TestServiceReflectionModule(TestCase):
7
6
 
@@ -1,4 +1,4 @@
1
- from orionis.services.parsers.serializer import Parser
1
+ from orionis.services.formatter.serializer import Parser
2
2
  from orionis.unittesting import TestCase
3
3
  from tests.services.parsers.mocks.mock_custom_error import CustomError
4
4
 
@@ -1,7 +1,7 @@
1
1
  import os
2
2
  import tempfile
3
3
  from pathlib import Path
4
- from orionis.services.paths.exceptions.not_found_exceptions import OrionisFileNotFoundException
4
+ from orionis.services.paths.exceptions import OrionisFileNotFoundException
5
5
  from orionis.services.paths.resolver import Resolver
6
6
  from orionis.unittesting import TestCase
7
7
 
@@ -1,4 +1,4 @@
1
- from orionis.support.standard.exceptions.std_value_exception import OrionisStdValueException
1
+ from orionis.support.standard.exceptions import OrionisStdValueException
2
2
  from orionis.support.standard.std import StdClass
3
3
  from orionis.unittesting import TestCase
4
4
 
@@ -1,4 +1,4 @@
1
- from orionis.support.wrapper.dicts.dot_dict import DotDict
1
+ from orionis.support.wrapper import DotDict
2
2
  from orionis.unittesting import TestCase
3
3
 
4
4
  class TestSupportWrapperDocDict(TestCase):
@@ -1,4 +1,8 @@
1
- from orionis.unittesting import TestCase, TestResult, TestStatus
1
+ from orionis.unittesting import (
2
+ TestCase,
3
+ TestResult,
4
+ TestStatus
5
+ )
2
6
 
3
7
  class TestTestingResult(TestCase):
4
8
 
@@ -1,5 +1,13 @@
1
- from orionis.test.cases.test_case import TestCase
2
- from orionis.unittesting import UnitTest, ExecutionMode, TestLoader, StandardTestSuite, patch, MagicMock, StandardTestResult
1
+ from orionis.unittesting import (
2
+ TestCase,
3
+ UnitTest,
4
+ ExecutionMode,
5
+ TestLoader,
6
+ StandardTestSuite,
7
+ patch,
8
+ MagicMock,
9
+ StandardTestResult
10
+ )
3
11
 
4
12
  class TestTestingUnit(TestCase):
5
13
 
File without changes
File without changes