orionis 0.286.0__py3-none-any.whl → 0.287.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 (57) hide show
  1. orionis/metadata/framework.py +1 -1
  2. orionis/services/environment/contracts/env.py +45 -50
  3. orionis/services/environment/dot_env.py +205 -181
  4. orionis/services/environment/env.py +68 -85
  5. orionis/services/environment/exceptions/environment_value_error.py +18 -0
  6. orionis/services/environment/exceptions/environment_value_exception.py +23 -0
  7. orionis/services/environment/type_hint.py +559 -0
  8. orionis/test/logs/history.py +3 -5
  9. {orionis-0.286.0.dist-info → orionis-0.287.0.dist-info}/METADATA +1 -1
  10. {orionis-0.286.0.dist-info → orionis-0.287.0.dist-info}/RECORD +56 -54
  11. tests/example/test_example.py +5 -2
  12. tests/foundation/config/app/test_app.py +13 -3
  13. tests/foundation/config/auth/test_auth.py +9 -4
  14. tests/foundation/config/cache/test_cache.py +60 -15
  15. tests/foundation/config/cache/test_cache_file.py +62 -14
  16. tests/foundation/config/cache/test_cache_stores.py +74 -14
  17. tests/foundation/config/cors/test_cors.py +102 -33
  18. tests/foundation/config/database/test_database.py +38 -14
  19. tests/foundation/config/database/test_database_connections.py +79 -5
  20. tests/foundation/config/database/test_database_mysql.py +138 -15
  21. tests/foundation/config/database/test_database_oracle.py +110 -26
  22. tests/foundation/config/database/test_database_pgsql.py +96 -26
  23. tests/foundation/config/database/test_database_sqlite.py +56 -2
  24. tests/foundation/config/exceptions/test_exceptions_integrity.py +44 -10
  25. tests/foundation/config/filesystems/test_filesystems.py +64 -14
  26. tests/foundation/config/filesystems/test_filesystems_aws.py +45 -7
  27. tests/foundation/config/filesystems/test_filesystems_disks.py +78 -8
  28. tests/foundation/config/filesystems/test_filesystems_local.py +66 -18
  29. tests/foundation/config/filesystems/test_filesystems_public.py +37 -0
  30. tests/foundation/config/logging/test_logging.py +75 -11
  31. tests/foundation/config/logging/test_logging_channels.py +79 -2
  32. tests/foundation/config/logging/test_logging_chunked.py +85 -12
  33. tests/foundation/config/logging/test_logging_daily.py +79 -12
  34. tests/foundation/config/logging/test_logging_hourly.py +68 -2
  35. tests/foundation/config/logging/test_logging_monthly.py +48 -2
  36. tests/foundation/config/logging/test_logging_stack.py +49 -14
  37. tests/foundation/config/logging/test_logging_weekly.py +92 -2
  38. tests/foundation/config/mail/test_mail.py +87 -15
  39. tests/foundation/config/mail/test_mail_file.py +40 -4
  40. tests/foundation/config/mail/test_mail_mailers.py +56 -8
  41. tests/foundation/config/mail/test_mail_smtp.py +58 -14
  42. tests/foundation/config/queue/test_queue.py +62 -9
  43. tests/foundation/config/queue/test_queue_brokers.py +27 -10
  44. tests/foundation/config/queue/test_queue_database.py +53 -15
  45. tests/foundation/config/root/test_root_paths.py +69 -2
  46. tests/foundation/config/session/test_session.py +30 -1
  47. tests/foundation/config/startup/test_config_startup.py +77 -7
  48. tests/foundation/config/testing/test_testing.py +68 -0
  49. tests/patterns/singleton/test_singleton.py +10 -1
  50. tests/services/environment/test_env.py +3 -4
  51. tests/testing/test_testing_result.py +56 -19
  52. tests/testing/test_testing_unit.py +93 -24
  53. orionis/services/environment/exceptions/value_exception.py +0 -27
  54. {orionis-0.286.0.dist-info → orionis-0.287.0.dist-info}/WHEEL +0 -0
  55. {orionis-0.286.0.dist-info → orionis-0.287.0.dist-info}/licenses/LICENCE +0 -0
  56. {orionis-0.286.0.dist-info → orionis-0.287.0.dist-info}/top_level.txt +0 -0
  57. {orionis-0.286.0.dist-info → orionis-0.287.0.dist-info}/zip-safe +0 -0
@@ -226,7 +226,7 @@ orionis/foundation/config/testing/entities/testing.py,sha256=m_i9jZlOXs_AzNKNNf0
226
226
  orionis/foundation/config/testing/enums/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
227
227
  orionis/foundation/config/testing/enums/test_mode.py,sha256=IbFpauu7J-iSAfmC8jDbmTEYl8eZr-AexL-lyOh8_74,337
228
228
  orionis/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
229
- orionis/metadata/framework.py,sha256=hem620M1oywPbB24VR9-FaMOGSc0QKz9hfuOK_ke8pA,4960
229
+ orionis/metadata/framework.py,sha256=AMr8GQun6r2ieB-bEnyxL5j1od8trSPhHlukFVLN-do,4960
230
230
  orionis/metadata/package.py,sha256=5p4fxjPpaktsreJ458pAl-Oi1363MWACPQvqXi_N6oA,6704
