Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Supported Domains to be kept as per JIRA DDCCGW-740 on Prod #131

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/tests/folder_mandatory_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def test_folder_mandatory_files(country_folder):

# Testing folder structure
for domain in ofiles.keys():
assert domain in ('DCC','DDCC','DIVOC','ICAO','SHC','IPS-PILGRIMAGE'), 'Invalid domain: '+domain
assert domain in ('DCC','IPS-PILGRIMAGE','DICVP','PH4H'), 'Invalid domain: '+domain

assert ('TLS', 'TLS.pem') in ofiles[domain], f'TLS cert is missing in domain {domain}'
assert ('TLS', 'CA.pem') in ofiles[domain], f'TLS/CA cert is missing in domain {domain}'
Expand Down
2 changes: 1 addition & 1 deletion scripts/tests/groups_domains.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ def test_valid_domain(cert):

domain = cert.pathinfo.get('domain')
assert domain, 'Certificate at incorrect location'
assert domain.upper() in ('DCC','DDCC','DIVOC','ICAO','SHC','IPS-PILGRIMAGE'), 'Invalid domain: ' + domain
assert domain.upper() in ('DCC','IPS-PILGRIMAGE','DICVP','PH4H'), 'Invalid domain: ' + domain