vpp/test/asf/test_crypto.py

30 lines
616 B
Python
Raw Normal View History

#!/usr/bin/env python3
import unittest
2023-08-31 00:47:44 -04:00
from asfframework import VppAsfTestCase, VppTestRunner
2023-08-31 00:47:44 -04:00
class TestCrypto(VppAsfTestCase):
"""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)