aboutsummaryrefslogtreecommitdiffstats
path: root/test/asf/test_vppinfra.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/asf/test_vppinfra.py')
-rw-r--r--test/asf/test_vppinfra.py38
1 files changed, 38 insertions, 0 deletions
diff --git a/test/asf/test_vppinfra.py b/test/asf/test_vppinfra.py
new file mode 100644
index 00000000000..56391bfb13c
--- /dev/null
+++ b/test/asf/test_vppinfra.py
@@ -0,0 +1,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)