231
231
  orionis/patterns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
232
232
  orionis/patterns/singleton/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -239,12 +239,14 @@ orionis/services/asynchrony/contracts/coroutines.py,sha256=Wuwp2k4HXAX-tQ3waVIT8
239
239
  orionis/services/asynchrony/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
240
240
  orionis/services/asynchrony/exceptions/coroutine_exception.py,sha256=sZxC6tabTcq0HUJfKmeduYoe2C_NGzTMXf3nWrnobsU,508
241
241
  orionis/services/environment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
242
- orionis/services/environment/dot_env.py,sha256=TrsVB4_XnJ7c0z0FgSkJsHzpqnWvGwdTkhSpP65N3rQ,10115
243
- orionis/services/environment/env.py,sha256=CbD1yjGB_RqU8PnAdjr0RN5hmaFTQYby--PA7nYu8Gc,4181
242
+ orionis/services/environment/dot_env.py,sha256=0pG4zaNPOk7bn1vOifnladIAnaehfJLkORu9eingpC0,10075
243
+ orionis/services/environment/env.py,sha256=jbELcOGNvTslgs96j3PNisEy6967SifV3rourHnnxR4,2799
244
+ orionis/services/environment/type_hint.py,sha256=G03TpgJqzQ7tUVvSeVJefV6tC8d41jui2UnCAaAUIOI,17709
244
245
  orionis/services/environment/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
245
- orionis/services/environment/contracts/env.py,sha256=5g7jppzR5_ln8HlxJu2r0sSxLOkvBfSk3t4x_BKkYYk,1811
246
+ orionis/services/environment/contracts/env.py,sha256=7lezGxABAG63pEEvzAmHXgr9izBI6TCp05Trx_SRvc4,2054
246
247
  orionis/services/environment/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
247
- orionis/services/environment/exceptions/value_exception.py,sha256=1eUFPfldsOvLUiZztXTHSxsjM2lVh4cU7ACzsc7_cjs,1257
248
+ orionis/services/environment/exceptions/environment_value_error.py,sha256=Y3QTwzUrn0D5FqT7hI_9uCACVz473YhhoAFOx1-rcXE,627
249
+ orionis/services/environment/exceptions/environment_value_exception.py,sha256=zlxRFJwi0Yj-xFHQUvZ8X1ZlxRDDVv7Xcw-w4qCocL4,646
248
250
  orionis/services/introspection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
249
251
  orionis/services/introspection/reflection.py,sha256=tQtE5WnmdNOpZN8BIyAnfrGHXz7wgy8YE-yaurYfIz8,7763
250
252
  orionis/services/introspection/abstracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -333,7 +335,7 @@ orionis/test/exceptions/test_persistence_error.py,sha256=QJ2hdVAl6ngZEko0mSavU7n
333
335
  orionis/test/exceptions/test_runtime_error.py,sha256=QahR7qHhvzR1I8CS-qWsxL_c0lSzWWE1rCiwf47YRQc,523
334
336
  orionis/test/exceptions/test_value_error.py,sha256=XZmxiZmmMoYoh8O4V97GLB-Ooh-IRVagKW9bWPvtoeo,533
335
337
  orionis/test/logs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
336
- orionis/test/logs/history.py,sha256=YxWcY8hJK2eRk8BxBKti8WpWZSvv6g_uwHKAEPGZJAY,13230
338
+ orionis/test/logs/history.py,sha256=YqoAQSYyEo9PQSbB7TsHZy3SLKrwLsgyiKu7t2M7ztc,13149
337
339
  orionis/test/logs/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
338
340
  orionis/test/logs/contracts/history.py,sha256=v3vjWmvn73DF_C8Ur-aWdHUMrztX584mXKwYgsYQgCE,1435
339
341
  orionis/test/output/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -348,71 +350,71 @@ orionis/test/suites/contracts/test_suite.py,sha256=eluzYwkNBbKjxYStj_tHN_Fm3YDPp
348
350
  orionis/test/suites/contracts/test_unit.py,sha256=l1LQllODyvcSByXMl1lGrUkoLsXbBHZZLWZI4A-mlQg,5881
349
351
  orionis/test/view/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
350
352
  orionis/test/view/index.html,sha256=U4XYO4hA-mAJCK1gcVRgIysmISK3g3Vgi2ntLofFAhE,6592
351
- orionis-0.286.0.dist-info/licenses/LICENCE,sha256=-_4cF2EBKuYVS_SQpy1uapq0oJPUU1vl_RUWSy2jJTo,1111
353
+ orionis-0.287.0.dist-info/licenses/LICENCE,sha256=-_4cF2EBKuYVS_SQpy1uapq0oJPUU1vl_RUWSy2jJTo,1111
352
354
  tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
353
355
  tests/example/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
354
- tests/example/test_example.py,sha256=DUZU6lWVFsyHtBEXx0cBxMrSCpOtAOL3PUoi9-tXAas,583
356
+ tests/example/test_example.py,sha256=byd_lI6tVDgGPEIrr7PLZbBu0UoZOymmdmyA_4u-QUw,601
355
357
  tests/foundation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
356
358
  tests/foundation/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
357
359
  tests/foundation/config/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
