summaryrefslogtreecommitdiffstats
path: root/test/test_util.py
blob: 49095d859318d77f6344b60198107fb3cbd5f341 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env python
"""Test framework utilitty functions tests"""

import unittest
from framework import VppTestCase, VppTestRunner
from vpp_mac import mactobinary, binarytomac


class TestUtil (VppTestCase):
    """ MAC to binary and back """
    def test_mac_to_binary(self):
        mac = 'aa:bb:cc:dd:ee:ff'
        b = mactobinary(mac)
        mac2 = binarytomac(b)
        self.assertEqual(type(mac), type(mac2))
        self.assertEqual(mac2, mac)

if __name__ == '__main__':
    unittest.main(testRunner=VppTestRunner)