aplos-nca-saas-sdk 0.0.4__py3-none-any.whl → 0.0.5__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.
- aplos_nca_saas_sdk/integration_testing/configs/app_settings.py +2 -2
- aplos_nca_saas_sdk/integration_testing/tests/app_configuration_test.py +3 -3
- aplos_nca_saas_sdk/version.py +1 -1
- {aplos_nca_saas_sdk-0.0.4.dist-info → aplos_nca_saas_sdk-0.0.5.dist-info}/METADATA +1 -1
- {aplos_nca_saas_sdk-0.0.4.dist-info → aplos_nca_saas_sdk-0.0.5.dist-info}/RECORD +7 -7
- {aplos_nca_saas_sdk-0.0.4.dist-info → aplos_nca_saas_sdk-0.0.5.dist-info}/WHEEL +0 -0
- {aplos_nca_saas_sdk-0.0.4.dist-info → aplos_nca_saas_sdk-0.0.5.dist-info}/licenses/LICENSE +0 -0
@@ -26,7 +26,7 @@ class ApplicationDomain(ConfigBase):
|
|
26
26
|
return self.__domain
|
27
27
|
|
28
28
|
@domain.setter
|
29
|
-
def
|
29
|
+
def domain(self, value: str):
|
30
30
|
self.__domain = value
|
31
31
|
|
32
32
|
|
@@ -54,7 +54,7 @@ class ApplicationSettings:
|
|
54
54
|
domain: Dict[str, Any]
|
55
55
|
for domain in domains:
|
56
56
|
app_domain = ApplicationDomain()
|
57
|
-
app_domain.
|
57
|
+
app_domain.domain = domain.get("domain", None)
|
58
58
|
app_domain.enabled = bool(domain.get("enabled", True))
|
59
59
|
|
60
60
|
self.__domains.append(app_domain)
|
@@ -26,11 +26,11 @@ class TestAppConfiguration(IntegrationTestBase):
|
|
26
26
|
"""Test loading the application configuration"""
|
27
27
|
|
28
28
|
self.results.clear()
|
29
|
-
for
|
30
|
-
config: NCAAppConfiguration = NCAAppConfiguration(domain)
|
29
|
+
for domain_config in self.config.app_config.domains:
|
30
|
+
config: NCAAppConfiguration = NCAAppConfiguration(domain_config.domain)
|
31
31
|
|
32
32
|
test_response: IntegrationTestResponse = IntegrationTestResponse()
|
33
|
-
test_response.meta = {"domain":
|
33
|
+
test_response.meta = {"domain": domain_config}
|
34
34
|
try:
|
35
35
|
response = config.get()
|
36
36
|
test_response.response = response
|
aplos_nca_saas_sdk/version.py
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
aplos_nca_saas_sdk/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
aplos_nca_saas_sdk/version.py,sha256=
|
2
|
+
aplos_nca_saas_sdk/version.py,sha256=tDhNGtt2QtmoQlY-IZFSqpjMDBaLou1FlP2Irn-myjA,171
|
3
3
|
aplos_nca_saas_sdk/aws_resources/aws_cognito.py,sha256=pxyEdIoeeT7of_hjxYlplOnyLQpo3I-dnc5mHeGP47c,6427
|
4
4
|
aplos_nca_saas_sdk/aws_resources/aws_s3_presigned_payload.py,sha256=rbTaeUgPpRsw1KV0YjnmkD5sQvlYet9XBj6Ie7nXz5Y,1987
|
5
5
|
aplos_nca_saas_sdk/aws_resources/aws_s3_presigned_upload.py,sha256=WK7CKzuHcgU15k2BWiBqSZ8UdQSVSo39L8Las-7gvC0,3940
|
@@ -14,10 +14,10 @@ aplos_nca_saas_sdk/integration_testing/integration_test_suite.py,sha256=sYm7Ezhz
|
|
14
14
|
aplos_nca_saas_sdk/integration_testing/main.py,sha256=M0Ee6QJXNzbeYzpyfDniNlZpySy9EZwYgtYzRZYXnnA,1976
|
15
15
|
aplos_nca_saas_sdk/integration_testing/readme.md,sha256=sX-_gzx17UUF-ZqvCWq0R5zcqgOMC4JjQKnjgxQH9vM,629
|
16
16
|
aplos_nca_saas_sdk/integration_testing/configs/_config_base.py,sha256=O48Y1r8JFe2KvSMTY5EttZAz1-hQsU6-Su6CzDUKDmE,347
|
17
|
-
aplos_nca_saas_sdk/integration_testing/configs/app_settings.py,sha256=
|
17
|
+
aplos_nca_saas_sdk/integration_testing/configs/app_settings.py,sha256=crPe2aI7_G1vJyQlMesqhPbej3ck9JAn5ndRLISbrys,1698
|
18
18
|
aplos_nca_saas_sdk/integration_testing/configs/config_sample.json,sha256=50tqWe9OpD1b-EWe2_wQlwYtQ0n_OqfwobFkRraoxwc,3328
|
19
19
|
aplos_nca_saas_sdk/integration_testing/configs/login.py,sha256=ql2F8iqkbKLL7xeu7-D-Y1XJlR9NBcKEaAwOT53KBlo,2966
|
20
|
-
aplos_nca_saas_sdk/integration_testing/tests/app_configuration_test.py,sha256=
|
20
|
+
aplos_nca_saas_sdk/integration_testing/tests/app_configuration_test.py,sha256=Qty6GTOrmO0_oIL0t7t8Xdk7z-uMK9ZvuLv6EUUbn4A,1360
|
21
21
|
aplos_nca_saas_sdk/integration_testing/tests/app_execution_test.py,sha256=bDyVvtOKSJdy0sdCVYVuCdUrQYhn8D3peCmM1OCkSVg,145
|
22
22
|
aplos_nca_saas_sdk/integration_testing/tests/app_login_test.py,sha256=gXMoDOnoxY9H5mjngRCd4GUYKtuCWv87g6l_X7Abnmc,1448
|
23
23
|
aplos_nca_saas_sdk/integration_testing/tests/app_validation_test.py,sha256=bDyVvtOKSJdy0sdCVYVuCdUrQYhn8D3peCmM1OCkSVg,145
|
@@ -29,7 +29,7 @@ aplos_nca_saas_sdk/utilities/commandline_args.py,sha256=WKIPNKMMMpEk580xXMQY7sGw
|
|
29
29
|
aplos_nca_saas_sdk/utilities/environment_services.py,sha256=K6xnxDb9eNdmjJZKPW0JfmmV9rGGwm2urlxCBZwxMMs,2272
|
30
30
|
aplos_nca_saas_sdk/utilities/environment_vars.py,sha256=pfcfX2eYmwYrmY-PZIHCONU9ds_-6GZmb-JibGROJGI,812
|
31
31
|
aplos_nca_saas_sdk/utilities/http_utility.py,sha256=7VGWeSOuJbjnUQkzNA6cquKv0g2FJoHsBnDSgE2Buic,696
|
32
|
-
aplos_nca_saas_sdk-0.0.
|
33
|
-
aplos_nca_saas_sdk-0.0.
|
34
|
-
aplos_nca_saas_sdk-0.0.
|
35
|
-
aplos_nca_saas_sdk-0.0.
|
32
|
+
aplos_nca_saas_sdk-0.0.5.dist-info/METADATA,sha256=N1m-6n1cdKqtjbfWMSIorjfCW1nDaF_ho7zZKg20fvA,3769
|
33
|
+
aplos_nca_saas_sdk-0.0.5.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
34
|
+
aplos_nca_saas_sdk-0.0.5.dist-info/licenses/LICENSE,sha256=pAZXnNE2dxxwXFIduGyn1gpvPefJtUYOYZOi3yeGG94,1068
|
35
|
+
aplos_nca_saas_sdk-0.0.5.dist-info/RECORD,,
|
File without changes
|
File without changes
|