358
- tests/foundation/config/app/test_app.py,sha256=-Y-QDDKQYe9B2CEqlpoMBq306dYU_vYq1VaeGgEe03o,5440
360
+ tests/foundation/config/app/test_app.py,sha256=MM2DE40Mj0q0bS3tHNgiPktNZT9E4nmHdlQ6wN-Kq1E,5555
359
361
  tests/foundation/config/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
360
- tests/foundation/config/auth/test_auth.py,sha256=AktCA4V2OFKMi5TBn7SI0PRkkOUkzTrz3rBwP3kU6Cs,898
362
+ tests/foundation/config/auth/test_auth.py,sha256=9Yu3B_F5WuFkG2hRkkF2P49MHvWS1fm8i-YgODTvspA,1015
361
363
  tests/foundation/config/cache/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
362
- tests/foundation/config/cache/test_cache.py,sha256=11llD3Vqdu1F3L5RWVVgp8bsVUo0DIgAIRcnhlIDw-I,3950
363
- tests/foundation/config/cache/test_cache_file.py,sha256=_ZjSxYdh6ZnPKC5y0q7RewxYrLPLkp0FnYTqwA0Eckw,3030
364
- tests/foundation/config/cache/test_cache_stores.py,sha256=TYfWOooHapSNj2h5Ys897d1GbmiLnyWSRrd4G62eSIU,3445
364
+ tests/foundation/config/cache/test_cache.py,sha256=JC6yE6lqbbP3sJGBzr7dVcfB064ZyXDLElzJB41O83Y,4628
365
+ tests/foundation/config/cache/test_cache_file.py,sha256=oDjX1YbzA8bXpUq2EbPgEsFUkg-mhlak4YqBKvn4GRY,3644
366
+ tests/foundation/config/cache/test_cache_stores.py,sha256=X3Sy6Nmceo4HRlqa3QVJkn6z36KS7Zqv_z3pEsF-lhg,4554
365
367
  tests/foundation/config/cors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
366
- tests/foundation/config/cors/test_cors.py,sha256=-1h8u3YJgXvVjifvLvUs_ne_vB5lqQnRRBTfzqoXq0I,5473
368
+ tests/foundation/config/cors/test_cors.py,sha256=IyeC9wakPSCXT19ASfF1g8gXNh_vRkTie9oSm-yBm04,6696
367
369
  tests/foundation/config/database/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
368
- tests/foundation/config/database/test_database.py,sha256=tXxpO3lNa2mNcZTItEkjkwAnlRgHrYuHVBakAPfr4zg,4131
369
- tests/foundation/config/database/test_database_connections.py,sha256=fY6iXHueSGvfrYduzpNUqPVIGaLsDF3KUTwiVyHjpf4,5525
370
- tests/foundation/config/database/test_database_mysql.py,sha256=6Wfq-rmFFZTDgTSyLcwVOuy1zUuVZkQGqI-q0dmQw5o,9408
371
- tests/foundation/config/database/test_database_oracle.py,sha256=9ewSAdUjDwnvhRHM00vGagEkDQCv94K0TvCQlEYvhwQ,8505
372
- tests/foundation/config/database/test_database_pgsql.py,sha256=wMRnzYZ8QXoV-HPDt1A9fLPOy3t2zjmBnk_Xl8DO6IE,7539
373
- tests/foundation/config/database/test_database_sqlite.py,sha256=FGIKAjb4iunOE64FbGib6fOOgadhc2oz1pWGWGp1-_o,6597
370
+ tests/foundation/config/database/test_database.py,sha256=5VvZdTzrK-LVcIqBC4WZMr1__LMRzzzykzEHEwdEe9E,4821
371
+ tests/foundation/config/database/test_database_connections.py,sha256=ld-Mj2wV4js1_yr6lNKYZ0DZDdtkOCqOjOAfNO_zcho,6944
372
+ tests/foundation/config/database/test_database_mysql.py,sha256=O2yA24Y_iELV71Wpw-c0BCJqMo6ILVNruLUhWiuuAcI,12399
373
+ tests/foundation/config/database/test_database_oracle.py,sha256=miiSdqwDEZm-9BrxZSCoHIiKGzMDcjeTrDgV4hsBSl8,10380
374
+ tests/foundation/config/database/test_database_pgsql.py,sha256=9XurJGimFS6TGkcnmdKopkd7-wJjVZL2ua9KKiT2Pdc,8498
375
+ tests/foundation/config/database/test_database_sqlite.py,sha256=N4eQuBz6ja5KVui1AThfvlf05_dOzW2pWeyvLB_MO5g,7329
374
376
  tests/foundation/config/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
375
- tests/foundation/config/exceptions/test_exceptions_integrity.py,sha256=sTYEttDit0K2-SFKEvzGzoDYBaYp048JiOtmZ1DTTEs,3640
377
+ tests/foundation/config/exceptions/test_exceptions_integrity.py,sha256=HrTZavbqDmO4rM6umY4wTb615_0o0yH58Lgz6yjwkYA,4262
376
378
  tests/foundation/config/filesystems/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
