2019-10-31 13:31:07 -05:00
|
|
|
#!/usr/bin/env python3
|
2019-05-10 12:01:10 +02:00
|
|
|
"""CLI functional tests"""
|
|
|
|
|
|
|
|
import unittest
|
2019-10-26 22:25:49 -04:00
|
|
|
|
2021-03-03 10:40:05 +01:00
|
|
|
from vpp_papi import VPPIOError
|
2019-10-26 22:25:49 -04:00
|
|
|
|
2023-08-31 00:47:44 -04:00
|
|
|
from asfframework import VppAsfTestCase, VppTestRunner
|
2019-05-10 12:01:10 +02:00
|
|
|
|
|
|
|
|
2023-08-31 00:47:44 -04:00
|
|
|
class TestCLI(VppAsfTestCase):
|
2022-04-26 19:02:15 +02:00
|
|
|
"""CLI Test Case"""
|
|
|
|
|
2019-05-10 12:01:10 +02:00
|
|
|
maxDiff = None
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def setUpClass(cls):
|
2019-10-26 22:25:49 -04:00
|
|
|
# using the framework default
|
2019-12-02 13:40:33 -05:00
|
|
|
cls.vapi_response_timeout = 5
|
2019-05-10 12:01:10 +02:00
|
|
|
super(TestCLI, cls).setUpClass()
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def tearDownClass(cls):
|
|
|
|
super(TestCLI, cls).tearDownClass()
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
super(TestCLI, self).setUp()
|
|
|
|
|
|
|
|
def tearDown(self):
|
|
|
|
super(TestCLI, self).tearDown()
|
|
|
|
|
|
|
|
def test_cli_retval(self):
|
2022-04-26 19:02:15 +02:00
|
|
|
"""CLI inband retval"""
|
|
|
|
rv = self.vapi.papi.cli_inband(cmd="this command does not exist")
|
2019-05-10 12:01:10 +02:00
|
|
|
self.assertNotEqual(rv.retval, 0)
|
|
|
|
|
2022-04-26 19:02:15 +02:00
|
|
|
rv = self.vapi.papi.cli_inband(cmd="show version")
|
2019-05-10 12:01:10 +02:00
|
|
|
self.assertEqual(rv.retval, 0)
|
|
|
|
|
2019-10-26 22:25:49 -04:00
|
|
|
def test_long_cli_delay(self):
|
2022-04-26 19:02:15 +02:00
|
|
|
"""Test that VppApiClient raises VppIOError if timeout.""" # noqa
|
2021-03-03 10:40:05 +01:00
|
|
|
with self.assertRaises(VPPIOError) as ctx:
|
2022-04-26 19:02:15 +02:00
|
|
|
rv = self.vapi.papi.cli_inband(cmd="wait 10")
|
2019-10-26 22:25:49 -04:00
|
|
|
|
2019-12-02 13:40:33 -05:00
|
|
|
def test_long_cli_delay_override(self):
|
2022-04-26 19:02:15 +02:00
|
|
|
"""Test per-command _timeout option.""" # noqa
|
|
|
|
rv = self.vapi.papi.cli_inband(cmd="wait 10", _timeout=15)
|
2019-12-02 13:40:33 -05:00
|
|
|
self.assertEqual(rv.retval, 0)
|
|
|
|
|
2019-10-26 22:25:49 -04:00
|
|
|
|
2023-08-31 00:47:44 -04:00
|
|
|
class TestCLIExtendedVapiTimeout(VppAsfTestCase):
|
2019-10-26 22:25:49 -04:00
|
|
|
maxDiff = None
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def setUpClass(cls):
|
|
|
|
cls.vapi_response_timeout = 15
|
2022-04-26 19:02:15 +02:00
|
|
|
cls.__doc__ = (
|
|
|
|
" CLI Test Case w/ Extended (%ssec) Vapi Timeout "
|
|
|
|
% cls.vapi_response_timeout
|
|
|
|
)
|
2019-10-26 22:25:49 -04:00
|
|
|
super(TestCLIExtendedVapiTimeout, cls).setUpClass()
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def tearDownClass(cls):
|
|
|
|
super(TestCLIExtendedVapiTimeout, cls).tearDownClass()
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
super(TestCLIExtendedVapiTimeout, self).setUp()
|
|
|
|
|
|
|
|
def tearDown(self):
|
|
|
|
super(TestCLIExtendedVapiTimeout, self).tearDown()
|
|
|
|
|
|
|
|
def test_long_cli_delay(self):
|
2022-04-26 19:02:15 +02:00
|
|
|
"""Test that delayed result returns with extended timeout."""
|
2019-10-26 22:25:49 -04:00
|
|
|
wait_secs = self.vapi_response_timeout - 1
|
|
|
|
|
|
|
|
# get vpp time as float
|
|
|
|
start = self.vapi.papi.show_vpe_system_time(
|
2022-04-26 19:02:15 +02:00
|
|
|
_no_type_conversion=True
|
|
|
|
).vpe_system_time
|
|
|
|
rv = self.vapi.papi.cli_inband(cmd="wait %s" % wait_secs)
|
2019-10-26 22:25:49 -04:00
|
|
|
now = self.vapi.papi.show_vpe_system_time(
|
2022-04-26 19:02:15 +02:00
|
|
|
_no_type_conversion=True
|
|
|
|
).vpe_system_time
|
2019-10-26 22:25:49 -04:00
|
|
|
|
|
|
|
# assume that the overhead of the measurement is not more that .5 sec.
|
|
|
|
self.assertEqual(round(now - start), wait_secs)
|
|
|
|
|
2019-05-10 12:01:10 +02:00
|
|
|
|
2022-04-26 19:02:15 +02:00
|
|
|
if __name__ == "__main__":
|
2019-05-10 12:01:10 +02:00
|
|
|
unittest.main(testRunner=VppTestRunner)
|