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
|
/*
* This file is open source software, licensed to you under the terms
* of the Apache License, Version 2.0 (the "License"). See the NOTICE file
* distributed with this work for additional information regarding copyright
* ownership. You may not use this file except in compliance with the License.
*
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
/*
* Copyright 2017 Marek Waszkiewicz ( marek.waszkiewicz77@gmail.com )
*/
#define BOOST_TEST_MODULE core
#include <seastar/net/config.hh>
#include <boost/test/included/unit_test.hpp>
#include <exception>
#include <sstream>
using namespace seastar::net;
BOOST_AUTO_TEST_CASE(test_valid_config_with_pci_address) {
std::stringstream ss;
ss << "{eth0: {pci-address: 0000:06:00.0, ip: 192.168.100.10, gateway: 192.168.100.1, netmask: "
"255.255.255.0 } , eth1: {pci-address: 0000:06:00.1, dhcp: true } }";
auto device_configs = parse_config(ss);
// eth0 tests
BOOST_REQUIRE(device_configs.find("eth0") != device_configs.end());
BOOST_REQUIRE_EQUAL(device_configs.at("eth0").hw_cfg.pci_address, "0000:06:00.0");
BOOST_REQUIRE_EQUAL(device_configs.at("eth0").ip_cfg.dhcp, false);
BOOST_REQUIRE_EQUAL(device_configs.at("eth0").ip_cfg.ip, "192.168.100.10");
BOOST_REQUIRE_EQUAL(device_configs.at("eth0").ip_cfg.gateway, "192.168.100.1");
BOOST_REQUIRE_EQUAL(device_configs.at("eth0").ip_cfg.netmask, "255.255.255.0");
// eth1 tests
BOOST_REQUIRE(device_configs.find("eth1") != device_configs.end());
BOOST_REQUIRE_EQUAL(device_configs.at("eth1").hw_cfg.pci_address, "0000:06:00.1");
BOOST_REQUIRE_EQUAL(device_configs.at("eth1").ip_cfg.dhcp, true);
BOOST_REQUIRE_EQUAL(device_configs.at("eth1").ip_cfg.ip, "");
BOOST_REQUIRE_EQUAL(device_configs.at("eth1").ip_cfg.gateway, "");
BOOST_REQUIRE_EQUAL(device_configs.at("eth1").ip_cfg.netmask, "");
}
BOOST_AUTO_TEST_CASE(test_valid_config_with_port_index) {
std::stringstream ss;
ss << "{eth0: {port-index: 0, ip: 192.168.100.10, gateway: 192.168.100.1, netmask: "
"255.255.255.0 } , eth1: {port-index: 1, dhcp: true } }";
auto device_configs = parse_config(ss);
// eth0 tests
BOOST_REQUIRE(device_configs.find("eth0") != device_configs.end());
BOOST_REQUIRE_EQUAL(*device_configs.at("eth0").hw_cfg.port_index, 0u);
BOOST_REQUIRE_EQUAL(device_configs.at("eth0").ip_cfg.dhcp, false);
BOOST_REQUIRE_EQUAL(device_configs.at("eth0").ip_cfg.ip, "192.168.100.10");
BOOST_REQUIRE_EQUAL(device_configs.at("eth0").ip_cfg.gateway, "192.168.100.1");
BOOST_REQUIRE_EQUAL(device_configs.at("eth0").ip_cfg.netmask, "255.255.255.0");
// eth1 tests
BOOST_REQUIRE(device_configs.find("eth1") != device_configs.end());
BOOST_REQUIRE_EQUAL(*device_configs.at("eth1").hw_cfg.port_index, 1u);
BOOST_REQUIRE_EQUAL(device_configs.at("eth1").ip_cfg.dhcp, true);
BOOST_REQUIRE_EQUAL(device_configs.at("eth1").ip_cfg.ip, "");
BOOST_REQUIRE_EQUAL(device_configs.at("eth1").ip_cfg.gateway, "");
BOOST_REQUIRE_EQUAL(device_configs.at("eth1").ip_cfg.netmask, "");
}
BOOST_AUTO_TEST_CASE(test_valid_config_single_device) {
std::stringstream ss;
ss << "eth0: {pci-address: 0000:06:00.0, ip: 192.168.100.10, gateway: 192.168.100.1, netmask: "
"255.255.255.0 }";
auto device_configs = parse_config(ss);
// eth0 tests
BOOST_REQUIRE(device_configs.find("eth0") != device_configs.end());
BOOST_REQUIRE_EQUAL(device_configs.at("eth0").hw_cfg.pci_address, "0000:06:00.0");
BOOST_REQUIRE_EQUAL(device_configs.at("eth0").ip_cfg.dhcp, false);
BOOST_REQUIRE_EQUAL(device_configs.at("eth0").ip_cfg.ip, "192.168.100.10");
BOOST_REQUIRE_EQUAL(device_configs.at("eth0").ip_cfg.gateway, "192.168.100.1");
BOOST_REQUIRE_EQUAL(device_configs.at("eth0").ip_cfg.netmask, "255.255.255.0");
}
BOOST_AUTO_TEST_CASE(test_unsupported_key) {
std::stringstream ss;
ss << "{eth0: { some_not_supported_tag: xxx, pci-address: 0000:06:00.0, ip: 192.168.100.10, "
"gateway: 192.168.100.1, netmask: 255.255.255.0 } , eth1: {pci-address: 0000:06:00.1, "
"dhcp: true } }";
BOOST_REQUIRE_THROW(parse_config(ss), config_exception);
}
BOOST_AUTO_TEST_CASE(test_bad_yaml_syntax_if_thrown) {
std::stringstream ss;
ss << "some bad: [ yaml syntax }";
BOOST_REQUIRE_THROW(parse_config(ss), std::runtime_error);
}
BOOST_AUTO_TEST_CASE(test_pci_address_and_port_index_if_thrown) {
std::stringstream ss;
ss << "{eth0: {pci-address: 0000:06:00.0, port-index: 0, ip: 192.168.100.10, gateway: "
"192.168.100.1, netmask: 255.255.255.0 } , eth1: {pci-address: 0000:06:00.1, dhcp: true} "
"}";
BOOST_REQUIRE_THROW(parse_config(ss), config_exception);
}
BOOST_AUTO_TEST_CASE(test_dhcp_and_ip_if_thrown) {
std::stringstream ss;
ss << "{eth0: {pci-address: 0000:06:00.0, ip: 192.168.100.10, gateway: 192.168.100.1, netmask: "
"255.255.255.0, dhcp: true } , eth1: {pci-address: 0000:06:00.1, dhcp: true} }";
BOOST_REQUIRE_THROW(parse_config(ss), config_exception);
}
BOOST_AUTO_TEST_CASE(test_ip_missing_if_thrown) {
std::stringstream ss;
ss << "{eth0: {pci-address: 0000:06:00.0, gateway: 192.168.100.1, netmask: 255.255.255.0 } , "
"eth1: {pci-address: 0000:06:00.1, dhcp: true} }";
BOOST_REQUIRE_THROW(parse_config(ss), config_exception);
}
|