You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Check Device.controls has an entry with "type": "urn:x-nmos:control:events/{version}" (i.e. api["version"]) and the appropriate "href" based on the api["url"] under test.
def test_xx(self, test):
"""At least one Device is showing an IS-07 control advertisement matching the API under test"""
valid, devices = self.do_request("GET", self.node_url + "devices")
if not valid:
return test.FAIL("Node API did not respond as expected: {}".format(devices))
is07_devices = []
found_api_match = False
try:
device_type = "urn:x-nmos:control:events/" + self.apis[EVENTS_API_KEY]["version"]
for device in devices.json():
controls = device["controls"]
for control in controls:
if control["type"] == device_type:
is07_devices.append(control["href"])
if self.is07_utils.compare_urls(self.events_url, control["href"]) and \
self.authorization is control.get("authorization", False):
found_api_match = True
except json.JSONDecodeError:
return test.FAIL("Non-JSON response returned from Node API")
except KeyError:
return test.FAIL("One or more Devices were missing the 'controls' attribute")
if len(is07_devices) > 0 and found_api_match:
return test.PASS()
elif len(is07_devices) > 0:
return test.FAIL("Found one or more Device controls, but no href and authorization mode matched the "
"Events API under test")
else:
return test.FAIL("Unable to find any Devices which expose the control type '{}'".format(device_type))
Check Device.controls has an entry with
"type": "urn:x-nmos:control:events/{version}"
(i.e.api["version"]
) and the appropriate"href"
based on theapi["url"]
under test.Originally posted by @garethsb in #431 (comment)
The text was updated successfully, but these errors were encountered: