Ejemplo n.º 1
0
    def test_get_name(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):
            name = component.get_name(platform_api_conn, i)
            if self.expect(name is not None, "Component {}: Unable to retrieve name".format(i)):
                self.expect(isinstance(name, STRING_TYPE), "Component {}: Name appears incorrect".format(i))
        self.assert_expectations()
Ejemplo n.º 2
0
    def test_get_name(self, duthosts, enum_rand_one_per_hwsku_hostname, localhost, platform_api_conn):
        duthost = duthosts[enum_rand_one_per_hwsku_hostname]

        for i in range(self.num_components):
            name = component.get_name(platform_api_conn, i)
            if self.expect(name is not None, "Component {}: Unable to retrieve name".format(i)):
                self.expect(isinstance(name, STRING_TYPE), "Component {}: Name appears incorrect".format(i))
                self.compare_value_with_platform_facts(duthost, 'name', name, i)
        self.assert_expectations()