blob: d7d4cc72ff75b3146b0b319878cd982325655307 [file] [log] [blame]
Paul Vinciguerra03f1af22019-06-25 22:30:19 -04001# Copyright (c) 2019. Vinci Consulting Corp. All Rights Reserved.
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
Paul Vinciguerraa47a5f22019-07-23 09:53:06 -040014import datetime
Paul Vinciguerra03f1af22019-06-25 22:30:19 -040015import time
16import unittest
17from framework import VppTestCase
18
Paul Vinciguerraa47a5f22019-07-23 09:53:06 -040019enable_print = False
20
Paul Vinciguerra03f1af22019-06-25 22:30:19 -040021
22class TestVpeApi(VppTestCase):
23 """TestVpeApi"""
24
25 def test_log_dump_default(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020026 rv = self.vapi.cli("test log notice fib entry this is a test")
Paul Vinciguerra03f1af22019-06-25 22:30:19 -040027 rv = self.vapi.log_dump()
Paul Vinciguerraa47a5f22019-07-23 09:53:06 -040028 if enable_print:
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020029 print("\n".join([str(v) for v in rv]))
Paul Vinciguerra03f1af22019-06-25 22:30:19 -040030 self.assertTrue(rv)
31
32 def test_log_dump_timestamp_0(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020033 rv = self.vapi.cli("test log notice fib entry this is a test")
Paul Vinciguerra03f1af22019-06-25 22:30:19 -040034 rv = self.vapi.log_dump(start_timestamp=0.0)
Paul Vinciguerraa47a5f22019-07-23 09:53:06 -040035 if enable_print:
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020036 print("\n".join([str(v) for v in rv]))
Paul Vinciguerra03f1af22019-06-25 22:30:19 -040037 self.assertTrue(rv)
38
Paul Vinciguerra03f1af22019-06-25 22:30:19 -040039 def test_log_dump_timestamp_future(self):
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020040 rv = self.vapi.cli("test log debug fib entry test")
Paul Vinciguerra03f1af22019-06-25 22:30:19 -040041 rv = self.vapi.log_dump(start_timestamp=time.time() + 60.0)
Paul Vinciguerraa47a5f22019-07-23 09:53:06 -040042 if enable_print:
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020043 print("\n".join([str(v) for v in rv]))
Paul Vinciguerra03f1af22019-06-25 22:30:19 -040044 self.assertFalse(rv)
45
Paul Vinciguerraa47a5f22019-07-23 09:53:06 -040046 def test_show_vpe_system_time(self):
47 local_start_time = datetime.datetime.now()
48 rv = self.vapi.show_vpe_system_time()
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020049 self.assertTrue(
50 rv.vpe_system_time > local_start_time - datetime.timedelta(hours=1.0),
51 "system times differ by more than an hour.",
52 )
Paul Vinciguerraa47a5f22019-07-23 09:53:06 -040053 if enable_print:
Klement Sekerad9b0c6f2022-04-26 19:02:15 +020054 print("\n".join([str(v) for v in rv]))
55 print("%r %s" % (rv.vpe_system_time, rv.vpe_system_time))