From e59761f721f8a667a03e0c505b287bf69c47b532 Mon Sep 17 00:00:00 2001 From: adrianvillin Date: Tue, 7 Nov 2023 10:18:24 +0100 Subject: [PATCH] tests: added a simple perfmon plugin test Type: test Change-Id: Ief0c0e13a2c19a03b48219d9a0d85256fb0c9dbe Signed-off-by: adrianvillin --- test/asf/test_perfmon.py | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 test/asf/test_perfmon.py diff --git a/test/asf/test_perfmon.py b/test/asf/test_perfmon.py new file mode 100644 index 00000000000..448a6012c20 --- /dev/null +++ b/test/asf/test_perfmon.py @@ -0,0 +1,42 @@ +from asfframework import VppAsfTestCase, VppTestRunner +import unittest + + +class TestPerfmon(VppAsfTestCase): + """Simple perfmon test""" + + @classmethod + def setUpClass(cls): + super(TestPerfmon, cls).setUpClass() + + @classmethod + def tearDownClass(cls): + super(TestPerfmon, cls).tearDownClass() + + def test_perfmon(self): + reply = self.vapi.cli("show perfmon active-bundle") + self.assertNotIn("context-switches", reply) + + reply = self.vapi.cli("show perfmon bundle") + self.assertIn("context-switches", reply) + + self.vapi.cli("perfmon start bundle context-switches type thread") + reply = self.vapi.cli("show perfmon active-bundle") + self.assertIn("name: context-switches", reply) + + reply = self.vapi.cli("show perfmon statistics") + self.assertIn("per-thread context switches", reply) + + reply = self.vapi.cli("show perfmon source linux verbose") + self.assertIn("description: Linux kernel performance counters", reply) + self.vapi.cli("perfmon reset") + + reply = self.vapi.cli("show perfmon active-bundle") + self.assertNotIn("context-switches", reply) + + self.vapi.cli("perfmon start bundle context-switches type thread") + self.vapi.cli("perfmon stop") + + +if __name__ == "__main__": + unittest.main(testRunner=VppTestRunner) -- 2.16.6