orionis 0.418.0__py3-none-any.whl → 0.420.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 (136) hide show
  1. orionis/metadata/framework.py +1 -1
  2. {orionis-0.418.0.dist-info → orionis-0.420.0.dist-info}/METADATA +1 -1
  3. {orionis-0.418.0.dist-info → orionis-0.420.0.dist-info}/RECORD +58 -133
  4. {orionis-0.418.0.dist-info → orionis-0.420.0.dist-info}/top_level.txt +0 -1
  5. tests/foundation/config/app/test_foundation_config_app.py +262 -0
  6. {foundation → tests/foundation}/config/cache/test_foundation_config_cache_file.py +8 -8
  7. {foundation → tests/foundation}/config/cache/test_foundation_config_cache_stores.py +11 -3
  8. {foundation → tests/foundation}/config/database/test_foundation_config_database_pgsql.py +5 -5
  9. {foundation → tests/foundation}/config/queue/test_foundation_config_queue.py +0 -20
  10. {foundation → tests/foundation}/config/queue/test_foundation_config_queue_brokers.py +0 -13
  11. tests/foundation/config/root/test_foundation_config_root_paths.py +116 -0
  12. tests/foundation/config/startup/test_foundation_config_startup.py +199 -0
  13. foundation/config/app/test_foundation_config_app.py +0 -150
  14. foundation/config/root/test_foundation_config_root_paths.py +0 -201
  15. foundation/config/startup/test_foundation_config_startup.py +0 -205
  16. foundation/exceptions/__init__.py +0 -0
  17. foundation/exceptions/test_foundation_config_exceptions.py +0 -117
  18. orionis/_contracts/__init__.py +0 -0
  19. orionis/_contracts/application.py +0 -41
  20. orionis/_contracts/config/__init__.py +0 -0
  21. orionis/_contracts/config/config.py +0 -27
  22. orionis/_contracts/console/__init__.py +0 -0
  23. orionis/_contracts/console/base/__init__.py +0 -0
  24. orionis/_contracts/console/base/command.py +0 -437
  25. orionis/_contracts/console/command_filter.py +0 -32
  26. orionis/_contracts/console/kernel.py +0 -32
  27. orionis/_contracts/console/output/__init__.py +0 -0
  28. orionis/_contracts/console/output/console.py +0 -421
  29. orionis/_contracts/console/output/executor.py +0 -51
  30. orionis/_contracts/console/parser.py +0 -75
  31. orionis/_contracts/console/task_manager.py +0 -37
  32. orionis/_contracts/facades/__init__.py +0 -0
  33. orionis/_contracts/facades/commands/__init__.py +0 -0
  34. orionis/_contracts/facades/commands/commands_facade.py +0 -40
  35. orionis/_contracts/facades/commands/scheduler_facade.py +0 -28
  36. orionis/_contracts/facades/config/__init__.py +0 -0
  37. orionis/_contracts/facades/config/config_facade.py +0 -37
  38. orionis/_contracts/facades/environment/__init__.py +0 -0
  39. orionis/_contracts/facades/environment/environment_facade.py +0 -74
  40. orionis/_contracts/facades/facade.py +0 -38
  41. orionis/_contracts/facades/files/__init__.py +0 -0
  42. orionis/_contracts/facades/files/path_facade.py +0 -148
  43. orionis/_contracts/facades/log/__init__.py +0 -0
  44. orionis/_contracts/facades/log/log_facade.py +0 -83
  45. orionis/_contracts/facades/tests/__init__.py +0 -0
  46. orionis/_contracts/facades/tests/tests_facade.py +0 -30
  47. orionis/_contracts/foundation/__init__.py +0 -0
  48. orionis/_contracts/foundation/bootstraper.py +0 -41
  49. orionis/_contracts/foundation/config/__init__.py +0 -0
  50. orionis/_contracts/foundation/config/config_bootstrapper.py +0 -140
  51. orionis/_contracts/foundation/console/__init__.py +0 -0
  52. orionis/_contracts/foundation/console/command_bootstrapper.py +0 -81
  53. orionis/_contracts/foundation/environment/__init__.py +0 -0
  54. orionis/_contracts/foundation/environment/environment_bootstrapper.py +0 -33
  55. orionis/_contracts/foundation/providers/__init__.py +0 -0
  56. orionis/_contracts/foundation/providers/service_providers_bootstrapper.py +0 -47
  57. orionis/_contracts/providers/__init__.py +0 -0
  58. orionis/_contracts/providers/service_provider.py +0 -14
  59. orionis/_contracts/services/__init__.py +0 -0
  60. orionis/_contracts/services/commands/__init__.py +0 -0
  61. orionis/_contracts/services/commands/reactor_commands_service.py +0 -23
  62. orionis/_contracts/services/commands/schedule_service.py +0 -317
  63. orionis/_contracts/services/config/__init__.py +0 -0
  64. orionis/_contracts/services/config/config_service.py +0 -37
  65. orionis/_contracts/services/environment/__init__.py +0 -0
  66. orionis/_contracts/services/environment/environment_service.py +0 -74
  67. orionis/_contracts/services/files/__init__.py +0 -0
  68. orionis/_contracts/services/files/path_resolver_service.py +0 -29
  69. orionis/_contracts/services/log/__init__.py +0 -0
  70. orionis/_contracts/services/log/log_service.py +0 -89
  71. orionis/_contracts/support/exception_parse.py +0 -26
  72. orionis/_contracts/support/reflection.py +0 -352
  73. orionis/_foundation/__init__.py +0 -0
  74. orionis/_foundation/console/__init__.py +0 -0
  75. orionis/_foundation/console/command_bootstrapper.py +0 -175
  76. orionis/_foundation/environment/__init__.py +0 -0
  77. orionis/_foundation/environment/environment_bootstrapper.py +0 -76
  78. orionis/_foundation/exceptions/__init__.py +0 -0
  79. orionis/_foundation/exceptions/exception_bootstrapper.py +0 -54
  80. orionis/_foundation/exceptions/exception_providers.py +0 -54
  81. orionis/_foundation/foundation/config/__init__.py +0 -0
  82. orionis/_foundation/foundation/config/config_bootstrapper.py +0 -209
  83. orionis/_foundation/providers/__init__.py +0 -0
  84. orionis/_foundation/providers/service_providers_bootstrapper.py +0 -107
  85. orionis/_services/__init__.py +0 -0
  86. orionis/_services/commands/__init__.py +0 -0
  87. orionis/_services/commands/reactor_commands_service.py +0 -148
  88. orionis/_services/commands/scheduler_service.py +0 -611
  89. orionis/_services/config/__init__.py +0 -0
  90. orionis/_services/config/config_service.py +0 -72
  91. {orionis-0.418.0.dist-info → orionis-0.420.0.dist-info}/WHEEL +0 -0
  92. {orionis-0.418.0.dist-info → orionis-0.420.0.dist-info}/licenses/LICENCE +0 -0
  93. {orionis-0.418.0.dist-info → orionis-0.420.0.dist-info}/zip-safe +0 -0
  94. {foundation → tests/foundation}/__init__.py +0 -0
  95. {foundation → tests/foundation}/config/__init__.py +0 -0
  96. {foundation → tests/foundation}/config/app/__init__.py +0 -0
  97. {foundation → tests/foundation}/config/auth/__init__.py +0 -0
  98. {foundation → tests/foundation}/config/auth/test_foundation_config_auth.py +0 -0
  99. {foundation → tests/foundation}/config/cache/__init__.py +0 -0
  100. {foundation → tests/foundation}/config/cache/test_foundation_config_cache.py +0 -0
  101. {foundation → tests/foundation}/config/cors/__init__.py +0 -0
  102. {foundation → tests/foundation}/config/cors/test_foundation_config_cors.py +0 -0
  103. {foundation → tests/foundation}/config/database/__init__.py +0 -0
  104. {foundation → tests/foundation}/config/database/test_foundation_config_database.py +0 -0
  105. {foundation → tests/foundation}/config/database/test_foundation_config_database_connections.py +0 -0
  106. {foundation → tests/foundation}/config/database/test_foundation_config_database_mysql.py +0 -0
  107. {foundation → tests/foundation}/config/database/test_foundation_config_database_oracle.py +0 -0
  108. {foundation → tests/foundation}/config/database/test_foundation_config_database_sqlite.py +0 -0
  109. {foundation → tests/foundation}/config/filesystems/__init__.py +0 -0
  110. {foundation → tests/foundation}/config/filesystems/test_foundation_config_filesystems.py +0 -0
  111. {foundation → tests/foundation}/config/filesystems/test_foundation_config_filesystems_aws.py +0 -0
  112. {foundation → tests/foundation}/config/filesystems/test_foundation_config_filesystems_disks.py +0 -0
  113. {foundation → tests/foundation}/config/filesystems/test_foundation_config_filesystems_local.py +0 -0
  114. {foundation → tests/foundation}/config/filesystems/test_foundation_config_filesystems_public.py +0 -0
  115. {foundation → tests/foundation}/config/logging/__init__.py +0 -0
  116. {foundation → tests/foundation}/config/logging/test_foundation_config_logging.py +0 -0
  117. {foundation → tests/foundation}/config/logging/test_foundation_config_logging_channels.py +0 -0
  118. {foundation → tests/foundation}/config/logging/test_foundation_config_logging_chunked.py +0 -0
  119. {foundation → tests/foundation}/config/logging/test_foundation_config_logging_daily.py +0 -0
  120. {foundation → tests/foundation}/config/logging/test_foundation_config_logging_hourly.py +0 -0
  121. {foundation → tests/foundation}/config/logging/test_foundation_config_logging_monthly.py +0 -0
  122. {foundation → tests/foundation}/config/logging/test_foundation_config_logging_stack.py +0 -0
  123. {foundation → tests/foundation}/config/logging/test_foundation_config_logging_weekly.py +0 -0
  124. {foundation → tests/foundation}/config/mail/__init__.py +0 -0
  125. {foundation → tests/foundation}/config/mail/test_foundation_config_mail.py +0 -0
  126. {foundation → tests/foundation}/config/mail/test_foundation_config_mail_file.py +0 -0
  127. {foundation → tests/foundation}/config/mail/test_foundation_config_mail_mailers.py +0 -0
  128. {foundation → tests/foundation}/config/mail/test_foundation_config_mail_smtp.py +0 -0
  129. {foundation → tests/foundation}/config/queue/__init__.py +0 -0
  130. {foundation → tests/foundation}/config/queue/test_foundation_config_queue_database.py +0 -0
  131. {foundation → tests/foundation}/config/root/__init__.py +0 -0
  132. {foundation → tests/foundation}/config/session/__init__.py +0 -0
  133. {foundation → tests/foundation}/config/session/test_foundation_config_session.py +0 -0
  134. {foundation → tests/foundation}/config/startup/__init__.py +0 -0
  135. {foundation → tests/foundation}/config/testing/__init__.py +0 -0
  136. {foundation → tests/foundation}/config/testing/test_foundation_config_testing.py +0 -0
