tests: move test source to vpp/test
- Generate copyright year and version instead of using hard-coded data Type: refactor Signed-off-by: Dave Wallace <dwallacelf@gmail.com> Change-Id: I6058f5025323b3aa483f5df4a2c4371e27b5914e
This commit is contained in:

committed by
Damjan Marion

parent
fd77f8c00c
commit
eddd8e3588
40
test/test_vppinfra.py
Normal file
40
test/test_vppinfra.py
Normal file
@ -0,0 +1,40 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
import unittest
|
||||
|
||||
from framework import VppTestCase, VppTestRunner, running_extended_tests
|
||||
from framework import running_gcov_tests
|
||||
|
||||
|
||||
class TestVppinfra(VppTestCase):
|
||||
""" Vppinfra Unit Test Cases """
|
||||
vpp_worker_count = 1
|
||||
|
||||
@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 Code Coverage Test """
|
||||
cmds = ["test bitmap"]
|
||||
|
||||
for cmd in cmds:
|
||||
r = self.vapi.cli_return_response(cmd)
|
||||
if r.retval != 0:
|
||||
if hasattr(r, 'reply'):
|
||||
self.logger.info(cmd + " FAIL reply " + r.reply)
|
||||
else:
|
||||
self.logger.info(cmd + " FAIL retval " + str(r.retval))
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main(testRunner=VppTestRunner)
|
Reference in New Issue
Block a user