Skip to content

Commit

Permalink
refactor SERP rendering with DiffIr
Browse files Browse the repository at this point in the history
  • Loading branch information
mam10eks committed Nov 30, 2024
1 parent 62e0013 commit a77fc87
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions application/test/api_access_matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -2048,6 +2048,17 @@
ADMIN: 200,
},
),
route_to_test(
url_pattern="v1/anonymous/<str:submission_uuid>",
params={"submission_uuid": "12345"},
group_to_expected_status_code={
GUEST: 200,
PARTICIPANT: 200,
ORGANIZER_WRONG_TASK: 200,
ORGANIZER: 200,
ADMIN: 200,
},
),
route_to_test(
url_pattern="v1/datasets/",
params={},
Expand All @@ -2059,6 +2070,17 @@
ADMIN: 200,
},
),
route_to_test(
url_pattern="v1/datasets/view/<str:dataset_id>",
params={"dataset_id": f"dataset-of-organizer-{now}-training"},
group_to_expected_status_code={
GUEST: 200,
PARTICIPANT: 200,
ORGANIZER_WRONG_TASK: 200,
ORGANIZER: 200,
ADMIN: 200,
},
),
route_to_test(
url_pattern="v1/datasets/all",
params={},
Expand Down

0 comments on commit a77fc87

Please sign in to comment.