orionis 0.545.0__py3-none-any.whl → 0.547.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 (162) hide show
  1. orionis/console/base/scheduler_event_listener.py +0 -17
  2. orionis/console/contracts/schedule_event_listener.py +0 -18
  3. orionis/console/request/cli_request.py +2 -2
  4. orionis/foundation/config/app/entities/app.py +3 -2
  5. orionis/foundation/config/app/enums/ciphers.py +5 -19
  6. orionis/foundation/config/session/entities/session.py +2 -2
  7. orionis/foundation/providers/cli_request_provider.py +44 -0
  8. orionis/metadata/framework.py +1 -1
  9. orionis/services/encrypter/encrypter.py +115 -0
  10. orionis/services/environment/dynamic/caster.py +35 -27
  11. orionis/services/environment/key/key_generator.py +32 -11
  12. {orionis-0.545.0.dist-info → orionis-0.547.0.dist-info}/METADATA +1 -1
  13. {orionis-0.545.0.dist-info → orionis-0.547.0.dist-info}/RECORD +17 -160
  14. {orionis-0.545.0.dist-info → orionis-0.547.0.dist-info}/top_level.txt +0 -1
  15. tests/container/__init__.py +0 -0
  16. tests/container/context/__init__.py +0 -0
  17. tests/container/context/test_manager.py +0 -38
  18. tests/container/context/test_scope.py +0 -32
  19. tests/container/core/__init__.py +0 -0
  20. tests/container/core/test_advanced_async.py +0 -234
  21. tests/container/core/test_async_optimizations.py +0 -268
  22. tests/container/core/test_container.py +0 -453
  23. tests/container/core/test_singleton.py +0 -122
  24. tests/container/core/test_thread_safety.py +0 -90
  25. tests/container/entities/__init__.py +0 -0
  26. tests/container/entities/test_binding.py +0 -242
  27. tests/container/enums/__init__.py +0 -0
  28. tests/container/enums/test_lifetimes.py +0 -97
  29. tests/container/facades/__init__.py +0 -0
  30. tests/container/facades/test_facade.py +0 -78
  31. tests/container/mocks/__init__.py +0 -0
  32. tests/container/mocks/mock_advanced_async.py +0 -332
  33. tests/container/mocks/mock_async_optimizations.py +0 -407
  34. tests/container/mocks/mock_auto_resolution.py +0 -192
  35. tests/container/mocks/mock_complex_classes.py +0 -792
  36. tests/container/mocks/mock_simple_classes.py +0 -98
  37. tests/container/providers/__init__.py +0 -0
  38. tests/container/providers/test_providers.py +0 -55
  39. tests/container/validators/__init__.py +0 -0
  40. tests/container/validators/test_implements.py +0 -186
  41. tests/container/validators/test_is_abstract_class.py +0 -147
  42. tests/container/validators/test_is_callable.py +0 -102
  43. tests/container/validators/test_is_concrete_class.py +0 -160
  44. tests/container/validators/test_is_instance.py +0 -150
  45. tests/container/validators/test_is_not_subclass.py +0 -49
  46. tests/container/validators/test_is_subclass.py +0 -178
  47. tests/container/validators/test_is_valid_alias.py +0 -147
  48. tests/container/validators/test_lifetime.py +0 -106
  49. tests/example/__init__.py +0 -0
  50. tests/example/test_example.py +0 -725
  51. tests/foundation/__init__.py +0 -0
  52. tests/foundation/config/__init__.py +0 -0
  53. tests/foundation/config/app/__init__.py +0 -0
  54. tests/foundation/config/app/test_foundation_config_app.py +0 -262
  55. tests/foundation/config/auth/__init__.py +0 -0
  56. tests/foundation/config/auth/test_foundation_config_auth.py +0 -29
  57. tests/foundation/config/cache/__init__.py +0 -0
  58. tests/foundation/config/cache/test_foundation_config_cache.py +0 -143
  59. tests/foundation/config/cache/test_foundation_config_cache_file.py +0 -126
  60. tests/foundation/config/cache/test_foundation_config_cache_stores.py +0 -156
  61. tests/foundation/config/cors/__init__.py +0 -0
  62. tests/foundation/config/cors/test_foundation_config_cors.py +0 -190
  63. tests/foundation/config/database/__init__.py +0 -0
  64. tests/foundation/config/database/test_foundation_config_database.py +0 -158
  65. tests/foundation/config/database/test_foundation_config_database_connections.py +0 -203
  66. tests/foundation/config/database/test_foundation_config_database_mysql.py +0 -354
  67. tests/foundation/config/database/test_foundation_config_database_oracle.py +0 -288
  68. tests/foundation/config/database/test_foundation_config_database_pgsql.py +0 -257
  69. tests/foundation/config/database/test_foundation_config_database_sqlite.py +0 -207
  70. tests/foundation/config/filesystems/__init__.py +0 -0
  71. tests/foundation/config/filesystems/test_foundation_config_filesystems.py +0 -160
  72. tests/foundation/config/filesystems/test_foundation_config_filesystems_aws.py +0 -189
  73. tests/foundation/config/filesystems/test_foundation_config_filesystems_disks.py +0 -184
  74. tests/foundation/config/filesystems/test_foundation_config_filesystems_local.py +0 -143
  75. tests/foundation/config/filesystems/test_foundation_config_filesystems_public.py +0 -184
  76. tests/foundation/config/logging/__init__.py +0 -0
  77. tests/foundation/config/logging/test_foundation_config_logging.py +0 -112
  78. tests/foundation/config/logging/test_foundation_config_logging_channels.py +0 -246
  79. tests/foundation/config/logging/test_foundation_config_logging_chunked.py +0 -217
  80. tests/foundation/config/logging/test_foundation_config_logging_daily.py +0 -220
  81. tests/foundation/config/logging/test_foundation_config_logging_hourly.py +0 -196
  82. tests/foundation/config/logging/test_foundation_config_logging_monthly.py +0 -214
  83. tests/foundation/config/logging/test_foundation_config_logging_stack.py +0 -178
  84. tests/foundation/config/logging/test_foundation_config_logging_weekly.py +0 -224
  85. tests/foundation/config/mail/__init__.py +0 -0
  86. tests/foundation/config/mail/test_foundation_config_mail.py +0 -145
  87. tests/foundation/config/mail/test_foundation_config_mail_file.py +0 -97
  88. tests/foundation/config/mail/test_foundation_config_mail_mailers.py +0 -106
  89. tests/foundation/config/mail/test_foundation_config_mail_smtp.py +0 -146
  90. tests/foundation/config/queue/__init__.py +0 -0
  91. tests/foundation/config/queue/test_foundation_config_queue.py +0 -88
  92. tests/foundation/config/queue/test_foundation_config_queue_brokers.py +0 -72
  93. tests/foundation/config/queue/test_foundation_config_queue_database.py +0 -134
  94. tests/foundation/config/root/__init__.py +0 -0
  95. tests/foundation/config/root/test_foundation_config_root_paths.py +0 -112
  96. tests/foundation/config/session/__init__.py +0 -0
  97. tests/foundation/config/session/test_foundation_config_session.py +0 -213
  98. tests/foundation/config/startup/__init__.py +0 -0
  99. tests/foundation/config/startup/test_foundation_config_startup.py +0 -202
  100. tests/foundation/config/testing/__init__.py +0 -0
  101. tests/foundation/config/testing/test_foundation_config_testing.py +0 -235
  102. tests/metadata/__init__.py +0 -0
  103. tests/metadata/test_metadata_framework.py +0 -140
  104. tests/metadata/test_metadata_package.py +0 -139
  105. tests/services/__init__.py +0 -0
  106. tests/services/asynchrony/__init__.py +0 -0
  107. tests/services/asynchrony/test_services_asynchrony_coroutine.py +0 -85
  108. tests/services/environment/__init__.py +0 -0
  109. tests/services/environment/test_services_environment.py +0 -226
  110. tests/services/introspection/__init__.py +0 -0
  111. tests/services/introspection/dependencies/__init__.py +0 -0
  112. tests/services/introspection/dependencies/mocks/__init__.py +0 -0
  113. tests/services/introspection/dependencies/mocks/mock_user.py +0 -30
  114. tests/services/introspection/dependencies/mocks/mock_user_controller.py +0 -27
  115. tests/services/introspection/dependencies/mocks/mock_users_permissions.py +0 -41
  116. tests/services/introspection/dependencies/test_reflect_dependencies.py +0 -261
  117. tests/services/introspection/reflection/__init__.py +0 -0
  118. tests/services/introspection/reflection/mock/__init__.py +0 -0
  119. tests/services/introspection/reflection/mock/fake_reflect_instance.py +0 -1115
  120. tests/services/introspection/reflection/test_reflection_abstract.py +0 -1011
  121. tests/services/introspection/reflection/test_reflection_callable.py +0 -206
  122. tests/services/introspection/reflection/test_reflection_concrete.py +0 -952
  123. tests/services/introspection/reflection/test_reflection_instance.py +0 -1233
  124. tests/services/introspection/reflection/test_reflection_module.py +0 -567
  125. tests/services/introspection/test_reflection.py +0 -462
  126. tests/services/log/__init__.py +0 -0
  127. tests/services/log/test_log.py +0 -97
  128. tests/services/system/__init__.py +0 -0
  129. tests/services/system/test_services_system_imports.py +0 -204
  130. tests/services/system/test_services_system_workers.py +0 -131
  131. tests/support/__init__.py +0 -0
  132. tests/support/entities/__init__.py +0 -0
  133. tests/support/entities/mock_dataclass.py +0 -40
  134. tests/support/entities/test_base.py +0 -64
  135. tests/support/patterns/__init__.py +0 -0
  136. tests/support/patterns/singleton/__init__.py +0 -0
  137. tests/support/patterns/singleton/test_patterns_singleton.py +0 -39
  138. tests/support/standard/__init__.py +0 -0
  139. tests/support/standard/test_services_std.py +0 -226
  140. tests/support/wrapper/__init__.py +0 -0
  141. tests/support/wrapper/test_services_wrapper_docdict.py +0 -202
  142. tests/testing/__init__.py +0 -0
  143. tests/testing/cases/__init__.py +0 -0
  144. tests/testing/cases/test_testing_asynchronous.py +0 -63
  145. tests/testing/cases/test_testing_synchronous.py +0 -57
  146. tests/testing/entities/__init__.py +0 -0
  147. tests/testing/entities/test_testing_result.py +0 -146
  148. tests/testing/enums/__init__.py +0 -0
  149. tests/testing/enums/test_testing_status.py +0 -63
  150. tests/testing/output/__init__.py +0 -0
  151. tests/testing/output/test_testing_dumper.py +0 -29
  152. tests/testing/output/test_testing_printer.py +0 -42
  153. tests/testing/records/__init__.py +0 -0
  154. tests/testing/records/test_testing_records.py +0 -171
  155. tests/testing/test_testing_unit.py +0 -164
  156. tests/testing/validators/__init__.py +0 -0
  157. tests/testing/validators/test_testing_validators.py +0 -392
  158. tests/testing/view/__init__.py +0 -0
  159. tests/testing/view/test_render.py +0 -30
  160. {orionis-0.545.0.dist-info → orionis-0.547.0.dist-info}/WHEEL +0 -0
  161. {orionis-0.545.0.dist-info → orionis-0.547.0.dist-info}/licenses/LICENCE +0 -0
  162. {orionis-0.545.0.dist-info → orionis-0.547.0.dist-info}/zip-safe +0 -0
