orionis 0.335.0__py3-none-any.whl → 0.337.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.
- orionis/metadata/framework.py +1 -1
- orionis/test/__init__.py +63 -0
- orionis/test/cases/__init__.py +9 -0
- orionis/test/contracts/__init__.py +11 -0
- orionis/test/entities/__init__.py +5 -0
- orionis/test/enums/__init__.py +7 -0
- orionis/test/exceptions/__init__.py +13 -0
- orionis/test/logs/__init__.py +5 -0
- orionis/test/output/__init__.py +7 -0
- orionis/test/suite/__init__.py +5 -0
- orionis/test/suite/{test_unit.py → unit_test.py} +9 -9
- orionis/test/test_suite.py +1 -1
- orionis/test/view/__init__.py +5 -0
- {orionis-0.335.0.dist-info → orionis-0.337.0.dist-info}/METADATA +1 -1
- {orionis-0.335.0.dist-info → orionis-0.337.0.dist-info}/RECORD +78 -79
- tests/example/test_example.py +1 -1
- tests/foundation/config/app/test_foundation_config_app.py +1 -1
- tests/foundation/config/auth/test_foundation_config_auth.py +1 -1
- tests/foundation/config/cache/test_foundation_config_cache.py +1 -1
- tests/foundation/config/cache/test_foundation_config_cache_file.py +1 -1
- tests/foundation/config/cache/test_foundation_config_cache_stores.py +1 -1
- tests/foundation/config/cors/test_foundation_config_cors.py +1 -1
- tests/foundation/config/database/test_foundation_config_database.py +1 -1
- tests/foundation/config/database/test_foundation_config_database_connections.py +1 -1
- tests/foundation/config/database/test_foundation_config_database_mysql.py +1 -1
- tests/foundation/config/database/test_foundation_config_database_oracle.py +1 -1
- tests/foundation/config/database/test_foundation_config_database_pgsql.py +1 -1
- tests/foundation/config/database/test_foundation_config_database_sqlite.py +1 -1
- tests/foundation/config/filesystems/test_foundation_config_filesystems.py +1 -1
- tests/foundation/config/filesystems/test_foundation_config_filesystems_aws.py +1 -1
- tests/foundation/config/filesystems/test_foundation_config_filesystems_disks.py +1 -1
- tests/foundation/config/filesystems/test_foundation_config_filesystems_local.py +1 -1
- tests/foundation/config/filesystems/test_foundation_config_filesystems_public.py +1 -1
- tests/foundation/config/logging/test_foundation_config_logging.py +1 -1
- tests/foundation/config/logging/test_foundation_config_logging_channels.py +1 -1
- tests/foundation/config/logging/test_foundation_config_logging_chunked.py +1 -1
- tests/foundation/config/logging/test_foundation_config_logging_daily.py +1 -1
- tests/foundation/config/logging/test_foundation_config_logging_hourly.py +1 -1
- tests/foundation/config/logging/test_foundation_config_logging_monthly.py +1 -1
- tests/foundation/config/logging/test_foundation_config_logging_stack.py +1 -1
- tests/foundation/config/logging/test_foundation_config_logging_weekly.py +1 -1
- tests/foundation/config/mail/test_foundation_config_mail.py +1 -1
- tests/foundation/config/mail/test_foundation_config_mail_file.py +1 -1
- tests/foundation/config/mail/test_foundation_config_mail_mailers.py +1 -1
- tests/foundation/config/mail/test_foundation_config_mail_smtp.py +1 -1
- tests/foundation/config/queue/test_foundation_config_queue.py +1 -1
- tests/foundation/config/queue/test_foundation_config_queue_brokers.py +1 -1
- tests/foundation/config/queue/test_foundation_config_queue_database.py +1 -1
- tests/foundation/config/root/test_foundation_config_root_paths.py +1 -1
- tests/foundation/config/session/test_foundation_config_session.py +1 -1
- tests/foundation/config/startup/test_foundation_config_startup.py +1 -1
- tests/foundation/config/testing/test_foundation_config_testing.py +1 -1
- tests/foundation/exceptions/test_foundation_config_exceptions.py +1 -1
- tests/metadata/test_metadata_framework.py +1 -1
- tests/metadata/test_metadata_package.py +1 -1
- tests/patterns/singleton/test_patterns_singleton.py +1 -1
- tests/services/asynchrony/test_services_asynchrony_coroutine.py +1 -1
- tests/services/environment/test_services_environment.py +1 -1
- tests/services/inspection/dependencies/test_reflect_dependencies.py +1 -1
- tests/services/inspection/reflection/test_reflection_abstract.py +1 -1
- tests/services/inspection/reflection/test_reflection_callable.py +1 -1
- tests/services/inspection/reflection/test_reflection_concrete.py +1 -1
- tests/services/inspection/reflection/test_reflection_instance.py +1 -1
- tests/services/inspection/reflection/test_reflection_module.py +1 -1
- tests/services/inspection/test_reflection.py +1 -1
- tests/services/parsers/test_services_parser_exceptions.py +1 -1
- tests/services/path/test_services_resolver.py +1 -1
- tests/services/system/test_services_system_imports.py +1 -1
- tests/services/system/test_services_system_workers.py +1 -1
- tests/support/standard/test_services_std.py +1 -1
- tests/support/wrapper/test_services_wrapper_docdict.py +1 -1
- tests/testing/test_testing_result.py +1 -1
- tests/testing/test_testing_unit.py +1 -2
- orionis/unittesting.py +0 -64
- /orionis/test/contracts/{test_unit.py → unit_test.py} +0 -0
- {orionis-0.335.0.dist-info → orionis-0.337.0.dist-info}/WHEEL +0 -0
- {orionis-0.335.0.dist-info → orionis-0.337.0.dist-info}/licenses/LICENCE +0 -0
- {orionis-0.335.0.dist-info → orionis-0.337.0.dist-info}/top_level.txt +0 -0
- {orionis-0.335.0.dist-info → orionis-0.337.0.dist-info}/zip-safe +0 -0
orionis/metadata/framework.py
CHANGED
orionis/test/__init__.py
CHANGED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# Import custom test case classes from the cases module
|
|
2
|
+
from .cases import TestCase, SyncTestCase, AsyncTestCase
|
|
3
|
+
|
|
4
|
+
# Import the custom TestHistory class for logging test results
|
|
5
|
+
from .logs import TestHistory
|
|
6
|
+
|
|
7
|
+
# Import the custom TestResult entity
|
|
8
|
+
from .entities import TestResult
|
|
9
|
+
|
|
10
|
+
# Import enums for execution mode and test status
|
|
11
|
+
from .enums import ExecutionMode, TestStatus
|
|
12
|
+
|
|
13
|
+
# Import custom exceptions for test failures
|
|
14
|
+
from .exceptions import (
|
|
15
|
+
OrionisTestFailureException,
|
|
16
|
+
OrionisTestConfigException,
|
|
17
|
+
OrionisTestPersistenceError,
|
|
18
|
+
OrionisTestRuntimeError,
|
|
19
|
+
OrionisTestValueError
|
|
20
|
+
)
|
|
21
|
+
|
|
22
|
+
# Import configuration and suite classes for organizing tests
|
|
23
|
+
from .test_suite import Configuration, TestSuite
|
|
24
|
+
from .suite import UnitTest
|
|
25
|
+
|
|
26
|
+
# Import standard unittest components for compatibility
|
|
27
|
+
from unittest import (
|
|
28
|
+
TestLoader,
|
|
29
|
+
TestSuite as StandardTestSuite,
|
|
30
|
+
TestResult as StandardTestResult
|
|
31
|
+
)
|
|
32
|
+
|
|
33
|
+
# Import mock classes for creating test doubles
|
|
34
|
+
from unittest.mock import (
|
|
35
|
+
Mock,
|
|
36
|
+
MagicMock,
|
|
37
|
+
patch
|
|
38
|
+
)
|
|
39
|
+
|
|
40
|
+
# Define the public API of this module
|
|
41
|
+
__all__ = [
|
|
42
|
+
"TestCase",
|
|
43
|
+
"SyncTestCase",
|
|
44
|
+
"AsyncTestCase",
|
|
45
|
+
"TestResult",
|
|
46
|
+
"ExecutionMode",
|
|
47
|
+
"TestStatus",
|
|
48
|
+
"OrionisTestFailureException",
|
|
49
|
+
"OrionisTestConfigException",
|
|
50
|
+
"OrionisTestPersistenceError",
|
|
51
|
+
"OrionisTestRuntimeError",
|
|
52
|
+
"OrionisTestValueError",
|
|
53
|
+
"Configuration",
|
|
54
|
+
"TestSuite",
|
|
55
|
+
"UnitTest",
|
|
56
|
+
"TestLoader",
|
|
57
|
+
"StandardTestSuite",
|
|
58
|
+
"StandardTestResult",
|
|
59
|
+
"Mock",
|
|
60
|
+
"MagicMock",
|
|
61
|
+
"TestHistory",
|
|
62
|
+
"patch",
|
|
63
|
+
]
|
orionis/test/cases/__init__.py
CHANGED
orionis/test/enums/__init__.py
CHANGED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
from .test_failure_exception import OrionisTestFailureException
|
|
2
|
+
from .test_config_exception import OrionisTestConfigException
|
|
3
|
+
from .test_persistence_error import OrionisTestPersistenceError
|
|
4
|
+
from .test_runtime_error import OrionisTestRuntimeError
|
|
5
|
+
from .test_value_error import OrionisTestValueError
|
|
6
|
+
|
|
7
|
+
__all__ = [
|
|
8
|
+
"OrionisTestFailureException",
|
|
9
|
+
"OrionisTestConfigException",
|
|
10
|
+
"OrionisTestPersistenceError",
|
|
11
|
+
"OrionisTestRuntimeError",
|
|
12
|
+
"OrionisTestValueError",
|
|
13
|
+
]
|
orionis/test/logs/__init__.py
CHANGED
orionis/test/output/__init__.py
CHANGED
orionis/test/suite/__init__.py
CHANGED
|
@@ -12,16 +12,16 @@ from pathlib import Path
|
|
|
12
12
|
from typing import Any, Dict, List, Optional, Tuple
|
|
13
13
|
from orionis.services.introspection.instances.reflection_instance import ReflectionInstance
|
|
14
14
|
from orionis.services.system.workers import Workers
|
|
15
|
-
from orionis.test.entities
|
|
16
|
-
from orionis.test.enums
|
|
17
|
-
from orionis.test.enums
|
|
18
|
-
from orionis.test.exceptions
|
|
19
|
-
from orionis.test.exceptions
|
|
20
|
-
from orionis.test.exceptions
|
|
15
|
+
from orionis.test.entities import TestResult
|
|
16
|
+
from orionis.test.enums import ExecutionMode
|
|
17
|
+
from orionis.test.enums import TestStatus
|
|
18
|
+
from orionis.test.exceptions import OrionisTestFailureException
|
|
19
|
+
from orionis.test.exceptions import OrionisTestPersistenceError
|
|
20
|
+
from orionis.test.exceptions import OrionisTestValueError
|
|
21
21
|
from orionis.test.logs.history import TestHistory
|
|
22
|
-
from orionis.test.contracts
|
|
23
|
-
from orionis.test.output
|
|
24
|
-
from orionis.test.view
|
|
22
|
+
from orionis.test.contracts import IUnitTest
|
|
23
|
+
from orionis.test.output import TestPrinter
|
|
24
|
+
from orionis.test.view import TestingResultRender
|
|
25
25
|
|
|
26
26
|
class UnitTest(IUnitTest):
|
|
27
27
|
"""
|
orionis/test/test_suite.py
CHANGED
|
@@ -2,7 +2,7 @@ import re
|
|
|
2
2
|
from os import walk
|
|
3
3
|
from orionis.foundation.config.testing.entities.testing import Testing as Configuration
|
|
4
4
|
from orionis.test.exceptions.test_config_exception import OrionisTestConfigException
|
|
5
|
-
from orionis.test.suite.
|
|
5
|
+
from orionis.test.suite.unit_test import UnitTest
|
|
6
6
|
|
|
7
7
|
class TestSuite:
|
|
8
8
|
"""
|
orionis/test/view/__init__.py
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
orionis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
orionis/unittesting.py,sha256=_NU3_sm3R6bUUH_Y-KSPgNVBajUGCtKo_CGgjB1YD5k,2094
|
|
3
2
|
orionis/_contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
3
|
orionis/_contracts/application.py,sha256=ltuDA1mN5P73l89jJto_A96ePJWE02OZ_B2NOPpfeWs,1061
|
|
5
4
|
orionis/_contracts/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -221,7 +220,7 @@ orionis/foundation/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
|
|
|
221
220
|
orionis/foundation/exceptions/integrity.py,sha256=mc4pL1UMoYRHEmphnpW2oGk5URhu7DJRREyzHaV-cs8,472
|
|
222
221
|
orionis/foundation/exceptions/value_error.py,sha256=hQhXybXEnaa59ba7JxG65jceHt3mnql9MyekF-TChpM,465
|
|
223
222
|
orionis/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
224
|
-
orionis/metadata/framework.py,sha256=
|
|
223
|
+
orionis/metadata/framework.py,sha256=NdMLuAs1RFzSSbSNerau6PNvp1HPXwNbAtR9Yjele3k,4960
|
|
225
224
|
orionis/metadata/package.py,sha256=tqLfBRo-w1j_GN4xvzUNFyweWYFS-qhSgAEc-AmCH1M,5452
|
|
226
225
|
orionis/patterns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
227
226
|
orionis/patterns/singleton/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -305,140 +304,140 @@ orionis/support/standard/exceptions/std_value_exception.py,sha256=7xry_TZz3k-BLA
|
|
|
305
304
|
orionis/support/wrapper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
306
305
|
orionis/support/wrapper/dicts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
307
306
|
orionis/support/wrapper/dicts/dot_dict.py,sha256=VdAUH-DO6y86pl_9N6v-vU9mdLraWh5HjVzI5iC1dMs,5295
|
|
308
|
-
orionis/test/__init__.py,sha256=
|
|
309
|
-
orionis/test/test_suite.py,sha256=
|
|
310
|
-
orionis/test/cases/__init__.py,sha256=
|
|
307
|
+
orionis/test/__init__.py,sha256=A1h_bZ_M2ZtCiPLEiMqAX4zcVg6reSnM7AWRCuMEvGY,1604
|
|
308
|
+
orionis/test/test_suite.py,sha256=gTe0t-e00URScUGREovUYGH42U0VkxNTIChG3ibKHFs,5969
|
|
309
|
+
orionis/test/cases/__init__.py,sha256=9j77BpFS0Xdkf_fk196pLf-sdNfgfjAlwvc_M3Dx9s8,185
|
|
311
310
|
orionis/test/cases/test_async.py,sha256=YwycimGfUx9-kd_FFO8BZXyVayYwOBOzxbu3WZU_l5s,1927
|
|
312
311
|
orionis/test/cases/test_case.py,sha256=GVN3cxYuE47uPOEqFUiMreLdXjTyqzHjjxfyEM5_D4w,1446
|
|
313
312
|
orionis/test/cases/test_sync.py,sha256=FekXNQDq5pOQB2YpvP7E9jAqIJH9uZhTMoPz-qx8FO0,742
|
|
314
|
-
orionis/test/contracts/__init__.py,sha256=
|
|
313
|
+
orionis/test/contracts/__init__.py,sha256=G8BbcUflAXj5AgIw8hEMfsu9o_m397nGe9Ll6Xp0uok,232
|
|
315
314
|
orionis/test/contracts/dumper.py,sha256=5OqGc4GEXCXX76sCX185giQMyKwwZvlOv3I7tTwV2fQ,1324
|
|
316
315
|
orionis/test/contracts/history.py,sha256=v3vjWmvn73DF_C8Ur-aWdHUMrztX584mXKwYgsYQgCE,1435
|
|
317
316
|
orionis/test/contracts/printer.py,sha256=FcTii6uglVIfvsgbmG0lj3hv1RGmDWuDo0eo4Z8rMbQ,6014
|
|
318
|
-
orionis/test/contracts/
|
|
319
|
-
orionis/test/entities/__init__.py,sha256=
|
|
317
|
+
orionis/test/contracts/unit_test.py,sha256=A22uLMbJXEh1Hi7ET7-RpnSGtzHhFYEc94MwmAexzc8,7781
|
|
318
|
+
orionis/test/entities/__init__.py,sha256=_PGno5MOxlsDYZR1iu8JOqPV6tAlTjSBAWaDiqQqa4c,72
|
|
320
319
|
orionis/test/entities/test_result.py,sha256=hz_0NXX5lSVSf4OWhHktrn1kFD43WiL5HugNuHvYRtg,3035
|
|
321
|
-
orionis/test/enums/__init__.py,sha256=
|
|
320
|
+
orionis/test/enums/__init__.py,sha256=0ICcr-gs82xub37ux5ab6YLBImAw7Q44bjWSWZJ9Aj0,132
|
|
322
321
|
orionis/test/enums/test_mode.py,sha256=CHstYZ180MEX84AjZIoyA1l8gKxFLp_eciLOj2in57E,481
|
|
323
322
|
orionis/test/enums/test_status.py,sha256=vNKRmp1lud_ZGTayf3A8wO_0vEYdFABy_oMw-RcEc1c,673
|
|
324
|
-
orionis/test/exceptions/__init__.py,sha256=
|
|
323
|
+
orionis/test/exceptions/__init__.py,sha256=pZZ7_LaJdp-okzm3w1uAE98wODvMusUS3g9y-ER8wWI,488
|
|
325
324
|
orionis/test/exceptions/test_config_exception.py,sha256=GCiS4Fja80tx9L-qlv2lV_1viMsSqqNWzYo2KxXaGLI,473
|
|
326
325
|
orionis/test/exceptions/test_failure_exception.py,sha256=Rf7xHsQ-fSiFg4NmpwDLbFo525DL9ecA3BxTQRiOfD8,1652
|
|
327
326
|
orionis/test/exceptions/test_persistence_error.py,sha256=yFgSmgEWM0VJkPuZNO7vm8f_U3oe42FBsCtMFexuks8,474
|
|
328
327
|
orionis/test/exceptions/test_runtime_error.py,sha256=YL9cAjhm1gf4wkOXCY_pZPMDPb4Nm9jS1JH038EAZpA,470
|
|
329
328
|
orionis/test/exceptions/test_value_error.py,sha256=r3tVWTE3gNp7of2gXk71NN-VYoAlOpB0kulw0LOJ9mI,466
|
|
330
|
-
orionis/test/logs/__init__.py,sha256=
|
|
329
|
+
orionis/test/logs/__init__.py,sha256=9I68ZFtOgA-zLJ_-jLHv9uovc_Y2uuDfwbPjCGb4b6w,70
|
|
331
330
|
orionis/test/logs/history.py,sha256=eAEPWpubs1fFzL-0o8K82hd2lC0S98VOu1AEblCmjYI,13144
|
|
332
|
-
orionis/test/output/__init__.py,sha256=
|
|
331
|
+
orionis/test/output/__init__.py,sha256=H6lyv-sXKSfwYBF0cdtRsLu8lAet-6uG1_cs55rBcl8,120
|
|
333
332
|
orionis/test/output/dumper.py,sha256=q1_S5AYMce01ukPkEJ73gQT7gyLBK5XA1NyOeVINQMI,4280
|
|
334
333
|
orionis/test/output/printer.py,sha256=I7hkZ5z1VQkt1TowWyxfARb1ODYLSpHDX3fzrxMPBzg,16959
|
|
335
|
-
orionis/test/suite/__init__.py,sha256=
|
|
336
|
-
orionis/test/suite/
|
|
337
|
-
orionis/test/view/__init__.py,sha256=
|
|
334
|
+
orionis/test/suite/__init__.py,sha256=5jgkmkeLwF26x3UxGXHZ7WZzlLMpuAQu9Fo1Rng0iEg,66
|
|
335
|
+
orionis/test/suite/unit_test.py,sha256=u0T6cgLW4eQF8UwgsW7GgmANdp6O_n1CcV7g3F-2ufI,52248
|
|
336
|
+
orionis/test/view/__init__.py,sha256=2LWCbH_jT9Dc5a-wV3uxddDxgb6ZLayFQ84w_Cwae6o,84
|
|
338
337
|
orionis/test/view/render.py,sha256=jXZkbITBknbUwm_mD8bcTiwLDvsFkrO9qrf0ZgPwqxc,4903
|
|
339
|
-
orionis-0.
|
|
338
|
+
orionis-0.337.0.dist-info/licenses/LICENCE,sha256=-_4cF2EBKuYVS_SQpy1uapq0oJPUU1vl_RUWSy2jJTo,1111
|
|
340
339
|
tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
341
340
|
tests/example/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
342
|
-
tests/example/test_example.py,sha256=
|
|
341
|
+
tests/example/test_example.py,sha256=4ebBTg7vjtA8INm1lhi0NFPpZBLr8TfI5qqU-73g4vc,585
|
|
343
342
|
tests/foundation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
344
343
|
tests/foundation/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
345
344
|
tests/foundation/config/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
346
|
-
tests/foundation/config/app/test_foundation_config_app.py,sha256=
|
|
345
|
+
tests/foundation/config/app/test_foundation_config_app.py,sha256=6xudkZvigzVh0QBGmVCmrHiK4GH7SGBC8WakLkcv2WE,5551
|
|
347
346
|
tests/foundation/config/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
348
|
-
tests/foundation/config/auth/test_foundation_config_auth.py,sha256=
|
|
347
|
+
tests/foundation/config/auth/test_foundation_config_auth.py,sha256=08xx1Or4ZnKg-u98x7-m_BQizyRBvMl6--Fi0_Fu-bk,1019
|
|
349
348
|
tests/foundation/config/cache/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
350
|
-
tests/foundation/config/cache/test_foundation_config_cache.py,sha256=
|
|
351
|
-
tests/foundation/config/cache/test_foundation_config_cache_file.py,sha256=
|
|
352
|
-
tests/foundation/config/cache/test_foundation_config_cache_stores.py,sha256=
|
|
349
|
+
tests/foundation/config/cache/test_foundation_config_cache.py,sha256=hKJAuNtBjsJGOZapME2MsVxolUssqI0NQYpSUk_lho4,4624
|
|
350
|
+
tests/foundation/config/cache/test_foundation_config_cache_file.py,sha256=3yeSd91x1LF4NFlxGZU2IwDoizYSXkNhN7hsg335ujw,3645
|
|
351
|
+
tests/foundation/config/cache/test_foundation_config_cache_stores.py,sha256=_1o-XwOBzX3olNQukEfgN80lMdfUs3ehMjjYTo0njJI,4555
|
|
353
352
|
tests/foundation/config/cors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
354
|
-
tests/foundation/config/cors/test_foundation_config_cors.py,sha256=
|
|
353
|
+
tests/foundation/config/cors/test_foundation_config_cors.py,sha256=ezhwyhlgyTIEn8JiF8nrxqyohHIqw4U1QroASAmREIs,6692
|
|
355
354
|
tests/foundation/config/database/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
356
|
-
tests/foundation/config/database/test_foundation_config_database.py,sha256=
|
|
357
|
-
tests/foundation/config/database/test_foundation_config_database_connections.py,sha256=
|
|
358
|
-
tests/foundation/config/database/test_foundation_config_database_mysql.py,sha256=
|
|
359
|
-
tests/foundation/config/database/test_foundation_config_database_oracle.py,sha256=
|
|
360
|
-
tests/foundation/config/database/test_foundation_config_database_pgsql.py,sha256=
|
|
361
|
-
tests/foundation/config/database/test_foundation_config_database_sqlite.py,sha256=
|
|
355
|
+
tests/foundation/config/database/test_foundation_config_database.py,sha256=eRBwJi4y5h18Tyn_Jm2MbKajLWuwV4xlU0URmf7Sq2o,4817
|
|
356
|
+
tests/foundation/config/database/test_foundation_config_database_connections.py,sha256=nE7-SZ4tpa5mxbtb8VYBNbafS114fcA8SVQPUy_P020,6948
|
|
357
|
+
tests/foundation/config/database/test_foundation_config_database_mysql.py,sha256=w8FXd8unOACJNjl4AqkCw0Au5s28OebQ7wSoK1OFK1w,12403
|
|
358
|
+
tests/foundation/config/database/test_foundation_config_database_oracle.py,sha256=MVFCX9GPtQsIEu7P2BpfctDjRNNtasIvc3IEhatF770,10384
|
|
359
|
+
tests/foundation/config/database/test_foundation_config_database_pgsql.py,sha256=kaVFP41wyuLT9DqCaWE9DBwE8f2qJP4gWcL5IPqCT7A,8502
|
|
360
|
+
tests/foundation/config/database/test_foundation_config_database_sqlite.py,sha256=n1cdJckpNDl_XoPz033cQu7pKjR7-kekPZ8j-enUYHc,7333
|
|
362
361
|
tests/foundation/config/filesystems/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
363
|
-
tests/foundation/config/filesystems/test_foundation_config_filesystems.py,sha256=
|
|
364
|
-
tests/foundation/config/filesystems/test_foundation_config_filesystems_aws.py,sha256=
|
|
365
|
-
tests/foundation/config/filesystems/test_foundation_config_filesystems_disks.py,sha256=
|
|
366
|
-
tests/foundation/config/filesystems/test_foundation_config_filesystems_local.py,sha256=
|
|
367
|
-
tests/foundation/config/filesystems/test_foundation_config_filesystems_public.py,sha256=
|
|
362
|
+
tests/foundation/config/filesystems/test_foundation_config_filesystems.py,sha256=x_BFu49eyi4NSX1KTBUpGXaH6ZiZoEepzY5wPF8JKKA,5249
|
|
363
|
+
tests/foundation/config/filesystems/test_foundation_config_filesystems_aws.py,sha256=3JGFUN3YKnj99YOAz3Z5V5h3Ojchjw62tvfviYf03M4,5868
|
|
364
|
+
tests/foundation/config/filesystems/test_foundation_config_filesystems_disks.py,sha256=XIGcTG7HsL5qxZI5fqdSFJpLJN1cekEB9mctzxcYxO0,6445
|
|
365
|
+
tests/foundation/config/filesystems/test_foundation_config_filesystems_local.py,sha256=osC7xB7p2ZM-dMv2yvkZFBE2kUcf_KtVVS6SZYKyKtc,4267
|
|
366
|
+
tests/foundation/config/filesystems/test_foundation_config_filesystems_public.py,sha256=nYD2jsajZ4umVBHCmdfrSTeQA290lOOAwqvjMiOAcRE,5871
|
|
368
367
|
tests/foundation/config/logging/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
369
|
-
tests/foundation/config/logging/test_foundation_config_logging.py,sha256=
|
|
370
|
-
tests/foundation/config/logging/test_foundation_config_logging_channels.py,sha256=
|
|
371
|
-
tests/foundation/config/logging/test_foundation_config_logging_chunked.py,sha256=
|
|
372
|
-
tests/foundation/config/logging/test_foundation_config_logging_daily.py,sha256=
|
|
373
|
-
tests/foundation/config/logging/test_foundation_config_logging_hourly.py,sha256=
|
|
374
|
-
tests/foundation/config/logging/test_foundation_config_logging_monthly.py,sha256=
|
|
375
|
-
tests/foundation/config/logging/test_foundation_config_logging_stack.py,sha256=
|
|
376
|
-
tests/foundation/config/logging/test_foundation_config_logging_weekly.py,sha256=
|
|
368
|
+
tests/foundation/config/logging/test_foundation_config_logging.py,sha256=Es1_oH14DSC2jKdRSSByW0bhM44H56qqUbhinQyhhTE,3154
|
|
369
|
+
tests/foundation/config/logging/test_foundation_config_logging_channels.py,sha256=wKUP442zEurqtD0_sij_LFtOEojYiZrUCoE6T1zAzx8,8961
|
|
370
|
+
tests/foundation/config/logging/test_foundation_config_logging_chunked.py,sha256=MOqCNiqCU4olDeBd92cs7yIFtDE1BxQkqroMLKpf4zM,7809
|
|
371
|
+
tests/foundation/config/logging/test_foundation_config_logging_daily.py,sha256=iFGgtZWgOgYfUIdsB2Ng-kjde1DStKr7QsRcUoeULig,7087
|
|
372
|
+
tests/foundation/config/logging/test_foundation_config_logging_hourly.py,sha256=2EFbntcij65AAUzOAr_cLX27LNeSoM-sqy9bvypVZ4o,6800
|
|
373
|
+
tests/foundation/config/logging/test_foundation_config_logging_monthly.py,sha256=z2uZH4AA7igwfXeXJCVc8ThoTadA_eBKkTfywAgp1Is,6410
|
|
374
|
+
tests/foundation/config/logging/test_foundation_config_logging_stack.py,sha256=lJS8F7Ak0uGCg1JNg0a4UZSrU9tfVKgjNOPCvw_LYts,5478
|
|
375
|
+
tests/foundation/config/logging/test_foundation_config_logging_weekly.py,sha256=6Be1OZMdrni9dNyqZWHvBz3wsR5pUSdXSTCcSXNoVRs,7606
|
|
377
376
|
tests/foundation/config/mail/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
378
|
-
tests/foundation/config/mail/test_foundation_config_mail.py,sha256=
|
|
379
|
-
tests/foundation/config/mail/test_foundation_config_mail_file.py,sha256=
|
|
380
|
-
tests/foundation/config/mail/test_foundation_config_mail_mailers.py,sha256=
|
|
381
|
-
tests/foundation/config/mail/test_foundation_config_mail_smtp.py,sha256=
|
|
377
|
+
tests/foundation/config/mail/test_foundation_config_mail.py,sha256=vLG5-f9ZZeAU6uNgx0pC1TIavDv1iP_rlVfYwN4oFZA,4180
|
|
378
|
+
tests/foundation/config/mail/test_foundation_config_mail_file.py,sha256=vXxGSTqxzLIue2s8PpPMV6pee-_sAKZyEFcj7JMc5Y0,2994
|
|
379
|
+
tests/foundation/config/mail/test_foundation_config_mail_mailers.py,sha256=9Df6uRD2Zd5MucxDBQkRbnR8kqml6cc5jpGm30HL-yU,3398
|
|
380
|
+
tests/foundation/config/mail/test_foundation_config_mail_smtp.py,sha256=Lvs4PIRpthyyVJ2GIEh_0bP-U9su_phymt2dokspAQw,4854
|
|
382
381
|
tests/foundation/config/queue/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
383
|
-
tests/foundation/config/queue/test_foundation_config_queue.py,sha256=
|
|
384
|
-
tests/foundation/config/queue/test_foundation_config_queue_brokers.py,sha256=
|
|
385
|
-
tests/foundation/config/queue/test_foundation_config_queue_database.py,sha256=
|
|
382
|
+
tests/foundation/config/queue/test_foundation_config_queue.py,sha256=sQKHnNZTmMVzvH47C6IAJv3RCttjKBtzOVk67bjn50s,3442
|
|
383
|
+
tests/foundation/config/queue/test_foundation_config_queue_brokers.py,sha256=OAFKgTBJaf2EDOwmqpk5NYZBnuesI4LCXQo8lJIItIY,3022
|
|
384
|
+
tests/foundation/config/queue/test_foundation_config_queue_database.py,sha256=YFHwwhNVd_SqKUN9u2wF5MJFxOYjzfrxZCS0oxtHkw8,4799
|
|
386
385
|
tests/foundation/config/root/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
387
|
-
tests/foundation/config/root/test_foundation_config_root_paths.py,sha256=
|
|
386
|
+
tests/foundation/config/root/test_foundation_config_root_paths.py,sha256=xQlcT6tTk_QQtdE1_Sityj6uk6Ei_4ekxg_UEoWQTQg,7083
|
|
388
387
|
tests/foundation/config/session/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
389
|
-
tests/foundation/config/session/test_foundation_config_session.py,sha256=
|
|
388
|
+
tests/foundation/config/session/test_foundation_config_session.py,sha256=W4rKCxjGHSMRg-hQF7hpb0DEuIhnFrEjSoL3dZre5Vs,6371
|
|
390
389
|
tests/foundation/config/startup/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
391
|
-
tests/foundation/config/startup/test_foundation_config_startup.py,sha256=
|
|
390
|
+
tests/foundation/config/startup/test_foundation_config_startup.py,sha256=GoaKOY9qWBui34aPJL0ASFpDeMluqzyqEyg9yE7Vzkw,6762
|
|
392
391
|
tests/foundation/config/testing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
393
|
-
tests/foundation/config/testing/test_foundation_config_testing.py,sha256=
|
|
392
|
+
tests/foundation/config/testing/test_foundation_config_testing.py,sha256=iOtrI4UsqB2OpbfUilGwhih5lprsaEpKNEZQXsfu_LU,8202
|
|
394
393
|
tests/foundation/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
395
|
-
tests/foundation/exceptions/test_foundation_config_exceptions.py,sha256=
|
|
394
|
+
tests/foundation/exceptions/test_foundation_config_exceptions.py,sha256=fHNjPW1Q_oOdpItL_d9IE9-P82MI_wO3JcWH_n-XrZc,4072
|
|
396
395
|
tests/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
397
|
-
tests/metadata/test_metadata_framework.py,sha256=
|
|
398
|
-
tests/metadata/test_metadata_package.py,sha256=
|
|
396
|
+
tests/metadata/test_metadata_framework.py,sha256=_YVn_BS5yfXIst3Q_qjNT1fMaI-iMOeWAC3Icz8_rHQ,3250
|
|
397
|
+
tests/metadata/test_metadata_package.py,sha256=EOSGebpQyvRMY0Gv8Ni8M_EZEfj7ReSu_1_AVET-aR4,2815
|
|
399
398
|
tests/patterns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
400
399
|
tests/patterns/singleton/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
401
|
-
tests/patterns/singleton/test_patterns_singleton.py,sha256=
|
|
400
|
+
tests/patterns/singleton/test_patterns_singleton.py,sha256=fkFhoIbO8JnYLMSHEpNwGv8ndOJ32s5vQtNyB94Df1I,935
|
|
402
401
|
tests/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
403
402
|
tests/services/asynchrony/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
404
|
-
tests/services/asynchrony/test_services_asynchrony_coroutine.py,sha256=
|
|
403
|
+
tests/services/asynchrony/test_services_asynchrony_coroutine.py,sha256=WJiKRiFvdiPDUj-vYdKNoOqiHaCtQsTTntt6V2BAhGI,1650
|
|
405
404
|
tests/services/environment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
406
|
-
tests/services/environment/test_services_environment.py,sha256=
|
|
405
|
+
tests/services/environment/test_services_environment.py,sha256=r15zkFl9DkTyWVVP-RFjJ88rqLHKkbtSTGLEBs6JaRA,3738
|
|
407
406
|
tests/services/inspection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
408
|
-
tests/services/inspection/test_reflection.py,sha256=
|
|
407
|
+
tests/services/inspection/test_reflection.py,sha256=zjtB-we6N5UmnJUpfLpVJzgnlTk1T62OEBX4TnK4IEg,13671
|
|
409
408
|
tests/services/inspection/dependencies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
410
|
-
tests/services/inspection/dependencies/test_reflect_dependencies.py,sha256=
|
|
409
|
+
tests/services/inspection/dependencies/test_reflect_dependencies.py,sha256=119S-mR3JhSD34CU4alDkRpgkEUjxA7rqjm2AVKCZfc,7381
|
|
411
410
|
tests/services/inspection/dependencies/mocks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
412
411
|
tests/services/inspection/dependencies/mocks/mock_user.py,sha256=RxATxe0-Vm4HfX5jKz9Tny42E2fmrdtEN6ZEntbqRL8,912
|
|
413
412
|
tests/services/inspection/dependencies/mocks/mock_user_controller.py,sha256=P3sOUXVZ55auudwiNtvNCEQuTz0cgAZjvhicLZ4xaz4,1208
|
|
414
413
|
tests/services/inspection/dependencies/mocks/mock_users_permissions.py,sha256=oENXbS2qmQUudYSmnhB8fgHBqXZdbplplB-Y2nbx4hw,1388
|
|
415
414
|
tests/services/inspection/reflection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
416
|
-
tests/services/inspection/reflection/test_reflection_abstract.py,sha256=
|
|
417
|
-
tests/services/inspection/reflection/test_reflection_callable.py,sha256=
|
|
418
|
-
tests/services/inspection/reflection/test_reflection_concrete.py,sha256=
|
|
419
|
-
tests/services/inspection/reflection/test_reflection_instance.py,sha256=
|
|
420
|
-
tests/services/inspection/reflection/test_reflection_module.py,sha256=
|
|
415
|
+
tests/services/inspection/reflection/test_reflection_abstract.py,sha256=dC_b_JM9ngLKBWtsMoa3WgrCpstsruAJ7lTI59Kn-EA,27388
|
|
416
|
+
tests/services/inspection/reflection/test_reflection_callable.py,sha256=VlJXXNBuTASxFhcTSRhf8oAeGDE7gD3WITapMZ-y8Qg,6848
|
|
417
|
+
tests/services/inspection/reflection/test_reflection_concrete.py,sha256=hRSAkxEr0s0JLRjQR1vrYbJalAuRLu8wBRYv--3wAMM,44615
|
|
418
|
+
tests/services/inspection/reflection/test_reflection_instance.py,sha256=sPddejr_RJyE5DZFV8ExzlLXsDdB_Ol_Nw_FR2hlIk0,46274
|
|
419
|
+
tests/services/inspection/reflection/test_reflection_module.py,sha256=mP_SX0pa_XsNPZrdUI8daXPF1T_BKaLvMgxFPW5xMwc,19842
|
|
421
420
|
tests/services/inspection/reflection/mock/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
422
421
|
tests/services/inspection/reflection/mock/fake_reflect_instance.py,sha256=iqWoT6tNym3OijK0wcF0iKMp3HTlq5kAoztzC4fdTlM,18595
|
|
423
422
|
tests/services/parsers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
424
|
-
tests/services/parsers/test_services_parser_exceptions.py,sha256=
|
|
423
|
+
tests/services/parsers/test_services_parser_exceptions.py,sha256=4Xcg8BJ9j7_LZGtcHoAM-2hYoNVH3bQCmrB3ZYJYAnU,2643
|
|
425
424
|
tests/services/parsers/mocks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
426
425
|
tests/services/parsers/mocks/mock_custom_error.py,sha256=LWgjeog2rpmfw6j7Bgzvfvmeby8uSBuB1B3d_DgRcFQ,752
|
|
427
426
|
tests/services/path/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
428
|
-
tests/services/path/test_services_resolver.py,sha256=
|
|
427
|
+
tests/services/path/test_services_resolver.py,sha256=3GJfXM4cSPsP1hgjuAgf8xDr4fmXXHYjERpGC0Fe_4M,3895
|
|
429
428
|
tests/services/system/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
430
|
-
tests/services/system/test_services_system_imports.py,sha256=
|
|
431
|
-
tests/services/system/test_services_system_workers.py,sha256=
|
|
429
|
+
tests/services/system/test_services_system_imports.py,sha256=LHIo7q6SGDrhNLazZnLfM6NnuQqkP_1MZi9SrgBs8k4,2938
|
|
430
|
+
tests/services/system/test_services_system_workers.py,sha256=zIJdzQTzt8oe35AkLPTGCIUENKOYTF6elu4CBCRlFQA,2995
|
|
432
431
|
tests/support/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
433
432
|
tests/support/standard/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
434
|
-
tests/support/standard/test_services_std.py,sha256=
|
|
433
|
+
tests/support/standard/test_services_std.py,sha256=f_cJP6wBoQJH4kDaiw_NGuu1OL8tISKLMKcdaNe25Ww,5508
|
|
435
434
|
tests/support/wrapper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
436
|
-
tests/support/wrapper/test_services_wrapper_docdict.py,sha256=
|
|
435
|
+
tests/support/wrapper/test_services_wrapper_docdict.py,sha256=19-TvfALLen7tM4l141V_a9UVgLthGNW8EVyrjPqOGw,4977
|
|
437
436
|
tests/testing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
438
|
-
tests/testing/test_testing_result.py,sha256=
|
|
439
|
-
tests/testing/test_testing_unit.py,sha256=
|
|
440
|
-
orionis-0.
|
|
441
|
-
orionis-0.
|
|
442
|
-
orionis-0.
|
|
443
|
-
orionis-0.
|
|
444
|
-
orionis-0.
|
|
437
|
+
tests/testing/test_testing_result.py,sha256=ypIHgSoWCy2GGJQU-RVYJ3adhPqlCSr0OrTlemQ6Wzc,4308
|
|
438
|
+
tests/testing/test_testing_unit.py,sha256=2mPUcogIM6hOuWXDQhStVrUyBzwkVl1ucqOT2WD7kN8,7390
|
|
439
|
+
orionis-0.337.0.dist-info/METADATA,sha256=IOLTL5RyXKMcxTTRq5DUdo6zgmd_rHg4ph77euq7Vso,4772
|
|
440
|
+
orionis-0.337.0.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
|
|
441
|
+
orionis-0.337.0.dist-info/top_level.txt,sha256=2bdoHgyGZhOtLAXS6Om8OCTmL24dUMC_L1quMe_ETbk,14
|
|
442
|
+
orionis-0.337.0.dist-info/zip-safe,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
|
443
|
+
orionis-0.337.0.dist-info/RECORD,,
|
tests/example/test_example.py
CHANGED
|
@@ -2,7 +2,7 @@ from orionis.foundation.config.app.entities.app import App
|
|
|
2
2
|
from orionis.foundation.config.app.enums.ciphers import Cipher
|
|
3
3
|
from orionis.foundation.config.app.enums.environments import Environments
|
|
4
4
|
from orionis.foundation.exceptions.integrity import OrionisIntegrityException
|
|
5
|
-
from orionis.
|
|
5
|
+
from orionis.test import TestCase
|
|
6
6
|
|
|
7
7
|
class TestFoundationConfigApp(TestCase):
|
|
8
8
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
from orionis.
|
|
1
|
+
from orionis.test import TestCase
|
|
2
2
|
from orionis.foundation.config.cache.entities.cache import Cache
|
|
3
3
|
from orionis.foundation.config.cache.enums.drivers import Drivers
|
|
4
4
|
from orionis.foundation.exceptions.integrity import OrionisIntegrityException
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
from orionis.foundation.config.cache.entities.file import File
|
|
2
2
|
from orionis.foundation.exceptions.integrity import OrionisIntegrityException
|
|
3
|
-
from orionis.
|
|
3
|
+
from orionis.test import TestCase
|
|
4
4
|
|
|
5
5
|
class TestFoundationConfigCacheFile(TestCase):
|
|
6
6
|
"""
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from orionis.foundation.config.cache.entities.stores import Stores
|
|
2
2
|
from orionis.foundation.config.cache.entities.file import File
|
|
3
3
|
from orionis.foundation.exceptions.integrity import OrionisIntegrityException
|
|
4
|
-
from orionis.
|
|
4
|
+
from orionis.test import TestCase
|
|
5
5
|
|
|
6
6
|
class TestFoundationConfigCacheStores(TestCase):
|
|
7
7
|
"""
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
from orionis.foundation.config.cors.entities.cors import Cors
|
|
2
2
|
from orionis.foundation.exceptions.integrity import OrionisIntegrityException
|
|
3
|
-
from orionis.
|
|
3
|
+
from orionis.test import TestCase
|
|
4
4
|
|
|
5
5
|
class TestFoundationConfigCors(TestCase):
|
|
6
6
|
"""
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from orionis.foundation.config.database.entities.database import Database
|
|
2
2
|
from orionis.foundation.config.database.entities.connections import Connections
|
|
3
3
|
from orionis.foundation.exceptions.integrity import OrionisIntegrityException
|
|
4
|
-
from orionis.
|
|
4
|
+
from orionis.test import TestCase
|
|
5
5
|
|
|
6
6
|
class TestFoundationConfigDatabase(TestCase):
|
|
7
7
|
"""
|
|
@@ -4,7 +4,7 @@ from orionis.foundation.config.database.entities.oracle import Oracle
|
|
|
4
4
|
from orionis.foundation.config.database.entities.pgsql import PGSQL
|
|
5
5
|
from orionis.foundation.config.database.entities.sqlite import SQLite
|
|
6
6
|
from orionis.foundation.exceptions.integrity import OrionisIntegrityException
|
|
7
|
-
from orionis.
|
|
7
|
+
from orionis.test import TestCase
|
|
8
8
|
|
|
9
9
|
class TestFoundationConfigDatabaseConnections(TestCase):
|
|
10
10
|
"""
|
|
@@ -3,7 +3,7 @@ from orionis.foundation.config.database.enums.mysql_charsets import MySQLCharset
|
|
|
3
3
|
from orionis.foundation.config.database.enums.mysql_collations import MySQLCollation
|
|
4
4
|
from orionis.foundation.config.database.enums.mysql_engine import MySQLEngine
|
|
5
5
|
from orionis.foundation.exceptions.integrity import OrionisIntegrityException
|
|
6
|
-
from orionis.
|
|
6
|
+
from orionis.test import TestCase
|
|
7
7
|
|
|
8
8
|
class TestFoundationConfigDatabaseMysql(TestCase):
|
|
9
9
|
"""
|
|
@@ -2,7 +2,7 @@ from orionis.foundation.config.database.entities.oracle import Oracle
|
|
|
2
2
|
from orionis.foundation.config.database.enums.oracle_encoding import OracleEncoding
|
|
3
3
|
from orionis.foundation.config.database.enums.oracle_nencoding import OracleNencoding
|
|
4
4
|
from orionis.foundation.exceptions.integrity import OrionisIntegrityException
|
|
5
|
-
from orionis.
|
|
5
|
+
from orionis.test import TestCase
|
|
6
6
|
|
|
7
7
|
class TestFoundationConfigDatabaseOracle(TestCase):
|
|
8
8
|
"""
|
|
@@ -2,7 +2,7 @@ from orionis.foundation.config.database.entities.pgsql import PGSQL
|
|
|
2
2
|
from orionis.foundation.config.database.enums.pgsql_charsets import PGSQLCharset
|
|
3
3
|
from orionis.foundation.config.database.enums.pgsql_mode import PGSQLSSLMode
|
|
4
4
|
from orionis.foundation.exceptions.integrity import OrionisIntegrityException
|
|
5
|
-
from orionis.
|
|
5
|
+
from orionis.test import TestCase
|
|
6
6
|
|
|
7
7
|
class TestFoundationConfigDatabasePgsql(TestCase):
|
|
8
8
|
"""
|
|
@@ -3,7 +3,7 @@ from orionis.foundation.config.database.enums.sqlite_foreign_key import SQLiteFo
|
|
|
3
3
|
from orionis.foundation.config.database.enums.sqlite_journal import SQLiteJournalMode
|
|
4
4
|
from orionis.foundation.config.database.enums.sqlite_synchronous import SQLiteSynchronous
|
|
5
5
|
from orionis.foundation.exceptions.integrity import OrionisIntegrityException
|
|
6
|
-
from orionis.
|
|
6
|
+
from orionis.test import TestCase
|
|
7
7
|
|
|
8
8
|
class TestFoundationConfigDatabaseSqlite(TestCase):
|
|
9
9
|
"""
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from orionis.foundation.config.filesystems.entitites.disks import Disks
|
|
2
2
|
from orionis.foundation.config.filesystems.entitites.filesystems import Filesystems
|
|
3
3
|
from orionis.foundation.exceptions.integrity import OrionisIntegrityException
|
|
4
|
-
from orionis.
|
|
4
|
+
from orionis.test import TestCase
|
|
5
5
|
|
|
6
6
|
class TestFoundationConfigFilesystems(TestCase):
|
|
7
7
|
"""
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
from orionis.foundation.exceptions.integrity import OrionisIntegrityException
|
|
2
2
|
from orionis.foundation.config.filesystems.entitites.aws import S3
|
|
3
|
-
from orionis.
|
|
3
|
+
from orionis.test import TestCase
|
|
4
4
|
|
|
5
5
|
class TestFoundationConfigFilesystemsAws(TestCase):
|
|
6
6
|
"""
|
|
@@ -3,7 +3,7 @@ from orionis.foundation.config.filesystems.entitites.disks import Disks
|
|
|
3
3
|
from orionis.foundation.config.filesystems.entitites.local import Local
|
|
4
4
|
from orionis.foundation.config.filesystems.entitites.public import Public
|
|
5
5
|
from orionis.foundation.exceptions.integrity import OrionisIntegrityException
|
|
6
|
-
from orionis.
|
|
6
|
+
from orionis.test import TestCase
|
|
7
7
|
|
|
8
8
|
class TestFoundationConfigFilesystemsDisks(TestCase):
|
|
9
9
|
"""
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
from orionis.foundation.config.filesystems.entitites.local import Local
|
|
2
2
|
from orionis.foundation.exceptions.integrity import OrionisIntegrityException
|
|
3
|
-
from orionis.
|
|
3
|
+
from orionis.test import TestCase
|
|
4
4
|
|
|
5
5
|
class TestFoundationConfigFilesystemsLocal(TestCase):
|
|
6
6
|
"""
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
from orionis.foundation.exceptions.integrity import OrionisIntegrityException
|
|
2
2
|
from orionis.foundation.config.filesystems.entitites.public import Public
|
|
3
|
-
from orionis.
|
|
3
|
+
from orionis.test import TestCase
|
|
4
4
|
|
|
5
5
|
class TestFoundationConfigFilesystemsPublic(TestCase):
|
|
6
6
|
"""
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from orionis.foundation.config.logging.entities.logging import Logging
|
|
2
2
|
from orionis.foundation.config.logging.entities.channels import Channels
|
|
3
3
|
from orionis.foundation.exceptions.integrity import OrionisIntegrityException
|
|
4
|
-
from orionis.
|
|
4
|
+
from orionis.test import TestCase
|
|
5
5
|
|
|
6
6
|
class TestFoundationConfigLogging(TestCase):
|
|
7
7
|
"""
|
|
@@ -6,7 +6,7 @@ from orionis.foundation.config.logging.entities.weekly import Weekly
|
|
|
6
6
|
from orionis.foundation.config.logging.entities.monthly import Monthly
|
|
7
7
|
from orionis.foundation.config.logging.entities.chunked import Chunked
|
|
8
8
|
from orionis.foundation.exceptions.integrity import OrionisIntegrityException
|
|
9
|
-
from orionis.
|
|
9
|
+
from orionis.test import TestCase
|
|
10
10
|
|
|
11
11
|
class TestFoundationConfigLoggingChannels(TestCase):
|
|
12
12
|
"""
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from orionis.foundation.config.logging.entities.chunked import Chunked
|
|
2
2
|
from orionis.foundation.config.logging.enums.levels import Level
|
|
3
3
|
from orionis.foundation.exceptions.integrity import OrionisIntegrityException
|
|
4
|
-
from orionis.
|
|
4
|
+
from orionis.test import TestCase
|
|
5
5
|
|
|
6
6
|
class TestFoundationConfigLoggingChunked(TestCase):
|
|
7
7
|
"""
|
|
@@ -2,7 +2,7 @@ from datetime import time
|
|
|
2
2
|
from orionis.foundation.config.logging.entities.daily import Daily
|
|
3
3
|
from orionis.foundation.config.logging.enums.levels import Level
|
|
4
4
|
from orionis.foundation.exceptions.integrity import OrionisIntegrityException
|
|
5
|
-
from orionis.
|
|
5
|
+
from orionis.test import TestCase
|
|
6
6
|
|
|
7
7
|
class TestFoundationConfigLoggingDaily(TestCase):
|
|
8
8
|
"""
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from orionis.foundation.config.logging.entities.hourly import Hourly
|
|
2
2
|
from orionis.foundation.config.logging.enums.levels import Level
|
|
3
3
|
from orionis.foundation.exceptions.integrity import OrionisIntegrityException
|
|
4
|
-
from orionis.
|
|
4
|
+
from orionis.test import TestCase
|
|
5
5
|
|
|
6
6
|
class TestFoundationConfigLoggingHourly(TestCase):
|
|
7
7
|
"""
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from orionis.foundation.config.logging.entities.monthly import Monthly
|
|
2
2
|
from orionis.foundation.config.logging.enums.levels import Level
|
|
3
3
|
from orionis.foundation.exceptions.integrity import OrionisIntegrityException
|
|
4
|
-
from orionis.
|
|
4
|
+
from orionis.test import TestCase
|
|
5
5
|
|
|
6
6
|
class TestFoundationConfigLoggingMonthly(TestCase):
|
|
7
7
|
"""
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from orionis.foundation.config.logging.entities.stack import Stack
|
|
2
2
|
from orionis.foundation.config.logging.enums.levels import Level
|
|
3
3
|
from orionis.foundation.exceptions.integrity import OrionisIntegrityException
|
|
4
|
-
from orionis.
|
|
4
|
+
from orionis.test import TestCase
|
|
5
5
|
|
|
6
6
|
class TestFoundationConfigLoggingStack(TestCase):
|
|
7
7
|
"""
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from orionis.foundation.config.logging.entities.weekly import Weekly
|
|
2
2
|
from orionis.foundation.config.logging.enums.levels import Level
|
|
3
3
|
from orionis.foundation.exceptions.integrity import OrionisIntegrityException
|
|
4
|
-
from orionis.
|
|
4
|
+
from orionis.test import TestCase
|
|
5
5
|
|
|
6
6
|
class TestFoundationConfigLoggingWeekly(TestCase):
|
|
7
7
|
"""
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from orionis.foundation.config.mail.entities.mail import Mail
|
|
2
2
|
from orionis.foundation.config.mail.entities.mailers import Mailers
|
|
3
3
|
from orionis.foundation.exceptions.integrity import OrionisIntegrityException
|
|
4
|
-
from orionis.
|
|
4
|
+
from orionis.test import TestCase
|
|
5
5
|
|
|
6
6
|
class TestFoundationConfigMail(TestCase):
|
|
7
7
|
"""
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
from orionis.foundation.config.mail.entities.file import File
|
|
2
2
|
from orionis.foundation.exceptions.integrity import OrionisIntegrityException
|
|
3
|
-
from orionis.
|
|
3
|
+
from orionis.test import TestCase
|
|
4
4
|
|
|
5
5
|
class TestFoundationConfigMailFile(TestCase):
|
|
6
6
|
"""
|
|
@@ -2,7 +2,7 @@ from orionis.foundation.config.mail.entities.mailers import Mailers
|
|
|
2
2
|
from orionis.foundation.config.mail.entities.smtp import Smtp
|
|
3
3
|
from orionis.foundation.config.mail.entities.file import File
|
|
4
4
|
from orionis.foundation.exceptions.integrity import OrionisIntegrityException
|
|
5
|
-
from orionis.
|
|
5
|
+
from orionis.test import TestCase
|
|
6
6
|
|
|
7
7
|
class TestFoundationConfigMailMailers(TestCase):
|
|
8
8
|
"""
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
from orionis.foundation.config.mail.entities.smtp import Smtp
|
|
2
2
|
from orionis.foundation.exceptions.integrity import OrionisIntegrityException
|
|
3
|
-
from orionis.
|
|
3
|
+
from orionis.test import TestCase
|
|
4
4
|
|
|
5
5
|
class TestFoundationConfigMailSmtp(TestCase):
|
|
6
6
|
"""
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from orionis.foundation.config.queue.entities.queue import Queue
|
|
2
2
|
from orionis.foundation.config.queue.entities.brokers import Brokers
|
|
3
3
|
from orionis.foundation.exceptions.integrity import OrionisIntegrityException
|
|
4
|
-
from orionis.
|
|
4
|
+
from orionis.test import TestCase
|
|
5
5
|
|
|
6
6
|
class TestFoundationConfigQueue(TestCase):
|
|
7
7
|
"""
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from orionis.foundation.config.queue.entities.brokers import Brokers
|
|
2
2
|
from orionis.foundation.config.queue.entities.database import Database
|
|
3
3
|
from orionis.foundation.exceptions.integrity import OrionisIntegrityException
|
|
4
|
-
from orionis.
|
|
4
|
+
from orionis.test import TestCase
|
|
5
5
|
|
|
6
6
|
class TestFoundationConfigQueueBrokers(TestCase):
|
|
7
7
|
async def testDefaultInitialization(self):
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from orionis.foundation.config.queue.entities.database import Database
|
|
2
2
|
from orionis.foundation.config.queue.enums.strategy import Strategy
|
|
3
3
|
from orionis.foundation.exceptions.integrity import OrionisIntegrityException
|
|
4
|
-
from orionis.
|
|
4
|
+
from orionis.test import TestCase
|
|
5
5
|
|
|
6
6
|
class TestFoundationConfigQueueDatabase(TestCase):
|
|
7
7
|
async def testDefaultInitialization(self):
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from pathlib import Path
|
|
2
2
|
from orionis.foundation.exceptions.integrity import OrionisIntegrityException
|
|
3
3
|
from orionis.foundation.config.roots.paths import Paths
|
|
4
|
-
from orionis.
|
|
4
|
+
from orionis.test import TestCase
|
|
5
5
|
|
|
6
6
|
class TestFoundationConfigRootPaths(TestCase):
|
|
7
7
|
"""
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from orionis.foundation.config.session.entities.session import Session
|
|
2
2
|
from orionis.foundation.config.session.enums.same_site_policy import SameSitePolicy
|
|
3
3
|
from orionis.foundation.exceptions.integrity import OrionisIntegrityException
|
|
4
|
-
from orionis.
|
|
4
|
+
from orionis.test import TestCase
|
|
5
5
|
|
|
6
6
|
class TestFoundationConfigSession(TestCase):
|
|
7
7
|
async def testDefaultInitialization(self):
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from dataclasses import is_dataclass
|
|
2
2
|
from orionis.foundation.exceptions.integrity import OrionisIntegrityException
|
|
3
3
|
from orionis.foundation.config.startup import Configuration
|
|
4
|
-
from orionis.
|
|
4
|
+
from orionis.test import TestCase, Mock
|
|
5
5
|
|
|
6
6
|
class TestFoundationConfigStartup(TestCase):
|
|
7
7
|
"""
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from orionis.foundation.config.testing.entities.testing import Testing
|
|
2
2
|
from orionis.foundation.exceptions.integrity import OrionisIntegrityException
|
|
3
3
|
from orionis.test.enums.test_mode import ExecutionMode
|
|
4
|
-
from orionis.
|
|
4
|
+
from orionis.test import TestCase
|
|
5
5
|
|
|
6
6
|
class TestFoundationConfigTesting(TestCase):
|
|
7
7
|
"""
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
from orionis.services.asynchrony.coroutines import Coroutine
|
|
3
3
|
from orionis.services.asynchrony.exceptions.coroutine_exception import OrionisCoroutineException
|
|
4
|
-
from orionis.
|
|
4
|
+
from orionis.test import TestCase
|
|
5
5
|
|
|
6
6
|
class TestServicesAsynchronyCoroutine(TestCase):
|
|
7
7
|
|
|
@@ -6,7 +6,7 @@ from orionis.services.introspection.dependencies.reflect_dependencies import (
|
|
|
6
6
|
MethodDependency,
|
|
7
7
|
ResolvedDependency
|
|
8
8
|
)
|
|
9
|
-
from orionis.
|
|
9
|
+
from orionis.test import TestCase
|
|
10
10
|
from tests.services.inspection.dependencies.mocks.mock_user import FakeUser
|
|
11
11
|
from tests.services.inspection.dependencies.mocks.mock_user_controller import UserController
|
|
12
12
|
from tests.services.inspection.dependencies.mocks.mock_users_permissions import FakeUserWithPermissions
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from orionis.services.introspection.abstract.reflection_abstract import ReflectionAbstract
|
|
2
2
|
from orionis.services.introspection.dependencies.entities.class_dependencies import ClassDependency
|
|
3
3
|
from tests.services.inspection.reflection.mock.fake_reflect_instance import AbstractFakeClass
|
|
4
|
-
from orionis.
|
|
4
|
+
from orionis.test import TestCase
|
|
5
5
|
|
|
6
6
|
class TestServiceReflectionAbstract(TestCase):
|
|
7
7
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
from orionis.services.introspection.callables.reflection_callable import ReflectionCallable
|
|
2
2
|
from orionis.services.introspection.dependencies.entities.callable_dependencies import CallableDependency
|
|
3
|
-
from orionis.
|
|
3
|
+
from orionis.test import TestCase
|
|
4
4
|
from orionis.services.introspection.exceptions.reflection_type_error import ReflectionTypeError
|
|
5
5
|
|
|
6
6
|
class TestReflectionCallable(TestCase):
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from orionis.services.introspection.concretes.reflection_concrete import ReflectionConcrete
|
|
2
2
|
from orionis.services.introspection.dependencies.entities.class_dependencies import ClassDependency
|
|
3
3
|
from tests.services.inspection.reflection.mock.fake_reflect_instance import FakeClass
|
|
4
|
-
from orionis.
|
|
4
|
+
from orionis.test import TestCase
|
|
5
5
|
|
|
6
6
|
class TestServiceReflectionConcrete(TestCase):
|
|
7
7
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from orionis.services.introspection.dependencies.entities.class_dependencies import ClassDependency
|
|
2
2
|
from tests.services.inspection.reflection.mock.fake_reflect_instance import FakeClass
|
|
3
3
|
from orionis.services.introspection.instances.reflection_instance import ReflectionInstance
|
|
4
|
-
from orionis.
|
|
4
|
+
from orionis.test import TestCase
|
|
5
5
|
|
|
6
6
|
class TestServiceReflectionInstance(TestCase):
|
|
7
7
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
from orionis.
|
|
1
|
+
from orionis.test import TestCase
|
|
2
2
|
from orionis.services.introspection.modules.reflection_module import ReflectionModule
|
|
3
3
|
from orionis.services.introspection.exceptions.reflection_type_error import ReflectionTypeError
|
|
4
4
|
from orionis.services.introspection.exceptions.reflection_value_error import ReflectionValueError
|
|
@@ -3,7 +3,7 @@ import tempfile
|
|
|
3
3
|
from pathlib import Path
|
|
4
4
|
from orionis.services.paths.exceptions.not_found_exceptions import OrionisFileNotFoundException
|
|
5
5
|
from orionis.services.paths.resolver import Resolver
|
|
6
|
-
from orionis.
|
|
6
|
+
from orionis.test import TestCase
|
|
7
7
|
|
|
8
8
|
class TestServicesResolver(TestCase):
|
|
9
9
|
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
from orionis.test
|
|
2
|
-
from orionis.unittesting import UnitTest, ExecutionMode, TestLoader, StandardTestSuite, patch, MagicMock, StandardTestResult
|
|
1
|
+
from orionis.test import TestCase, UnitTest, ExecutionMode, TestLoader, StandardTestSuite, patch, MagicMock, StandardTestResult
|
|
3
2
|
|
|
4
3
|
class TestTestingUnit(TestCase):
|
|
5
4
|
|
orionis/unittesting.py
DELETED
|
@@ -1,64 +0,0 @@
|
|
|
1
|
-
# Import custom test case classes from the orionis.test.cases module
|
|
2
|
-
from orionis.test.cases.test_case import TestCase
|
|
3
|
-
from orionis.test.cases.test_sync import SyncTestCase
|
|
4
|
-
from orionis.test.cases.test_async import AsyncTestCase
|
|
5
|
-
|
|
6
|
-
# Import the custom TestHistory class for logging test results
|
|
7
|
-
from orionis.test.logs.history import TestHistory
|
|
8
|
-
|
|
9
|
-
# Import the custom TestResult entity
|
|
10
|
-
from orionis.test.entities.test_result import TestResult
|
|
11
|
-
|
|
12
|
-
# Import enums for execution mode and test status
|
|
13
|
-
from orionis.test.enums.test_mode import ExecutionMode
|
|
14
|
-
from orionis.test.enums.test_status import TestStatus
|
|
15
|
-
|
|
16
|
-
# Import custom exception for test failures
|
|
17
|
-
from orionis.test.exceptions.test_failure_exception import OrionisTestFailureException
|
|
18
|
-
from orionis.test.exceptions.test_config_exception import OrionisTestConfigException
|
|
19
|
-
from orionis.test.exceptions.test_persistence_error import OrionisTestPersistenceError
|
|
20
|
-
from orionis.test.exceptions.test_runtime_error import OrionisTestRuntimeError
|
|
21
|
-
from orionis.test.exceptions.test_value_error import OrionisTestValueError
|
|
22
|
-
|
|
23
|
-
# Import configuration and suite classes for organizing tests
|
|
24
|
-
from orionis.test.test_suite import Configuration, TestSuite
|
|
25
|
-
from orionis.test.suite.test_unit import UnitTest
|
|
26
|
-
|
|
27
|
-
# Import standard unittest components for compatibility
|
|
28
|
-
from unittest import (
|
|
29
|
-
TestLoader,
|
|
30
|
-
TestSuite as StandardTestSuite,
|
|
31
|
-
TestResult as StandardTestResult
|
|
32
|
-
)
|
|
33
|
-
|
|
34
|
-
# Import mock classes for creating test doubles
|
|
35
|
-
from unittest.mock import (
|
|
36
|
-
Mock,
|
|
37
|
-
MagicMock,
|
|
38
|
-
patch
|
|
39
|
-
)
|
|
40
|
-
|
|
41
|
-
# Define the public API of this module
|
|
42
|
-
__all__ = [
|
|
43
|
-
"TestCase",
|
|
44
|
-
"SyncTestCase",
|
|
45
|
-
"AsyncTestCase",
|
|
46
|
-
"TestResult",
|
|
47
|
-
"ExecutionMode",
|
|
48
|
-
"TestStatus",
|
|
49
|
-
"OrionisTestFailureException",
|
|
50
|
-
"OrionisTestConfigException",
|
|
51
|
-
"OrionisTestPersistenceError",
|
|
52
|
-
"OrionisTestRuntimeError",
|
|
53
|
-
"OrionisTestValueError",
|
|
54
|
-
"Configuration",
|
|
55
|
-
"TestSuite",
|
|
56
|
-
"UnitTest",
|
|
57
|
-
"TestLoader",
|
|
58
|
-
"StandardTestSuite",
|
|
59
|
-
"StandardTestResult",
|
|
60
|
-
"Mock",
|
|
61
|
-
"MagicMock",
|
|
62
|
-
"TestHistory",
|
|
63
|
-
"patch",
|
|
64
|
-
]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|