From e6be702362299566990678f505512b1b74b49112 Mon Sep 17 00:00:00 2001 From: Neale Ranns Date: Tue, 4 Jun 2019 15:37:34 +0000 Subject: IPSEC: some CLI fixes Change-Id: I45618347e37440263270baf07b2f82f653f754a5 Signed-off-by: Neale Ranns --- test/test_crypto.py | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 test/test_crypto.py (limited to 'test/test_crypto.py') diff --git a/test/test_crypto.py b/test/test_crypto.py new file mode 100644 index 00000000000..f921112d9b1 --- /dev/null +++ b/test/test_crypto.py @@ -0,0 +1,28 @@ +#!/usr/bin/env python + +import unittest + +from framework import VppTestCase, VppTestRunner + + +class TestCrypto(VppTestCase): + """ Crypto Test Case """ + + @classmethod + def setUpClass(cls): + super(TestCrypto, cls).setUpClass() + + @classmethod + def tearDownClass(cls): + super(TestCrypto, cls).tearDownClass() + + def test_crypto(self): + """ Crypto Unit Tests """ + error = self.vapi.cli("test crypto") + + if error: + self.logger.critical(error) + self.assertNotIn("FAIL", error) + +if __name__ == '__main__': + unittest.main(testRunner=VppTestRunner) -- cgit 1.2.3-korg