blob: 1a5f6ae63e437ec61d0de834cef61839b011cbf6 (
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
30
31
|
import binascii
from framework import VppTestCase
""" TestPAPI is a subclass of VPPTestCase classes.
Basic test for sanity check of the Python API binding.
"""
class TestPAPI(VppTestCase):
""" PAPI Test Case """
@classmethod
def setUpClass(cls):
super(TestPAPI, cls).setUpClass()
cls.v = cls.vapi.papi
def test_show_version(self):
rv = self.v.show_version()
self.assertEqual(rv.retval, 0)
def test_show_version_invalid_param(self):
self.assertRaises(ValueError, self.v.show_version, foobar='foo')
def test_u8_array(self):
rv = self.v.get_node_index(node_name='ip4-lookup')
self.assertEqual(rv.retval, 0)
node_name = 'X' * 100
self.assertRaises(ValueError, self.v.get_node_index,
node_name=node_name)
|