@@ -5,7 +5,7 @@
5
5
  NAME = "orionis"
6
6
 
7
7
  # Current version of the framework
8
- VERSION = "0.418.0"
8
+ VERSION = "0.420.0"
9
9
 
10
10
  # Full name of the author or maintainer of the project
11
11
  AUTHOR = "Raul Mauricio Uñate Castro"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: orionis
3
- Version: 0.418.0
3
+ Version: 0.420.0
4
4
  Summary: Orionis Framework – Elegant, Fast, and Powerful.
5
5
  Home-page: https://github.com/orionis-framework/framework
6
6
  Author: Raul Mauricio Uñate Castro
@@ -1,58 +1,5 @@
1
1
  environment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  environment/test_services_environment.py,sha256=6UH3g2Z2DQYtGnyySCRnT35VCENlL-PQWHIdH6zA9rw,3767
3
- foundation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
- foundation/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
- foundation/config/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
- foundation/config/app/test_foundation_config_app.py,sha256=3ol-IOoYs5wbxEY7rPsiR1LnFTbcaeqcKUy0x1KTVH0,5580
7
- foundation/config/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
- foundation/config/auth/test_foundation_config_auth.py,sha256=iDK3VuJ3TtuEYE5dR8xaByQ8mZLbrsFdCqaFrfCFlgY,1048
9
- foundation/config/cache/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
- foundation/config/cache/test_foundation_config_cache.py,sha256=fDtw_0NPB2h18nrR13zD6WXL7lK6QyQKjpj6R61LMuw,4653
11
- foundation/config/cache/test_foundation_config_cache_file.py,sha256=X_kb3D5LkZOq1VPqemgP1XRTsD_FLk8CG0MZWl1Wp1Y,3674
12
- foundation/config/cache/test_foundation_config_cache_stores.py,sha256=yRVB5aBEGfL6sjJvLQAP0SFOXyiB7UjDgv01d5mPtjo,4584
13
- foundation/config/cors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
- foundation/config/cors/test_foundation_config_cors.py,sha256=0B19I4g5TRp9vQu79vcteeIsjbBpiIoE6Mxslx5d9os,6721
15
- foundation/config/database/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
- foundation/config/database/test_foundation_config_database.py,sha256=OiO42vc940RVCcHTj7XoMO-xpKFQ5l-5JpSYR4jwR24,4846
17
- foundation/config/database/test_foundation_config_database_connections.py,sha256=sQ5b2rwmhdMk44oZOx4Hb6EGW_3DW3dnDUtTKu0QSWA,6977
18
- foundation/config/database/test_foundation_config_database_mysql.py,sha256=200U6fL9XysUJ7tynSCKcWdRPEd7Fh4TP-lfSE2wMzY,12432
19
- foundation/config/database/test_foundation_config_database_oracle.py,sha256=zhWuAFPKW5EQtTmfIunqo8mKjcdqbLy-nnSiy4x6lS4,10413
20
- foundation/config/database/test_foundation_config_database_pgsql.py,sha256=Vl9AcYw-lTGUbyH8r6wtO27pd1B0ndRYwaJLiaivIRI,8531
21
- foundation/config/database/test_foundation_config_database_sqlite.py,sha256=oxb0kyENsRHNiw5NwqYicB-URM43j0jTlL5leiPBm8Y,7362
22
- foundation/config/filesystems/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
- foundation/config/filesystems/test_foundation_config_filesystems.py,sha256=_XYpbESjUwX-LmLv2Ik4dPc-32KEiaa7_Iz753dXz-E,5278
24
- foundation/config/filesystems/test_foundation_config_filesystems_aws.py,sha256=IqYDNTmYAtFLFsa0jLzbYZSApqo_YHxysaD74ytezrc,5897
25
- foundation/config/filesystems/test_foundation_config_filesystems_disks.py,sha256=lG4bvb0kAcGQbwwtDzKPnW0jZG7Aniw52A4m-3vaL4Q,6474
26
- foundation/config/filesystems/test_foundation_config_filesystems_local.py,sha256=X10AQjmlNB2sty34hXOkTDcMcZDraF-x1Kw6X7NxcBc,4296
27
- foundation/config/filesystems/test_foundation_config_filesystems_public.py,sha256=W94Fb5CZ81HMaDI9Z_YetdY0ma77qINad-2AWBcyRlI,5900
28
- foundation/config/logging/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
29
- foundation/config/logging/test_foundation_config_logging.py,sha256=vCYAp8qe6SOo1VJQcb1_R5JMQe00HCl78D4E-43Dxm8,3183
30
- foundation/config/logging/test_foundation_config_logging_channels.py,sha256=c4OT2o_ml48uqwsCChXffRxFMjqpS3yTplZyvIqsEhA,8990
31
- foundation/config/logging/test_foundation_config_logging_chunked.py,sha256=TL-pLde4LAvHTcj01RT_Sa_OkwbQHzKrAH-9UGKVaMY,7021
32
- foundation/config/logging/test_foundation_config_logging_daily.py,sha256=Sf5vG6WL558N41dukprA5iiT1LoBXi1ak19QGSZpAsI,7076
33
- foundation/config/logging/test_foundation_config_logging_hourly.py,sha256=zjDDXykck_gH9TLPcoESwgjUd-6qZJDjjFwD_Xz2Yak,6765
34
- foundation/config/logging/test_foundation_config_logging_monthly.py,sha256=59AKYce42PqVVNGu_FjsQtR2EtXePUvYwgF4MkA01WM,6370
35
- foundation/config/logging/test_foundation_config_logging_stack.py,sha256=BYTtZmbJlGeW_7qXo7AlyQZOluvZDzMgBTM68hbq2nc,5302
36
- foundation/config/logging/test_foundation_config_logging_weekly.py,sha256=g-x3VCN_L1jrrSrsW1UkBWYpKeuK5ASAAzhlKQJDkvQ,7697
37
- foundation/config/mail/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
- foundation/config/mail/test_foundation_config_mail.py,sha256=xR3HY218J7vecdM1h0TaAfX4DGl90PUgmktlylT_4S8,4209
39
- foundation/config/mail/test_foundation_config_mail_file.py,sha256=9apGs381QxaO9gwwDTAtObF61AMFTd61c1Sfx1nZeYM,3023
40
- foundation/config/mail/test_foundation_config_mail_mailers.py,sha256=tcQ2EAcF2EOQ_QB2a765bexU_RImz8P7zBndi_tAFUk,3427
41
- foundation/config/mail/test_foundation_config_mail_smtp.py,sha256=cf2gRJ0-IcqN38MhXIP_pfVjsRsRlCDOHPNB11B7daE,4883
42
- foundation/config/queue/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
43
- foundation/config/queue/test_foundation_config_queue.py,sha256=xeeEmfgObuAnry7qB530vXWyNmCNl76vHyWXH0Eb-Qg,3416
44
- foundation/config/queue/test_foundation_config_queue_brokers.py,sha256=COjFZ25AzA7clRCkjt6MseaiuxYOulLEsZxGfY2Lo5c,3051
45
- foundation/config/queue/test_foundation_config_queue_database.py,sha256=qLYXjG8YVIp_NWYcZA9A2GmOdjFyt3snq9X1cdIok8M,4830
46
- foundation/config/root/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
47
- foundation/config/root/test_foundation_config_root_paths.py,sha256=HqxBdLI-mdsinSEjRKKKvbV2QzmXNfs4b__RzRoftiE,7102
48
- foundation/config/session/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
49
- foundation/config/session/test_foundation_config_session.py,sha256=Zvjzzy8ApRTogRbr3RaIe4EhvWoLKsX9udb2DSokCMI,6392
50
- foundation/config/startup/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
51
- foundation/config/startup/test_foundation_config_startup.py,sha256=_7pi_uaI3OJcQu4hSh_k0iE_wWZDU6kWUOS5Y9yp17c,6807
52
- foundation/config/testing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
53
- foundation/config/testing/test_foundation_config_testing.py,sha256=BQsQVGmGBiIyRPag6d-meBxip4tW9rWXbKR-V-YDIfU,8237
54
- foundation/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
55
- foundation/exceptions/test_foundation_config_exceptions.py,sha256=tiXKxGSP8majXpLPyoGR0WGvDE1LoLXQK6NpcQNqz_A,4091
56
3
  orionis/__init__.py,sha256=4AGBG1xD3NjsqkmQ-fD3pde7tiO26iwOpdvJoNvP0kI,201
