aboutsummaryrefslogtreecommitdiffstats
path: root/test/asf/test_vppinfra.py
blob: 56391bfb13ce3f8b0c898484141201d414e5bb0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env python3

import unittest

from asfframework import VppAsfTestCase, VppTestRunner


class TestVppinfra(VppAsfTestCase):
    """Vppinfra Unit Test Cases"""

    @classmethod
    def setUpClass(cls):
        super(TestVppinfra, cls).setUpClass()

    @classmethod
    def tearDownClass(cls):
        super(TestVppinfra, cls).tearDownClass()

    def setUp(self):
        super(TestVppinfra, self).setUp()

    def tearDown(self):
        super(TestVppinfra, self).tearDown()

    def test_bitmap_unittest(self):
        """Bitmap unit tests"""

        cmds = ["test bitmap"]

        for cmd in cmds:
            error = self.vapi.cli(cmd)
            if error:
                self.logger.critical(error)
                self.assertNotIn("failed", error)


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