vpp/test/asf/test_api_client.py

22 lines
531 B
Python
Raw Normal View History

#!/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)