blob: a1ffbac81d81bace6c86ab97fab5df4cc667670e [file] [log] [blame]
Renato Botelho do Coutoead1e532019-10-31 13:31:07 -05001#!/usr/bin/env python3
Ole Troan72d87582019-05-10 12:01:10 +02002"""CLI functional tests"""
3
Paul Vinciguerrabfd7d292019-10-26 22:25:49 -04004import datetime
5import time
Ole Troan72d87582019-05-10 12:01:10 +02006import unittest
Paul Vinciguerrabfd7d292019-10-26 22:25:49 -04007
8from vpp_papi import vpp_transport_shmem
9
Ole Troan72d87582019-05-10 12:01:10 +020010from framework import VppTestCase, VppTestRunner
11
12
13class TestCLI(VppTestCase):
14 """ CLI Test Case """
15 maxDiff = None
16
17 @classmethod
18 def setUpClass(cls):
Paul Vinciguerrabfd7d292019-10-26 22:25:49 -040019 # using the framework default
Paul Vinciguerrae2ccdf02019-12-02 13:40:33 -050020 cls.vapi_response_timeout = 5
Ole Troan72d87582019-05-10 12:01:10 +020021 super(TestCLI, cls).setUpClass()
22
23 @classmethod
24 def tearDownClass(cls):
25 super(TestCLI, cls).tearDownClass()
26
27 def setUp(self):
28 super(TestCLI, self).setUp()
29
30 def tearDown(self):
31 super(TestCLI, self).tearDown()
32
33 def test_cli_retval(self):
34 """ CLI inband retval """
35 rv = self.vapi.papi.cli_inband(cmd='this command does not exist')
36 self.assertNotEqual(rv.retval, 0)
37
38 rv = self.vapi.papi.cli_inband(cmd='show version')
39 self.assertEqual(rv.retval, 0)
40
Paul Vinciguerrabfd7d292019-10-26 22:25:49 -040041 def test_long_cli_delay(self):
42 """ Test that VppApiClient raises VppTransportShmemIOError if timeout.""" # noqa
43 with self.assertRaises(
44 vpp_transport_shmem.VppTransportShmemIOError) as ctx:
45 rv = self.vapi.papi.cli_inband(cmd='wait 10')
46
Paul Vinciguerrae2ccdf02019-12-02 13:40:33 -050047 def test_long_cli_delay_override(self):
48 """ Test per-command _timeout option.""" # noqa
49 rv = self.vapi.papi.cli_inband(cmd='wait 10', _timeout=15)
50 self.assertEqual(rv.retval, 0)
51
Paul Vinciguerrabfd7d292019-10-26 22:25:49 -040052
53class TestCLIExtendedVapiTimeout(VppTestCase):
54 maxDiff = None
55
56 @classmethod
57 def setUpClass(cls):
58 cls.vapi_response_timeout = 15
59 cls.__doc__ = " CLI Test Case w/ Extended (%ssec) Vapi Timeout " \
60 % cls.vapi_response_timeout
61 super(TestCLIExtendedVapiTimeout, cls).setUpClass()
62
63 @classmethod
64 def tearDownClass(cls):
65 super(TestCLIExtendedVapiTimeout, cls).tearDownClass()
66
67 def setUp(self):
68 super(TestCLIExtendedVapiTimeout, self).setUp()
69
70 def tearDown(self):
71 super(TestCLIExtendedVapiTimeout, self).tearDown()
72
73 def test_long_cli_delay(self):
74 """ Test that delayed result returns with extended timeout."""
75 wait_secs = self.vapi_response_timeout - 1
76
77 # get vpp time as float
78 start = self.vapi.papi.show_vpe_system_time(
79 _no_type_conversion=True).vpe_system_time
80 rv = self.vapi.papi.cli_inband(cmd='wait %s' % wait_secs)
81 now = self.vapi.papi.show_vpe_system_time(
82 _no_type_conversion=True).vpe_system_time
83
84 # assume that the overhead of the measurement is not more that .5 sec.
85 self.assertEqual(round(now - start), wait_secs)
86
Ole Troan72d87582019-05-10 12:01:10 +020087
88if __name__ == '__main__':
89 unittest.main(testRunner=VppTestRunner)