57
4
  orionis/_console/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
58
5
  orionis/_console/command_filter.py,sha256=bn0fcWfQg13DrQBaV4NopNxdP-6up0G54Qmhg7r_BKA,1211
@@ -76,79 +23,6 @@ orionis/_console/output/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG
76
23
  orionis/_console/output/console.py,sha256=6KlvtE4ys6jJU9yLjAVYIHWDmHfWcOHIn_QGcHiJgq0,18894
77
24
  orionis/_console/output/executor.py,sha256=sk1l_SmTDE9ZDCUQ95XCwfx7HfBNJFOVs7Kjez9wBSc,3358
78
25
  orionis/_console/output/progress_bar.py,sha256=EX1d_sw9JRlE2gWu24bBBRpP2mWfgO_P9S6ztvWuZ2Q,3088
79
- orionis/_contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
80
- orionis/_contracts/application.py,sha256=ltuDA1mN5P73l89jJto_A96ePJWE02OZ_B2NOPpfeWs,1061
81
- orionis/_contracts/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
82
- orionis/_contracts/config/config.py,sha256=rbeojO2gm8XhSXIPY8EnUt4e0wO633OKF9Nx_tN5y60,785
83
- orionis/_contracts/console/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
84
- orionis/_contracts/console/command_filter.py,sha256=g66AlKNjTyQfdarO23r27nFqwiCnrP6kjaZ7tUGql-c,937
85
- orionis/_contracts/console/kernel.py,sha256=GtiGlWe7EQ9aeChHpQ-GlIJlJ5tEqpZYYkjNcrwXI94,945
86
- orionis/_contracts/console/parser.py,sha256=2iu8mHscZmb2BcX6-6Fy_NVvqN5Zj1YEk2fWOf30XT8,2080
87
- orionis/_contracts/console/task_manager.py,sha256=iL5EphyFAJ6zNywCF3tkblQsoieZtW_7E9ETZbpEhYs,1199
88
- orionis/_contracts/console/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
89
- orionis/_contracts/console/base/command.py,sha256=sC0YLjmaFOxWpreJ26RydijFyTsJCBi6u3IldowHl5Q,10852
90
- orionis/_contracts/console/output/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
91
- orionis/_contracts/console/output/console.py,sha256=jISa955ZVOUuJUdm7UCo_r_Ft1j9vG7Tg5j5aDw3Bvc,10552
92
- orionis/_contracts/console/output/executor.py,sha256=MGMTTPSwF8dgCjHD3A4CKtYDaCcD-KU28dorC61Q04k,1411
93
- orionis/_contracts/facades/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
94
- orionis/_contracts/facades/facade.py,sha256=FqCnNBP6vKw94rMDr-fRoAyIJp83ZxC1iLsiubrH3ps,1507
95
- orionis/_contracts/facades/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
96
- orionis/_contracts/facades/commands/commands_facade.py,sha256=LpSfZb3lTmhgMx0H42NmFbKLvcOqSDIbpQrkQpF9RPY,1274
97
- orionis/_contracts/facades/commands/scheduler_facade.py,sha256=KHPzCQ_zsvsGutFPdM211IzFNJlgdSucWzbvJGWDnxI,939
98
- orionis/_contracts/facades/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
99
- orionis/_contracts/facades/config/config_facade.py,sha256=Yzc0mB4W9XF8cZTdTO78AKUiyGaiShl1k8nJiecvKTc,970
100
- orionis/_contracts/facades/environment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
101
- orionis/_contracts/facades/environment/environment_facade.py,sha256=-xyYYqC1DrkQ751d2qTsGNNgnvs_idn1v4TYZ4X7Z34,1944
102
- orionis/_contracts/facades/files/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
103
- orionis/_contracts/facades/files/path_facade.py,sha256=-6OWYFsXmQ2vOBlp6uBwN0TnwTB-otaBEJiYO7ZKVoQ,4497
104
- orionis/_contracts/facades/log/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
105
- orionis/_contracts/facades/log/log_facade.py,sha256=xkdR6nMAENv9NLOFUAnk1WRh9bYuisSAhnlkdlD5O7g,1894
106
- orionis/_contracts/facades/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
107
- orionis/_contracts/facades/tests/tests_facade.py,sha256=GM6d9skPZwynx1lu_abfuJ_L5GvG9b12vI-KX7phYJc,890
108
- orionis/_contracts/foundation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
109
- orionis/_contracts/foundation/bootstraper.py,sha256=9IFxjUW5akHTUb_BLwxiy88OIJkl0bptUOBVdfnk2PU,1165
110
- orionis/_contracts/foundation/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
111
- orionis/_contracts/foundation/config/config_bootstrapper.py,sha256=c_79hlGIO25NQn5ERnLdBKrqDxNga-c14xLuLG2m1C0,4452
112
- orionis/_contracts/foundation/console/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
113
- orionis/_contracts/foundation/console/command_bootstrapper.py,sha256=cfpYWSlNhOY1q_C9o0H7F381OoM0Oh0qaeqP-c85nzk,2457
114
- orionis/_contracts/foundation/environment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
115
- orionis/_contracts/foundation/environment/environment_bootstrapper.py,sha256=MEeZmh0XWvzvWHFB5ZOp5SKY89F1IHsIXJvdjmEncJU,1076
116
- orionis/_contracts/foundation/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
117
- orionis/_contracts/foundation/providers/service_providers_bootstrapper.py,sha256=o-vtSmOfdWVjLBQO8HDvtwZxLVxYTQefO8LIKH7d1ww,1551
118
- orionis/_contracts/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
119
- orionis/_contracts/providers/service_provider.py,sha256=al_fXxMpOBoN72D7bJatKzjz7PTMGYZQYb1o2MS8GGw,409
120
- orionis/_contracts/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
121
- orionis/_contracts/services/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
122
- orionis/_contracts/services/commands/reactor_commands_service.py,sha256=msIOfwOYASFNuS4shhwsnukPH5_XnuxNBHW9f6q-Lqo,795
123
- orionis/_contracts/services/commands/schedule_service.py,sha256=fNkPdy94X93r3wjlOUaVBLfSOjo8lkINwfVbC2w5WR0,10124
124
- orionis/_contracts/services/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
125
- orionis/_contracts/services/config/config_service.py,sha256=TdlEEsd8jvzBGozwaZtQ9KYHisY4ACL-VUOtydidHeE,989
126
- orionis/_contracts/services/environment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
127
- orionis/_contracts/services/environment/environment_service.py,sha256=e-bod0MTq21WVvchlE7kyMQoFL_yhhN4ddRfzctDrz0,1959
128
- orionis/_contracts/services/files/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
129
- orionis/_contracts/services/files/path_resolver_service.py,sha256=B53Qzei4o_jzehIF0zJVHXzI4S-h0XeQ5vMslxT8okM,837
130
- orionis/_contracts/services/log/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
131
- orionis/_contracts/services/log/log_service.py,sha256=1RD3u-a5ZDMbg7AYE8y2SW8QNRybAU3De0mEA0dAeNo,2167
132
- orionis/_contracts/support/exception_parse.py,sha256=P7yh5Q3KIcRPAZeg6190XbOSvu5XBK-VVt6zHxaiexw,779
133
- orionis/_contracts/support/reflection.py,sha256=Ht5_FsFbCb-APRXX3HdsfKl3cDZU8DyXGXPWKTn05uQ,8429
134
- orionis/_foundation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
135
- orionis/_foundation/console/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
136
- orionis/_foundation/console/command_bootstrapper.py,sha256=mBVW_TWnpmmv955uqPzCmcuqzwLlD_bgV4vWfThx0IQ,7040
137
- orionis/_foundation/environment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
138
- orionis/_foundation/environment/environment_bootstrapper.py,sha256=Rms4oF8KpAQp2IBrK6msLma1B3bGY5pyM-7AAOUGL_g,2762
139
- orionis/_foundation/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
140
- orionis/_foundation/exceptions/exception_bootstrapper.py,sha256=wDKfEW295c7-bavr7YUHK2CLYcTSZgjT9ZRSBne6GOE,1356
141
- orionis/_foundation/exceptions/exception_providers.py,sha256=VxrzuDRKXn8b73xKINPb-FxBusUz8ITXCu0KZh7Pm2o,1329
142
- orionis/_foundation/foundation/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
143
- orionis/_foundation/foundation/config/config_bootstrapper.py,sha256=Xml0S0oqPkUPwtEvs9hZ_A_FsOU5tlFJxUDGuTkD9do,7484
144
- orionis/_foundation/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
145
- orionis/_foundation/providers/service_providers_bootstrapper.py,sha256=V7Yd4_GCVW83jLFMsGUGfHNRsgfEnDywgAUkH50T270,4558
146
- orionis/_services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
147
- orionis/_services/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
148
- orionis/_services/commands/reactor_commands_service.py,sha256=hBxX242EsSRKOkNMhiyXzEbFiUXzPakMi8ZfxXBR2kA,6178
149
- orionis/_services/commands/scheduler_service.py,sha256=71iH4ZArJ2D9dfbQPSNP_S3g41Cc6gIzEVJdvaOUfeY,22467
150
- orionis/_services/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
151
- orionis/_services/config/config_service.py,sha256=iS5ftGd7VWCpOt9M5_rNNLHsCZaDcI-F8R2r3CCTM8g,2106
152
26
  orionis/console/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