377
- tests/foundation/config/filesystems/test_filesystems.py,sha256=z_rdFgCxsDV94zeiOTMk0mONK1XtxhjkKrMFc5AsnGg,3980
378
- tests/foundation/config/filesystems/test_filesystems_aws.py,sha256=F1lDXkpxv0SSB9vRCbB-4nhw2zLe3NEtY33F9FopZO4,5009
379
- tests/foundation/config/filesystems/test_filesystems_disks.py,sha256=Dac5wof8V5zg0xPkHSk_MS06bLPi-zqPkduVewt6OkA,4559
380
- tests/foundation/config/filesystems/test_filesystems_local.py,sha256=Ay-U-LzYQQBL-vL9492n0EbwukHJsz2rshgPjIHUt0Y,3687
381
- tests/foundation/config/filesystems/test_filesystems_public.py,sha256=ndkurdQjSljOwZHbgir5L-Km1rp-SjLscxoPcA0nWQw,4606
379
+ tests/foundation/config/filesystems/test_filesystems.py,sha256=NPU813Jttr4PT7tNVzvjVKhZwFp6-JzwngJWzDxPfac,5253
380
+ tests/foundation/config/filesystems/test_filesystems_aws.py,sha256=eFGYPD_XRDzyurBt-W_WsC0Q2I4iTmlvZROXIUwxG9I,5860
381
+ tests/foundation/config/filesystems/test_filesystems_disks.py,sha256=79MlgiBLdDAm4YR5cL-Z7QDGbe6czujdizeN_6bVlbc,6438
382
+ tests/foundation/config/filesystems/test_filesystems_local.py,sha256=fDGZwSn-DxG_ofm4jXvXRq-BsALauUn2_CPfvr1fEaY,4260
383
+ tests/foundation/config/filesystems/test_filesystems_public.py,sha256=C-rUSumGekqRUIJ622KLLBcpltbflFevUbV0fatpBn8,5864
382
384
  tests/foundation/config/logging/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
383
- tests/foundation/config/logging/test_logging.py,sha256=uB3MIsZmQUf8q1CBKGnxPxWUuKc3qNfRSO8NcuQDVEM,1968
384
- tests/foundation/config/logging/test_logging_channels.py,sha256=QljhmjxRGiI1eDKDjMulC41cG5Oysq-e-whn4SdzOh8,6480
385
- tests/foundation/config/logging/test_logging_chunked.py,sha256=mQN8wnHFlUCn7OQal3ntYC6Kfx47ur01cech4ZhRU2Q,6092
386
- tests/foundation/config/logging/test_logging_daily.py,sha256=wOjoUH1mqHchb4wJ-CJsg2rs6-4Xm0IL0CO3GeMKTVM,5610
387
- tests/foundation/config/logging/test_logging_hourly.py,sha256=HCsKz_LJfdkzc8m3VkQntBgFRW9hVr0tx0Ni-fQ34j0,4995
388
- tests/foundation/config/logging/test_logging_monthly.py,sha256=GeqYL_tV06Zp6y1CGkf7pM_HNP7D3fwLpl2NlLYG6C0,5072
389
- tests/foundation/config/logging/test_logging_stack.py,sha256=_KTBqpD1xNuS_B-qofNemRK51zT5wJTQcQk7QtLP-b0,4498
390
- tests/foundation/config/logging/test_logging_weekly.py,sha256=3S2vnkz3ZxwqMxhJgu5FvUAZQkTS-SLNDJuj8Zq23nE,4990
385
+ tests/foundation/config/logging/test_logging.py,sha256=ulZLvIYdFraPyB3u0GW63gHRfNcnWHUlH3uWve05kDE,3152
386
+ tests/foundation/config/logging/test_logging_channels.py,sha256=REnYWHl3UafOthE_RF9a39zW8H-JWTEirmvBJcOMBcA,8958
387
+ tests/foundation/config/logging/test_logging_chunked.py,sha256=oJxtyOL6pa6MsSZN6WtTIwq3dhsM7Vza9Z3_fHonPoY,7806
388
+ tests/foundation/config/logging/test_logging_daily.py,sha256=ZKphLd8F9sdGw68o7eklKHxbbSI0GKO3iKBdSbfBN8Q,7084
389
+ tests/foundation/config/logging/test_logging_hourly.py,sha256=cTa6b8SQEA_y-CXTXkXx5440dezIkpKmuiYPFikIjjM,6797
390
+ tests/foundation/config/logging/test_logging_monthly.py,sha256=VgGrcwsOAJMVQmuswP2olZqrykhAQuroxBNXxYy_3aw,6407
391
+ tests/foundation/config/logging/test_logging_stack.py,sha256=MP9U8lvHjwuDPH-k_raIUsyLt1-4vV4siUEo3N7vMg8,5475
392
+ tests/foundation/config/logging/test_logging_weekly.py,sha256=JqCRlFF1Fy-o8BlpYCzE3dP7lxLVeHHJPixoJMNiVVk,7603
391
393
  tests/foundation/config/mail/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
