aplos-nca-saas-sdk 0.0.13__py3-none-any.whl → 0.0.14__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.
@@ -10,7 +10,7 @@ from aplos_nca_saas_sdk.integration_testing.configs._config_base import ConfigBa
10
10
 
11
11
  class ApplicationHostConfig(ConfigBase):
12
12
  """
13
- Application host: Defines the domains that the application configuration tests will check against
13
+ Application host: Defines the hosts that the application configuration tests will check against
14
14
 
15
15
  """
16
16
 
@@ -30,9 +30,9 @@ class ApplicationHostConfig(ConfigBase):
30
30
  self.__host = value
31
31
 
32
32
 
33
- class ApplicationDomainConfigs(ConfigBase):
33
+ class ApplicationHostConfigs(ConfigBase):
34
34
  """
35
- Application ApplicationDomain: Defines the Domains that the application configuration tests will check against
35
+ Application ApplicationHost: Defines the hosts that the application configuration tests will check against
36
36
 
37
37
  """
38
38
 
@@ -56,10 +56,10 @@ class ApplicationDomainConfigs(ConfigBase):
56
56
  """Load the logins from a list of dictionaries"""
57
57
  # self.enabled = bool(test_config.get("enabled", True))
58
58
  super().load(test_config)
59
- domains: List[Dict[str, Any]] = test_config.get("domains", [])
59
+ hosts: List[Dict[str, Any]] = test_config.get("hosts", [])
60
60
 
61
61
  host: Dict[str, Any]
62
- for host in domains:
62
+ for host in hosts:
63
63
  app_domain = ApplicationHostConfig()
64
64
  app_domain.host = host.get("host", None)
65
65
  app_domain.enabled = bool(host.get("enabled", True))
@@ -69,20 +69,20 @@ class ApplicationDomainConfigs(ConfigBase):
69
69
 
70
70
  class ApplicationSettings(ConfigBase):
71
71
  """
72
- Application Settings: Defines the domains that the application settings (configuration endpoint) tests will check against
72
+ Application Settings: Defines the hosts that the application settings (configuration endpoint) tests will check against
73
73
 
74
74
  """
75
75
 
76
76
  def __init__(self):
77
77
  super().__init__()
78
- self.__hosts: ApplicationDomainConfigs = ApplicationDomainConfigs()
78
+ self.__hosts: ApplicationHostConfigs = ApplicationHostConfigs()
79
79
 
80
80
  @property
81
- def domains(self) -> ApplicationDomainConfigs:
81
+ def hosts(self) -> ApplicationHostConfigs:
82
82
  """List of the host"""
83
83
  return self.__hosts
84
84
 
85
85
  def load(self, test_config: Dict[str, Any]):
86
- """Load the domains from the config"""
86
+ """Load the hosts from the config"""
87
87
  super().load(test_config)