153
27
  orionis/console/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
154
28
  orionis/console/base/command.py,sha256=2kKyTaEzI16Up-XCUeNeJmDWPLN-CweQm3EgrN9U8NQ,3027
@@ -313,7 +187,7 @@ orionis/foundation/providers/progress_bar_provider.py,sha256=WW3grNgH-yV2meSSTeO
313
187
  orionis/foundation/providers/testing_provider.py,sha256=iJSN2RIChbYIL-1ue6vmPmDMCSrvERDkti4Er9MPiLA,1102
314
188
  orionis/foundation/providers/workers_provider.py,sha256=kiQjQRyUEyiBX2zcbF_KmqRgvc7Bvxsvg5oMtIvYniM,1075
315
189
  orionis/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
316
- orionis/metadata/framework.py,sha256=GfFCTL5a97kM34ZKiSR3qI8VW6FwTH7DjlWbr3k5sww,4960
190
+ orionis/metadata/framework.py,sha256=VeFuH_eJAN6DndP4ZtNHrzwpg_dT2We8VPkkKrSQccE,4960
317
191
  orionis/metadata/package.py,sha256=tqLfBRo-w1j_GN4xvzUNFyweWYFS-qhSgAEc-AmCH1M,5452
318
192
  orionis/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
319
193
  orionis/services/asynchrony/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -483,7 +357,7 @@ orionis/test/validators/web_report.py,sha256=-h3Fe9jY93_kzUhd2NBIqEfCcBpu-8Ei9x3
