Exemplo n.º 1
0
 def test_mac_str_to_bytes(self):
     self.assertRaises(ValueError, network.mac_str_to_bytes, '31337')
     self.assertRaises(ValueError, network.mac_str_to_bytes, '0001020304056')
     self.assertRaises(ValueError, network.mac_str_to_bytes, '00:01:02:03:04:056')
     self.assertRaises(ValueError, network.mac_str_to_bytes, 'a0:b0:c0:d0:e0:fg')
     self.assertEqual(b'\x10\x08\x06\x04\x02\x00', network.mac_str_to_bytes('100806040200'))
     self.assertEqual(b'\xf8\xe7\xd6\xc5\xb4\xa3', network.mac_str_to_bytes('f8e7d6c5b4a3'))
Exemplo n.º 2
0
 def test_mac_str_to_bytes(self):
     self.assertRaises(ValueError, network.mac_str_to_bytes, "31337")
     self.assertRaises(ValueError, network.mac_str_to_bytes, "0001020304056")
     self.assertRaises(ValueError, network.mac_str_to_bytes, "00:01:02:03:04:056")
     self.assertRaises(ValueError, network.mac_str_to_bytes, "a0:b0:c0:d0:e0:fg")
     self.assertEqual(
         b"\x10\x08\x06\x04\x02\x00", network.mac_str_to_bytes("100806040200")
     )
     self.assertEqual(
         b"\xf8\xe7\xd6\xc5\xb4\xa3", network.mac_str_to_bytes("f8e7d6c5b4a3")
     )