tests: add generalized tags for tests, use them for run-solo tests
[vpp.git] / test / test_util.py
1 #!/usr/bin/env python3
2 """Test framework utility functions tests"""
3
4 import unittest
5 from framework import VppTestRunner
6 from vpp_papi import mac_pton, mac_ntop
7
8
9 class TestUtil (unittest.TestCase):
10     """ Test framework utility tests """
11
12     @classmethod
13     def is_tagged_run_solo(cls):
14         """ if the test case class is timing-sensitive - return true """
15         return False
16
17     def test_mac_to_binary(self):
18         """ MAC to binary and back """
19         mac = 'aa:bb:cc:dd:ee:ff'
20         b = mac_pton(mac)
21         mac2 = mac_ntop(b)
22         self.assertEqual(type(mac), type(mac2))
23         self.assertEqual(mac2, mac)
24
25
26 if __name__ == '__main__':
27     unittest.main(testRunner=VppTestRunner)