We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04d76c8 commit 58f1646Copy full SHA for 58f1646
services/storage/tests/unit/test_models.py
@@ -43,7 +43,7 @@ def test_file_id(file_id: str):
43
assert parsed_file_id == file_id
44
45
46
-def test_fmd_build():
+def test_fmd_build_api():
47
file_id = TypeAdapter(SimcoreS3FileID).validate_python(f"api/{uuid.uuid4()}/xx.dat")
48
fmd = FileMetaData.from_simcore_node(
49
user_id=12,
@@ -64,6 +64,8 @@ def test_fmd_build():
64
assert fmd.location_id == SimcoreS3DataManager.get_location_id()
65
assert fmd.bucket_name == "test-bucket"
66
67
+
68
+def test_fmd_build_webapi():
69
file_id = TypeAdapter(SimcoreS3FileID).validate_python(
70
f"{uuid.uuid4()}/{uuid.uuid4()}/xx.dat"
71
)
0 commit comments