483
357
  orionis/test/validators/workers.py,sha256=LGffDKtK6SKixFKzIYPQpI5aFeQPAGXpv_LUtmEu6g4,1102
484
358
  orionis/test/view/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
485
359
  orionis/test/view/render.py,sha256=3ICz68l-WF3BtnYqH5m-ktN9UD00MELMbmMnyJDV74A,4768
486
- orionis-0.418.0.dist-info/licenses/LICENCE,sha256=-_4cF2EBKuYVS_SQpy1uapq0oJPUU1vl_RUWSy2jJTo,1111
360
+ orionis-0.420.0.dist-info/licenses/LICENCE,sha256=-_4cF2EBKuYVS_SQpy1uapq0oJPUU1vl_RUWSy2jJTo,1111
487
361
  tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
488
362
  tests/container/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
489
363
  tests/container/test_container.py,sha256=asv8TkkupVoex6SWod74NBl4dSs7wb9mLmu_glNdNy8,14815
@@ -517,6 +391,57 @@ tests/container/validators/test_is_valid_alias.py,sha256=egVf6IfSXurIdu8hKo03rws
517
391
  tests/container/validators/test_lifetime.py,sha256=5PequjXAcIcp0Q4TIki7THSU31XftGpI0u1mVGqHmpU,4692
518
392
  tests/example/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
519
393
  tests/example/test_example.py,sha256=XJEcsro3vCO5m4zvMiWUGphvd0C7oIkBtUfQgTDsdUU,25568
