orionis 0.313.0__py3-none-any.whl → 0.314.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/container/container.py +433 -56
- orionis/metadata/framework.py +1 -1
- orionis/services/introspection/instances/reflection_instance.py +73 -5
- orionis/services/introspection/reflection.py +373 -23
- orionis/test/suite/test_unit.py +15 -10
- {orionis-0.313.0.dist-info → orionis-0.314.0.dist-info}/METADATA +1 -1
- {orionis-0.313.0.dist-info → orionis-0.314.0.dist-info}/RECORD +13 -12
- tests/services/inspection/test_reflection.py +462 -0
- tests/testing/test_testing_unit.py +1 -1
- {orionis-0.313.0.dist-info → orionis-0.314.0.dist-info}/WHEEL +0 -0
- {orionis-0.313.0.dist-info → orionis-0.314.0.dist-info}/licenses/LICENCE +0 -0
- {orionis-0.313.0.dist-info → orionis-0.314.0.dist-info}/top_level.txt +0 -0
- {orionis-0.313.0.dist-info → orionis-0.314.0.dist-info}/zip-safe +0 -0
@@ -1,3 +1,4 @@
|
|
1
|
+
import inspect
|
1
2
|
from typing import Any, Type
|
2
3
|
from orionis.services.introspection.abstract.reflection_abstract import ReflectionAbstract
|
3
4
|
from orionis.services.introspection.concretes.reflection_concrete import ReflectionConcrete
|
@@ -11,80 +12,429 @@ class Reflection:
|
|
11
12
|
This class offers factory methods to obtain specialized reflection objects for instances,
|
12
13
|
abstract classes, concrete classes, and modules. Each method returns an object that
|
13
14
|
encapsulates the target and provides introspection capabilities.
|
14
|
-
|
15
|
-
Methods
|
16
|
-
-------
|
17
|
-
instance(instance: Any) -> ReflectionInstance
|
18
|
-
Create a reflection object for a class instance.
|
19
|
-
abstract(abstract: Type) -> ReflectionAbstract
|
20
|
-
Create a reflection object for an abstract class.
|
21
|
-
concrete(concrete: Type) -> ReflectionConcrete
|
22
|
-
Create a reflection object for a concrete class.
|
23
|
-
module(module: str) -> ReflectionModule
|
24
|
-
Create a reflection object for a module.
|
25
15
|
"""
|
26
16
|
|
27
17
|
@staticmethod
|
28
18
|
def instance(instance: Any) -> 'ReflectionInstance':
|
29
19
|
"""
|
30
|
-
Create a
|
20
|
+
Create a ReflectionInstance for the given object instance.
|
31
21
|
|
32
22
|
Parameters
|
33
23
|
----------
|
34
24
|
instance : Any
|
35
|
-
The instance to reflect
|
25
|
+
The object instance to reflect.
|
36
26
|
|
37
27
|
Returns
|
38
28
|
-------
|
39
29
|
ReflectionInstance
|
40
|
-
A reflection object
|
30
|
+
A reflection object for the given instance.
|
41
31
|
"""
|
42
32
|
return ReflectionInstance(instance)
|
43
33
|
|
44
34
|
@staticmethod
|
45
35
|
def abstract(abstract: Type) -> 'ReflectionAbstract':
|
46
|
-
"""
|
36
|
+
"""
|
37
|
+
Create a ReflectionAbstract for the given abstract class.
|
47
38
|
|
48
39
|
Parameters
|
49
40
|
----------
|
50
41
|
abstract : Type
|
51
|
-
The abstract class to reflect
|
42
|
+
The abstract class to reflect.
|
52
43
|
|
53
44
|
Returns
|
54
45
|
-------
|
55
46
|
ReflectionAbstract
|
56
|
-
A reflection object
|
47
|
+
A reflection object for the given abstract class.
|
57
48
|
"""
|
58
49
|
return ReflectionAbstract(abstract)
|
59
50
|
|
60
51
|
@staticmethod
|
61
52
|
def concrete(concrete: Type) -> 'ReflectionConcrete':
|
62
|
-
"""
|
53
|
+
"""
|
54
|
+
Create a ReflectionConcrete for the given concrete class.
|
63
55
|
|
64
56
|
Parameters
|
65
57
|
----------
|
66
58
|
concrete : Type
|
67
|
-
The concrete class to reflect
|
59
|
+
The concrete class to reflect.
|
68
60
|
|
69
61
|
Returns
|
70
62
|
-------
|
71
63
|
ReflectionConcrete
|
72
|
-
A reflection object
|
64
|
+
A reflection object for the given concrete class.
|
73
65
|
"""
|
74
66
|
return ReflectionConcrete(concrete)
|
75
67
|
|
76
68
|
@staticmethod
|
77
69
|
def module(module: str) -> 'ReflectionModule':
|
78
|
-
"""
|
70
|
+
"""
|
71
|
+
Create a ReflectionModule for the given module name.
|
79
72
|
|
80
73
|
Parameters
|
81
74
|
----------
|
82
75
|
module : str
|
83
|
-
The module
|
76
|
+
The name of the module to reflect.
|
84
77
|
|
85
78
|
Returns
|
86
79
|
-------
|
87
80
|
ReflectionModule
|
88
|
-
A reflection object
|
81
|
+
A reflection object for the given module.
|
89
82
|
"""
|
90
83
|
return ReflectionModule(module)
|
84
|
+
|
85
|
+
@staticmethod
|
86
|
+
def isAbstract(obj: Any) -> bool:
|
87
|
+
"""
|
88
|
+
Check if the object is an abstract base class.
|
89
|
+
|
90
|
+
Parameters
|
91
|
+
----------
|
92
|
+
obj : Any
|
93
|
+
The object to check.
|
94
|
+
|
95
|
+
Returns
|
96
|
+
-------
|
97
|
+
bool
|
98
|
+
True if the object is abstract, False otherwise.
|
99
|
+
"""
|
100
|
+
return inspect.isabstract(obj)
|
101
|
+
|
102
|
+
@staticmethod
|
103
|
+
def isAsyncGen(obj: Any) -> bool:
|
104
|
+
"""
|
105
|
+
Check if the object is an asynchronous generator.
|
106
|
+
|
107
|
+
Parameters
|
108
|
+
----------
|
109
|
+
obj : Any
|
110
|
+
The object to check.
|
111
|
+
|
112
|
+
Returns
|
113
|
+
-------
|
114
|
+
bool
|
115
|
+
True if the object is an async generator, False otherwise.
|
116
|
+
"""
|
117
|
+
return inspect.isasyncgen(obj)
|
118
|
+
|
119
|
+
@staticmethod
|
120
|
+
def isAsyncGenFunction(obj: Any) -> bool:
|
121
|
+
"""
|
122
|
+
Check if the object is an asynchronous generator function.
|
123
|
+
|
124
|
+
Parameters
|
125
|
+
----------
|
126
|
+
obj : Any
|
127
|
+
The object to check.
|
128
|
+
|
129
|
+
Returns
|
130
|
+
-------
|
131
|
+
bool
|
132
|
+
True if the object is an async generator function, False otherwise.
|
133
|
+
"""
|
134
|
+
return inspect.isasyncgenfunction(obj)
|
135
|
+
|
136
|
+
@staticmethod
|
137
|
+
def isAwaitable(obj: Any) -> bool:
|
138
|
+
"""
|
139
|
+
Check if the object can be awaited.
|
140
|
+
|
141
|
+
Parameters
|
142
|
+
----------
|
143
|
+
obj : Any
|
144
|
+
The object to check.
|
145
|
+
|
146
|
+
Returns
|
147
|
+
-------
|
148
|
+
bool
|
149
|
+
True if the object is awaitable, False otherwise.
|
150
|
+
"""
|
151
|
+
return inspect.isawaitable(obj)
|
152
|
+
|
153
|
+
@staticmethod
|
154
|
+
def isBuiltin(obj: Any) -> bool:
|
155
|
+
"""
|
156
|
+
Check if the object is a built-in function or method.
|
157
|
+
|
158
|
+
Parameters
|
159
|
+
----------
|
160
|
+
obj : Any
|
161
|
+
The object to check.
|
162
|
+
|
163
|
+
Returns
|
164
|
+
-------
|
165
|
+
bool
|
166
|
+
True if the object is a built-in, False otherwise.
|
167
|
+
"""
|
168
|
+
return inspect.isbuiltin(obj)
|
169
|
+
|
170
|
+
@staticmethod
|
171
|
+
def isClass(obj: Any) -> bool:
|
172
|
+
"""
|
173
|
+
Check if the object is a class.
|
174
|
+
|
175
|
+
Parameters
|
176
|
+
----------
|
177
|
+
obj : Any
|
178
|
+
The object to check.
|
179
|
+
|
180
|
+
Returns
|
181
|
+
-------
|
182
|
+
bool
|
183
|
+
True if the object is a class, False otherwise.
|
184
|
+
"""
|
185
|
+
return inspect.isclass(obj)
|
186
|
+
|
187
|
+
@staticmethod
|
188
|
+
def isCode(obj: Any) -> bool:
|
189
|
+
"""
|
190
|
+
Check if the object is a code object.
|
191
|
+
|
192
|
+
Parameters
|
193
|
+
----------
|
194
|
+
obj : Any
|
195
|
+
The object to check.
|
196
|
+
|
197
|
+
Returns
|
198
|
+
-------
|
199
|
+
bool
|
200
|
+
True if the object is a code object, False otherwise.
|
201
|
+
"""
|
202
|
+
return inspect.iscode(obj)
|
203
|
+
|
204
|
+
@staticmethod
|
205
|
+
def isCoroutine(obj: Any) -> bool:
|
206
|
+
"""
|
207
|
+
Check if the object is a coroutine.
|
208
|
+
|
209
|
+
Parameters
|
210
|
+
----------
|
211
|
+
obj : Any
|
212
|
+
The object to check.
|
213
|
+
|
214
|
+
Returns
|
215
|
+
-------
|
216
|
+
bool
|
217
|
+
True if the object is a coroutine, False otherwise.
|
218
|
+
"""
|
219
|
+
return inspect.iscoroutine(obj)
|
220
|
+
|
221
|
+
@staticmethod
|
222
|
+
def isCoroutineFunction(obj: Any) -> bool:
|
223
|
+
"""
|
224
|
+
Check if the object is a coroutine function.
|
225
|
+
|
226
|
+
Parameters
|
227
|
+
----------
|
228
|
+
obj : Any
|
229
|
+
The object to check.
|
230
|
+
|
231
|
+
Returns
|
232
|
+
-------
|
233
|
+
bool
|
234
|
+
True if the object is a coroutine function, False otherwise.
|
235
|
+
"""
|
236
|
+
return inspect.iscoroutinefunction(obj)
|
237
|
+
|
238
|
+
@staticmethod
|
239
|
+
def isDataDescriptor(obj: Any) -> bool:
|
240
|
+
"""
|
241
|
+
Check if the object is a data descriptor.
|
242
|
+
|
243
|
+
Parameters
|
244
|
+
----------
|
245
|
+
obj : Any
|
246
|
+
The object to check.
|
247
|
+
|
248
|
+
Returns
|
249
|
+
-------
|
250
|
+
bool
|
251
|
+
True if the object is a data descriptor, False otherwise.
|
252
|
+
"""
|
253
|
+
return inspect.isdatadescriptor(obj)
|
254
|
+
|
255
|
+
@staticmethod
|
256
|
+
def isFrame(obj: Any) -> bool:
|
257
|
+
"""
|
258
|
+
Check if the object is a frame object.
|
259
|
+
|
260
|
+
Parameters
|
261
|
+
----------
|
262
|
+
obj : Any
|
263
|
+
The object to check.
|
264
|
+
|
265
|
+
Returns
|
266
|
+
-------
|
267
|
+
bool
|
268
|
+
True if the object is a frame object, False otherwise.
|
269
|
+
"""
|
270
|
+
return inspect.isframe(obj)
|
271
|
+
|
272
|
+
@staticmethod
|
273
|
+
def isFunction(obj: Any) -> bool:
|
274
|
+
"""
|
275
|
+
Check if the object is a Python function.
|
276
|
+
|
277
|
+
Parameters
|
278
|
+
----------
|
279
|
+
obj : Any
|
280
|
+
The object to check.
|
281
|
+
|
282
|
+
Returns
|
283
|
+
-------
|
284
|
+
bool
|
285
|
+
True if the object is a function, False otherwise.
|
286
|
+
"""
|
287
|
+
return inspect.isfunction(obj)
|
288
|
+
|
289
|
+
@staticmethod
|
290
|
+
def isGenerator(obj: Any) -> bool:
|
291
|
+
"""
|
292
|
+
Check if the object is a generator.
|
293
|
+
|
294
|
+
Parameters
|
295
|
+
----------
|
296
|
+
obj : Any
|
297
|
+
The object to check.
|
298
|
+
|
299
|
+
Returns
|
300
|
+
-------
|
301
|
+
bool
|
302
|
+
True if the object is a generator, False otherwise.
|
303
|
+
"""
|
304
|
+
return inspect.isgenerator(obj)
|
305
|
+
|
306
|
+
@staticmethod
|
307
|
+
def isGeneratorFunction(obj: Any) -> bool:
|
308
|
+
"""
|
309
|
+
Check if the object is a generator function.
|
310
|
+
|
311
|
+
Parameters
|
312
|
+
----------
|
313
|
+
obj : Any
|
314
|
+
The object to check.
|
315
|
+
|
316
|
+
Returns
|
317
|
+
-------
|
318
|
+
bool
|
319
|
+
True if the object is a generator function, False otherwise.
|
320
|
+
"""
|
321
|
+
return inspect.isgeneratorfunction(obj)
|
322
|
+
|
323
|
+
@staticmethod
|
324
|
+
def isGetSetDescriptor(obj: Any) -> bool:
|
325
|
+
"""
|
326
|
+
Check if the object is a getset descriptor.
|
327
|
+
|
328
|
+
Parameters
|
329
|
+
----------
|
330
|
+
obj : Any
|
331
|
+
The object to check.
|
332
|
+
|
333
|
+
Returns
|
334
|
+
-------
|
335
|
+
bool
|
336
|
+
True if the object is a getset descriptor, False otherwise.
|
337
|
+
"""
|
338
|
+
return inspect.isgetsetdescriptor(obj)
|
339
|
+
|
340
|
+
@staticmethod
|
341
|
+
def isMemberDescriptor(obj: Any) -> bool:
|
342
|
+
"""
|
343
|
+
Check if the object is a member descriptor.
|
344
|
+
|
345
|
+
Parameters
|
346
|
+
----------
|
347
|
+
obj : Any
|
348
|
+
The object to check.
|
349
|
+
|
350
|
+
Returns
|
351
|
+
-------
|
352
|
+
bool
|
353
|
+
True if the object is a member descriptor, False otherwise.
|
354
|
+
"""
|
355
|
+
return inspect.ismemberdescriptor(obj)
|
356
|
+
|
357
|
+
@staticmethod
|
358
|
+
def isMethod(obj: Any) -> bool:
|
359
|
+
"""
|
360
|
+
Check if the object is a method.
|
361
|
+
|
362
|
+
Parameters
|
363
|
+
----------
|
364
|
+
obj : Any
|
365
|
+
The object to check.
|
366
|
+
|
367
|
+
Returns
|
368
|
+
-------
|
369
|
+
bool
|
370
|
+
True if the object is a method, False otherwise.
|
371
|
+
"""
|
372
|
+
return inspect.ismethod(obj)
|
373
|
+
|
374
|
+
@staticmethod
|
375
|
+
def isMethodDescriptor(obj: Any) -> bool:
|
376
|
+
"""
|
377
|
+
Check if the object is a method descriptor.
|
378
|
+
|
379
|
+
Parameters
|
380
|
+
----------
|
381
|
+
obj : Any
|
382
|
+
The object to check.
|
383
|
+
|
384
|
+
Returns
|
385
|
+
-------
|
386
|
+
bool
|
387
|
+
True if the object is a method descriptor, False otherwise.
|
388
|
+
"""
|
389
|
+
return inspect.ismethoddescriptor(obj)
|
390
|
+
|
391
|
+
@staticmethod
|
392
|
+
def isModule(obj: Any) -> bool:
|
393
|
+
"""
|
394
|
+
Check if the object is a module.
|
395
|
+
|
396
|
+
Parameters
|
397
|
+
----------
|
398
|
+
obj : Any
|
399
|
+
The object to check.
|
400
|
+
|
401
|
+
Returns
|
402
|
+
-------
|
403
|
+
bool
|
404
|
+
True if the object is a module, False otherwise.
|
405
|
+
"""
|
406
|
+
return inspect.ismodule(obj)
|
407
|
+
|
408
|
+
@staticmethod
|
409
|
+
def isRoutine(obj: Any) -> bool:
|
410
|
+
"""
|
411
|
+
Check if the object is a user-defined or built-in function or method.
|
412
|
+
|
413
|
+
Parameters
|
414
|
+
----------
|
415
|
+
obj : Any
|
416
|
+
The object to check.
|
417
|
+
|
418
|
+
Returns
|
419
|
+
-------
|
420
|
+
bool
|
421
|
+
True if the object is a routine, False otherwise.
|
422
|
+
"""
|
423
|
+
return inspect.isroutine(obj)
|
424
|
+
|
425
|
+
@staticmethod
|
426
|
+
def isTraceback(obj: Any) -> bool:
|
427
|
+
"""
|
428
|
+
Check if the object is a traceback object.
|
429
|
+
|
430
|
+
Parameters
|
431
|
+
----------
|
432
|
+
obj : Any
|
433
|
+
The object to check.
|
434
|
+
|
435
|
+
Returns
|
436
|
+
-------
|
437
|
+
bool
|
438
|
+
True if the object is a traceback object, False otherwise.
|
439
|
+
"""
|
440
|
+
return inspect.istraceback(obj)
|
orionis/test/suite/test_unit.py
CHANGED
@@ -140,6 +140,7 @@ class UnitTest(IUnitTest):
|
|
140
140
|
|
141
141
|
def configure(
|
142
142
|
self,
|
143
|
+
*,
|
143
144
|
verbosity: int = None,
|
144
145
|
execution_mode: str | ExecutionMode = None,
|
145
146
|
max_workers: int = None,
|
@@ -210,6 +211,7 @@ class UnitTest(IUnitTest):
|
|
210
211
|
|
211
212
|
def discoverTestsInFolder(
|
212
213
|
self,
|
214
|
+
*,
|
213
215
|
folder_path: str,
|
214
216
|
base_path: str = "tests",
|
215
217
|
pattern: str = "test_*.py",
|
@@ -281,7 +283,7 @@ class UnitTest(IUnitTest):
|
|
281
283
|
except Exception as e:
|
282
284
|
raise OrionisTestValueError(f"Unexpected error discovering tests: {str(e)}")
|
283
285
|
|
284
|
-
def discoverTestsInModule(self, module_name: str, test_name_pattern: Optional[str] = None) -> 'UnitTest':
|
286
|
+
def discoverTestsInModule(self, *, module_name: str, test_name_pattern: Optional[str] = None) -> 'UnitTest':
|
285
287
|
"""
|
286
288
|
Discovers and loads tests from a specified module, optionally filtering by a test name pattern, and adds them to the test suite.
|
287
289
|
|
@@ -1129,15 +1131,22 @@ class UnitTest(IUnitTest):
|
|
1129
1131
|
and ensuring that each test appears only once in the resulting list.
|
1130
1132
|
"""
|
1131
1133
|
tests = []
|
1132
|
-
|
1134
|
+
seen_ids = set()
|
1133
1135
|
|
1134
1136
|
def _flatten(item):
|
1135
1137
|
if isinstance(item, unittest.TestSuite):
|
1136
1138
|
for sub_item in item:
|
1137
1139
|
_flatten(sub_item)
|
1138
|
-
elif item
|
1139
|
-
|
1140
|
-
|
1140
|
+
elif hasattr(item, "id"):
|
1141
|
+
test_id = item.id()
|
1142
|
+
parts = test_id.split('.')
|
1143
|
+
if len(parts) >= 2:
|
1144
|
+
short_id = '.'.join(parts[-2:])
|
1145
|
+
else:
|
1146
|
+
short_id = test_id
|
1147
|
+
if short_id not in seen_ids:
|
1148
|
+
seen_ids.add(short_id)
|
1149
|
+
tests.append(item)
|
1141
1150
|
|
1142
1151
|
_flatten(suite)
|
1143
1152
|
return tests
|
@@ -1404,8 +1413,6 @@ class UnitTest(IUnitTest):
|
|
1404
1413
|
"""
|
1405
1414
|
if self.__output_buffer:
|
1406
1415
|
print(self.__output_buffer)
|
1407
|
-
else:
|
1408
|
-
print("No output buffer available.")
|
1409
1416
|
|
1410
1417
|
def getErrorBuffer(self) -> int:
|
1411
1418
|
"""
|
@@ -1424,6 +1431,4 @@ class UnitTest(IUnitTest):
|
|
1424
1431
|
This method retrieves the error buffer and prints its contents using the rich console.
|
1425
1432
|
"""
|
1426
1433
|
if self.__error_buffer:
|
1427
|
-
print(self.__error_buffer)
|
1428
|
-
else:
|
1429
|
-
print("No error buffer available.")
|
1434
|
+
print(self.__error_buffer)
|
@@ -135,7 +135,7 @@ orionis/console/output/console.py,sha256=TE_Hl720ADd82dbERFSWhkoQRukDQZmETSw4nkw
|
|
135
135
|
orionis/console/output/executor.py,sha256=bdvkzW2-buy0BPpy2r5qUGrRFW2Ay6k-5rSeHb0gQ3o,3352
|
136
136
|
orionis/console/output/progress_bar.py,sha256=vFy582z6VJS46LV6tuyrmr9qvdVeTEtw3hyNcEHezeg,3088
|
137
137
|
orionis/console/output/styles.py,sha256=6a4oQCOBOKMh2ARdeq5GlIskJ3wjiylYmh66tUKKmpQ,4053
|
138
|
-
orionis/container/container.py,sha256=
|
138
|
+
orionis/container/container.py,sha256=bUpUV_4_Zi5vpj7R86glNVB0iLQk67qXJAe1uEfhgKM,19474
|
139
139
|
orionis/container/enums/lifetimes.py,sha256=RqQmugMIB1Ev_j_vFLcWorndm-to7xg4stQ7yKFDdDw,190
|
140
140
|
orionis/container/exceptions/container_exception.py,sha256=goTDEwC70xTMD2qppN8KV-xyR0Nps218OD4D1LZ2-3s,470
|
141
141
|
orionis/container/exceptions/type_error_exception.py,sha256=cYuvoXVOgRYj3tZPfK341aUERkf33-buOiI2eXxcrAw,470
|
@@ -231,7 +231,7 @@ orionis/foundation/contracts/config.py,sha256=Rpz6U6t8OXHO9JJKSTnCimytXE-tfCB-1i
|
|
231
231
|
orionis/foundation/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
232
232
|
orionis/foundation/exceptions/integrity.py,sha256=mc4pL1UMoYRHEmphnpW2oGk5URhu7DJRREyzHaV-cs8,472
|
233
233
|
orionis/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
234
|
-
orionis/metadata/framework.py,sha256=
|
234
|
+
orionis/metadata/framework.py,sha256=TeS7Xb6-ikiXXQ64K1gd_KmswDCfsqNDRvkEd0sR0ZQ,4960
|
235
235
|
orionis/metadata/package.py,sha256=tqLfBRo-w1j_GN4xvzUNFyweWYFS-qhSgAEc-AmCH1M,5452
|
236
236
|
orionis/patterns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
237
237
|
orionis/patterns/singleton/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -254,7 +254,7 @@ orionis/services/environment/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5J
|
|
254
254
|
orionis/services/environment/exceptions/environment_value_error.py,sha256=Pe1qNHRrM9T0AzESN284CzA3GQYxzokfXPMOVqOTlyQ,475
|
255
255
|
orionis/services/environment/exceptions/environment_value_exception.py,sha256=NnxWmgoSca7LXi7GLDa95HSBPKotFfy8u729d1OAmCc,479
|
256
256
|
orionis/services/introspection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
257
|
-
orionis/services/introspection/reflection.py,sha256=
|
257
|
+
orionis/services/introspection/reflection.py,sha256=6z4VkDICohMIkm9jEd7nmFABwVuU7SBoTFaH3tq4PGk,10897
|
258
258
|
orionis/services/introspection/abstract/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
259
259
|
orionis/services/introspection/abstract/reflection_abstract.py,sha256=SPK2X11VvGORxxPOYloaD6hPAvky--obRU4CO1DE4zM,43865
|
260
260
|
orionis/services/introspection/concretes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -276,7 +276,7 @@ orionis/services/introspection/exceptions/reflection_attribute_error.py,sha256=_
|
|
276
276
|
orionis/services/introspection/exceptions/reflection_type_error.py,sha256=73DB8JoTbxd7LNMnZKXf4jJ8OzLyC0HPXgDo5pffkYY,466
|
277
277
|
orionis/services/introspection/exceptions/reflection_value_error.py,sha256=ywO_cwawEmB22uP3i4ofsZytO9QTbvy7axm9NzEfHr4,467
|
278
278
|
orionis/services/introspection/instances/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
279
|
-
orionis/services/introspection/instances/reflection_instance.py,sha256=
|
279
|
+
orionis/services/introspection/instances/reflection_instance.py,sha256=DrPrzdm7FbnUj6h6970hJOyFfit-OpWskZ4FnxJMz6k,54053
|
280
280
|
orionis/services/introspection/modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
281
281
|
orionis/services/introspection/modules/reflection_module.py,sha256=1QB_853_ct5ehDNSxNQaaJDCeY9eXciXJwRYkNHgYd4,15632
|
282
282
|
orionis/services/parsers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -335,10 +335,10 @@ orionis/test/logs/history.py,sha256=eAEPWpubs1fFzL-0o8K82hd2lC0S98VOu1AEblCmjYI,
|
|
335
335
|
orionis/test/output/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
336
336
|
orionis/test/output/dumper.py,sha256=q1_S5AYMce01ukPkEJ73gQT7gyLBK5XA1NyOeVINQMI,4280
|
337
337
|
orionis/test/suite/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
338
|
-
orionis/test/suite/test_unit.py,sha256=
|
338
|
+
orionis/test/suite/test_unit.py,sha256=wKqbLmkz1t0ilhLU6vz9ThCfURTM5hPQBLFTDC_vcII,57254
|
339
339
|
orionis/test/view/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
340
340
|
orionis/test/view/render.py,sha256=jXZkbITBknbUwm_mD8bcTiwLDvsFkrO9qrf0ZgPwqxc,4903
|
341
|
-
orionis-0.
|
341
|
+
orionis-0.314.0.dist-info/licenses/LICENCE,sha256=-_4cF2EBKuYVS_SQpy1uapq0oJPUU1vl_RUWSy2jJTo,1111
|
342
342
|
tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
343
343
|
tests/example/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
344
344
|
tests/example/test_example.py,sha256=kvWgiW3ADEZf718dGsMPtDh_rmOSx1ypEInKm7_6ZPQ,601
|
@@ -407,6 +407,7 @@ tests/services/asynchrony/test_services_asynchrony_coroutine.py,sha256=azlDv29Q9
|
|
407
407
|
tests/services/environment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
408
408
|
tests/services/environment/test_services_environment.py,sha256=fdkjwbY-aDEA1FT-9vBT5ihwaCdg_-UgAx--kQXFPGA,3745
|
409
409
|
tests/services/inspection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
410
|
+
tests/services/inspection/test_reflection.py,sha256=ZApQeaDxYLsrfGN6UqEDPbyNzocMV9CURflQ35YMfqk,13678
|
410
411
|
tests/services/inspection/dependencies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
411
412
|
tests/services/inspection/dependencies/test_reflect_dependencies.py,sha256=z0C9KkhV27Y7jKpLSCN9XCmHbjJDCPbBb7NkRFs3oMI,5803
|
412
413
|
tests/services/inspection/dependencies/mocks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -436,9 +437,9 @@ tests/support/wrapper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3h
|
|
436
437
|
tests/support/wrapper/test_services_wrapper_docdict.py,sha256=yeVwl-VcwkWSQYyxZu3qfqT7YtP8LIEJgHo2ejzISh0,4984
|
437
438
|
tests/testing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
438
439
|
tests/testing/test_testing_result.py,sha256=MrGK3ZimedL0b5Ydu69Dg8Iul017AzLTm7VPxpXlpfU,4315
|
439
|
-
tests/testing/test_testing_unit.py,sha256=
|
440
|
-
orionis-0.
|
441
|
-
orionis-0.
|
442
|
-
orionis-0.
|
443
|
-
orionis-0.
|
444
|
-
orionis-0.
|
440
|
+
tests/testing/test_testing_unit.py,sha256=9flen4fNMSFWrZUzGyUq8Sd0wwRlj1BgnrRyJVn_uQs,7695
|
441
|
+
orionis-0.314.0.dist-info/METADATA,sha256=00zT_BZNttTEU5W9ufDdJNoXUkL4eCAR32wyIVjRrz0,4772
|
442
|
+
orionis-0.314.0.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
|
443
|
+
orionis-0.314.0.dist-info/top_level.txt,sha256=2bdoHgyGZhOtLAXS6Om8OCTmL24dUMC_L1quMe_ETbk,14
|
444
|
+
orionis-0.314.0.dist-info/zip-safe,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
445
|
+
orionis-0.314.0.dist-info/RECORD,,
|