orionis 0.234.0__py3-none-any.whl → 0.235.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/framework.py +1 -1
- orionis/luminate/support/introspection/__init__.py +7 -0
- orionis/luminate/support/{inspection → introspection}/dependencies/contracts/reflect_dependencies.py +2 -2
- orionis/luminate/support/{inspection → introspection}/dependencies/reflect_dependencies.py +4 -4
- orionis/luminate/support/{inspection → introspection}/reflect_abstract.py +1 -1
- orionis/luminate/support/{inspection → introspection}/reflection.py +8 -8
- orionis/luminate/support/{inspection → introspection}/reflection_instance.py +1 -1
- orionis/luminate/support/{inspection → introspection}/reflexion_concrete_with_abstract.py +2 -2
- orionis/luminate/support/{inspection → introspection}/reflexion_instance_with_abstract.py +2 -2
- orionis/luminate/test/__init__.py +13 -0
- {orionis-0.234.0.dist-info → orionis-0.235.0.dist-info}/METADATA +1 -1
- {orionis-0.234.0.dist-info → orionis-0.235.0.dist-info}/RECORD +45 -53
- tests/example/test_example.py +1 -1
- tests/support/adapters/test_doct_dict.py +1 -1
- tests/support/async_io/test_async_coroutine.py +1 -1
- tests/support/environment/test_env.py +1 -1
- tests/support/inspection/test_reflection_abstract.py +2 -2
- tests/support/inspection/test_reflection_concrete.py +3 -3
- tests/support/inspection/test_reflection_concrete_with_abstract.py +2 -2
- tests/support/inspection/test_reflection_instance.py +3 -4
- tests/support/inspection/test_reflection_instance_with_abstract.py +2 -2
- tests/support/parsers/test_exception_parser.py +1 -1
- tests/support/path/test_resolver.py +6 -6
- tests/support/patterns/test_singleton.py +1 -1
- tests/support/standard/test_std.py +1 -1
- orionis/luminate/support/inspection/helpers/__init__.py +0 -0
- orionis/luminate/test/case.py +0 -9
- orionis/luminate/test/suite.py +0 -7
- orionis/static/favicon/OrionisFrameworkFavicon.png +0 -0
- orionis/static/logos/OrionisFramework.jpg +0 -0
- orionis/static/logos/OrionisFramework.png +0 -0
- orionis/static/logos/OrionisFramework.psd +0 -0
- orionis/static/logos/OrionisFramework2.png +0 -0
- orionis/static/logos/OrionisFramework3.png +0 -0
- /orionis/luminate/support/{inspection → introspection}/container_integrity.py +0 -0
- /orionis/luminate/support/{inspection → introspection/contracts}/__init__.py +0 -0
- /orionis/luminate/support/{inspection → introspection}/contracts/reflection.py +0 -0
- /orionis/luminate/support/{inspection → introspection}/contracts/reflexion_abstract.py +0 -0
- /orionis/luminate/support/{inspection/contracts → introspection/dependencies}/__init__.py +0 -0
- /orionis/luminate/support/{inspection/dependencies → introspection/dependencies/contracts}/__init__.py +0 -0
- /orionis/luminate/support/{inspection/dependencies/contracts → introspection/dependencies/entities}/__init__.py +0 -0
- /orionis/luminate/support/{inspection → introspection}/dependencies/entities/class_dependencies.py +0 -0
- /orionis/luminate/support/{inspection → introspection}/dependencies/entities/method_dependencies.py +0 -0
- /orionis/luminate/support/{inspection → introspection}/dependencies/entities/resolved_dependencies.py +0 -0
- /orionis/luminate/support/{inspection/dependencies/entities → introspection/helpers}/__init__.py +0 -0
- /orionis/luminate/support/{inspection → introspection}/helpers/functions.py +0 -0
- /orionis/luminate/support/{inspection → introspection}/reflect_decorators.py +0 -0
- /orionis/luminate/support/{inspection → introspection}/reflexion_concrete.py +0 -0
- /orionis/luminate/support/{inspection → introspection}/reflexion_module.py +0 -0
- /orionis/luminate/support/{inspection → introspection}/reflexion_module_with_classname.py +0 -0
- {orionis-0.234.0.dist-info → orionis-0.235.0.dist-info}/LICENCE +0 -0
- {orionis-0.234.0.dist-info → orionis-0.235.0.dist-info}/WHEEL +0 -0
- {orionis-0.234.0.dist-info → orionis-0.235.0.dist-info}/entry_points.txt +0 -0
- {orionis-0.234.0.dist-info → orionis-0.235.0.dist-info}/top_level.txt +0 -0
orionis/framework.py
CHANGED
orionis/luminate/support/{inspection → introspection}/dependencies/contracts/reflect_dependencies.py
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
from abc import ABC, abstractmethod
|
2
|
-
from orionis.luminate.support.
|
3
|
-
from orionis.luminate.support.
|
2
|
+
from orionis.luminate.support.introspection.dependencies.entities.class_dependencies import ClassDependency
|
3
|
+
from orionis.luminate.support.introspection.dependencies.entities.method_dependencies import MethodDependency
|
4
4
|
|
5
5
|
class IReflectDependencies(ABC):
|
6
6
|
"""
|
@@ -1,9 +1,9 @@
|
|
1
1
|
import inspect
|
2
2
|
from typing import Any, Dict, List
|
3
|
-
from orionis.luminate.support.
|
4
|
-
from orionis.luminate.support.
|
5
|
-
from orionis.luminate.support.
|
6
|
-
from orionis.luminate.support.
|
3
|
+
from orionis.luminate.support.introspection.dependencies.contracts.reflect_dependencies import IReflectDependencies
|
4
|
+
from orionis.luminate.support.introspection.dependencies.entities.class_dependencies import ClassDependency
|
5
|
+
from orionis.luminate.support.introspection.dependencies.entities.method_dependencies import MethodDependency
|
6
|
+
from orionis.luminate.support.introspection.dependencies.entities.resolved_dependencies import ResolvedDependency
|
7
7
|
|
8
8
|
class ReflectDependencies(IReflectDependencies):
|
9
9
|
"""
|
@@ -3,7 +3,7 @@ import ast
|
|
3
3
|
import inspect
|
4
4
|
import types
|
5
5
|
from typing import Any, Callable, Dict, List, Optional, Set, Tuple, Type, TypeVar
|
6
|
-
from orionis.luminate.support.
|
6
|
+
from orionis.luminate.support.introspection.contracts.reflexion_abstract import IReflexionAbstract
|
7
7
|
|
8
8
|
ABC = TypeVar('ABC', bound=abc.ABC)
|
9
9
|
|
@@ -1,14 +1,14 @@
|
|
1
1
|
import abc
|
2
2
|
from typing import Any, Type, TypeVar
|
3
3
|
from orionis.luminate.contracts.support.reflection import IReflection
|
4
|
-
from orionis.luminate.support.
|
5
|
-
from orionis.luminate.support.
|
6
|
-
from orionis.luminate.support.
|
7
|
-
from orionis.luminate.support.
|
8
|
-
from orionis.luminate.support.
|
9
|
-
from orionis.luminate.support.
|
10
|
-
from orionis.luminate.support.
|
11
|
-
from orionis.luminate.support.
|
4
|
+
from orionis.luminate.support.introspection.helpers.functions import HelpersReflection
|
5
|
+
from orionis.luminate.support.introspection.reflect_abstract import ReflexionAbstract
|
6
|
+
from orionis.luminate.support.introspection.reflexion_concrete import ReflexionConcrete
|
7
|
+
from orionis.luminate.support.introspection.reflexion_concrete_with_abstract import ReflexionConcreteWithAbstract
|
8
|
+
from orionis.luminate.support.introspection.reflection_instance import ReflectionInstance
|
9
|
+
from orionis.luminate.support.introspection.reflexion_instance_with_abstract import ReflexionInstanceWithAbstract
|
10
|
+
from orionis.luminate.support.introspection.reflexion_module import ReflexionModule
|
11
|
+
from orionis.luminate.support.introspection.reflexion_module_with_classname import ReflexionModuleWithClassName
|
12
12
|
|
13
13
|
T = TypeVar('T')
|
14
14
|
ABC = TypeVar('ABC', bound=abc.ABC)
|
@@ -2,7 +2,7 @@ import inspect
|
|
2
2
|
from dataclasses import dataclass
|
3
3
|
from typing import Any, Callable, Dict, List, Optional, Tuple, Type
|
4
4
|
from orionis.luminate.support.asynchrony.async_io import AsyncIO
|
5
|
-
from orionis.luminate.support.
|
5
|
+
from orionis.luminate.support.introspection.dependencies.reflect_dependencies import (
|
6
6
|
ClassDependency,
|
7
7
|
MethodDependency,
|
8
8
|
ReflectDependencies,
|
@@ -1,8 +1,8 @@
|
|
1
1
|
import abc
|
2
2
|
import inspect
|
3
3
|
from typing import Any, Dict, List, Tuple, Type, TypeVar, Union
|
4
|
-
from orionis.luminate.support.
|
5
|
-
from orionis.luminate.support.
|
4
|
+
from orionis.luminate.support.introspection.reflect_abstract import ReflexionAbstract
|
5
|
+
from orionis.luminate.support.introspection.reflexion_concrete import ReflexionConcrete
|
6
6
|
|
7
7
|
T = TypeVar('T')
|
8
8
|
ABC = TypeVar('ABC', bound=abc.ABC)
|
@@ -1,8 +1,8 @@
|
|
1
1
|
import abc
|
2
2
|
import inspect
|
3
3
|
from typing import Any, Dict, List, Tuple, Type, TypeVar, Union
|
4
|
-
from orionis.luminate.support.
|
5
|
-
from orionis.luminate.support.
|
4
|
+
from orionis.luminate.support.introspection.reflect_abstract import ReflexionAbstract
|
5
|
+
from orionis.luminate.support.introspection.reflection_instance import ReflectionInstance
|
6
6
|
|
7
7
|
T = TypeVar('T')
|
8
8
|
ABC = TypeVar('ABC', bound=abc.ABC)
|
@@ -0,0 +1,13 @@
|
|
1
|
+
from orionis.luminate.test.cases.test_async import AsyncTestCase
|
2
|
+
from orionis.luminate.test.cases.test_case import TestCase
|
3
|
+
from orionis.luminate.test.cases.test_sync import SyncTestCase
|
4
|
+
from orionis.luminate.test.core.test_suite import TestSuite
|
5
|
+
from orionis.luminate.test.core.test_unit import UnitTest
|
6
|
+
|
7
|
+
__all__ = [
|
8
|
+
"TestSuite",
|
9
|
+
"UnitTest",
|
10
|
+
"AsyncTestCase",
|
11
|
+
"TestCase",
|
12
|
+
"SyncTestCase",
|
13
|
+
]
|
@@ -1,6 +1,6 @@
|
|
1
1
|
orionis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
2
|
orionis/console.py,sha256=4gYWxf0fWYgJ4RKwARvnTPh06FL3GJ6SAZ7R2NzOICw,1342
|
3
|
-
orionis/framework.py,sha256=
|
3
|
+
orionis/framework.py,sha256=AQlcpFBST_73jM6cBIxZNbiPpse9YZFTADdCrTHAHXQ,1458
|
4
4
|
orionis/installer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
5
|
orionis/installer/manager.py,sha256=Li4TVziRXWfum02xNG4JHwbnLk-u8xzHjdqKz-D894k,2755
|
6
6
|
orionis/installer/output.py,sha256=7O9qa2xtXMB_4ZvVi-Klneom9YazwygAd_4uYAoxhbU,8548
|
@@ -166,30 +166,30 @@ orionis/luminate/support/environment/functions.py,sha256=L6gL4z3c89ZU17IWvOXyQ2_
|
|
166
166
|
orionis/luminate/support/environment/helper.py,sha256=G1670w1xkI1pj-rW_inv6D3XmU4oliwnWnrJO5CBm2E,818
|
167
167
|
orionis/luminate/support/environment/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
168
168
|
orionis/luminate/support/environment/contracts/env.py,sha256=buJfzebBOUuq2CnhQCWlnJuzJAEo06-S0_SPR4N_mOY,1647
|
169
|
-
orionis/luminate/support/
|
170
|
-
orionis/luminate/support/
|
171
|
-
orionis/luminate/support/
|
172
|
-
orionis/luminate/support/
|
173
|
-
orionis/luminate/support/
|
174
|
-
orionis/luminate/support/
|
175
|
-
orionis/luminate/support/
|
176
|
-
orionis/luminate/support/
|
177
|
-
orionis/luminate/support/
|
178
|
-
orionis/luminate/support/
|
179
|
-
orionis/luminate/support/
|
180
|
-
orionis/luminate/support/
|
181
|
-
orionis/luminate/support/
|
182
|
-
orionis/luminate/support/
|
183
|
-
orionis/luminate/support/
|
184
|
-
orionis/luminate/support/
|
185
|
-
orionis/luminate/support/
|
186
|
-
orionis/luminate/support/
|
187
|
-
orionis/luminate/support/
|
188
|
-
orionis/luminate/support/
|
189
|
-
orionis/luminate/support/
|
190
|
-
orionis/luminate/support/
|
191
|
-
orionis/luminate/support/
|
192
|
-
orionis/luminate/support/
|
169
|
+
orionis/luminate/support/introspection/__init__.py,sha256=jYIlYv5a8cmifzet7ozzxt2fJEmqJSamlJFTbWhYeUU,227
|
170
|
+
orionis/luminate/support/introspection/container_integrity.py,sha256=6d9FsGk-Rm1AXgqBS3Nww49dR7n1ptXTTNyGUuBHgNY,10111
|
171
|
+
orionis/luminate/support/introspection/reflect_abstract.py,sha256=vcPy5r33WeyTzFEXGMmGeI7C23_S4nGS_VXBBODAfng,10851
|
172
|
+
orionis/luminate/support/introspection/reflect_decorators.py,sha256=fnxnkEcRSU8TxDGdjCNlvXMNHEKzW7AwO_aPOVCbs9w,11548
|
173
|
+
orionis/luminate/support/introspection/reflection.py,sha256=z9yTQvMKNGjvWh59HH-AEwPXq-3s4hT4ciXbw4FIfKo,7823
|
174
|
+
orionis/luminate/support/introspection/reflection_instance.py,sha256=XQnNTYuN9aLWyTJIu-sc1OYbaj3XtihOIeVuSHVIiQE,24862
|
175
|
+
orionis/luminate/support/introspection/reflexion_concrete.py,sha256=1ISuy2L6Oser-EhmpuGALmbauh7Z-X8Rx1YYgt5CabQ,7543
|
176
|
+
orionis/luminate/support/introspection/reflexion_concrete_with_abstract.py,sha256=9DYldzJZcx1fgdDkZsMj63zLVSTPYlhygphRjAtJY3k,7484
|
177
|
+
orionis/luminate/support/introspection/reflexion_instance_with_abstract.py,sha256=h4E_PxCR7F2ImjVfJFyDPgHA2SSUeQnrbmdUVvuavYo,9414
|
178
|
+
orionis/luminate/support/introspection/reflexion_module.py,sha256=OgBXpqNJHkmq-gX4rqFStv-WVNe9R38RsgUgfHpak8k,405
|
179
|
+
orionis/luminate/support/introspection/reflexion_module_with_classname.py,sha256=YZHZI0XUZkSWnq9wrGxrIXtI64nY9yVSZoMe7PZXq8Y,620
|
180
|
+
orionis/luminate/support/introspection/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
181
|
+
orionis/luminate/support/introspection/contracts/reflection.py,sha256=zF9OLiEdgWJtJWvfrmWCQhbDjgYmm-QvAkFv9OLb3rE,4959
|
182
|
+
orionis/luminate/support/introspection/contracts/reflexion_abstract.py,sha256=u8SiBTvcWltwR9g64akCNCzsTq8YkkZIPPEPwbyroQU,6396
|
183
|
+
orionis/luminate/support/introspection/dependencies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
184
|
+
orionis/luminate/support/introspection/dependencies/reflect_dependencies.py,sha256=Udg4eUDehJiJNaiZOwGvpomNA2OvEQRwbKQk6OPb1sw,7027
|
185
|
+
orionis/luminate/support/introspection/dependencies/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
186
|
+
orionis/luminate/support/introspection/dependencies/contracts/reflect_dependencies.py,sha256=RnwRP_3uBM0ivE3Y9bgx3chGSmTFhCAcVtKucwEOs0U,1688
|
187
|
+
orionis/luminate/support/introspection/dependencies/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
188
|
+
orionis/luminate/support/introspection/dependencies/entities/class_dependencies.py,sha256=aUr8AIWn5R2X_kpdBOnin_dbg7NkkGcxUSZXosx9Xqk,257
|
189
|
+
orionis/luminate/support/introspection/dependencies/entities/method_dependencies.py,sha256=ZYmCrvhtTeIORFpNuK4h_CgnT2AEpf1MmGnBH0w_roo,263
|
190
|
+
orionis/luminate/support/introspection/dependencies/entities/resolved_dependencies.py,sha256=yhnJC7lwdTtemRSIjxc2HschBOUp6Nf2rNky6zI5oos,284
|
191
|
+
orionis/luminate/support/introspection/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
192
|
+
orionis/luminate/support/introspection/helpers/functions.py,sha256=JC2_t732LqcJn3zoRZwFAqcm6kT6HvsJmupysjH3aiY,8537
|
193
193
|
orionis/luminate/support/parsers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
194
194
|
orionis/luminate/support/parsers/exception_parser.py,sha256=6MTeql76c1Muh9Nn-jz2jJdzb9_F7SLdoFjqBD5F8lY,3642
|
195
195
|
orionis/luminate/support/parsers/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -204,9 +204,7 @@ orionis/luminate/support/standard/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeR
|
|
204
204
|
orionis/luminate/support/standard/std.py,sha256=t6dkZxOmSsu3yaIwlvRwdTcV-6KS8lZE5YuYv7FpCb0,3573
|
205
205
|
orionis/luminate/support/standard/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
206
206
|
orionis/luminate/support/standard/contracts/std.py,sha256=x9sVir2yg4hve56cCklIdVSr8utruIO_sUdlTNfZ1Ds,3109
|
207
|
-
orionis/luminate/test/__init__.py,sha256=
|
208
|
-
orionis/luminate/test/case.py,sha256=ujC1W9Dczxn8wHo1zlc-wJTxZbcdpzBw06PhOws3Nfk,266
|
209
|
-
orionis/luminate/test/suite.py,sha256=KlQk5hh2Q04e05Jvz1WtT4xKQo8YFIODhAqHcRHOXhQ,172
|
207
|
+
orionis/luminate/test/__init__.py,sha256=mvFsupq5S36CmD7PJwDqz39ZO9_Cfdac6ihK8kFpmiE,421
|
210
208
|
orionis/luminate/test/cases/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
211
209
|
orionis/luminate/test/cases/test_async.py,sha256=1wbeGkzlD4Q_e1BsSzhkiEjffIWx7d173l0Sx500FjQ,1335
|
212
210
|
orionis/luminate/test/cases/test_case.py,sha256=YhhPxOBd-_eZz8xBtbcKtnQxEhEU151IHc3bL6aCSiA,922
|
@@ -229,30 +227,24 @@ orionis/luminate/test/output/contracts/test_std_out.py,sha256=ryvMotj-rpVKOsyGqW
|
|
229
227
|
orionis/static/ascii/icon.ascii,sha256=IgrlVjcYxcCrr0cJuJkOnEz0aEdAQBTyLzO5ainKsWc,398
|
230
228
|
orionis/static/ascii/info.ascii,sha256=HF_o2eXaiw5iqcOhHfnPByn5GJ_O2eBwSK3IpTfYOwY,457
|
231
229
|
orionis/static/bg/galaxy.jpg,sha256=_FuPghOe9LBrIWv1eKZ9fiZR72sEz5obvXGDnD7MzTc,172244
|
232
|
-
orionis/static/favicon/OrionisFrameworkFavicon.png,sha256=bvkLzn0PfYHY9f-AfgRzclt4RNSFaKhMCH_TgwqsMKU,31301
|
233
|
-
orionis/static/logos/OrionisFramework.jpg,sha256=ezZlrcoknKvtl6YFwSIVfecRFm9fjAMKXHmuabMpImM,716918
|
234
|
-
orionis/static/logos/OrionisFramework.png,sha256=nmS5HoYu4NwmrcTtVj8gtjutgnW8EstgRkli_Ks1Chs,291370
|
235
|
-
orionis/static/logos/OrionisFramework.psd,sha256=QFMRe_HENaIgQi9VWMvNV3OHKOFofFGOGwQk6fqebrU,2904849
|
236
|
-
orionis/static/logos/OrionisFramework2.png,sha256=Z_-yBHNSo33QeSTyi-8GfiFozdRqUomIZ28bGx6Py5c,256425
|
237
|
-
orionis/static/logos/OrionisFramework3.png,sha256=BPG9ZB58vDALavI9OMmr8Ym0DQa44s5NL_3M4M6dIYs,193734
|
238
230
|
tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
239
231
|
tests/example/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
240
|
-
tests/example/test_example.py,sha256=
|
232
|
+
tests/example/test_example.py,sha256=pzVMpvFXxmSep0FeRiZQqMKV8dlf1lM_7cLUAkc5YTI,576
|
241
233
|
tests/support/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
242
234
|
tests/support/adapters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
243
|
-
tests/support/adapters/test_doct_dict.py,sha256=
|
235
|
+
tests/support/adapters/test_doct_dict.py,sha256=YOYXdYZngSwZfesqTDfYtwb1I_HaUKyfruxz6Njli1c,796
|
244
236
|
tests/support/adapters/fakes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
245
237
|
tests/support/adapters/fakes/fake_dict.py,sha256=KD48_xBc8pqj3LAe1_v1esu-1Fdz8fL5eZ70LSqkcbg,393
|
246
238
|
tests/support/async_io/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
247
|
-
tests/support/async_io/test_async_coroutine.py,sha256=
|
239
|
+
tests/support/async_io/test_async_coroutine.py,sha256=rMpjIH3DDjMDIqZkaDGv1q1yGlDI3vjfbnAGLZKkAp8,1522
|
248
240
|
tests/support/environment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
249
|
-
tests/support/environment/test_env.py,sha256=
|
241
|
+
tests/support/environment/test_env.py,sha256=fcMyvGnDnP2qamhG7yDRN9MyUDjeYN-oSmlno2mc7dQ,2652
|
250
242
|
tests/support/inspection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
251
|
-
tests/support/inspection/test_reflection_abstract.py,sha256=
|
252
|
-
tests/support/inspection/test_reflection_concrete.py,sha256=
|
253
|
-
tests/support/inspection/test_reflection_concrete_with_abstract.py,sha256=
|
254
|
-
tests/support/inspection/test_reflection_instance.py,sha256=
|
255
|
-
tests/support/inspection/test_reflection_instance_with_abstract.py,sha256=
|
243
|
+
tests/support/inspection/test_reflection_abstract.py,sha256=447L7TCQ5-08QKWuzpIlx0EZ9b9LjEOpR5ZMU5N2Kz0,9340
|
244
|
+
tests/support/inspection/test_reflection_concrete.py,sha256=OXUG4EDW0Xa8c7TWeUuGdwRc3eQ4hoP67ZGbevg8BdU,6778
|
245
|
+
tests/support/inspection/test_reflection_concrete_with_abstract.py,sha256=7QPHwZZOpBaRTlpiXWIQ4DPYQBlnD1-XxNMtjEfMPu4,4673
|
246
|
+
tests/support/inspection/test_reflection_instance.py,sha256=XIPGzQUFXewkcTNVT1vvmDBgx0oqOfJ4dHavOF_Jb-k,14015
|
247
|
+
tests/support/inspection/test_reflection_instance_with_abstract.py,sha256=GmY2W9S84uFCBIRsEjAAVhWbqWR7ZgOPD-AN8sAmhSM,4082
|
256
248
|
tests/support/inspection/fakes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
257
249
|
tests/support/inspection/fakes/fake_reflection_abstract.py,sha256=7qtz44brfFzE4oNYi9kIsvdWP79nP2FnzSz-0bU__pg,5045
|
258
250
|
tests/support/inspection/fakes/fake_reflection_concrete.py,sha256=j6gzsxE3xq5oJ30H_Hm1RsUwEY3jOYBu4sclxtD1ayo,1047
|
@@ -260,18 +252,18 @@ tests/support/inspection/fakes/fake_reflection_concrete_with_abstract.py,sha256=
|
|
260
252
|
tests/support/inspection/fakes/fake_reflection_instance.py,sha256=P5lSFiGPLLAPOIRmw4VE3YWctxlqmXARRiWMSGLrg3E,1382
|
261
253
|
tests/support/inspection/fakes/fake_reflection_instance_with_abstract.py,sha256=SfL8FuFmr650RlzXTrP4tGMfsPVZLhOxVnBXu_g1POg,1471
|
262
254
|
tests/support/parsers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
263
|
-
tests/support/parsers/test_exception_parser.py,sha256=
|
255
|
+
tests/support/parsers/test_exception_parser.py,sha256=0z3wanBtrLyGa6T9z2u5juqy8F5ZEHhwa3zOwiQIPGk,2353
|
264
256
|
tests/support/parsers/fakes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
265
257
|
tests/support/parsers/fakes/fake_custom_error.py,sha256=BD8tQPhmIYFYVcaeMpEQ6uK1d6pcU4EGbwRkVfCZp7c,802
|
266
258
|
tests/support/path/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
267
|
-
tests/support/path/test_resolver.py,sha256=
|
259
|
+
tests/support/path/test_resolver.py,sha256=tcgKwxBRIWK6JEK18Va99GEOui3XTWoCh8x2n1MDkGQ,1238
|
268
260
|
tests/support/patterns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
269
|
-
tests/support/patterns/test_singleton.py,sha256=
|
261
|
+
tests/support/patterns/test_singleton.py,sha256=I0Cawq0C5mV5v2I1mLmxJeXw9Vt3B1iq1RgLePsG30I,624
|
270
262
|
tests/support/standard/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
271
|
-
tests/support/standard/test_std.py,sha256
|
272
|
-
orionis-0.
|
273
|
-
orionis-0.
|
274
|
-
orionis-0.
|
275
|
-
orionis-0.
|
276
|
-
orionis-0.
|
277
|
-
orionis-0.
|
263
|
+
tests/support/standard/test_std.py,sha256=g_iU9Pa6W9XDnxwdLB_NAmD60547VAReXe_Vhyrhf4M,2032
|
264
|
+
orionis-0.235.0.dist-info/LICENCE,sha256=-_4cF2EBKuYVS_SQpy1uapq0oJPUU1vl_RUWSy2jJTo,1111
|
265
|
+
orionis-0.235.0.dist-info/METADATA,sha256=MFM5Mfynnri0silIoZwOaM5uc4Znj3Z_2NMctYCeQjo,3003
|
266
|
+
orionis-0.235.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
267
|
+
orionis-0.235.0.dist-info/entry_points.txt,sha256=a_e0faeSqyUCVZd0MqljQ2oaHHdlsz6g9sU_bMqi5zQ,49
|
268
|
+
orionis-0.235.0.dist-info/top_level.txt,sha256=2bdoHgyGZhOtLAXS6Om8OCTmL24dUMC_L1quMe_ETbk,14
|
269
|
+
orionis-0.235.0.dist-info/RECORD,,
|
tests/example/test_example.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
from abc import ABC
|
2
|
-
from orionis.luminate.support.
|
3
|
-
from orionis.luminate.test
|
2
|
+
from orionis.luminate.support.introspection.reflection import Reflection
|
3
|
+
from orionis.luminate.test import TestCase
|
4
4
|
from tests.support.inspection.fakes.fake_reflection_abstract import FakeAbstractClass
|
5
5
|
|
6
6
|
class TestReflexionAbstract(TestCase):
|
@@ -1,6 +1,6 @@
|
|
1
|
-
from orionis.luminate.support.
|
2
|
-
from orionis.luminate.support.
|
3
|
-
from orionis.luminate.test
|
1
|
+
from orionis.luminate.support.introspection.reflection import Reflection
|
2
|
+
from orionis.luminate.support.introspection.reflexion_concrete import ReflexionConcrete
|
3
|
+
from orionis.luminate.test import TestCase
|
4
4
|
from tests.support.inspection.fakes.fake_reflection_concrete import BaseExample, FakeExample
|
5
5
|
|
6
6
|
class TestReflectionConcrete(TestCase):
|
@@ -1,5 +1,5 @@
|
|
1
|
-
from orionis.luminate.support.
|
2
|
-
from orionis.luminate.test
|
1
|
+
from orionis.luminate.support.introspection.reflexion_concrete_with_abstract import ReflexionConcreteWithAbstract
|
2
|
+
from orionis.luminate.test import TestCase
|
3
3
|
from tests.support.inspection.fakes.fake_reflection_concrete_with_abstract import AbstractService, PartiallyImplementedService
|
4
4
|
|
5
5
|
class TestReflexionConcreteWithAbstract(TestCase):
|
@@ -1,8 +1,7 @@
|
|
1
|
-
from orionis.luminate.support.inspection.reflection import Reflection
|
2
|
-
from orionis.luminate.support.inspection.reflection_instance import ReflectionInstance
|
3
|
-
from orionis.luminate.test.case import TestCase
|
4
|
-
from tests.support.inspection.fakes.fake_reflection_instance import BaseFakeClass, FakeClass
|
5
1
|
import asyncio
|
2
|
+
from orionis.luminate.support.introspection import Reflection, ReflectionInstance
|
3
|
+
from orionis.luminate.test import TestCase
|
4
|
+
from tests.support.inspection.fakes.fake_reflection_instance import BaseFakeClass, FakeClass
|
6
5
|
|
7
6
|
class TestReflectionInstance(TestCase):
|
8
7
|
"""
|
@@ -1,5 +1,5 @@
|
|
1
|
-
from orionis.luminate.support.
|
2
|
-
from orionis.luminate.test
|
1
|
+
from orionis.luminate.support.introspection.reflexion_instance_with_abstract import ReflexionInstanceWithAbstract
|
2
|
+
from orionis.luminate.test import TestCase
|
3
3
|
from tests.support.inspection.fakes.fake_reflection_instance_with_abstract import FakeDataProcessor, IDataProcessor
|
4
4
|
|
5
5
|
class TestReflexionInstanceWithAbstract(TestCase):
|
@@ -1,5 +1,5 @@
|
|
1
1
|
from orionis.luminate.support.parsers.exception_parser import ExceptionParser
|
2
|
-
from orionis.luminate.test
|
2
|
+
from orionis.luminate.test import TestCase
|
3
3
|
from tests.support.parsers.fakes.fake_custom_error import CustomError
|
4
4
|
|
5
5
|
class TestsExceptionParser(TestCase):
|
@@ -1,5 +1,5 @@
|
|
1
1
|
from orionis.luminate.support.paths.resolver import Resolver
|
2
|
-
from orionis.luminate.test
|
2
|
+
from orionis.luminate.test import TestCase
|
3
3
|
|
4
4
|
class TestsResolver(TestCase):
|
5
5
|
|
@@ -15,19 +15,19 @@ class TestsResolver(TestCase):
|
|
15
15
|
"""
|
16
16
|
Test the Resolver class for a valid file path.
|
17
17
|
"""
|
18
|
-
path = Resolver().relativePath('orionis/luminate/test/
|
19
|
-
self.assertTrue(path.endswith('
|
18
|
+
path = Resolver().relativePath('orionis/luminate/test/__init__.py').toString()
|
19
|
+
self.assertTrue(path.endswith('__init__.py'))
|
20
20
|
|
21
21
|
async def testOtherBasePath(self):
|
22
22
|
"""
|
23
23
|
Test the Resolver class for a different base path.
|
24
24
|
"""
|
25
|
-
path = Resolver('orionis/luminate/test').relativePath('
|
26
|
-
self.assertTrue(path.endswith('
|
25
|
+
path = Resolver('orionis/luminate/test').relativePath('__init__.py').toString()
|
26
|
+
self.assertTrue(path.endswith('__init__.py'))
|
27
27
|
|
28
28
|
async def testEqualOutputString(self):
|
29
29
|
"""
|
30
30
|
Test the Resolver class for a string representation of the resolved path.
|
31
31
|
"""
|
32
|
-
path = Resolver().relativePath('orionis/luminate/test/
|
32
|
+
path = Resolver().relativePath('orionis/luminate/test/__init__.py')
|
33
33
|
self.assertEqual(path.toString(), str(path))
|
File without changes
|
orionis/luminate/test/case.py
DELETED
orionis/luminate/test/suite.py
DELETED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
/orionis/luminate/support/{inspection → introspection}/dependencies/entities/class_dependencies.py
RENAMED
File without changes
|
/orionis/luminate/support/{inspection → introspection}/dependencies/entities/method_dependencies.py
RENAMED
File without changes
|
File without changes
|
/orionis/luminate/support/{inspection/dependencies/entities → introspection/helpers}/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|