88
- self.domains.load(test_config)
88
+ self.hosts.load(test_config)
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "application_config_test": {
3
3
  "purpose": "Tests the application configuration endpoints",
4
- "domains": [
4
+ "hosts": [
5
5
  {
6
6
  "host": "api.example.com",
7
7
  "expected_results": {
@@ -57,8 +57,8 @@ def override_config(config: TestConfiguration):
57
57
  config.logins.list.clear()
58
58
  config.logins.add(username=username, password=password, host=host)
59
59
 
60
- config.app_config.domains.list.clear()
61
- config.app_config.domains.add(host=host)
60
+ config.app_config.hosts.list.clear()
61
+ config.app_config.hosts.add(host=host)
62
62
 
63
63
 
64
64
  if __name__ == "__main__":
@@ -26,7 +26,7 @@ class TestAppConfiguration(IntegrationTestBase):
26
26
  """Test loading the application configuration"""
27
27
 
28
28
  self.results.clear()
29
- for domain_config in self.config.app_config.domains.list:
29
+ for domain_config in self.config.app_config.hosts.list:
30
30
  config: NCAAppConfiguration = NCAAppConfiguration(domain_config.host)
31
31
 
32
32
  test_response: IntegrationTestResponse = IntegrationTestResponse()
@@ -1,4 +1,4 @@
1
1
  # Aplos NCA SaaS SDK Version File
2
2
  # This is automatically generated during the build process.
3
3
  # DO NOT UPDATE IT DIRECTLY. IT WILL BE OVERWRITTEN.
4
- __version__ = '0.0.13'
4
+ __version__ = '0.0.14'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aplos_nca_saas_sdk
3
- Version: 0.0.13
3
+ Version: 0.0.14
4
4
  Summary: Aplos NCA SaaS SDK
5
5
  Project-URL: Homepage, https://aplosanalytics.com/
6
6
  Project-URL: Documentation, https://docs.aplosanalytics.com/
@@ -1,16 +1,16 @@
1
1
  aplos_nca_saas_sdk/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  aplos_nca_saas_sdk/run_analysis_execution.py,sha256=cYzGdAHOriDI7UHNFwzeaR6sHhiwNysx3__eMze8hZc,4445
3
- aplos_nca_saas_sdk/version.py,sha256=jlXzv0jZuOy0IB5ancPlhN-0-xre_EGv3QEfLys8N-c,172
3
+ aplos_nca_saas_sdk/version.py,sha256=_onNZF7kevsfWbgb2Rf4yc8mxV_El4urJNYCxJ0_Aog,172
4
4
  aplos_nca_saas_sdk/integration_testing/integration_test_base.py,sha256=ci3oOfz_McdDKGSrqOHF7F_vrvgTWo7HzxydNdPSHLs,2787
5
5
  aplos_nca_saas_sdk/integration_testing/integration_test_configurations.py,sha256=gHQE1l9l7qunlg0APfYE2JZzdhYHMz-RJiXIiQu6l2U,1634
6
6
  aplos_nca_saas_sdk/integration_testing/integration_test_factory.py,sha256=HdcGQycsBNv-cLGXfL3yVpRjLaj-QkAv1ih0L8yVXA0,2203
7
7
  aplos_nca_saas_sdk/integration_testing/integration_test_response.py,sha256=Ocn2q_kdgEJB-4Ol-V3dh8MEkf6CJdrIiQVURUeM62o,819
8
8
  aplos_nca_saas_sdk/integration_testing/integration_test_suite.py,sha256=L1ZFp3tE9zUnaCyzfTfKTYkgR_ksrIOi5YK7qViwKes,4413
9
- aplos_nca_saas_sdk/integration_testing/main.py,sha256=ACYtOZS-S0d1ZXZGzIMKxo1MPkK9CnsSzq7E5nMwhYE,2040
9
+ aplos_nca_saas_sdk/integration_testing/main.py,sha256=rEi9uraktWC4lZbMFdRywU_ts90X-VT-VKfi3MFecgU,2036
10
10
  aplos_nca_saas_sdk/integration_testing/readme.md,sha256=USg_Z8C3hYgOGgmDsv7DNR2IxRV0Xg6NvOYrwTBqZRE,626
11
11
  aplos_nca_saas_sdk/integration_testing/configs/_config_base.py,sha256=PyXCiEbvM5usN8sbtVSEL0g1iqGh9bdE31kPORMJBIs,480
12
- aplos_nca_saas_sdk/integration_testing/configs/app_settings_config.py,sha256=wgRjf98enkob2mfAV0bzjmfhMbovFsuMiURKyW9n83w,2611
13
- aplos_nca_saas_sdk/integration_testing/configs/config_sample.json,sha256=5n56K0mh33n5Po8uFbYE_ChIGbLuuxhVlhFwrbdrqNA,3568
12
+ aplos_nca_saas_sdk/integration_testing/configs/app_settings_config.py,sha256=oeb0BAj94BXjncsBI06ivgnLDPp_ohNSd7W_K9SZHIM,2583
13
+ aplos_nca_saas_sdk/integration_testing/configs/config_sample.json,sha256=zeflEvdtpknGjk42FXHGG3cBbvLcbSnj1_99o21JiDc,3566
14
14
  aplos_nca_saas_sdk/integration_testing/configs/file_upload_config.py,sha256=kODsim7yQVnXthBtbWwmRGfZFVN-QIevhQjSHdep6_4,3066
15
15
  aplos_nca_saas_sdk/integration_testing/configs/login_config.py,sha256=HqPjYBiagGSKaPFForO_eF0oKQqZzc3WEr4jEzh9kBc,3560
16
16
  aplos_nca_saas_sdk/integration_testing/configs/nca_execution_config.py,sha256=gS9W6nJ4ypgGqWcRTpVHpiEVcKsTuyI6zmvL_U5Bqhs,5769
@@ -21,7 +21,7 @@ aplos_nca_saas_sdk/integration_testing/files/uploads/input1.sas7bdat,sha256=bh4w
21
21
  aplos_nca_saas_sdk/integration_testing/files/uploads/input1.xls,sha256=ymFgWvoUC--OxsXrj2JInjK3eSbR7jnGbpHEpiadNCI,26624
22
22
  aplos_nca_saas_sdk/integration_testing/files/uploads/input1.xlsx,sha256=i8pOYfA-muNxrtCKfUfi4Hi3JvSx49ZgtfvIUQTzRJo,10481
23
23
  aplos_nca_saas_sdk/integration_testing/files/uploads/input1.xpt,sha256=vve5eYrs3nEuGGQgm710tzzYkhrn3cfcy3--CVe4IGs,1920
24
- aplos_nca_saas_sdk/integration_testing/tests/app_configuration_test.py,sha256=rzGWSCJPah7C8htp1atsaWKtkyRdfyd3ku8UTYQ20mc,1569
24
+ aplos_nca_saas_sdk/integration_testing/tests/app_configuration_test.py,sha256=f5kvHEAOmYKUn9gjuVNjEI5t7G8aJSbz3rfIh9133VQ,1567
25
25
  aplos_nca_saas_sdk/integration_testing/tests/app_login_test.py,sha256=NLI4DUICspa_uZi-w2Q3XufDL0ERLVvn1DavNpYDK7I,1650
26
26
  aplos_nca_saas_sdk/integration_testing/tests/file_upload_test.py,sha256=v3-5vEVPVREQDBColJeAGg2grG3c8A4WTxZnE3_ki9c,3936
27
27
  aplos_nca_saas_sdk/integration_testing/tests/nca_analysis_test.py,sha256=RIxarfp_ggD4HgVb8xnMynIDZG2HZ0hmv6sZj1-T73c,3261
@@ -45,7 +45,7 @@ aplos_nca_saas_sdk/utilities/environment_services.py,sha256=eKlaz-3VAPHUe-MN0rc_
45
45
  aplos_nca_saas_sdk/utilities/environment_vars.py,sha256=aXheFXg6FVMaSYLe2LmoWRF5Ks9vwxDazO4XYb4vLjc,1132
46
46
  aplos_nca_saas_sdk/utilities/file_utility.py,sha256=EUvQ65aXN6OdILniuiDQ2rPRA9sFmvUoAehifEjRgUY,1025
47
47
  aplos_nca_saas_sdk/utilities/http_utility.py,sha256=DQ-ClLOmNoyPn5vhrSh4q-2wi4ViP_gplJD9asEKDM8,464
48
- aplos_nca_saas_sdk-0.0.13.dist-info/METADATA,sha256=pZU_i1FxKlTBfAeTwcrBdN9ix9OA1tG4Jt4PeGb4ZRU,3792
49
- aplos_nca_saas_sdk-0.0.13.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
50
- aplos_nca_saas_sdk-0.0.13.dist-info/licenses/LICENSE,sha256=JQMpBrnqu_m2tISmyh6_dTgb8-m3HNnA51fuOh2TzkE,1076
51
- aplos_nca_saas_sdk-0.0.13.dist-info/RECORD,,
48
+ aplos_nca_saas_sdk-0.0.14.dist-info/METADATA,sha256=PgddGpVu9ujrhk-ex1uFYOnhzIkwOe-OeUrAR2djf8k,3792
49
+ aplos_nca_saas_sdk-0.0.14.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
50
+ aplos_nca_saas_sdk-0.0.14.dist-info/licenses/LICENSE,sha256=JQMpBrnqu_m2tISmyh6_dTgb8-m3HNnA51fuOh2TzkE,1076
51
+ aplos_nca_saas_sdk-0.0.14.dist-info/RECORD,,