diff options
author | Dave Wallace <dwallacelf@gmail.com> | 2020-11-16 17:44:36 -0500 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2020-12-16 13:33:31 +0000 |
commit | f05c9a497c9464f710614450ec2fbf3b9d300343 (patch) | |
tree | 63176392db7f328cc9284c75d939c55df8e8f07a /test/test_fib.py | |
parent | 7742d5b355564bc21a45db0d5fc10d5f63778749 (diff) |
tests: move fib tests to src/vnet/fib/test
- Refactor make test code to be co-located with
the vpp feature source code
Type: test
Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
Change-Id: I0529eb51b5a6bc2a5f1a49ee9d3320908ad1dba9
Diffstat (limited to 'test/test_fib.py')
-rw-r--r-- | test/test_fib.py | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/test/test_fib.py b/test/test_fib.py deleted file mode 100644 index 0eefcdf8b80..00000000000 --- a/test/test_fib.py +++ /dev/null @@ -1,46 +0,0 @@ -#!/usr/bin/env python3 - -import unittest - -from framework import VppTestCase, VppTestRunner - - -class TestFIB(VppTestCase): - """ FIB Test Case """ - - @classmethod - def setUpClass(cls): - super(TestFIB, cls).setUpClass() - - @classmethod - def tearDownClass(cls): - super(TestFIB, cls).tearDownClass() - - def test_fib(self): - """ FIB Unit Tests """ - error = self.vapi.cli("test fib") - - # shameless test of CLIs to bump lcov results... - # no i mean to ensure they don't crash - self.logger.info(self.vapi.cli("sh fib source")) - self.logger.info(self.vapi.cli("sh fib source prio")) - self.logger.info(self.vapi.cli("sh fib memory")) - self.logger.info(self.vapi.cli("sh fib entry")) - self.logger.info(self.vapi.cli("sh fib entry 0")) - self.logger.info(self.vapi.cli("sh fib entry 10000")) - self.logger.info(self.vapi.cli("sh fib entry-delegate")) - self.logger.info(self.vapi.cli("sh fib paths")) - self.logger.info(self.vapi.cli("sh fib paths 0")) - self.logger.info(self.vapi.cli("sh fib paths 10000")) - self.logger.info(self.vapi.cli("sh fib path-list")) - self.logger.info(self.vapi.cli("sh fib path-list 0")) - self.logger.info(self.vapi.cli("sh fib path-list 10000")) - self.logger.info(self.vapi.cli("sh fib walk")) - self.logger.info(self.vapi.cli("sh fib uRPF")) - - if error: - self.logger.critical(error) - self.assertNotIn("Failed", error) - -if __name__ == '__main__': - unittest.main(testRunner=VppTestRunner) |