diff options
author | Neale Ranns <nranns@cisco.com> | 2019-06-04 15:37:34 +0000 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2019-06-05 11:29:46 +0000 |
commit | e6be702362299566990678f505512b1b74b49112 (patch) | |
tree | b00f992b21664c7bd4861e27a99d76fa9cbb735e /test/test_crypto.py | |
parent | 4b58a86da48a5bb861e0e329a60c3876a990f63e (diff) |
IPSEC: some CLI fixes
Change-Id: I45618347e37440263270baf07b2f82f653f754a5
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'test/test_crypto.py')
-rw-r--r-- | test/test_crypto.py | 28 |
1 files changed, 28 insertions, 0 deletions
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) |