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
|
##############################################################################
# Copyright (c) 2017 ZTE Corp and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
import os
import pytest
from deepdiff import DeepDiff
from deploy.get_conf import (
get_yml_para,
config
)
@pytest.fixture(scope="session")
def conf_file_dir(data_root):
return os.path.join(data_root, 'lab_conf')
@pytest.mark.parametrize('deploy_file_name, expected', [
('deploy_virtual1.yml', (50, 110, 110, 'r00tme', '10.20.11.2', '10.20.11.1', 5)),
('deploy_virtual2.yml', (50, 110, 110, 'r00tme', '10.20.11.2', '10.20.11.1', 1))])
def test_get_yml_para(conf_file_dir, deploy_file_name, expected):
deploy_file = os.path.join(conf_file_dir, deploy_file_name)
assert get_yml_para(deploy_file) == expected
@pytest.mark.parametrize('deploy_file_name, network_file_name, expected', [
('deploy_virtual1.yml', 'network_virtual1.yml',
({'ens8': [{'ip': '', 'name': 'EXTERNAL'}],
'ens3': [{'ip': '', 'name': 'MANAGEMENT'},
{'ip': '', 'name': 'PUBLICAPI'},
{'ip': '', 'name': 'STORAGE'},
{'ip': '', 'name': 'physnet1'}],
'ens9': [{'ip': '', 'name': 'HEARTBEAT'}]},
['computer01', 'computer02', 'controller01', 'controller02', 'controller03'],
{'MANAGEMENT': {'cidr': '10.20.11.0/24', 'gateway': '10.20.11.1',
'ip_ranges': [{'start': '10.20.11.3',
'end': '10.20.11.10'}]},
'STORAGE': {'cidr': '10.20.11.0/24', 'gateway': '10.20.11.1',
'ip_ranges': [{'start': '10.20.11.3',
'end': '10.20.11.10'}]},
'EXTERNAL': {'cidr': '172.10.101.0/24', 'gateway': '172.10.101.1',
'ip_ranges': [{'start': '172.10.101.2',
'end': '172.10.101.20'}],
'network_name': 'admin_external',
'mapping': 'physnet1'},
'PUBLICAPI': {'cidr': '10.20.11.0/24', 'gateway': '10.20.11.1',
'ip_ranges': [{'start': '10.20.11.3',
'end': '10.20.11.10'}]},
'physnet1': {'cidr': '10.20.11.0/24', 'gateway': '10.20.11.1',
'ip_ranges': [{'start': '10.20.11.3',
'end': '10.20.11.10'}]},
'HEARTBEAT': {'cidr': '100.20.11.0/24', 'gateway': '100.20.11.1',
'ip_ranges': [{'start': '100.20.11.3',
'end': '100.20.11.10'}]}},
'10.20.11.11', '/dev/sdb',
{'controller01': [], 'controller02': [], 'controller03': [],
'computer01': [], 'computer02': []})),
('deploy_virtual2.yml', 'network_virtual2.yml',
({'ens8': [{'ip': '', 'name': 'EXTERNAL'}],
'ens3': [{'ip': '', 'name': 'MANAGEMENT'},
{'ip': '', 'name': 'PUBLICAPI'},
{'ip': '', 'name': 'STORAGE'},
{'ip': '', 'name': 'physnet1'}],
'ens9': [{'ip': '', 'name': 'HEARTBEAT'}]},
['all_in_one'],
{'MANAGEMENT': {'cidr': '10.20.11.0/24', 'gateway': '10.20.11.1',
'ip_ranges': [{'start': '10.20.11.3',
'end': '10.20.11.10'}]},
'STORAGE': {'cidr': '10.20.11.0/24', 'gateway': '10.20.11.1',
'ip_ranges': [{'start': '10.20.11.3',
'end': '10.20.11.10'}]},
'EXTERNAL': {'cidr': '172.10.101.0/24', 'gateway': '172.10.101.1',
'ip_ranges': [{'start': '172.10.101.2',
'end': '172.10.101.20'}],
'network_name': 'admin_external',
'mapping': 'physnet1'},
'PUBLICAPI': {'cidr': '10.20.11.0/24', 'gateway': '10.20.11.1',
'ip_ranges': [{'start': '10.20.11.3',
'end': '10.20.11.10'}]},
'physnet1': {'cidr': '10.20.11.0/24', 'gateway': '10.20.11.1',
'ip_ranges': [{'start': '10.20.11.3',
'end': '10.20.11.10'}]},
'HEARTBEAT': {'cidr': '100.20.11.0/24', 'gateway': '100.20.11.1',
'ip_ranges': [{'start': '100.20.11.3',
'end': '100.20.11.10'}]}},
'10.20.11.11', '',
{'all_in_one': []}))])
def test_config(conf_file_dir, deploy_file_name, network_file_name, expected):
deploy_file = os.path.join(conf_file_dir, deploy_file_name)
network_file = os.path.join(conf_file_dir, network_file_name)
result = config(deploy_file, network_file)
assert DeepDiff(result, expected, ignore_order=True) == {}
|