From 4450aed056d0f096944d81c230bc33d9bd8497e3 Mon Sep 17 00:00:00 2001 From: adrianvillin Date: Thu, 19 Oct 2023 12:15:52 +0200 Subject: [PATCH] tests: Added a simple Snort plugin test to increase coverage. Type: test Change-Id: I96ec8b4347210672bc587407ab2fd0f0305ea486 Signed-off-by: adrianvillin --- test/test_snort.py | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 test/test_snort.py diff --git a/test/test_snort.py b/test/test_snort.py new file mode 100644 index 00000000000..67c98a83d31 --- /dev/null +++ b/test/test_snort.py @@ -0,0 +1,53 @@ +from framework import VppTestCase, VppTestRunner +import unittest +from config import config + + +@unittest.skipIf("snort" in config.excluded_plugins, "Exclude snort plugin test") +class TestSnort(VppTestCase): + """Simple Snort plugin test""" + + @classmethod + def setUpClass(cls): + super(TestSnort, cls).setUpClass() + try: + cls.create_pg_interfaces(range(2)) + for i in cls.pg_interfaces: + i.config_ip4().resolve_arp() + i.admin_up() + except Exception: + cls.tearDownClass() + raise + + @classmethod + def tearDownClass(cls): + for i in cls.pg_interfaces: + i.unconfig_ip4() + i.admin_down() + super(TestSnort, cls).tearDownClass() + + def test_snort_cli(self): + # TODO: add a test with packets + # { cli command : part of the expected reply } + commands_replies = { + "snort create-instance name snortTest queue-size 16 on-disconnect drop": "", + "snort create-instance name snortTest2 queue-size 16 on-disconnect pass": "", + "snort attach instance snortTest interface pg0 output": "", + "snort attach instance snortTest2 interface pg1 input": "", + "show snort instances": "snortTest", + "show snort interfaces": "pg0", + "show snort clients": "number of clients", + "show snort mode": "input mode: interrupt", + "snort mode polling": "", + "snort mode interrupt": "", + "snort detach interface pg0": "", + "snort detach interface pg1": "", + } + + for command, reply in commands_replies.items(): + actual_reply = self.vapi.cli(command) + self.assertIn(reply, actual_reply) + + +if __name__ == "__main__": + unittest.main(testRunner=VppTestRunner) -- 2.16.6