aboutsummaryrefslogtreecommitdiffstats
path: root/test/asf/test_crypto.py
blob: f39cb46470e9e654728b8a2b379aee76cc4305b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/env python3

import unittest

from asfframework 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)