394
+ tests/foundation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
395
+ tests/foundation/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
396
+ tests/foundation/config/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
397
+ tests/foundation/config/app/test_foundation_config_app.py,sha256=nXe50Gqxd_o2PvUv5Do8LTVkLRltbi9cBOGJgLAsxNE,10470
398
+ tests/foundation/config/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
399
+ tests/foundation/config/auth/test_foundation_config_auth.py,sha256=iDK3VuJ3TtuEYE5dR8xaByQ8mZLbrsFdCqaFrfCFlgY,1048
400
+ tests/foundation/config/cache/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
401
+ tests/foundation/config/cache/test_foundation_config_cache.py,sha256=fDtw_0NPB2h18nrR13zD6WXL7lK6QyQKjpj6R61LMuw,4653
402
+ tests/foundation/config/cache/test_foundation_config_cache_file.py,sha256=nqPTvt7yPvlk0nJfo2UG7lGJ91qhp5wfDOEj5MESk7s,3649
403
+ tests/foundation/config/cache/test_foundation_config_cache_stores.py,sha256=ToDxRCPUVyFLo-G95RoBB2EKpudzjnIASdfgctWJppc,4991
404
+ tests/foundation/config/cors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
405
+ tests/foundation/config/cors/test_foundation_config_cors.py,sha256=0B19I4g5TRp9vQu79vcteeIsjbBpiIoE6Mxslx5d9os,6721
406
+ tests/foundation/config/database/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
407
+ tests/foundation/config/database/test_foundation_config_database.py,sha256=OiO42vc940RVCcHTj7XoMO-xpKFQ5l-5JpSYR4jwR24,4846
408
+ tests/foundation/config/database/test_foundation_config_database_connections.py,sha256=sQ5b2rwmhdMk44oZOx4Hb6EGW_3DW3dnDUtTKu0QSWA,6977
409
+ tests/foundation/config/database/test_foundation_config_database_mysql.py,sha256=200U6fL9XysUJ7tynSCKcWdRPEd7Fh4TP-lfSE2wMzY,12432
410
+ tests/foundation/config/database/test_foundation_config_database_oracle.py,sha256=zhWuAFPKW5EQtTmfIunqo8mKjcdqbLy-nnSiy4x6lS4,10413
411
+ tests/foundation/config/database/test_foundation_config_database_pgsql.py,sha256=Pctyldh90HKFqEgiCd2GkoJFOunQBwIQd-loDc7cVv0,8519
412
+ tests/foundation/config/database/test_foundation_config_database_sqlite.py,sha256=oxb0kyENsRHNiw5NwqYicB-URM43j0jTlL5leiPBm8Y,7362
413
+ tests/foundation/config/filesystems/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
414
+ tests/foundation/config/filesystems/test_foundation_config_filesystems.py,sha256=_XYpbESjUwX-LmLv2Ik4dPc-32KEiaa7_Iz753dXz-E,5278
415
+ tests/foundation/config/filesystems/test_foundation_config_filesystems_aws.py,sha256=IqYDNTmYAtFLFsa0jLzbYZSApqo_YHxysaD74ytezrc,5897
416
+ tests/foundation/config/filesystems/test_foundation_config_filesystems_disks.py,sha256=lG4bvb0kAcGQbwwtDzKPnW0jZG7Aniw52A4m-3vaL4Q,6474
417
+ tests/foundation/config/filesystems/test_foundation_config_filesystems_local.py,sha256=X10AQjmlNB2sty34hXOkTDcMcZDraF-x1Kw6X7NxcBc,4296
418
+ tests/foundation/config/filesystems/test_foundation_config_filesystems_public.py,sha256=W94Fb5CZ81HMaDI9Z_YetdY0ma77qINad-2AWBcyRlI,5900
419
+ tests/foundation/config/logging/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
420
+ tests/foundation/config/logging/test_foundation_config_logging.py,sha256=vCYAp8qe6SOo1VJQcb1_R5JMQe00HCl78D4E-43Dxm8,3183
421
+ tests/foundation/config/logging/test_foundation_config_logging_channels.py,sha256=c4OT2o_ml48uqwsCChXffRxFMjqpS3yTplZyvIqsEhA,8990
422
+ tests/foundation/config/logging/test_foundation_config_logging_chunked.py,sha256=TL-pLde4LAvHTcj01RT_Sa_OkwbQHzKrAH-9UGKVaMY,7021
423
+ tests/foundation/config/logging/test_foundation_config_logging_daily.py,sha256=Sf5vG6WL558N41dukprA5iiT1LoBXi1ak19QGSZpAsI,7076
424
+ tests/foundation/config/logging/test_foundation_config_logging_hourly.py,sha256=zjDDXykck_gH9TLPcoESwgjUd-6qZJDjjFwD_Xz2Yak,6765
425
+ tests/foundation/config/logging/test_foundation_config_logging_monthly.py,sha256=59AKYce42PqVVNGu_FjsQtR2EtXePUvYwgF4MkA01WM,6370
426
+ tests/foundation/config/logging/test_foundation_config_logging_stack.py,sha256=BYTtZmbJlGeW_7qXo7AlyQZOluvZDzMgBTM68hbq2nc,5302
427
+ tests/foundation/config/logging/test_foundation_config_logging_weekly.py,sha256=g-x3VCN_L1jrrSrsW1UkBWYpKeuK5ASAAzhlKQJDkvQ,7697
428
+ tests/foundation/config/mail/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
429
+ tests/foundation/config/mail/test_foundation_config_mail.py,sha256=xR3HY218J7vecdM1h0TaAfX4DGl90PUgmktlylT_4S8,4209
430
+ tests/foundation/config/mail/test_foundation_config_mail_file.py,sha256=9apGs381QxaO9gwwDTAtObF61AMFTd61c1Sfx1nZeYM,3023
431
+ tests/foundation/config/mail/test_foundation_config_mail_mailers.py,sha256=tcQ2EAcF2EOQ_QB2a765bexU_RImz8P7zBndi_tAFUk,3427
432
+ tests/foundation/config/mail/test_foundation_config_mail_smtp.py,sha256=cf2gRJ0-IcqN38MhXIP_pfVjsRsRlCDOHPNB11B7daE,4883
433
+ tests/foundation/config/queue/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
434
+ tests/foundation/config/queue/test_foundation_config_queue.py,sha256=1qeov00ibVDnH2C_M_T9yylMFL7pyhxxIqL852YXS54,2807
435
+ tests/foundation/config/queue/test_foundation_config_queue_brokers.py,sha256=FezIF7aRFNi_bVa45kfbxO2Cf0DomFNuoybM64S88aw,2592
436
+ tests/foundation/config/queue/test_foundation_config_queue_database.py,sha256=qLYXjG8YVIp_NWYcZA9A2GmOdjFyt3snq9X1cdIok8M,4830
437
+ tests/foundation/config/root/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
438
+ tests/foundation/config/root/test_foundation_config_root_paths.py,sha256=rZkIsEik2crc0XUOHodT4QmmhIXhfpWGlWtn75akEI0,4096
439
+ tests/foundation/config/session/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
440
+ tests/foundation/config/session/test_foundation_config_session.py,sha256=Zvjzzy8ApRTogRbr3RaIe4EhvWoLKsX9udb2DSokCMI,6392
441
+ tests/foundation/config/startup/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
442
+ tests/foundation/config/startup/test_foundation_config_startup.py,sha256=9ZFwbWxQ9Fyskcpo5qrQtofjVMkBdA6mep9s-PIIx-c,7129
443
+ tests/foundation/config/testing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
444
+ tests/foundation/config/testing/test_foundation_config_testing.py,sha256=BQsQVGmGBiIyRPag6d-meBxip4tW9rWXbKR-V-YDIfU,8237
520
445
  tests/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
521
446
  tests/metadata/test_metadata_framework.py,sha256=1tCNciuPVgZPK-V8PzENJCXN-1bTktWPN9u03N4Eelw,5499
522
447
  tests/metadata/test_metadata_package.py,sha256=gXIX-N9toEHJsmFkdhAvJRnz2T5e6pbgK37I1eFYTGM,4770
@@ -575,8 +500,8 @@ tests/testing/validators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
575
500
  tests/testing/validators/test_testing_validators.py,sha256=QdcF0Vhnnl_kD-PzceHJbUYOqwPTB1Td7YaTv8LTr30,19612
576
501
  tests/testing/view/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
577
502
  tests/testing/view/test_render.py,sha256=-ghGG8rimyb2b2wtvMuSPPH7Zac5_NlVCiUcHRA5SNg,1172
578
- orionis-0.418.0.dist-info/METADATA,sha256=ZKFZOWXO9uGUExgwWij0vIfNjY5iy9wds1BN4LbMl1s,4772
579
- orionis-0.418.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
580
- orionis-0.418.0.dist-info/top_level.txt,sha256=nkPWzvqkAzAmwPMPo3_iiUgzWMFOGfz6hVwdASslEGE,37
581
- orionis-0.418.0.dist-info/zip-safe,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
582
- orionis-0.418.0.dist-info/RECORD,,
503
+ orionis-0.420.0.dist-info/METADATA,sha256=aJ9xqj-m8GhiJyhqnRHM3aqcFhONs0Xp-fzQQSt58P8,4772
504
+ orionis-0.420.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
505
+ orionis-0.420.0.dist-info/top_level.txt,sha256=0G1WIo0HbkZ6hNbKp6cdXLoKj1SfULEORhCuPIV_Dqw,26
506
+ orionis-0.420.0.dist-info/zip-safe,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
507
+ orionis-0.420.0.dist-info/RECORD,,
@@ -1,4 +1,3 @@
1
1
  environment
2
- foundation
3
2
  orionis
4
3
  tests