@@ -7,7 +7,7 @@ orionis/console/args/argument.py,sha256=3Q_4p56qF0VPxK34xX3W4Ln2-Sua9rCHClGOeO96
7
7
  orionis/console/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
8
  orionis/console/base/command.py,sha256=jdUPc7MoJs9QWo_WEPV0Mb_7f6G563OWFTh7DJeUfM8,6642
9
9
  orionis/console/base/scheduler.py,sha256=03_nwYbdRXLSoDwVIJ9-ba-fSBwqNaCXvAk9pv3VdFI,8035
10
- orionis/console/base/scheduler_event_listener.py,sha256=tmdAMPzTmT8z0BcpyoIZwyTRzmVHF1olXCuw6XjuMMA,4929
10
+ orionis/console/base/scheduler_event_listener.py,sha256=X2mZBAYLBCtLOH7QSrCEaLeJ5m8Hq5UtGxaWRRvWbfo,4421
11
11
  orionis/console/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
12
12
  orionis/console/commands/cache.py,sha256=8DsYoRzSBLn0P9qkGVItRbo0R6snWBDBg0_Xa7tmVhs,2322
13
13
  orionis/console/commands/help.py,sha256=0VQLw_8ghyMIbWH9L6S2I5umwa_rniK1lzDdX0qYS_U,3118
@@ -31,7 +31,7 @@ orionis/console/contracts/kernel.py,sha256=mh4LlhEYHh3FuGZZQ0GBhD6ZLa5YQvaNj2r01
31
31
  orionis/console/contracts/progress_bar.py,sha256=NYebL2h-vg2t2H6IhJjuC37gglRkpT-MW71wbJtpLNg,1784
32
32
  orionis/console/contracts/reactor.py,sha256=iT6ShoCutAWEeJzOf_PK7CGXi9TgrOD5tewHFVQ2NQw,6075
33
33
  orionis/console/contracts/schedule.py,sha256=N-AYUa1CJY7a4CV9L1EX_EUDtGlDJMg4y0aV9EDby1Q,16090
34
- orionis/console/contracts/schedule_event_listener.py,sha256=7fQdPh6X_npfGpQW_2x81D7-5Pe40jIog9uDeEU0kro,4390
34
+ orionis/console/contracts/schedule_event_listener.py,sha256=7dqYq7934S64B5Fq6aboVtVlQU8fC9EUjlDSC0f-464,3921
35
35
  orionis/console/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
