Renato Botelho do Couto | ead1e53 | 2019-10-31 13:31:07 -0500 | [diff] [blame] | 1 | #!/usr/bin/env python3 |
Steven | b059849 | 2018-10-24 21:15:45 -0700 | [diff] [blame] | 2 | |
| 3 | import unittest |
| 4 | |
| 5 | from framework import VppTestCase, VppTestRunner |
| 6 | from vpp_ip_route import VppIpTable, VppIpRoute, VppRoutePath |
| 7 | |
| 8 | |
| 9 | class TestString(VppTestCase): |
| 10 | """ String Test Cases """ |
| 11 | |
| 12 | @classmethod |
| 13 | def setUpClass(cls): |
| 14 | super(TestString, cls).setUpClass() |
| 15 | |
Paul Vinciguerra | 7f9b7f9 | 2019-03-12 19:23:27 -0700 | [diff] [blame] | 16 | @classmethod |
| 17 | def tearDownClass(cls): |
| 18 | super(TestString, cls).tearDownClass() |
| 19 | |
Steven | b059849 | 2018-10-24 21:15:45 -0700 | [diff] [blame] | 20 | def setUp(self): |
| 21 | super(TestString, self).setUp() |
| 22 | |
| 23 | def tearDown(self): |
| 24 | super(TestString, self).tearDown() |
| 25 | |
| 26 | def test_string_unittest(self): |
| 27 | """ String unit tests """ |
| 28 | names = ["memcpy_s", |
| 29 | "clib_memcmp", "clib_memcpy", "clib_memset", |
| 30 | "clib_strcat", "clib_strcmp", "clib_strcpy", |
| 31 | "clib_strncat", "clib_strncmp", "clib_strncpy", |
| 32 | "clib_strnlen", "clib_strstr", "clib_strtok", |
| 33 | "memcmp_s", "memcpy_s", "memset_s ", |
| 34 | "strcat_s", "strcmp_s", "strcpy_s", |
| 35 | "strncat_s", "strncmp_s", "strncpy_s", |
BenoƮt Ganne | f3ae9e3 | 2020-07-20 18:07:49 +0200 | [diff] [blame] | 36 | "strnlen_s", "strstr_s", "strtok_s", "clib_count_equal"] |
Steven | b059849 | 2018-10-24 21:15:45 -0700 | [diff] [blame] | 37 | |
| 38 | for name in names: |
| 39 | error = self.vapi.cli("test string " + name) |
| 40 | if error.find("failed") != -1: |
| 41 | self.logger.critical("FAILURE in the " + name + " test") |
Paul Vinciguerra | 9a6dafd | 2019-03-06 15:11:28 -0800 | [diff] [blame] | 42 | self.assertNotIn("failed", error) |
Steven | b059849 | 2018-10-24 21:15:45 -0700 | [diff] [blame] | 43 | |
| 44 | if __name__ == '__main__': |
| 45 | unittest.main(testRunner=VppTestRunner) |