@@ -0,0 +1,262 @@
1
+ from orionis.foundation.config.app.entities.app import App
2
+ from orionis.foundation.config.app.enums.ciphers import Cipher
3
+ from orionis.foundation.config.app.enums.environments import Environments
4
+ from orionis.foundation.exceptions.integrity import OrionisIntegrityException
5
+ from orionis.test.cases.asynchronous import AsyncTestCase
6
+ from orionis.services.system.workers import Workers
7
+
8
+ class TestFoundationConfigApp(AsyncTestCase):
9
+
10
+ async def testDefaultValues(self):
11
+ """
12
+ Tests that the App class initializes with the correct default values for all attributes.
13
+
14
+ This method creates an instance of the App class without passing any arguments and
15
+ verifies that each attribute is set to its expected default value. It also checks that
16
+ the generated key is a non-empty string.
17
+
18
+ Returns
19
+ -------
20
+ None
21
+ This method does not return any value. It performs assertions to validate default values.
22
+ """
23
+ app = App() # Create App instance with default parameters
24
+
25
+ # Assert default name
26
+ self.assertEqual(app.name, 'Orionis Application')
27
+
28
+ # Assert default environment
29
+ self.assertEqual(app.env, Environments.DEVELOPMENT.value)
30
+
31
+ # Assert default debug mode is enabled
32
+ self.assertTrue(app.debug)
33
+
34
+ # Assert default URL
35
+ self.assertEqual(app.url, 'http://127.0.0.1')
36
+
37
+ # Assert default port
38
+ self.assertEqual(app.port, 8000)
39
+
40
+ # Assert default timezone
41
+ self.assertEqual(app.timezone, 'UTC')
42
+
43
+ # Assert default locale
44
+ self.assertEqual(app.locale, 'en')
45
+
46
+ # Assert default fallback locale
47
+ self.assertEqual(app.fallback_locale, 'en')
48
+
49
+ # Assert default cipher
50
+ self.assertEqual(app.cipher, Cipher.AES_256_CBC.value)
51
+
52
+ # Assert key is a non-empty string
53
+ self.assertIsInstance(app.key, str)
54
+ self.assertTrue(app.key) # key is never None or empty
55
+ self.assertEqual(app.maintenance, '/maintenance')
56
+
57
+ async def testEnvironmentValidation(self):
58
+ """
59
+ Validates that the App class correctly handles environment values.
60
+
61
+ This method tests the initialization of the App class with different environment values,
62
+ ensuring that valid environments are accepted and set correctly, while invalid values
63
+ raise an OrionisIntegrityException.
64
+
65
+ Parameters
66
+ ----------
67
+ None
68
+
69
+ Returns
70
+ -------
71
+ None
72
+ This method does not return any value. It performs assertions to validate environment handling.
73
+ """
74
+ # Test with a valid environment string
75
+ app = App(env="PRODUCTION")
76
+ self.assertEqual(app.env, Environments.PRODUCTION.value)
77
+
78
+ # Test with a valid Environments enum
79
+ app = App(env=Environments.TESTING)
80
+ self.assertEqual(app.env, Environments.TESTING.value)
81
+
82
+ # Test with an invalid environment value, expecting an exception
83
+ with self.assertRaises(OrionisIntegrityException):
84
+ App(env="INVALID_ENV")
85
+
86
+ async def testCipherValidation(self):
87
+ """
88
+ Validates that the App class correctly handles cipher values.
89
+
90
+ This method tests the initialization of the App class with different cipher values,
91
+ ensuring that valid ciphers are accepted and set correctly, while invalid values
92
+ raise an OrionisIntegrityException.
93
+
94
+ Parameters
95
+ ----------
96
+ None
97
+
98
+ Returns
99
+ -------
100
+ None
101
+ This method does not return any value. It performs assertions to validate cipher handling.
102
+ """
103
+ # Test with a valid cipher string
104
+ app = App(cipher="AES_128_CBC")
105
+ self.assertEqual(app.cipher, Cipher.AES_128_CBC.value)
106
+
107
+ # Test with a valid Cipher enum
108
+ app = App(cipher=Cipher.AES_192_CBC)
109
+ self.assertEqual(app.cipher, Cipher.AES_192_CBC.value)
110
+
111
+ # Test with an invalid cipher value, expecting an exception
112
+ with self.assertRaises(OrionisIntegrityException):
113
+ App(cipher="INVALID_CIPHER")
114
+
115
+ async def testTypeValidation(self):
116
+ """
117
+ Validates that the App class enforces correct types for its attributes.
118
+
119
+ This method attempts to initialize the App class with incorrect types for various attributes.
120
+ It asserts that an OrionisIntegrityException is raised for each case, ensuring that type validation
121
+ is properly enforced for all relevant parameters.
122
+
123
+ Parameters
124
+ ----------
125
+ None
126
+
127
+ Returns
128
+ -------
129
+ None
130
+ This method does not return any value. It performs assertions to verify type validation.
131
+ """
132
+ # Name must be a string, not an integer
133
+ with self.assertRaises(OrionisIntegrityException):
134
+ App(name=123)
135
+
136
+ # Debug must be a boolean, not a string
137
+ with self.assertRaises(OrionisIntegrityException):
138
+ App(debug="true")
139
+
140
+ # URL must be a string, not an integer
141
+ with self.assertRaises(OrionisIntegrityException):
142
+ App(url=123)
143
+
144
+ # Port must be an integer, not a string
145
+ with self.assertRaises(OrionisIntegrityException):
146
+ App(port="8000")
147
+
148
+ # Workers must be an integer, not a string
149
+ with self.assertRaises(OrionisIntegrityException):
150
+ App(workers="4")
151
+
152
+ # Reload must be a boolean, not a string
153
+ with self.assertRaises(OrionisIntegrityException):
154
+ App(reload="true")
155
+
156
+ async def testWorkersRangeValidation(self):
157
+ """
158
+ Tests the validation of the workers parameter range for the App class.
159
+
160
+ This method verifies that the App class raises an OrionisIntegrityException
161
+ when initialized with an invalid number of workers. Specifically, it checks
162
+ for two cases:
163
+ - When the number of workers is set to 0 (below the minimum allowed).
164
+ - When the number of workers exceeds the maximum allowed, as calculated
165
+ by Workers().calculate().
166
+
167
+ Comments are provided within the code to clarify the purpose of each assertion.
168
+
169
+ Returns
170
+ -------
171
+ None
172
+ This test method does not return any value. It asserts that exceptions
173
+ are raised for invalid worker counts.
174
+ """
175
+ max_workers = Workers().calculate()
176
+ with self.assertRaises(OrionisIntegrityException):
177
+ App(workers=0)
178
+ with self.assertRaises(OrionisIntegrityException):
179
+ App(workers=max_workers + 1)
180
+
181
+ async def testToDictMethod(self):
182
+ """
183
+ Tests the `toDict` method of the App class to ensure it returns a dictionary
184
+ representation of the application's configuration with correct values.
185
+
186
+ This method creates an instance of the App class using default parameters,
187
+ invokes the `toDict` method, and verifies that the returned dictionary contains
188
+ all expected keys and values matching the default configuration. It also checks
189
+ that the key attribute is a non-empty string.
190
+
191
+ Returns
192
+ -------
193
+ None
194
+ This method does not return any value. It performs assertions to validate
195
+ the correctness of the dictionary returned by `toDict`.
196
+ """
197
+ app = App() # Create App instance with default parameters
198
+
199
+ app_dict = app.toDict() # Get dictionary representation of the app configuration
200
+
201
+ # Assert that the returned value is a dictionary
202
+ self.assertIsInstance(app_dict, dict)
203
+
204
+ # Assert each key in the dictionary matches the expected default value
205
+ self.assertEqual(app_dict['name'], 'Orionis Application')
206
+ self.assertEqual(app_dict['env'], Environments.DEVELOPMENT.value)
207
+ self.assertTrue(app_dict['debug'])
208
+ self.assertEqual(app_dict['url'], 'http://127.0.0.1')
209
+ self.assertEqual(app_dict['port'], 8000)
210
+ self.assertEqual(app_dict['timezone'], 'UTC')
211
+ self.assertEqual(app_dict['locale'], 'en')
212
+ self.assertEqual(app_dict['fallback_locale'], 'en')
213
+ self.assertEqual(app_dict['cipher'], Cipher.AES_256_CBC.value)
214
+
215
+ # Assert that the key is a non-empty string
216
+ self.assertIsInstance(app_dict['key'], str)
217
+ self.assertTrue(app_dict['key'])
218
+
219
+ self.assertEqual(app_dict['maintenance'], '/maintenance')
220
+
221
+ async def testNonEmptyStringValidation(self):
222
+ """
223
+ Validates that the App class enforces non-empty string constraints for specific attributes.
224
+
225
+ This method attempts to initialize the App class with empty strings for attributes that require
226
+ non-empty values, such as `name`, `url`, `timezone`, `locale`, `fallback_locale`, and `maintenance`.
227
+ It asserts that an OrionisIntegrityException is raised for each case, ensuring that the class
228
+ properly enforces non-empty string validation. Additionally, it checks that the `maintenance`
229
+ attribute must start with a forward slash (`/`).
230
+
231
+ Returns
232
+ -------
233
+ None
234
+ This method does not return any value. It performs assertions to verify non-empty string validation.
235
+ """
236
+ # Name must not be an empty string
237
+ with self.assertRaises(OrionisIntegrityException):
238
+ App(name="")
239
+
240
+ # URL must not be an empty string
241
+ with self.assertRaises(OrionisIntegrityException):
242
+ App(url="")
243
+
244
+ # Timezone must not be an empty string
245
+ with self.assertRaises(OrionisIntegrityException):
246
+ App(timezone="")
247
+
248
+ # Locale must not be an empty string
249
+ with self.assertRaises(OrionisIntegrityException):
250
+ App(locale="")
251
+
252
+ # Fallback locale must not be an empty string
253
+ with self.assertRaises(OrionisIntegrityException):
254
+ App(fallback_locale="")
255
+
256
+ # Maintenance must not be an empty string
257
+ with self.assertRaises(OrionisIntegrityException):
258
+ App(maintenance="")
259
+
260
+ # Maintenance must start with a forward slash ('/')
261
+ with self.assertRaises(OrionisIntegrityException):
262
+ App(maintenance="maintenance")
@@ -4,17 +4,17 @@ from orionis.test.cases.asynchronous import AsyncTestCase
4
4
 
