Newer
Older
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
import copy, logging, pytest
from device.service.drivers.emulated.EmulatedDriver import EmulatedDriver
LOGGER = logging.getLogger(__name__)
LOGGER.setLevel(logging.DEBUG)
PATH_IF = '/interfaces/interface[name="{}"]'
PATH_SUBIF = PATH_IF + '/subinterfaces/subinterface[index="{}"]'
PATH_ADDRIPV4 = PATH_SUBIF + '/ipv4/address[ip="{}"]'
DEVICE_CONFIG_IF1 = []
DEVICE_CONFIG_IF1.append((PATH_IF .format('IF1' ) + '/config/name', "IF1" ))
DEVICE_CONFIG_IF1.append((PATH_IF .format('IF1' ) + '/config/enabled', True ))
DEVICE_CONFIG_IF1.append((PATH_SUBIF .format('IF1', 0 ) + '/config/index', 0 ))
DEVICE_CONFIG_IF1.append((PATH_ADDRIPV4.format('IF1', 0, '10.1.0.1') + '/config/ip', "10.1.0.1"))
DEVICE_CONFIG_IF1.append((PATH_ADDRIPV4.format('IF1', 0, '10.1.0.1') + '/config/prefix_length', 24 ))
DEVICE_CONFIG_IF2 = []
DEVICE_CONFIG_IF2.append((PATH_IF .format('IF2' ) + '/config/name', "IF2" ))
DEVICE_CONFIG_IF2.append((PATH_IF .format('IF2' ) + '/config/enabled', True ))
DEVICE_CONFIG_IF2.append((PATH_SUBIF .format('IF2', 0 ) + '/config/index', 0 ))
DEVICE_CONFIG_IF2.append((PATH_ADDRIPV4.format('IF2', 0, '10.2.0.1') + '/config/ip', "10.2.0.1"))
DEVICE_CONFIG_IF2.append((PATH_ADDRIPV4.format('IF2', 0, '10.2.0.1') + '/config/prefix_length', 24 ))
@pytest.fixture(scope='session')
def device_driverapi_emulated():
_driver = EmulatedDriver('127.0.0.1', 0)
_driver.Connect()
yield _driver
_driver.Disconnect()
def test_device_driverapi_emulated_setconfig(device_driverapi_emulated : EmulatedDriver):
# should work
results = device_driverapi_emulated.SetConfig(DEVICE_CONFIG_IF1)
LOGGER.info('results:\n{}'.format('\n'.join(map(str, results))))
assert len(results) == len(DEVICE_CONFIG_IF1)
for result in results: assert isinstance(result, bool) and result
results = device_driverapi_emulated.SetConfig(DEVICE_CONFIG_IF2)
LOGGER.info('results:\n{}'.format('\n'.join(map(str, results))))
assert len(results) == len(DEVICE_CONFIG_IF2)
for result in results: assert isinstance(result, bool) and result
def test_device_driverapi_emulated_getconfig(device_driverapi_emulated : EmulatedDriver):
stored_config = device_driverapi_emulated.GetConfig()
LOGGER.info('stored_config:\n{}'.format('\n'.join(map(str, stored_config))))
assert len(stored_config) == len(DEVICE_CONFIG_IF1) + len(DEVICE_CONFIG_IF2)
for config_row in stored_config: assert (config_row in DEVICE_CONFIG_IF1) or (config_row in DEVICE_CONFIG_IF2)
for config_row in DEVICE_CONFIG_IF1: assert config_row in stored_config
for config_row in DEVICE_CONFIG_IF2: assert config_row in stored_config
# should work
stored_config = device_driverapi_emulated.GetConfig([PATH_IF.format('IF2')])
LOGGER.info('stored_config:\n{}'.format('\n'.join(map(str, stored_config))))
assert len(stored_config) == 1
stored_config = stored_config[0]
LOGGER.info('stored_config[0]:\n{}'.format('\n'.join(map(str, stored_config))))
assert len(stored_config) == len(DEVICE_CONFIG_IF2)
for config_row in stored_config: assert config_row in DEVICE_CONFIG_IF2
for config_row in DEVICE_CONFIG_IF2: assert config_row in stored_config
def test_device_driverapi_emulated_deleteconfig(device_driverapi_emulated : EmulatedDriver):
# should work
results = device_driverapi_emulated.DeleteConfig([PATH_ADDRIPV4.format('IF2', 0, '10.2.0.1')])
LOGGER.info('results:\n{}'.format('\n'.join(map(str, results))))
assert (len(results) == 1) and isinstance(results[0], bool) and results[0]
stored_config = device_driverapi_emulated.GetConfig()
LOGGER.info('stored_config:\n{}'.format('\n'.join(map(str, stored_config))))
device_config_if2 = list(filter(lambda row: '10.2.0.1' not in row[0], copy.deepcopy(DEVICE_CONFIG_IF2)))
assert len(stored_config) == len(DEVICE_CONFIG_IF1) + len(device_config_if2)
for config_row in stored_config: assert (config_row in DEVICE_CONFIG_IF1) or (config_row in device_config_if2)
for config_row in DEVICE_CONFIG_IF1: assert config_row in stored_config
for config_row in device_config_if2: assert config_row in stored_config