def test_get_status(self, duthosts, enum_rand_one_per_hwsku_hostname, localhost, platform_api_conn): for i in range(self.num_components): status = component.get_status(platform_api_conn, i) if self.expect(status is not None, "Component {}: Unable to retrieve status".format(i)): self.expect(isinstance(status, bool), "Component {}: Status appears incorrect".format(i)) self.assert_expectations()
def test_get_status(self, duthost, localhost, platform_api_conn): if self.num_components == 0: pytest.skip("No components found on device") for i in range(self.num_components): status = component.get_status(platform_api_conn, i) if self.expect(status is not None, "Component {}: Unable to retrieve status".format(i)): self.expect(isinstance(status, bool), "Component {}: Status appears incorrect".format(i)) self.assert_expectations()