36
36
  orionis/console/core/reactor.py,sha256=zjBVj1Zgg0hFGKeG5Uk0x7OZOKpq8nj4RyMxS-K1ZfY,41804
37
37
  orionis/console/dumper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -80,7 +80,7 @@ orionis/console/output/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3
80
80
  orionis/console/output/console.py,sha256=EtSDWRBW8wk0iJdPfB1mzU49krLJBaSAUdVdVOzzhQ4,17888
81
81
  orionis/console/output/executor.py,sha256=uQjFPOlyZLFj9pcyYPugCqxwJog0AJgK1OcmQH2ELbw,7314
82
82
  orionis/console/request/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
83
- orionis/console/request/cli_request.py,sha256=YrjwEpFlEcUrCqKlFD8v1sxj0zjAOCFIFxmsP-5bq4Q,9058
83
+ orionis/console/request/cli_request.py,sha256=0LuSuovIJn6BF3HfDHihVZRmMTss-xd21dvUYCuMF3I,9079
84
84
  orionis/console/tasks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
85
85
  orionis/console/tasks/schedule.py,sha256=FgZWJtfXRcZ_-FfJaxP1LzHmDtm5QD9QRRCJ--QMqK8,83385
86
86
  orionis/container/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -129,9 +129,9 @@ orionis/foundation/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJW
129
129
  orionis/foundation/config/startup.py,sha256=vbzduprRCNyYeR2nnMaqc1uKXw6PTzAY2jVfXNQKN8I,9691
130
130
  orionis/foundation/config/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
131
131
  orionis/foundation/config/app/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
132
- orionis/foundation/config/app/entities/app.py,sha256=TVom0M_wRpw2Jqan8E_JgQAruSifRyRhVh8xD7GJmvI,10202
132
+ orionis/foundation/config/app/entities/app.py,sha256=0WKtel5ivCeKX1oURjm0zsgUfex3tK1Nx2DJszGF1KU,10287
133
133
  orionis/foundation/config/app/enums/__init__.py,sha256=L0csn3OmlPT4Y4WhTSI2uQRua0Z367MxNs12AcSHsV4,120
134
- orionis/foundation/config/app/enums/ciphers.py,sha256=N9qdLw47ug9FslHFckP8Sz7MfDN74zujZLh37mtLzW8,1249
134
+ orionis/foundation/config/app/enums/ciphers.py,sha256=R3e9y18pyZNX49TiBQ2_N1TuuyRJouC3Vnk6kFD7daI,738
135
135
  orionis/foundation/config/app/enums/environments.py,sha256=W81oUasW__nRDiyhScMfaBpQ65RXkAAvRGd4ShDFTvE,409
136
136
  orionis/foundation/config/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
137
137
  orionis/foundation/config/auth/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -205,7 +205,7 @@ orionis/foundation/config/roots/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm
205
205
  orionis/foundation/config/roots/paths.py,sha256=OqlaW_2n-jT94pmH92KJ19oCcaFtj2bUhgaqZyGdtVA,10538
206
206
  orionis/foundation/config/session/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
207
207
  orionis/foundation/config/session/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
208
- orionis/foundation/config/session/entities/session.py,sha256=G3dRlzDCsL5_2A2ZKpge2Jwcu6N-YVsum09pWk9oHDc,6085
208
+ orionis/foundation/config/session/entities/session.py,sha256=YGhXwzXm5BvDUG7zwlEYrZuVssqeS4J3B-afsR_SDYo,6086
209
209
  orionis/foundation/config/session/enums/__init__.py,sha256=bvjCUkQbSfKB0J8V1BwOHSjOyZn6xhOmamH3urhoKCA,84
210
210
  orionis/foundation/config/session/enums/same_site_policy.py,sha256=Oo05CJ-5keJWzfflylodyBquofsXqThQPcnar2-ChCw,645
211
211
  orionis/foundation/config/session/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -227,6 +227,7 @@ orionis/foundation/exceptions/type.py,sha256=Ug51YdaUKUlbngR0KeWnJNqIwS9StP4ScVo
227
227
  orionis/foundation/exceptions/value.py,sha256=hQhXybXEnaa59ba7JxG65jceHt3mnql9MyekF-TChpM,465
228
228
  orionis/foundation/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
229
229
  orionis/foundation/providers/catch_provider.py,sha256=jLEFyHeyqCWgIJfqSfXrbRm9h6M6M5IkW8M_9o_NvCQ,1701
230
+ orionis/foundation/providers/cli_request_provider.py,sha256=hTBhBRr9TZhER3Lw7q2mNXRbG_BKl-WEuvV0R1bPjbs,1758
230
231
  orionis/foundation/providers/console_provider.py,sha256=p4XucSau5Nc8-u2xbVg2LAXDC9UXo6qhHD58u1g2T4Q,2963
231
232
  orionis/foundation/providers/directory_provider.py,sha256=17Euot2Eahe8DjK0zK2uC3c8gPua4eux3q-MKcomDYU,2091
232
233
  orionis/foundation/providers/dumper_provider.py,sha256=mWBfnZUo-AKPEz1_Ele3lgaqR4bOcA8msvjV9KKZJQk,3348
@@ -240,7 +241,7 @@ orionis/foundation/providers/scheduler_provider.py,sha256=1do4B09bU_6xbFHHVYYTGM
240
241
  orionis/foundation/providers/testing_provider.py,sha256=SrJRpdvcblx9WvX7x9Y3zc7OQfiTf7la0HAJrm2ESlE,3725
241
242
  orionis/foundation/providers/workers_provider.py,sha256=oa_2NIDH6UxZrtuGkkoo_zEoNIMGgJ46vg5CCgAm7wI,3926
242
243
  orionis/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
243
- orionis/metadata/framework.py,sha256=CL-Cod4cOJrfGqfJEh-a0cH_FmCUti8s3PGf9QZlSCQ,4109
244
+ orionis/metadata/framework.py,sha256=wG30x7cehxUbEi2SztNLRPv9VDSknT7e7v5vQamOjpE,4109
244
245
  orionis/metadata/package.py,sha256=k7Yriyp5aUcR-iR8SK2ec_lf0_Cyc-C7JczgXa-I67w,16039
245
246
  orionis/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
246
247
  orionis/services/asynchrony/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -249,6 +250,7 @@ orionis/services/asynchrony/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCe
249
250
  orionis/services/asynchrony/contracts/coroutines.py,sha256=Hjm-JOK-CjCDWa8sSaJZ7ccM_LxsVsYWFcYSSVciQ3U,2825
250
251
  orionis/services/asynchrony/exceptions/__init__.py,sha256=COm6RhSiuwWqy3YcJ_0gVu6XHjn5P3zVaiUp5Pw_h48,99
251
252
  orionis/services/asynchrony/exceptions/exception.py,sha256=Npze-29hlzjXxOZt3RF1R9yp0O1tMSRt7sCWXKjy3Pc,772
253
+ orionis/services/encrypter/encrypter.py,sha256=iOR8_rgyye_Mdlp9OY9Zs9UlnA4sfWvItiDWP_7Q4Vg,4073
252
254
  orionis/services/environment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
253
255
  orionis/services/environment/env.py,sha256=09poYYjI3lOEV3TuHh3JA8M8sfKN-lVIO4SKOmt6d_E,2845
254
256
  orionis/services/environment/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -257,7 +259,7 @@ orionis/services/environment/contracts/env.py,sha256=ozdYs3TkOsowPUrXSPEvm6mjoxY
257
259
  orionis/services/environment/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
258
260
  orionis/services/environment/core/dot_env.py,sha256=dbs9NhT4MQcYw6Jly0rboSufJtG9eIIyZFoMVnsRZYo,12505
259
261
  orionis/services/environment/dynamic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
260
- orionis/services/environment/dynamic/caster.py,sha256=XUKVehcHMHyxV1Lrd6l9NolQAWL-XxYIZ0cGLsiqARU,34123
262
+ orionis/services/environment/dynamic/caster.py,sha256=3b_fHvVMJhotOccuQXKqS04pCpnsKwJrKcaWAxHqBS0,34268
261
263
  orionis/services/environment/enums/__init__.py,sha256=lV7sRtjZk3pUvqp21A_GZFkKPYSY6UHZzlQarkQOBjA,90
262
264
  orionis/services/environment/enums/value_type.py,sha256=s-tTLgJLhI-ISmDNRpmEdj69DSmL3mDO1nrjRWAO7fU,1262
263
265
  orionis/services/environment/exceptions/__init__.py,sha256=YwLc8GsB0swlwu9T9Qt2vevaCoq5V2vmPUSlEUAqg2Q,199
@@ -266,7 +268,7 @@ orionis/services/environment/exceptions/value.py,sha256=F2dzNl3OL6AyPu2QcPkreUgj
266
268
  orionis/services/environment/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
267
269
  orionis/services/environment/helpers/functions.py,sha256=wk2VZJvA4Pel9D945cBdWydutDr2NO9TuLno0VOv5Wg,680
268
270
  orionis/services/environment/key/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
269
- orionis/services/environment/key/key_generator.py,sha256=q39GD-VgRhH0uYB0ZdfUnq9BNyLCV3hweX32u39zGTo,848
271
+ orionis/services/environment/key/key_generator.py,sha256=kgr3bmTuPgFI_tNHz0lx5pZD3h-Rzg9KiuSylVmZp3Q,1394
270
272
  orionis/services/environment/validators/__init__.py,sha256=S0Us4_BtKPuOMQZf4uFFqUINB8l6Eb9vJbbxUCzIhfc,135
271
273
  orionis/services/environment/validators/key_name.py,sha256=TSwVhQCbBYPZ_4zZ-o16yT_2pOe3WRWl9d8KzfDzWyg,1660
272
274
  orionis/services/environment/validators/types.py,sha256=hiTszo7hS_1zQLclUIDOFUTGy2Kg2n3dZe7jU8Pmf1I,2839
@@ -431,154 +433,9 @@ orionis/test/validators/web_report.py,sha256=n9BfzOZz6aEiNTypXcwuWbFRG0OdHNSmCNu
431
433
  orionis/test/validators/workers.py,sha256=rWcdRexINNEmGaO7mnc1MKUxkHKxrTsVuHgbnIfJYgc,1206
432
434
  orionis/test/view/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
433
435
  orionis/test/view/render.py,sha256=f-zNhtKSg9R5Njqujbg2l2amAs2-mRVESneLIkWOZjU,4082
