blob: 7d44d04a9c00506ad5e39bf28df4c768312f71b2 (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
import os, sys
import unittest
from trex import CTRexScenario
from stateful_tests.trex_general_test import CTRexGeneral_Test
from trex_stl_lib.api import *
import time
from nose.tools import nottest
class CStlGeneral_Test(CTRexGeneral_Test):
"""This class defines the general stateless testcase of the TRex traffic generator"""
def setUp(self):
self.stl_trex = CTRexScenario.stl_trex if CTRexScenario.stl_trex else 'mock'
CTRexGeneral_Test.setUp(self)
# check basic requirements, should be verified at test_connectivity, here only skip test
if CTRexScenario.stl_init_error:
self.skip(CTRexScenario.stl_init_error)
def connect(self, tries = 10):
# need delay and check only because TRex process might be still starting
sys.stdout.write('Connecting')
for i in range(tries):
try:
sys.stdout.write('.')
sys.stdout.flush()
self.stl_trex.connect()
print('')
return True
except:
time.sleep(0.5)
print('')
return False
def map_ports(self, tries = 10):
sys.stdout.write('Mapping ports')
for i in range(tries):
sys.stdout.write('.')
sys.stdout.flush()
try:
CTRexScenario.stl_ports_map = stl_map_ports(self.stl_trex)
if self.verify_bidirectional(CTRexScenario.stl_ports_map):
print('')
return True
except Exception as e:
print('\nException during mapping: %s' % e)
return False
time.sleep(0.5)
print('')
return False
# verify all the ports are bidirectional
@staticmethod
def verify_bidirectional(mapping_dict):
if len(mapping_dict['unknown']):
return False
if len(mapping_dict['bi']) * 2 == len(mapping_dict['map']):
return True
return False
@staticmethod
def get_port_count():
return CTRexScenario.stl_trex.get_port_count()
@staticmethod
def is_connected():
return CTRexScenario.stl_trex.is_connected()
class STLBasic_Test(CStlGeneral_Test):
# will run it first explicitly, check connectivity and configure routing
@nottest
def test_connectivity(self):
if not self.is_loopback:
try:
sys.stdout.flush()
sys.stdout.write('Configuring DUT... ')
start_time = time.time()
if CTRexScenario.router_cfg['forceCleanConfig']:
CTRexScenario.router.load_clean_config()
CTRexScenario.router.configure_basic_interfaces()
CTRexScenario.router.config_pbr(mode = "config")
CTRexScenario.router.config_ipv6_pbr(mode = "config")
sys.stdout.write('done. (%ss)\n' % int(time.time() - start_time))
except Exception as e:
print('')
CTRexScenario.stl_init_error = 'Could not configure device, err: %s' % e
self.fail(CTRexScenario.stl_init_error)
return
try:
sys.stdout.write('Starting TRex... ')
start_time = time.time()
cores = self.configuration.trex.get('trex_cores', 1)
if self.is_virt_nics and cores > 1:
raise Exception('Number of cores should be 1 with virtual NICs')
if not CTRexScenario.no_daemon:
self.trex.start_stateless(c = cores)
self.stl_trex = STLClient(username = 'TRexRegression',
server = self.configuration.trex['trex_name'],
verbose_level = CTRexScenario.json_verbose)
CTRexScenario.stl_trex = self.stl_trex
sys.stdout.write('done. (%ss)\n' % int(time.time() - start_time))
except Exception as e:
print('')
CTRexScenario.stl_init_error = 'Could not start stateless TRex, err: %s' % e
self.fail(CTRexScenario.stl_init_error)
return
if not self.connect():
CTRexScenario.stl_init_error = 'Client could not connect'
self.fail(CTRexScenario.stl_init_error)
return
print('Connected')
if not self.map_ports():
CTRexScenario.stl_init_error = 'Client could not map ports'
self.fail(CTRexScenario.stl_init_error)
return
print('Got ports mapping: %s' % CTRexScenario.stl_ports_map)
#update elk const object
if self.elk:
stl_info = self.stl_trex.get_server_system_info()
setup = CTRexScenario.elk_info['info']['setup']
setup['drv-name'] = stl_info['ports'][0]['driver']
setup['nic-ports'] = stl_info['port_count']
setup['nic-speed'] = str(self.stl_trex.get_port_info(0))
|