Skip to content

Commit 17401b6

Browse files
committed
tests: FAIR signposting level 1 support (check HEAD and GET)
1 parent 15672de commit 17401b6

File tree

1 file changed

+17
-6
lines changed

1 file changed

+17
-6
lines changed

tests/ui/test_signposting_ui.py

+17-6
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,19 @@
99
1010
See https://signposting.org/FAIR/#level2 for more information on Signposting
1111
"""
12+
import pytest
1213

1314

14-
def test_link_in_landing_page_response_headers(running_app, client, record_with_file):
15+
@pytest.mark.parametrize("http_method", ["head", "get"])
16+
def test_link_in_landing_page_response_headers(
17+
running_app, client, record_with_file, http_method
18+
):
1519
ui_url = f"https://127.0.0.1:5000/records/{record_with_file.id}"
1620
api_url = f"https://127.0.0.1:5000/api/records/{record_with_file.id}"
1721
filename = "article.txt"
1822

19-
res = client.head(f"/records/{record_with_file.id}")
23+
client_http_method = getattr(client, http_method)
24+
res = client_http_method(f"/records/{record_with_file.id}")
2025

2126
assert res.headers["Link"].split(" , ") == [
2227
f'<{ui_url}> ; rel="cite-as"',
@@ -41,26 +46,32 @@ def test_link_in_landing_page_response_headers(running_app, client, record_with_
4146
]
4247

4348

49+
@pytest.mark.parametrize("http_method", ["head", "get"])
4450
def test_link_in_content_resource_response_headers(
45-
running_app, client, record_with_file
51+
running_app, client, record_with_file, http_method
4652
):
4753
ui_url = f"https://127.0.0.1:5000/records/{record_with_file.id}"
4854
api_url = f"https://127.0.0.1:5000/api/records/{record_with_file.id}"
4955
filename = "article.txt"
5056

51-
res = client.head(f"/records/{record_with_file.id}/files/{filename}")
57+
client_http_method = getattr(client, http_method)
58+
res = client_http_method(f"/records/{record_with_file.id}/files/{filename}")
5259

5360
assert res.headers["Link"].split(" , ") == [
5461
f'<{ui_url}> ; rel="collection" ; type="text/html"',
5562
f'<{api_url}> ; rel="linkset" ; type="application/linkset+json"',
5663
]
5764

5865

59-
def test_link_in_metadata_resource_response_headers(running_app, client, record):
66+
@pytest.mark.parametrize("http_method", ["head", "get"])
67+
def test_link_in_metadata_resource_response_headers(
68+
running_app, client, record, http_method
69+
):
6070
ui_url = f"https://127.0.0.1:5000/records/{record.id}"
6171
api_url = f"https://127.0.0.1:5000/api/records/{record.id}"
6272

63-
res = client.head(f"/records/{record.id}/export/bibtex")
73+
client_http_method = getattr(client, http_method)
74+
res = client_http_method(f"/records/{record.id}/export/bibtex")
6475

6576
assert res.headers["Link"].split(" , ") == [
6677
f'<{ui_url}> ; rel="describes" ; type="text/html"',

0 commit comments

Comments
 (0)