@@ -609,6 +609,14 @@ async def authorize_request(request):
609
609
610
610
611
611
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
+ """
612
620
with open (schema_path ) as schema_file :
613
621
dts_schema = json .load (schema_file )
614
622
try :
@@ -652,7 +660,6 @@ def inject_config_dependencies(config):
652
660
Path ._DATA_DIR = DATA_DIR
653
661
Path ._META_DIR = META_DIR
654
662
Path ._CONCIERGE_PATH = CONCIERGE_PATH
655
- _DTS_MANIFEST_SCHEMA_PATH = DTS_MANIFEST_SCHEMA_PATH
656
663
657
664
if Path ._DATA_DIR is None :
658
665
raise Exception ("Please provide DATA_DIR in the config file " )
@@ -663,11 +670,13 @@ def inject_config_dependencies(config):
663
670
if Path ._CONCIERGE_PATH is None :
664
671
raise Exception ("Please provide CONCIERGE_PATH in the config file " )
665
672
666
- if _DTS_MANIFEST_SCHEMA_PATH is None :
673
+ if DTS_MANIFEST_SCHEMA_PATH is None :
667
674
raise Exception ("Please provide DTS_MANIFEST_SCHEMA in the config file" )
668
675
669
676
global _DTS_MANIFEST_VALIDATOR
670
677
# 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.
671
680
_DTS_MANIFEST_VALIDATOR = load_and_validate_schema (DTS_MANIFEST_SCHEMA_PATH )
672
681
673
682
if FILE_EXTENSION_MAPPINGS is None :
0 commit comments