392
- tests/foundation/config/mail/test_mail.py,sha256=MkWHn-2Z4xHA7BcKnv8c5FNezLcXFUa-8NFTwx-OA2Y,2923
393
- tests/foundation/config/mail/test_mail_file.py,sha256=b12BA7gIlos3yd3Y5uNFEgVpgVvIGelo1Q8nnJP2bFI,2328
394
- tests/foundation/config/mail/test_mail_mailers.py,sha256=F66RxB0qon3IeAnIB8-3m7hF9stlwUR7tknsfmE6GUQ,2401
395
- tests/foundation/config/mail/test_mail_smtp.py,sha256=x90aR1_4clRE4BXZKF9o0otoxCrlZTKpkwF1GeEZlzM,4161
394
+ tests/foundation/config/mail/test_mail.py,sha256=5Ab8bw8F0L9SsihXyPzovYaY1SCH4yXZPNjDG-Bi1jE,4178
395
+ tests/foundation/config/mail/test_mail_file.py,sha256=09gHW--u0mtW5ASV_v1rGnsICOTU3FDqjeB7ioUfwE0,2992
396
+ tests/foundation/config/mail/test_mail_mailers.py,sha256=lF3N9oZ_owdG4lUFn5uHGP8KkGZYQlaJ9Xd4BrmIRog,3392
397
+ tests/foundation/config/mail/test_mail_smtp.py,sha256=c-I7QG_zRwwJsAxEGkJvyPVyMb-RIOb8gmQsiTjeDXA,4848
396
398
  tests/foundation/config/queue/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
397
- tests/foundation/config/queue/test_queue.py,sha256=GeRI9VuUObaY1neq0jO6iOPXMObgFm_UAJVBV6Pf_z8,2388
398
- tests/foundation/config/queue/test_queue_brokers.py,sha256=rMO9TGX5YRVMWntytPupwRsBxeOj_UxkcT7YJqGknPM,2721
399
- tests/foundation/config/queue/test_queue_database.py,sha256=VdF0kZ3OjxwRTXKzYdE8IATFNZZzOV7oXB0rEGticiY,4176
399
+ tests/foundation/config/queue/test_queue.py,sha256=CJedLP8574GgKFrea2OiS5eOHQfJTGo35LdUuygm8OI,3440
400
+ tests/foundation/config/queue/test_queue_brokers.py,sha256=zD2z5ydCKAZHcD3VINNum_KIgGEHojBu8iz2HOt5Cn8,3015
401
+ tests/foundation/config/queue/test_queue_database.py,sha256=sZRDVAJCXM4u3UIf8hPoulOqub6qdfI_xCJ-p_pvx9o,4797
400
402
  tests/foundation/config/root/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
401
- tests/foundation/config/root/test_root_paths.py,sha256=7Z-RqkNwXSMEG8WPD2is-G45ujCTHhgWibFQ-LpRamM,5405
403
+ tests/foundation/config/root/test_root_paths.py,sha256=HcRqZzh1Ym86wzN_tpFrvv8GHLGCgfJoe1DSnmIxdHE,7077
402
404
  tests/foundation/config/session/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
403
- tests/foundation/config/session/test_session.py,sha256=dvw7hPmLOWJmxVet4_sllqbAQcBmIUnMQ8WE_fy7iSc,6051
405
+ tests/foundation/config/session/test_session.py,sha256=ov3nLx4yMegkQ4ke6Mmki9DSwZGjPZ4kFoSwUX5eShM,6369
404
406
  tests/foundation/config/startup/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
405
- tests/foundation/config/startup/test_config_startup.py,sha256=n0O-8dpHPbk0ytARSQ8vlWvscayPUgYlQE9GVKxmY_c,5374
407
+ tests/foundation/config/startup/test_config_startup.py,sha256=zA25AII9Hsf_zIckVIvYEoCwpF8FnleDUORUBi4Vy5M,6870
406
408
  tests/foundation/config/testing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
407
- tests/foundation/config/testing/test_testing.py,sha256=Mbqz0LNSDVb2HbaF9-mti0brVQjUttSXsrIaoitKTcU,6140
409
+ tests/foundation/config/testing/test_testing.py,sha256=SJ3PQdIX_uokrDoU6z_y1-nNEHInaBv_y-R4rxDQrHo,8206
408
410
  tests/patterns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
409
411
  tests/patterns/singleton/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
410
- tests/patterns/singleton/test_singleton.py,sha256=eShiB9gD7J9p0DQw0qjtU5rQXfHxw7zkGds-1EC4d_o,609
412
+ tests/patterns/singleton/test_singleton.py,sha256=De2BcRLEyrA1PjYJHwQNigk-ACGLw7SUIXvj2hPgBSI,949
411
413
  tests/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
412
414
  tests/services/asynchrony/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
413
415
  tests/services/asynchrony/test_async_io.py,sha256=RnsL7S5rNaijMK8aUJCzZvfha9pqAqxsqxd32x03r7E,1638
414
416
  tests/services/environment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
415
- tests/services/environment/test_env.py,sha256=Fg4NejwmTdTTj4FezrWkJc639CzodGEgmdFa4EPlmqk,7084
417
+ tests/services/environment/test_env.py,sha256=LPrfpT3cAOkPVKfviUkFy_j87BcyRB-Bw9Hm5c45F4c,6899
416
418
  tests/services/inspection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
417
419
  tests/services/inspection/dependencies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
418
420
  tests/services/inspection/dependencies/test_reflect_dependencies.py,sha256=z0C9KkhV27Y7jKpLSCN9XCmHbjJDCPbBb7NkRFs3oMI,5803
