9
9
10
10
See https://signposting.org/FAIR/#level2 for more information on Signposting
11
11
"""
12
+ import pytest
12
13
13
14
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
+ ):
15
19
ui_url = f"https://127.0.0.1:5000/records/{ record_with_file .id } "
16
20
api_url = f"https://127.0.0.1:5000/api/records/{ record_with_file .id } "
17
21
filename = "article.txt"
18
22
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 } " )
20
25
21
26
assert res .headers ["Link" ].split (" , " ) == [
22
27
f'<{ ui_url } > ; rel="cite-as"' ,
@@ -41,26 +46,32 @@ def test_link_in_landing_page_response_headers(running_app, client, record_with_
41
46
]
42
47
43
48
49
+ @pytest .mark .parametrize ("http_method" , ["head" , "get" ])
44
50
def test_link_in_content_resource_response_headers (
45
- running_app , client , record_with_file
51
+ running_app , client , record_with_file , http_method
46
52
):
47
53
ui_url = f"https://127.0.0.1:5000/records/{ record_with_file .id } "
48
54
api_url = f"https://127.0.0.1:5000/api/records/{ record_with_file .id } "
49
55
filename = "article.txt"
50
56
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 } " )
52
59
53
60
assert res .headers ["Link" ].split (" , " ) == [
54
61
f'<{ ui_url } > ; rel="collection" ; type="text/html"' ,
55
62
f'<{ api_url } > ; rel="linkset" ; type="application/linkset+json"' ,
56
63
]
57
64
58
65
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
+ ):
60
70
ui_url = f"https://127.0.0.1:5000/records/{ record .id } "
61
71
api_url = f"https://127.0.0.1:5000/api/records/{ record .id } "
62
72
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" )
64
75
65
76
assert res .headers ["Link" ].split (" , " ) == [
66
77
f'<{ ui_url } > ; rel="describes" ; type="text/html"' ,
0 commit comments