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 153d879 commit ccd696eCopy full SHA for ccd696e
src/pyff/test/test_md_api.py
@@ -136,6 +136,12 @@ def test_load_and_query(self):
136
assert info['title'] == 'NORDUnet'
137
assert 'nordu.net' in info['scope']
138
139
+ # check that we get a discovery_responses where we expect one
140
+ r = requests.get("{}/entities/%7Bsha1%7Dc3ba81cede254454b64ee9743df19201fe34adc9.json".format(url))
141
+ assert r.status_code == 200
142
+ data = r.json()
143
+ info = data[0]
144
+ assert 'https://box-idp.nordu.net/simplesaml/module.php/saml/sp/discoresp.php' in info['discovery_responses']
145
146
class PyFFAPITestResources(PipeLineTest):
147
"""
0 commit comments