blob: 0985b4a81a3b22a92a47a60edbd3367450d3c890 (
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
32
33
34
35
36
37
38
|
#!/usr/bin/env python
import unittest
from framework import VppTestCase, VppTestRunner
from vpp_vhost_interface import VppVhostInterface
class TesVhostInterface(VppTestCase):
"""Vhost User Test Case
"""
def test_vhost(self):
""" Vhost User add/delete interface test """
self.logger.info("Vhost User add interfaces")
# create interface 1 (VirtualEthernet0/0/0)
vhost_if1 = VppVhostInterface(self, sock_filename='/tmp/sock1')
vhost_if1.add_vpp_config()
vhost_if1.admin_up()
# create interface 2 (VirtualEthernet0/0/1)
vhost_if2 = VppVhostInterface(self, sock_filename='/tmp/sock2')
vhost_if2.add_vpp_config()
vhost_if2.admin_up()
# verify both interfaces in the show
ifs = self.vapi
|