@@ -444,10 +446,10 @@ tests/support/inspection/fakes/fake_reflection_concrete.py,sha256=j6gzsxE3xq5oJ3
444
446
  tests/support/inspection/fakes/fake_reflection_concrete_with_abstract.py,sha256=ibCjrtNM6BMf5Z5VMvat7E6zOAk5g9z--gj4ykKJWY8,2118
445
447
  tests/support/inspection/fakes/fake_reflection_instance_with_abstract.py,sha256=SfL8FuFmr650RlzXTrP4tGMfsPVZLhOxVnBXu_g1POg,1471
446
448
  tests/testing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
447
- tests/testing/test_testing_result.py,sha256=54QDn6_v9feIcDcA6LPXcvYhlt_X8JqLGTYWS9XjKXM,3029
448
- tests/testing/test_testing_unit.py,sha256=MeVL4gc4cGRPXdVOOKJx6JPKducrZ8cN7F52Iiciixg,5443
449
- orionis-0.286.0.dist-info/METADATA,sha256=61sqFJQCRpZca6cWFMWps-lXByNSaGviR-T8kFJ2mIU,4772
450
- orionis-0.286.0.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
451
- orionis-0.286.0.dist-info/top_level.txt,sha256=2bdoHgyGZhOtLAXS6Om8OCTmL24dUMC_L1quMe_ETbk,14
452
- orionis-0.286.0.dist-info/zip-safe,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
453
- orionis-0.286.0.dist-info/RECORD,,
449
+ tests/testing/test_testing_result.py,sha256=Q6z4B3oTDD6X5adWzVrRzRfoJeTKL0Cm3ePu47jfrmM,4312
450
+ tests/testing/test_testing_unit.py,sha256=W8vVzfhmFYXff0NcZg0L3SC4zxRHJxj47WZYsNcclv8,7780
451
+ orionis-0.287.0.dist-info/METADATA,sha256=D7bow-1ADEnkq1xqdvqmNhwQOHDw0uor86Gw_LmXNsI,4772
452
+ orionis-0.287.0.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
453
+ orionis-0.287.0.dist-info/top_level.txt,sha256=2bdoHgyGZhOtLAXS6Om8OCTmL24dUMC_L1quMe_ETbk,14
454
+ orionis-0.287.0.dist-info/zip-safe,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
455
+ orionis-0.287.0.dist-info/RECORD,,
@@ -16,5 +16,8 @@ class TestExample(TestCase):
16
16
  2 == 2 : bool
17
17
  Ensures that the integer 2 is equal to itself.
18
18
  """
19
- self.assertEqual(1, 1) # Check if 1 equals 1
20
- self.assertEqual(2, 2) # Check if 2 equals 2
19
+ # Check if 1 equals 1
20
+ self.assertEqual(1, 1)
21
+
22
+ # Check if 2 equals 2
23
+ self.assertEqual(2, 2)
@@ -5,14 +5,13 @@ from orionis.foundation.config.exceptions.integrity import OrionisIntegrityExcep
5
5
  from orionis.unittesting import TestCase
6
6
 
7
7
  class TestConfigApp(TestCase):
8
- """
9
- Test cases for the App configuration class.
10
- """
11
8
 
12
9
  async def testDefaultValues(self):
13
10
  """
14
11
  Test that the App instance is created with the correct default values.
15
12
 
13
+ Notes
14
+ -----
16
15
  Verifies that all default values match the expected defaults from the class definition.
17
16
  """
18
17
  app = App()
@@ -32,6 +31,8 @@ class TestConfigApp(TestCase):
32
31
  """
33
32
  Test that the environment attribute is properly validated and converted.
34
33
 
34
+ Notes
35
+ -----
35
36
  Verifies that string environments are converted to enum values and invalid environments raise exceptions.
36
37
  """
37
38
  # Test valid string environment
@@ -50,6 +51,8 @@ class TestConfigApp(TestCase):
50
51
  """
51
52
  Test that the cipher attribute is properly validated and converted.
52
53
 
54
+ Notes
55
+ -----
53
56
  Verifies that string ciphers are converted to enum values and invalid ciphers raise exceptions.
54
57
  """
55
58
  # Test valid string cipher
@@ -68,6 +71,8 @@ class TestConfigApp(TestCase):
68
71
  """
69
72
  Test that type validation works correctly for all attributes.
70
73
 
74
+ Notes
75
+ -----
71
76
  Verifies that invalid types for each attribute raise OrionisIntegrityException.
72
77
  """
73
78
  # Test invalid name type
@@ -98,6 +103,8 @@ class TestConfigApp(TestCase):
98
103
  """
99
104
  Test that the toDict method returns a proper dictionary representation.
100
105
 
106
+ Notes
107
+ -----
101
108
  Verifies that the returned dictionary contains all expected keys and values.
102
109
  """
103
110
  app = App()
@@ -119,6 +126,9 @@ class TestConfigApp(TestCase):
119
126
  async def testNonEmptyStringValidation(self):
120
127
  """
121
128
  Test that empty strings are rejected for attributes requiring non-empty strings.
129
+
130
+ Notes
131
+ -----
122
132
  Verifies that attributes requiring non-empty strings raise exceptions when empty strings are provided.
