summaryrefslogtreecommitdiffstats
path: root/test/asf/test_api_client.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/asf/test_api_client.py')
-rw-r--r--test/asf/test_api_client.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/asf/test_api_client.py b/test/asf/test_api_client.py
new file mode 100644
index 00000000000..97744c6ba1b
--- /dev/null
+++ b/test/asf/test_api_client.py
@@ -0,0 +1,21 @@
+#!/usr/bin/env python3
+
+import unittest
+
+from asfframework import VppTestCase, VppTestRunner
+from vpp_ip_route import VppIpTable, VppIpRoute, VppRoutePath
+
+
+class TestAPIClient(VppTestCase):
+ """API Internal client Test Cases"""
+
+ def test_client_unittest(self):
+ """Internal API client"""
+ error = self.vapi.cli("test api internal")
+ if error:
+ self.logger.critical(error)
+ self.assertNotIn("failed", error)
+
+
+if __name__ == "__main__":
+ unittest.main(testRunner=VppTestRunner)