434
- orionis-0.545.0.dist-info/licenses/LICENCE,sha256=JhC-z_9mbpUrCfPjcl3DhDA8trNDMzb57cvRSam1avc,1463
435
- tests/container/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
436
- tests/container/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
437
- tests/container/context/test_manager.py,sha256=wOwXpl9rHNfTTexa9GBKYMwK0_-KSQPbI-AEyGNkmAE,1356
438
- tests/container/context/test_scope.py,sha256=1YGfOHwOjLiQ1GPewbJGrUaTyH0SjrQux7LBVn_l2q4,1223
439
- tests/container/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
440
- tests/container/core/test_advanced_async.py,sha256=kqNGCPwBlQBB3JBWHgyC7TVPfTEIf34Bz6C2ZBwLz68,10192
441
- tests/container/core/test_async_optimizations.py,sha256=jal7neUv_N8GoSOi0EvtDlWDcLw46Yc0uf2MTCHW3SY,12348
442
- tests/container/core/test_container.py,sha256=6F4y5t-dR2E6eVKRI_hvKty0LhvTkXqiLGjaGVwsSb4,15775
443
- tests/container/core/test_singleton.py,sha256=CfOB-YkIh16Pu5rNbOp5dD9cvMfWXHQESADDYSBcsQg,4801
444
- tests/container/core/test_thread_safety.py,sha256=-GiscMxZJXr8vRiir_i7_6YtYqG9zDGo52druYk6qKo,3785
445
- tests/container/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
446
- tests/container/entities/test_binding.py,sha256=CFiBGlOeQKK4ielkj1JqxOWJSqrsi2VFIE7nE5R6ykU,9709
447
- tests/container/enums/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
448
- tests/container/enums/test_lifetimes.py,sha256=JFb4q1rgo10C5ibQ6LS-776NevxCMNLSq_cd7D1O8Ps,3511
449
- tests/container/facades/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
450
- tests/container/facades/test_facade.py,sha256=aCy0S6YaaiswGoodJEAhNkqJrMaEQL-CcWh2AgXMvvQ,2938
451
- tests/container/mocks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
452
- tests/container/mocks/mock_advanced_async.py,sha256=Kcbo0bdvv4alVgu66DuSkxHgAWXM_LZFvqBrNFsZGp8,11423
453
- tests/container/mocks/mock_async_optimizations.py,sha256=nLHglkDJNF3XJbIGkLo3KZWBR4yjKd55cVrQC1BrtRU,12432
454
- tests/container/mocks/mock_auto_resolution.py,sha256=PprLC_UbZb0hV69CTzZ3t-5FLLvE-WCTA-6W7wcOIZQ,7340
455
- tests/container/mocks/mock_complex_classes.py,sha256=YkC8tgDHU0YVEkIeUPd39gp3zkGLpFObQKzjuxatqro,20307
456
- tests/container/mocks/mock_simple_classes.py,sha256=bzKbmwOD-RBTT8GVN_W53ufGEWpjppe4g5mX6CI5Yk0,2317
457
- tests/container/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
458
- tests/container/providers/test_providers.py,sha256=qGh2vtrLYp_S7u3U64I22Fzr86NsDZw0tXtJioSDdms,2149
459
- tests/container/validators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
460
- tests/container/validators/test_implements.py,sha256=XquLuD3WGRPfSj2Jfd5uBTV48h8FPU0E-cJeEjZohEo,6759
461
- tests/container/validators/test_is_abstract_class.py,sha256=_xW8NrnrmG5tKocaGs83r118S-t-YbaMTal-cWXtM0k,6868
462
- tests/container/validators/test_is_callable.py,sha256=VbQNKZ4sVQeWnqAIZ7R2E-6uFnT78Gcdaxf7Gq-qWlw,3767
463
- tests/container/validators/test_is_concrete_class.py,sha256=bD8F_fbeWLf61I-7sCeapugvXl1-oSx8iVawuYF4tY4,6362
464
- tests/container/validators/test_is_instance.py,sha256=skRLexi-31IxJrW0nSYwTW84iqXvi0IVqxHm0X-YfC0,5255
465
- tests/container/validators/test_is_not_subclass.py,sha256=8wemBngCqRC3WtXq0YwnEqLmllzYoKLCMd4pWg59350,1905
466
- tests/container/validators/test_is_subclass.py,sha256=0Uc8uIR69ZX7G5Nrex0LMQXrueTdncdDxfQoila3h3U,5834
467
- tests/container/validators/test_is_valid_alias.py,sha256=NA9QbIEh7n2_0GeVTMCppZG4_3ya4QrcvGI_lw1iJA8,5658
468
- tests/container/validators/test_lifetime.py,sha256=5PequjXAcIcp0Q4TIki7THSU31XftGpI0u1mVGqHmpU,4692
469
- tests/example/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
470
- tests/example/test_example.py,sha256=W6lA0_uV6bNm7JZ39rHZn30LHkdq_ddrUO6T1K2raZ4,27104
471
- tests/foundation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
472
- tests/foundation/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
473
- tests/foundation/config/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
474
- tests/foundation/config/app/test_foundation_config_app.py,sha256=nXe50Gqxd_o2PvUv5Do8LTVkLRltbi9cBOGJgLAsxNE,10470
475
- tests/foundation/config/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
476
- tests/foundation/config/auth/test_foundation_config_auth.py,sha256=iDK3VuJ3TtuEYE5dR8xaByQ8mZLbrsFdCqaFrfCFlgY,1048
477
- tests/foundation/config/cache/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
478
- tests/foundation/config/cache/test_foundation_config_cache.py,sha256=fDtw_0NPB2h18nrR13zD6WXL7lK6QyQKjpj6R61LMuw,4653
479
- tests/foundation/config/cache/test_foundation_config_cache_file.py,sha256=nqPTvt7yPvlk0nJfo2UG7lGJ91qhp5wfDOEj5MESk7s,3649
480
- tests/foundation/config/cache/test_foundation_config_cache_stores.py,sha256=ToDxRCPUVyFLo-G95RoBB2EKpudzjnIASdfgctWJppc,4991
481
- tests/foundation/config/cors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
482
- tests/foundation/config/cors/test_foundation_config_cors.py,sha256=0B19I4g5TRp9vQu79vcteeIsjbBpiIoE6Mxslx5d9os,6721
483
- tests/foundation/config/database/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
484
- tests/foundation/config/database/test_foundation_config_database.py,sha256=QK4wFR0igx84v8SQ6B4pIMTDqfi7ax0DNYZHPvSQDCA,5391
485
- tests/foundation/config/database/test_foundation_config_database_connections.py,sha256=sQ5b2rwmhdMk44oZOx4Hb6EGW_3DW3dnDUtTKu0QSWA,6977
486
- tests/foundation/config/database/test_foundation_config_database_mysql.py,sha256=200U6fL9XysUJ7tynSCKcWdRPEd7Fh4TP-lfSE2wMzY,12432
487
- tests/foundation/config/database/test_foundation_config_database_oracle.py,sha256=zhWuAFPKW5EQtTmfIunqo8mKjcdqbLy-nnSiy4x6lS4,10413
488
- tests/foundation/config/database/test_foundation_config_database_pgsql.py,sha256=Pctyldh90HKFqEgiCd2GkoJFOunQBwIQd-loDc7cVv0,8519
489
- tests/foundation/config/database/test_foundation_config_database_sqlite.py,sha256=oxb0kyENsRHNiw5NwqYicB-URM43j0jTlL5leiPBm8Y,7362
490
- tests/foundation/config/filesystems/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
491
- tests/foundation/config/filesystems/test_foundation_config_filesystems.py,sha256=_XYpbESjUwX-LmLv2Ik4dPc-32KEiaa7_Iz753dXz-E,5278
492
- tests/foundation/config/filesystems/test_foundation_config_filesystems_aws.py,sha256=eYi9cm1-v11nZwtLOf1KuSWg5M4LwuSiJ84ZklT9O_M,6528
493
- tests/foundation/config/filesystems/test_foundation_config_filesystems_disks.py,sha256=lG4bvb0kAcGQbwwtDzKPnW0jZG7Aniw52A4m-3vaL4Q,6474
494
- tests/foundation/config/filesystems/test_foundation_config_filesystems_local.py,sha256=X10AQjmlNB2sty34hXOkTDcMcZDraF-x1Kw6X7NxcBc,4296
495
- tests/foundation/config/filesystems/test_foundation_config_filesystems_public.py,sha256=9lScPcJUq9P9zMl0h2jvuMF3lCMfhNeW-bTeaW5Suas,5662
496
- tests/foundation/config/logging/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
497
- tests/foundation/config/logging/test_foundation_config_logging.py,sha256=vCYAp8qe6SOo1VJQcb1_R5JMQe00HCl78D4E-43Dxm8,3183
498
- tests/foundation/config/logging/test_foundation_config_logging_channels.py,sha256=rLK7YFNr07ZGNoLgDWEM1trFJw7xUB8z0ezpzshKwm0,9625
499
- tests/foundation/config/logging/test_foundation_config_logging_chunked.py,sha256=TL-pLde4LAvHTcj01RT_Sa_OkwbQHzKrAH-9UGKVaMY,7021
500
- tests/foundation/config/logging/test_foundation_config_logging_daily.py,sha256=Sf5vG6WL558N41dukprA5iiT1LoBXi1ak19QGSZpAsI,7076
501
- tests/foundation/config/logging/test_foundation_config_logging_hourly.py,sha256=zjDDXykck_gH9TLPcoESwgjUd-6qZJDjjFwD_Xz2Yak,6765
502
- tests/foundation/config/logging/test_foundation_config_logging_monthly.py,sha256=ih7SOufbUwMqhr7XI2PKcBSWF0b6TEGezXQB_1bya4g,7143
503
- tests/foundation/config/logging/test_foundation_config_logging_stack.py,sha256=lRp-k7MuYiphfRJPDSJW8OXABmeblEufNgObJ_qDhEk,6045
504
- tests/foundation/config/logging/test_foundation_config_logging_weekly.py,sha256=g-x3VCN_L1jrrSrsW1UkBWYpKeuK5ASAAzhlKQJDkvQ,7697
505
- tests/foundation/config/mail/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
506
- tests/foundation/config/mail/test_foundation_config_mail.py,sha256=xR3HY218J7vecdM1h0TaAfX4DGl90PUgmktlylT_4S8,4209
507
- tests/foundation/config/mail/test_foundation_config_mail_file.py,sha256=9apGs381QxaO9gwwDTAtObF61AMFTd61c1Sfx1nZeYM,3023
508
- tests/foundation/config/mail/test_foundation_config_mail_mailers.py,sha256=tcQ2EAcF2EOQ_QB2a765bexU_RImz8P7zBndi_tAFUk,3427
509
- tests/foundation/config/mail/test_foundation_config_mail_smtp.py,sha256=cf2gRJ0-IcqN38MhXIP_pfVjsRsRlCDOHPNB11B7daE,4883
510
- tests/foundation/config/queue/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
511
- tests/foundation/config/queue/test_foundation_config_queue.py,sha256=1qeov00ibVDnH2C_M_T9yylMFL7pyhxxIqL852YXS54,2807
512
- tests/foundation/config/queue/test_foundation_config_queue_brokers.py,sha256=pgdOtasyAkKOBscdb8T4GP5JeYRSBtGfpQIB4li0It8,2594
513
- tests/foundation/config/queue/test_foundation_config_queue_database.py,sha256=qLYXjG8YVIp_NWYcZA9A2GmOdjFyt3snq9X1cdIok8M,4830
514
- tests/foundation/config/root/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
515
- tests/foundation/config/root/test_foundation_config_root_paths.py,sha256=DCkLHa_l3yopO3dZIOsoRZ9UMYswwlALp6OxmEmmfCQ,3934
516
- tests/foundation/config/session/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
517
- tests/foundation/config/session/test_foundation_config_session.py,sha256=itTV_OxTsUUsS4AVvcrNntkuEmMPmEO6YZLjVLRwP50,7380
518
- tests/foundation/config/startup/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
519
- tests/foundation/config/startup/test_foundation_config_startup.py,sha256=zI3tngsVSPLQ7Kjq5RUNuBZYPTCU-7w04c8rpSeQOUo,8022
520
- tests/foundation/config/testing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
521
- tests/foundation/config/testing/test_foundation_config_testing.py,sha256=YsXTVxq-S1KVlLK5fe2qL0CpQrulaLmy6sMSm3oPhbA,8237
522
- tests/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
523
- tests/metadata/test_metadata_framework.py,sha256=vOsp5owDMMoL5dtgiN9EC5Sdj8pemXVh62MzYpPUK4Q,5327
524
- tests/metadata/test_metadata_package.py,sha256=AcD5rlkD5MeX2tJvQkIHeGeAl88k0tsF2wOU5v4JVN0,4894
525
- tests/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
526
- tests/services/asynchrony/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
527
- tests/services/asynchrony/test_services_asynchrony_coroutine.py,sha256=xWdH5CKrXQ8zGSFadEDN_7LoNEAcDWWIBdm2TVQPuLo,3445
528
- tests/services/environment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
529
- tests/services/environment/test_services_environment.py,sha256=8gbF2vK238lracBipHCHgiYxThRnfLtN9pj--rFald0,9570
530
- tests/services/introspection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
531
- tests/services/introspection/test_reflection.py,sha256=AaBi0zi7GphOqnagV8N48GZHUuoT7743Pw3oc6_As6I,13700
532
- tests/services/introspection/dependencies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
533
- tests/services/introspection/dependencies/test_reflect_dependencies.py,sha256=UJwASK4ItTehXvWMq75vIMxBWTg2euS105EgRaIkVic,13894
534
- tests/services/introspection/dependencies/mocks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
535
- tests/services/introspection/dependencies/mocks/mock_user.py,sha256=RxATxe0-Vm4HfX5jKz9Tny42E2fmrdtEN6ZEntbqRL8,912
536
- tests/services/introspection/dependencies/mocks/mock_user_controller.py,sha256=Hu4Xys5HENpKaLqsEAjtp_C-M9y6ozmJ_-qmj3ZvK6c,1214
537
- tests/services/introspection/dependencies/mocks/mock_users_permissions.py,sha256=oENXbS2qmQUudYSmnhB8fgHBqXZdbplplB-Y2nbx4hw,1388
538
- tests/services/introspection/reflection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
539
- tests/services/introspection/reflection/test_reflection_abstract.py,sha256=MG243SrYBCaRHI85ifQE2t_Dwuy5LQdVAS4mrS3_n8E,41778
540
- tests/services/introspection/reflection/test_reflection_callable.py,sha256=OVu4FmzkfVBbDrjWqrrq-1eqe9myNGygNpmtyCnu9hs,6817
541
- tests/services/introspection/reflection/test_reflection_concrete.py,sha256=7L4QTae1mDCujMZ0vvI4qsoTQxnRkeIuv3cXRdbISuc,38441
542
- tests/services/introspection/reflection/test_reflection_instance.py,sha256=IpYm45S9kaGXGvkCIrnwAVxN-mtL1QUd7iV9niUpmTQ,57397
543
- tests/services/introspection/reflection/test_reflection_module.py,sha256=a4sjSHeKADHUO5FvSDg1wPYNGfO385JZxSCoIqjfuZE,24608
544
- tests/services/introspection/reflection/mock/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
545
- tests/services/introspection/reflection/mock/fake_reflect_instance.py,sha256=iMf_yKgk0Y91XUHhRcl2qw7Z83QeNspvLi_tl4Dp-rI,28032
546
- tests/services/log/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
547
- tests/services/log/test_log.py,sha256=AWaEjBbUxz_1-GNsqEyb36EyD6ZtrHd51DnxA3I5nvE,2798
548
- tests/services/system/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
549
- tests/services/system/test_services_system_imports.py,sha256=jbtIQkw_4DI6x2E-4Lg3evnLAgCgDIBWE63LdJTLkxc,7507
550
- tests/services/system/test_services_system_workers.py,sha256=wITbpJHKW_OXqTaFeteNRFuw5Q3_7d9lWNJnFE2r6to,5052
551
- tests/support/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
552
- tests/support/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
553
- tests/support/entities/mock_dataclass.py,sha256=-xPr-zsTO-rG_AgP9cJfiQmyhJecTA_S-6NHIeVo4yQ,1471
554
- tests/support/entities/test_base.py,sha256=ClAKC6tlVKObM16-Um82hCtsZQbLyKgJMhXFbDW55Y0,2153
555
- tests/support/patterns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
556
- tests/support/patterns/singleton/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
557
- tests/support/patterns/singleton/test_patterns_singleton.py,sha256=92kpAJpwc77FgSVjvaYhBpftxoOV1Su8zuJKa2cuyfE,1429
558
- tests/support/standard/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
559
- tests/support/standard/test_services_std.py,sha256=I9UeUkjrDdhvfSL3ao6wx2rLysXi6WZPbCOBmHC6ELI,6176
560
- tests/support/wrapper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
561
- tests/support/wrapper/test_services_wrapper_docdict.py,sha256=K-u5Z744Nj4dVie9tmLmnFxjN5vwHz_mDf6S0tZN97o,6822
562
- tests/testing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
563
- tests/testing/test_testing_unit.py,sha256=vggKTMeDjYqoK4ykZO5ZfxN5ue9-pm-Ts5wGMrEkgXw,6906
564
- tests/testing/cases/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
565
- tests/testing/cases/test_testing_asynchronous.py,sha256=3ji_jajS3bGdmMbAUQc9rBfcOTVnReklkgmAjYKL7SQ,1963
566
- tests/testing/cases/test_testing_synchronous.py,sha256=Y-0teflDsL1B3nAVrGywMTY0u5a7tlAKXw9Oq1pF24M,1947
567
- tests/testing/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
568
- tests/testing/entities/test_testing_result.py,sha256=U9ntvyXqCIDKkPutY8akLi_xzq-WzH7dU9DDqnCi-Lk,4731
569
- tests/testing/enums/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
570
- tests/testing/enums/test_testing_status.py,sha256=jxaxaBH6Zt9wsyNQU_IzIbBTf3KTeXaD1H-W9nMAMuU,2080
571
- tests/testing/output/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
572
- tests/testing/output/test_testing_dumper.py,sha256=gk8jL-fAfBXi7rbt448KIf9gVOrfpSEN-ysExwwV7p8,943
573
- tests/testing/output/test_testing_printer.py,sha256=zJI2NHsdNGagqcCO6kF7su4dSll0BZTu9jnIBy4t8H0,1348
574
- tests/testing/records/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
575
- tests/testing/records/test_testing_records.py,sha256=0XU3zu0mUla5FQ0Ij3H_8sVh_Yl_xduIkbHE3lUHbDI,5666
576
- tests/testing/validators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
577
- tests/testing/validators/test_testing_validators.py,sha256=WPo5GxTP6xE-Dw3X1vZoqOMpb6HhokjNSbgDsDRDvy4,16588
578
- tests/testing/view/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
579
- tests/testing/view/test_render.py,sha256=tnnMBwS0iKUIbogLvu-7Rii50G6Koddp3XT4wgdFEYM,1050
580
- orionis-0.545.0.dist-info/METADATA,sha256=Ok4Qo289ADmxFH0S0lFmzAZxiczEkXd4lR8R872Dqv4,4801
581
- orionis-0.545.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
582
- orionis-0.545.0.dist-info/top_level.txt,sha256=2bdoHgyGZhOtLAXS6Om8OCTmL24dUMC_L1quMe_ETbk,14
583
- orionis-0.545.0.dist-info/zip-safe,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
584
- orionis-0.545.0.dist-info/RECORD,,
436
+ orionis-0.547.0.dist-info/licenses/LICENCE,sha256=JhC-z_9mbpUrCfPjcl3DhDA8trNDMzb57cvRSam1avc,1463
437
+ orionis-0.547.0.dist-info/METADATA,sha256=VhleBFq9tGXsPqwcnkBVs214uGcAcMm_kv3RHdRk4rs,4801
438
+ orionis-0.547.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
439
+ orionis-0.547.0.dist-info/top_level.txt,sha256=lyXi6jArpqJ-0zzNqd_uwsH-z9TCEBVBL-pC3Ekv7hU,8
440
+ orionis-0.547.0.dist-info/zip-safe,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
441
+ orionis-0.547.0.dist-info/RECORD,,
File without changes
File without changes
@@ -1,38 +0,0 @@
1
- from orionis.container.context.manager import ScopeManager
2
- from orionis.test.cases.asynchronous import AsyncTestCase
3
-
4
- class TestScopeManagerMethods(AsyncTestCase):
5
-
6
- def testMethodsExist(self):
7
- """
8
- Checks that all required methods are present in the ScopeManager class.
9
-
10
- This test verifies the existence of a predefined list of methods that are
11
- essential for the correct functioning of ScopeManager. The methods checked
12
- include initialization, item access, containment, clearing, and context
13
- management methods.
14
-
15
- Returns
16
- -------
17
- None
18
- This method does not return any value. It asserts the existence of methods
19
- and fails the test if any are missing.
20
- """
21
-
22
- # List of expected method names in ScopeManager
23
- expected_methods = [
24
- "__init__",
25
- "__getitem__",
26
- "__setitem__",
27
- "__contains__",
28
- "clear",
29
- "__enter__",
30
- "__exit__"
31
- ]
32
-
33
- # Check each method for existence in ScopeManager
34
- for method in expected_methods:
35
- self.assertTrue(
36
- hasattr(ScopeManager, method), # Assert method exists
37
- f"Method '{method}' does not exist in ScopeManager class."
38
- )
@@ -1,32 +0,0 @@
1
- from orionis.container.context.scope import ScopedContext
2
- from orionis.test.cases.asynchronous import AsyncTestCase
3
-
4
- class TestScopedContextMethods(AsyncTestCase):
5
-
6
- def testMethodsExist(self):
7
- """
8
- Checks that all required methods are present in the ScopedContext class.
9
-
10
- This test verifies the existence of specific methods that are essential for the correct
11
- operation of ScopedContext. It ensures that the class interface is complete and that
12
- method names have not been changed or removed.
13
-
14
- Returns
15
- -------
16
- None
17
- This method does not return anything. It asserts the existence of methods and fails the test if any are missing.
18
- """
19
-
20
- # List of method names expected to be present in ScopedContext
21
- expected_methods = [
22
- "getCurrentScope",
23
- "setCurrentScope",
24
- "clear"
25
- ]
26
-
27
- # Iterate through each expected method and assert its existence
28
- for method in expected_methods:
29
- self.assertTrue(
30
- hasattr(ScopedContext, method),
31
- f"Method '{method}' does not exist in ScopedContext class."
32
- )
File without changes
@@ -1,234 +0,0 @@
1
- import time
2
- from orionis.container.container import Container
3
- from orionis.test.cases.asynchronous import AsyncTestCase
4
- from tests.container.mocks.mock_advanced_async import ErrorService, IPerformanceService, MixedConsumer, PerformanceService, simple_async, sync_returns_coroutine
5
-
6
- class TestContainer(AsyncTestCase):
7
-
8
- async def testPerformanceComparison(self):
9
- """
10
- Measures and verifies the performance of synchronous service calls within the container.
11
-
12
- This test performs the following steps:
13
- - Instantiates a container and registers `PerformanceService` as a singleton for the `IPerformanceService` interface.
14
- - Resolves the registered service from the container.
15
- - Executes the synchronous operation multiple times using the container's `call` method, measuring the total elapsed time.
16
- - Asserts that the synchronous operation returns the expected result.
17
- - Asserts that the measured execution time is greater than zero, confirming that the operation duration is measurable.
18
-
19
- Returns
20
- -------
21
- None
22
- This method does not return a value. Assertions are used to validate expected behavior.
23
- """
24
- # Create a container instance
25
- container = Container()
26
-
27
- # Register the PerformanceService as a singleton for the IPerformanceService interface
28
- container.singleton(IPerformanceService, PerformanceService)
29
-
30
- # Resolve the service instance from the container
31
- service = container.make(IPerformanceService)
32
-
33
- # Start timing the synchronous calls
34
- start_time = time.time()
35
-
36
- # Call the sync operation multiple times to measure performance
37
- for i in range(3):
38
- result = container.call(service, 'sync_operation')
39
-
40
- # Calculate the total elapsed time for synchronous calls
41
- sync_time = time.time() - start_time
42
-
43
- # Assert that the sync operation returns the expected result
44
- self.assertEqual(result, "Sync operation completed")
45
-
46
- # Assert that the measured time is greater than zero
47
- self.assertGreater(sync_time, 0, "Sync operation should take some time")
48
-
49
- async def testAsyncPerformance(self):
50
- """
51
- Measures and verifies the performance of asynchronous service calls within the container.
52
-
53
- This test performs the following steps:
54
- - Instantiates a container and registers `PerformanceService` as a singleton for the `IPerformanceService` interface.
55
- - Resolves the registered service from the container.
56
- - Executes the asynchronous operation multiple times using both `call` and `callAsync` methods, measuring the total elapsed time.
57
- - Asserts that the asynchronous operation returns the expected result.
58
- - Asserts that the measured execution time is greater than zero, confirming that the operation duration is measurable.
59
-
60
- Returns
61
- -------
62
- None
63
- This method does not return a value. Assertions are used to validate expected behavior.
64
-
65
- Raises
66
- ------
67
- AssertionError
68
- If the asynchronous operation does not return the expected result or if the measured time is not greater than zero.
69
- """
70
-
71
- # Create a container instance
72
- container = Container()
73
-
74
- # Register the PerformanceService as a singleton for the IPerformanceService interface
75
- container.singleton(IPerformanceService, PerformanceService)
76
-
77
- # Resolve the service instance from the container
78
- service = container.make(IPerformanceService)
79
-
80
- # Start timing the asynchronous calls
81
- start_time = time.time()
82
-
83
- # Call the async operation multiple times using the container's call method
84
- for i in range(3):
85
-
86
- # Await the result of the async operation
87
- result = container.call(service, 'async_operation')
88
-
89
- # Calculate the total elapsed time for asynchronous calls
90
- async_time = time.time() - start_time
91
-
92
- # Assert that the async operation returns the expected result
93
- self.assertEqual(result, "Async operation completed")
94
-
95
- # Call the async operation multiple times using the container's callAsync method
96
- for i in range(3):
97
- result = await container.callAsync(service, 'async_operation')
98
-
99
- # Assert that the async operation returns the expected result
100
- self.assertEqual(result, "Async operation completed")
101
-
102
- # Assert that the measured time is greater than zero
103
- self.assertGreater(async_time, 0, "Async operation should take some time")
104
-
105
- async def testErrorHandling(self):
106
- """
107
- Tests the error handling capabilities of the container for both synchronous and asynchronous service methods.
108
-
109
- This method performs the following steps:
110
- - Instantiates a container and resolves the `ErrorService`.
111
- - Invokes a synchronous method that is expected to raise an exception and asserts that the exception is raised.
112
- - (Asynchronous error handling is tested elsewhere.)
113
-
114
- Returns
115
- -------
116
- None
117
- This method does not return a value. Assertions are used to validate that exceptions are properly raised.
118
- """
119
-
120
- # Create a container instance
121
- container = Container()
122
-
123
- # Resolve the ErrorService instance from the container
124
- service = container.make(ErrorService)
125
-
126
- # Test synchronous error handling: expect an exception to be raised
127
- with self.assertRaises(Exception) as context:
128
- container.call(service, 'sync_error_method')
129
-
130
- async def testAsyncErrors(self):
131
-
132
- # Create a container instance
133
- container = Container()
134
-
135
- # Resolve the ErrorService instance from the container
136
- service = container.make(ErrorService)
137
-
138
- # Call the async error method and await its result
139
- with self.assertRaises(Exception) as context:
140
- await container.callAsync(service, 'async_error_method')
141
-
142
- async def testMixedDependencyInjection(self):
143
- """
144
- Tests the container's ability to perform mixed synchronous and asynchronous dependency injection.
145
-
146
- This test performs the following steps:
147
- - Instantiates a container and uses it to auto-resolve dependencies for the `MixedConsumer` class.
148
- - Invokes a synchronous method with dependency injection and verifies its return value.
149
- - (Asynchronous methods are tested elsewhere.)
150
-
151
- The test asserts that:
152
- - The synchronous method returns a string starting with "Sync:".
153
-
154
- Returns
155
- -------
156
- None
157
- This method does not return a value. Assertions are used to validate expected behavior.
158
- """
159
-
160
- # Create an instance of the container
161
- container = Container()
162
-
163
- # Auto-resolve dependencies for MixedConsumer
164
- consumer = container.make(MixedConsumer)
165
-
166
- # Test synchronous method with dependency injection
167
- sync_result: str = container.call(consumer, 'sync_method')
168
-
169
- # Assert that the result starts with "Sync:"
170
- self.assertTrue(sync_result.startswith("Sync:"))
171
-
172
- async def testAsyncWithDI(self):
173
- """
174
- Tests the container's capability to perform asynchronous dependency injection.
175
-
176
- This test performs the following steps:
177
- - Instantiates a container and uses it to auto-resolve dependencies for the `MixedConsumer` class.
178
- - Invokes an asynchronous method with dependency injection and verifies its return value.
179
-
180
- The test asserts that:
181
- - The asynchronous method returns a string starting with "Mixed: ".
182
-
183
- Returns
184
- -------
185
- None
186
- This method does not return a value. Assertions are used to validate expected behavior.
187
- """
188
-
189
- # Create an instance of the container
190
- container = Container()
191
-
192
- # Auto-resolve dependencies for MixedConsumer
193
- consumer = container.make(MixedConsumer)
194
-
195
- # Call the asynchronous method with dependency injection
196
- async_result: str = await container.callAsync(consumer, 'async_method')
197
-
198
- # Assert that the result starts with "Mixed: "
199
- self.assertTrue(async_result.startswith("Mixed: "))
200
-
201
- async def testCallableAsyncSync(self):
202
- """
203
- Tests the container's ability to register and resolve both synchronous and asynchronous callable functions,
204
- ensuring that both types return coroutine objects when resolved.
205
-
206
- This method performs the following steps:
207
- - Instantiates a container and registers two callable functions:
208
- - A synchronous function that returns a coroutine.
209
- - An asynchronous function.
210
- - Resolves each callable from the container.
211
- - Asserts that the resolved objects are coroutine objects by checking for the '__await__' attribute.
212
-
213
- Returns
214
- -------
215
- None
216
- This method does not return a value. Assertions are used to validate that the resolved callables are coroutine objects.
217
- """
218
-
219
- # Create a container instance
220
- container = Container()
221
-
222
- # Register a synchronous function that returns a coroutine
223
- container.callable("sync_returns_coro", sync_returns_coroutine)
224
-
225
- # Register an asynchronous function
226
- container.callable("simple_async", simple_async)
227
-
228
- # Resolve the synchronous function and check if it returns a coroutine object
229
- result1 = container.make("sync_returns_coro")
230
- self.assertTrue(result1 == "Sync function returning coroutine")
231
-
232
- # Resolve the asynchronous function and check if it returns a coroutine object
233
- result2 = container.make("simple_async")
234
- self.assertTrue(result2 == "Simple async callable")