123
133
  """
124
134
  with self.assertRaises(OrionisIntegrityException):
@@ -1,20 +1,25 @@
1
-
2
1
  from orionis.foundation.config.auth.entities.auth import Auth
3
2
  from orionis.unittesting import TestCase
4
3
 
5
4
  class TestConfigApp(TestCase):
6
5
  """
7
6
  Test suite for verifying the behavior of the Auth configuration within the application.
7
+
8
8
  This class contains asynchronous test cases to ensure that the Auth object
9
9
  correctly handles the assignment and retrieval of new attribute values.
10
10
  """
11
11
 
12
12
  async def testNewValue(self):
13
13
  """
14
- Test that the default name of the App instance is 'Orionis Application'.
14
+ Test assignment and retrieval of new attribute values in Auth.
15
+
16
+ This test creates a new Auth object and assigns values to new attributes.
17
+ It then asserts that these attributes hold the expected values.
15
18
 
16
- This test creates a new App object and asserts that its 'name' attribute
17
- is set to the expected default value.
19
+ Returns
20
+ -------
21
+ None
22
+ This method does not return a value.
18
23
  """
19
24
  auth = Auth()
20
25
  auth.new_value = 'new_value'
@@ -6,13 +6,23 @@ from orionis.foundation.config.cache.entities.stores import Stores
6
6
 
7
7
  class TestConfigCache(TestCase):
8
8
  """
9
- Test cases for the Cache configuration class.
9
+ Test suite for the Cache configuration entity.
10
+
11
+ This class contains asynchronous unit tests for the Cache entity,
12
+ validating default values, driver validation, type checking,
13
+ dictionary conversion, and Stores instance validation.
10
14
  """
11
15
 
12
16
  async def testDefaultValues(self):
13
17
  """
14
18
  Test that the Cache instance is created with the correct default values.
15
- Verifies that default values match the expected defaults from the class definition.
19
+
20
+ Ensures that the default values of the Cache instance match the expected
21
+ defaults from the class definition.
22
+
23
+ Returns
24
+ -------
25
+ None
16
26
  """
17
27
  cache = Cache()
18
28
  self.assertEqual(cache.default, Drivers.MEMORY.value)
@@ -20,22 +30,33 @@ class TestConfigCache(TestCase):
20
30
 
21
31
  async def testDriverValidation(self):
22
32
  """
23
- Test that the default driver attribute is properly validated and converted.
24
- Verifies that string drivers are converted to enum values and invalid drivers raise exceptions.
33
+ Test validation and conversion of the default driver attribute.
34
+
35
+ Verifies that string drivers are converted to enum values and that
36
+ invalid drivers raise exceptions.
37
+
38
+ Returns
39
+ -------
40
+ None
25
41
  """
26
42
  # Test valid string driver
27
43
  cache = Cache(default="FILE")
28
44
  self.assertEqual(cache.default, Drivers.FILE.value)
29
45
 
30
-
31
46
  # Test invalid driver
32
47
  with self.assertRaises(OrionisIntegrityException):
33
48
  Cache(default="INVALID_DRIVER")
34
49
 
35
50
  async def testDriverCaseInsensitivity(self):
36
51
  """
37
- Test that driver names are case-insensitive when provided as strings.
38
- Verifies that different case variations of driver names are properly normalized.
52
+ Test case insensitivity of driver names provided as strings.
53
+
54
+ Ensures that different case variations of driver names are properly
55
+ normalized to the correct enum value.
56
+
57
+ Returns
58
+ -------
59
+ None
39
60
  """
40
61
  # Test lowercase
41
62
  cache = Cache(default="file")
@@ -51,8 +72,14 @@ class TestConfigCache(TestCase):
51
72
 
52
73
  async def testTypeValidation(self):
53
74
  """
54
- Test that type validation works correctly for all attributes.
55
- Verifies that invalid types for each attribute raise OrionisIntegrityException.
75
+ Test type validation for all attributes.
76
+
77
+ Ensures that invalid types for each attribute raise
78
+ OrionisIntegrityException.
79
+
80
+ Returns
81
+ -------
82
+ None
56
83
  """
57
84
  # Test invalid default type
58
85
  with self.assertRaises(OrionisIntegrityException):
@@ -64,8 +91,14 @@ class TestConfigCache(TestCase):
64
91
 
65
92
  async def testToDictMethod(self):
66
93
  """
67
- Test that the toDict method returns a proper dictionary representation.
68
- Verifies that the returned dictionary contains all expected keys and values.
94
+ Test the toDict method for dictionary representation.
95
+
96
+ Ensures that the toDict method returns a dictionary containing all
97
+ expected keys and values.
98
+
99
+ Returns
100
+ -------
101
+ None
69
102
  """
70
103
  cache = Cache()
71
104
  cache_dict = cache.toDict()
@@ -76,8 +109,14 @@ class TestConfigCache(TestCase):
76
109
 
77
110
  async def testStoresInstanceValidation(self):
78
111
  """
