aboutsummaryrefslogtreecommitdiffstats
path: root/test/asf/test_api_client.py
blob: 3f0fc8a10208ca61afe7ecac06508658ab71b4db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env python3

import unittest

from asfframework import VppAsfTestCase, VppTestRunner


class TestAPIClient(VppAsfTestCase):
    """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)