Skip to content

Commit 84e8b2f

Browse files
committed
Merge branch 'dts-manifest-schema' into dts-manifest-parse
2 parents 33ffb2c + 05b619b commit 84e8b2f

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

staging_service/app.py

+11-2
Original file line numberDiff line numberDiff line change
@@ -609,6 +609,14 @@ async def authorize_request(request):
609609

610610

611611
def load_and_validate_schema(schema_path: PathPy) -> jsonschema.Draft202012Validator:
612+
"""Loads and validates a JSON schema from a path.
613+
614+
This expects a JSON schema loaded that validates under the 2020-12 draft schema
615+
format: https://json-schema.org/draft/2020-12
616+
617+
This is tested directly as a function in test_app.py, but the whole workflow when
618+
the app server is run is only tested manually.
619+
"""
612620
with open(schema_path) as schema_file:
613621
dts_schema = json.load(schema_file)
614622
try:
@@ -652,7 +660,6 @@ def inject_config_dependencies(config):
652660
Path._DATA_DIR = DATA_DIR
653661
Path._META_DIR = META_DIR
654662
Path._CONCIERGE_PATH = CONCIERGE_PATH
655-
_DTS_MANIFEST_SCHEMA_PATH = DTS_MANIFEST_SCHEMA_PATH
656663

657664
if Path._DATA_DIR is None:
658665
raise Exception("Please provide DATA_DIR in the config file ")
@@ -663,11 +670,13 @@ def inject_config_dependencies(config):
663670
if Path._CONCIERGE_PATH is None:
664671
raise Exception("Please provide CONCIERGE_PATH in the config file ")
665672

666-
if _DTS_MANIFEST_SCHEMA_PATH is None:
673+
if DTS_MANIFEST_SCHEMA_PATH is None:
667674
raise Exception("Please provide DTS_MANIFEST_SCHEMA in the config file")
668675

669676
global _DTS_MANIFEST_VALIDATOR
670677
# will raise an Exception if the schema is invalid
678+
# TODO: write automated tests that exercise this code under different config
679+
# conditions and error states.
671680
_DTS_MANIFEST_VALIDATOR = load_and_validate_schema(DTS_MANIFEST_SCHEMA_PATH)
672681

673682
if FILE_EXTENSION_MAPPINGS is None:

tests/test_app.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1264,7 +1264,9 @@ def test_load_and_validate_schema_good():
12641264

12651265

12661266
def test_load_and_validate_schema_missing_file():
1267-
not_real_file = Path("not_real")
1267+
not_real_file = Path(str(uuid.uuid4()))
1268+
# double-check that the file doesn't exist and make a new one if so.
1269+
# shouldn't ever happen, ideally, but easy to check.
12681270
while not_real_file.exists():
12691271
not_real_file = Path(str(uuid.uuid4()))
12701272
with pytest.raises(FileNotFoundError, match="No such file or directory"):

0 commit comments

Comments
 (0)