5
5
  class TestFoundationConfigCacheFile(AsyncTestCase):
6
6
  """
7
- Test cases for the File cache configuration entity.
7
+ Unit tests for the File cache configuration dataclass.
8
8
 
9
- This class contains unit tests for the `File` cache configuration entity,
10
- validating its initialization, path handling, and dictionary representation.
9
+ These tests validate the initialization, attribute validation, and dictionary representation
10
+ of the File cache configuration entity.
11
11
  """
12
12
 
13
13
  async def testDefaultPath(self):
14
14
  """
15
15
  Test default path initialization.
16
16
 
17
- Ensures that a `File` instance is created with the correct default path.
17
+ Ensures that a File instance is created with the correct default path.
18
18
 
19
19
  Returns
20
20
  -------
@@ -41,7 +41,7 @@ class TestFoundationConfigCacheFile(AsyncTestCase):
41
41
  """
42
42
  Test validation for empty path.
43
43
 
44
- Ensures that providing an empty path raises an `OrionisIntegrityException`.
44
+ Ensures that providing an empty path raises an OrionisIntegrityException.
45
45
 
46
46
  Returns
47
47
  -------
@@ -59,7 +59,7 @@ class TestFoundationConfigCacheFile(AsyncTestCase):
59
59
  """
60
60
  Test validation for path type.
61
61
 
62
- Ensures that non-string path values raise an `OrionisIntegrityException`.
62
+ Ensures that non-string path values raise an OrionisIntegrityException.
63
63
 
64
64
  Returns
65
65
  -------
@@ -83,7 +83,7 @@ class TestFoundationConfigCacheFile(AsyncTestCase):
83
83
  """
84
84
  Test dictionary representation.
85
85
 
86
- Ensures that the `toDict` method returns a dictionary with the expected path value.
86
+ Ensures that the toDict method returns a dictionary with the expected path value.
87
87
 
88
88
  Returns
89
89
  -------
@@ -99,7 +99,7 @@ class TestFoundationConfigCacheFile(AsyncTestCase):
99
99
  """
100
100
  Test custom path in dictionary representation.
101
101
 
102
- Ensures that custom paths are properly included in the dictionary returned by `toDict`.
102
+ Ensures that custom paths are properly included in the dictionary returned by toDict.
103
103
 
104
104
  Returns
105
105
  -------
@@ -35,7 +35,7 @@ class TestFoundationConfigCacheStores(AsyncTestCase):
35
35
  """
36
36
  Test initialization with a custom File configuration.
37
37
 
38
- Ensures that a custom `File` instance can be provided during
38
+ Ensures that a custom `File` instance or dict can be provided during
39
39
  initialization and is correctly assigned to the `file` attribute.
40
40
 
41
41
  Returns
@@ -47,11 +47,15 @@ class TestFoundationConfigCacheStores(AsyncTestCase):
47
47
  self.assertIsInstance(stores.file, File)
48
48
  self.assertEqual(stores.file.path, 'custom/cache/path')
49
49
 
50
+ stores_dict = Stores(file={'path': 'dict/cache/path'})
51
+ self.assertIsInstance(stores_dict.file, File)
52
+ self.assertEqual(stores_dict.file.path, 'dict/cache/path')
53
+
50
54
  async def testFileTypeValidation(self):
51
55
  """
52
56
  Test type validation for the file attribute.
53
57
 
54
- Ensures that providing a non-`File` instance to the `file` attribute
58
+ Ensures that providing a non-`File` instance or dict to the `file` attribute
55
59
  raises an `OrionisIntegrityException`.
56
60
 
57
61
  Returns
@@ -61,7 +65,7 @@ class TestFoundationConfigCacheStores(AsyncTestCase):
61
65
  Raises
62
66
  ------
63
67
  OrionisIntegrityException
64
- If the `file` attribute is not a `File` instance.
68
+ If the `file` attribute is not a `File` instance or dict.
65
69
  """
66
70
  with self.assertRaises(OrionisIntegrityException):
67
71
  Stores(file="not_a_file_instance")
@@ -107,6 +111,10 @@ class TestFoundationConfigCacheStores(AsyncTestCase):
107
111
 
108
112
  self.assertEqual(stores_dict['file']['path'], 'alternate/cache/location')
109
113
 
114
+ stores_dict_input = Stores(file={'path': 'dict/location'})
115
+ stores_dict2 = stores_dict_input.toDict()
116
+ self.assertEqual(stores_dict2['file']['path'], 'dict/location')
117
+
110
118
  async def testHashability(self):
111
119
  """
112
120
  Test hashability of Stores instances.