Exemple #1
0
    def test_get_serial(self, duthosts, enum_rand_one_per_hwsku_hostname, localhost, platform_api_conn):
        duthost = duthosts[enum_rand_one_per_hwsku_hostname]
        skip_release_for_platform(duthost, ["202012"], ["arista", "mlnx"])

        for i in self.sfp_setup["sfp_test_port_indices"]:
            serial = sfp.get_serial(platform_api_conn, i)
            if self.expect(serial is not None, "Unable to retrieve transceiver {} serial number".format(i)):
                self.expect(isinstance(serial, STRING_TYPE), "Transceiver {} serial number appears incorrect".format(i))
        self.assert_expectations()
 def test_get_serial(self, duthost, localhost, platform_api_conn):
     for i in range(self.num_sfps):
         serial = sfp.get_serial(platform_api_conn, i)
         if self.expect(
                 serial is not None,
                 "Unable to retrieve transceiver {} serial number".format(
                     i)):
             self.expect(
                 isinstance(serial, STRING_TYPE),
                 "Transceiver {} serial number appears incorrect".format(i))
     self.assert_expectations()
Exemple #3
0
 def test_get_serial(self, duthosts, enum_rand_one_per_hwsku_hostname,
                     localhost, platform_api_conn):
     for i in self.candidate_sfp:
         serial = sfp.get_serial(platform_api_conn, i)
         if self.expect(
                 serial is not None,
                 "Unable to retrieve transceiver {} serial number".format(
                     i)):
             self.expect(
                 isinstance(serial, STRING_TYPE),
                 "Transceiver {} serial number appears incorrect".format(i))
     self.assert_expectations()