79
- Test that stores attribute must be an instance of Stores class.
80
- Verifies that only Stores instances are accepted for the stores attribute.
112
+ Test that the stores attribute must be an instance of Stores.
113
+
114
+ Ensures that only Stores instances are accepted for the stores
115
+ attribute and invalid types raise exceptions.
116
+
117
+ Returns
118
+ -------
119
+ None
81
120
  """
82
121
  # Test with proper Stores instance
83
122
  stores = Stores() # Assuming Stores has a default constructor
@@ -90,8 +129,14 @@ class TestConfigCache(TestCase):
90
129
 
91
130
  async def testDriverEnumConversion(self):
92
131
  """
93
- Test that Drivers enum values are properly converted to their string representations.
94
- Verifies that enum members are converted to their value representations.
132
+ Test conversion of Drivers enum values to string representations.
133
+
134
+ Ensures that enum members are converted to their value representations
135
+ when used as the default driver.
136
+
137
+ Returns
138
+ -------
139
+ None
95
140
  """
96
141
  # Test with enum member
97
142
  cache = Cache(default=Drivers.MEMORY)
@@ -5,20 +5,33 @@ from orionis.unittesting import TestCase
5
5
  class TestConfigFile(TestCase):
6
6
  """
7
7
  Test cases for the File cache configuration entity.
8
+
9
+ This class contains unit tests for the `File` cache configuration entity,
10
+ validating its initialization, path handling, and dictionary representation.
8
11
  """
9
12
 
10
13
  async def testDefaultPath(self):
11
14
  """
12
- Test that the File instance is created with the correct default path.
13
- Verifies that the default path matches the expected value from the class definition.
15
+ Test default path initialization.
16
+
17
+ Ensures that a `File` instance is created with the correct default path.
18
+
19
+ Returns
20
+ -------
21
+ None
14
22
  """
15
23
  file_config = File()
16
24
  self.assertEqual(file_config.path, 'storage/framework/cache/data')
17
25
 
18
26
  async def testCustomPath(self):
19
27
  """
20
- Test that a custom path can be set during initialization.
21
- Verifies that the path attribute accepts and stores valid custom paths.
28
+ Test custom path initialization.
29
+
30
+ Ensures that a custom path can be set during initialization and is stored correctly.
31
+
32
+ Returns
33
+ -------
34
+ None
22
35
  """
23
36
  custom_path = 'custom/cache/path'
24
37
  file_config = File(path=custom_path)
@@ -26,16 +39,36 @@ class TestConfigFile(TestCase):
26
39
 
27
40
  async def testEmptyPathValidation(self):
28
41
  """
29
- Test that empty paths are rejected.
30
- Verifies that an empty path raises an OrionisIntegrityException.
42
+ Test validation for empty path.
43
+
44
+ Ensures that providing an empty path raises an `OrionisIntegrityException`.
45
+
46
+ Returns
47
+ -------
48
+ None
49
+
50
+ Raises
51
+ ------
52
+ OrionisIntegrityException
53
+ If the path is empty.
31
54
  """
32
55
  with self.assertRaises(OrionisIntegrityException):
33
56
  File(path="")
34
57
 
35
58
  async def testPathTypeValidation(self):
36
59
  """
37
- Test that non-string paths are rejected.
38
- Verifies that non-string path values raise an OrionisIntegrityException.
60
+ Test validation for path type.
61
+
62
+ Ensures that non-string path values raise an `OrionisIntegrityException`.
63
+
64
+ Returns
65
+ -------
66
+ None
67
+
68
+ Raises
69
+ ------
70
+ OrionisIntegrityException
71
+ If the path is not a string.
39
72
  """
40
73
  with self.assertRaises(OrionisIntegrityException):
41
74
  File(path=123)
@@ -48,8 +81,13 @@ class TestConfigFile(TestCase):
48
81
 
49
82
  async def testToDictMethod(self):
50
83
  """
51
- Test that the toDict method returns a proper dictionary representation.
52
- Verifies that the returned dictionary contains the expected path value.
84
+ Test dictionary representation.
85
+
86
+ Ensures that the `toDict` method returns a dictionary with the expected path value.
87
+
88
+ Returns
89
+ -------
90
+ None
53
91
  """
54
92
  file_config = File()
55
93
  config_dict = file_config.toDict()
@@ -59,8 +97,13 @@ class TestConfigFile(TestCase):
59
97
 
60
98
  async def testCustomPathToDict(self):
61
99
  """
62
- Test that custom paths are properly included in the dictionary representation.
63
- Verifies that toDict() includes custom path values when specified.
100
+ Test custom path in dictionary representation.
101
+
102
+ Ensures that custom paths are properly included in the dictionary returned by `toDict`.
103
+
104
+ Returns
105
+ -------
106
+ None
64
107
  """
65
108
  custom_path = 'another/cache/location'
66
109
  file_config = File(path=custom_path)
@@ -70,8 +113,13 @@ class TestConfigFile(TestCase):
70
113
 
71
114
  async def testWhitespacePathHandling(self):
72
115
  """
73
- Test that paths with whitespace are accepted but not automatically trimmed.
74
- Verifies that the validation allows paths containing whitespace characters.
116
+ Test handling of paths with whitespace.
117
+
118
+ Ensures that paths containing whitespace are accepted and not automatically trimmed.
119
+
120
+ Returns
121
+ -------
122
+ None
75
123
  """
76
124
  spaced_path = ' storage/cache/with/space '
77
125
  file_config = File(path=spaced_path)