Skip to content

Commit a4e3949

Browse files
committedDec 9, 2024·
enforce JSON file extensions only for dts import specs
1 parent 6874ba6 commit a4e3949

File tree

2 files changed

+32
-3
lines changed

2 files changed

+32
-3
lines changed
 

‎staging_service/app.py

+6-3
Original file line numberDiff line numberDiff line change
@@ -106,10 +106,13 @@ def _file_type_resolver(path: PathPy) -> FileTypeResolution:
106106

107107
def _make_dts_file_resolver() -> Callable[[Path], FileTypeResolution]:
108108
"""Makes a DTS file resolver."""
109-
110-
def dts_file_resolver(_: PathPy):
109+
def dts_file_resolver(path: PathPy):
110+
# must be a ".json" file
111+
file_parts = str(path).split(".")
112+
ext = file_parts[-1]
113+
if len(file_parts) < 2 or ext.lower() != "json":
114+
return FileTypeResolution(unsupported_type=ext)
111115
return FileTypeResolution(parser=parse_dts_manifest)
112-
113116
return dts_file_resolver
114117

115118

‎tests/test_app.py

+26
Original file line numberDiff line numberDiff line change
@@ -1216,6 +1216,32 @@ async def test_bulk_specification_dts_fail_wrong_format():
12161216
assert resp.status == 400
12171217

12181218

1219+
async def test_bulk_specification_dts_fail_wrong_extension():
1220+
async with AppClient(config) as cli:
1221+
with FileUtil() as fu:
1222+
sub_dir = "dts_folder"
1223+
dts_dir = f"testuser/{sub_dir}"
1224+
fu.make_dir(dts_dir) # testuser is hardcoded in the auth mock
1225+
base = Path(fu.base_dir) / "testuser" / sub_dir
1226+
manifest = "test_manifest.foo"
1227+
manifest_data = {"resources": [], "instructions": {}}
1228+
with open(base / manifest, "w", encoding="utf-8") as f:
1229+
json.dump(manifest_data, f)
1230+
resp = await cli.get(f"bulk_specification/?files={sub_dir}/{manifest}&dts")
1231+
jsn = await resp.json()
1232+
assert jsn == {
1233+
"errors": [
1234+
{
1235+
"type": "cannot_parse_file",
1236+
"file": f"{dts_dir}/{manifest}",
1237+
"message": "foo is not a supported file type for import specifications",
1238+
"tab": None,
1239+
}
1240+
]
1241+
}
1242+
assert resp.status == 400
1243+
1244+
12191245
async def test_bulk_specification_fail_no_files():
12201246
async with AppClient(config) as cli:
12211247
for f in ["", "?files=", "?files= , ,, , "]:

0 commit comments

Comments
 (0)
Please sign in to comment.