blob: d3f5fc9cb0dab45776ffa46c7edeffb480023913 [file] [log] [blame]
Junxiao Shicde37ad2015-12-24 01:02:05 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shi38b24c72017-01-05 02:59:31 +00003 * Copyright (c) 2014-2017, Regents of the University of California,
Junxiao Shicde37ad2015-12-24 01:02:05 -07004 * Arizona Board of Regents,
5 * Colorado State University,
6 * University Pierre & Marie Curie, Sorbonne University,
7 * Washington University in St. Louis,
8 * Beijing Institute of Technology,
9 * The University of Memphis.
10 *
11 * This file is part of NFD (Named Data Networking Forwarding Daemon).
12 * See AUTHORS.md for complete list of NFD authors and contributors.
13 *
14 * NFD is free software: you can redistribute it and/or modify it under the terms
15 * of the GNU General Public License as published by the Free Software Foundation,
16 * either version 3 of the License, or (at your option) any later version.
17 *
18 * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
19 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
20 * PURPOSE. See the GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License along with
23 * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
24 */
25
26#include "face/tcp-factory.hpp"
27
Eric Newberry42602412016-08-27 09:33:18 -070028#include "factory-test-common.hpp"
Junxiao Shi38b24c72017-01-05 02:59:31 +000029#include "face-system-fixture.hpp"
Junxiao Shicde37ad2015-12-24 01:02:05 -070030#include "tests/limited-io.hpp"
31
32namespace nfd {
Junxiao Shi38b24c72017-01-05 02:59:31 +000033namespace face {
Junxiao Shicde37ad2015-12-24 01:02:05 -070034namespace tests {
35
Junxiao Shi38b24c72017-01-05 02:59:31 +000036using namespace nfd::tests;
37
Junxiao Shicde37ad2015-12-24 01:02:05 -070038BOOST_AUTO_TEST_SUITE(Face)
39BOOST_FIXTURE_TEST_SUITE(TestTcpFactory, BaseFixture)
40
41using nfd::Face;
42
Junxiao Shi38b24c72017-01-05 02:59:31 +000043BOOST_FIXTURE_TEST_SUITE(ProcessConfig, FaceSystemFixture)
44
45BOOST_AUTO_TEST_CASE(Normal)
46{
47 const std::string CONFIG = R"CONFIG(
48 face_system
49 {
50 tcp
51 {
52 listen yes
53 port 16363
54 enable_v4 yes
55 enable_v6 yes
56 }
57 }
58 )CONFIG";
59
Junxiao Shi1b65ca12017-01-21 23:04:41 +000060 parseConfig(CONFIG, true);
61 parseConfig(CONFIG, false);
Junxiao Shi38b24c72017-01-05 02:59:31 +000062
63 auto& factory = this->getFactoryById<TcpFactory>("tcp");
64 BOOST_CHECK_EQUAL(factory.getChannels().size(), 2);
65}
66
67BOOST_AUTO_TEST_CASE(Omitted)
68{
69 const std::string CONFIG = R"CONFIG(
70 face_system
71 {
72 }
73 )CONFIG";
74
Junxiao Shi1b65ca12017-01-21 23:04:41 +000075 parseConfig(CONFIG, true);
76 parseConfig(CONFIG, false);
Junxiao Shi38b24c72017-01-05 02:59:31 +000077
78 auto& factory = this->getFactoryById<TcpFactory>("tcp");
79 BOOST_CHECK_EQUAL(factory.getChannels().size(), 0);
80}
81
82BOOST_AUTO_TEST_CASE(BadListen)
83{
84 const std::string CONFIG = R"CONFIG(
85 face_system
86 {
87 tcp
88 {
89 listen hello
90 }
91 }
92 )CONFIG";
93
94 BOOST_CHECK_THROW(parseConfig(CONFIG, true), ConfigFile::Error);
95 BOOST_CHECK_THROW(parseConfig(CONFIG, false), ConfigFile::Error);
96}
97
98BOOST_AUTO_TEST_CASE(ChannelsDisabled)
99{
100 const std::string CONFIG = R"CONFIG(
101 face_system
102 {
103 tcp
104 {
105 port 6363
106 enable_v4 no
107 enable_v6 no
108 }
109 }
110 )CONFIG";
111
112 BOOST_CHECK_THROW(parseConfig(CONFIG, true), ConfigFile::Error);
113 BOOST_CHECK_THROW(parseConfig(CONFIG, false), ConfigFile::Error);
114}
115
116BOOST_AUTO_TEST_CASE(UnknownOption)
117{
118 const std::string CONFIG = R"CONFIG(
119 face_system
120 {
121 tcp
122 {
123 hello
124 }
125 }
126 )CONFIG";
127
128 BOOST_CHECK_THROW(parseConfig(CONFIG, true), ConfigFile::Error);
129 BOOST_CHECK_THROW(parseConfig(CONFIG, false), ConfigFile::Error);
130}
131
132BOOST_AUTO_TEST_SUITE_END() // ProcessConfig
133
Junxiao Shicde37ad2015-12-24 01:02:05 -0700134BOOST_AUTO_TEST_CASE(ChannelMap)
135{
136 TcpFactory factory;
137
138 shared_ptr<TcpChannel> channel1 = factory.createChannel("127.0.0.1", "20070");
139 shared_ptr<TcpChannel> channel1a = factory.createChannel("127.0.0.1", "20070");
140 BOOST_CHECK_EQUAL(channel1, channel1a);
141 BOOST_CHECK_EQUAL(channel1->getUri().toString(), "tcp4://127.0.0.1:20070");
142
143 shared_ptr<TcpChannel> channel2 = factory.createChannel("127.0.0.1", "20071");
144 BOOST_CHECK_NE(channel1, channel2);
145
146 shared_ptr<TcpChannel> channel3 = factory.createChannel("::1", "20071");
147 BOOST_CHECK_NE(channel2, channel3);
148 BOOST_CHECK_EQUAL(channel3->getUri().toString(), "tcp6://[::1]:20071");
149}
150
151BOOST_AUTO_TEST_CASE(GetChannels)
152{
153 TcpFactory factory;
154 BOOST_REQUIRE_EQUAL(factory.getChannels().empty(), true);
155
156 std::vector<shared_ptr<const Channel>> expectedChannels;
157 expectedChannels.push_back(factory.createChannel("127.0.0.1", "20070"));
158 expectedChannels.push_back(factory.createChannel("127.0.0.1", "20071"));
159 expectedChannels.push_back(factory.createChannel("::1", "20071"));
160
161 for (const auto& ch : factory.getChannels()) {
162 auto pos = std::find(expectedChannels.begin(), expectedChannels.end(), ch);
163 BOOST_REQUIRE(pos != expectedChannels.end());
164 expectedChannels.erase(pos);
165 }
166 BOOST_CHECK_EQUAL(expectedChannels.size(), 0);
167}
168
Eric Newberry42602412016-08-27 09:33:18 -0700169BOOST_AUTO_TEST_CASE(FaceCreate)
Junxiao Shicde37ad2015-12-24 01:02:05 -0700170{
171 TcpFactory factory;
172
Eric Newberry42602412016-08-27 09:33:18 -0700173 createFace(factory,
174 FaceUri("tcp4://127.0.0.1:6363"),
Eric Newberry78e32b02017-04-01 14:34:44 +0000175 {},
Eric Newberry42602412016-08-27 09:33:18 -0700176 ndn::nfd::FACE_PERSISTENCY_PERSISTENT,
Eric Newberryf40551a2016-09-05 15:41:16 -0700177 false,
Eric Newberry42602412016-08-27 09:33:18 -0700178 {CreateFaceExpectedResult::FAILURE, 504, "No channels available to connect"});
Junxiao Shicde37ad2015-12-24 01:02:05 -0700179
180 factory.createChannel("127.0.0.1", "20071");
181
Eric Newberry42602412016-08-27 09:33:18 -0700182 createFace(factory,
Eric Newberry78e32b02017-04-01 14:34:44 +0000183 FaceUri("tcp4://127.0.0.1:6363"),
184 {},
Eric Newberry42602412016-08-27 09:33:18 -0700185 ndn::nfd::FACE_PERSISTENCY_PERSISTENT,
Eric Newberryf40551a2016-09-05 15:41:16 -0700186 false,
Eric Newberry42602412016-08-27 09:33:18 -0700187 {CreateFaceExpectedResult::SUCCESS, 0, ""});
Davide Pesaventoa3c9ddb2017-04-10 22:15:24 -0400188
189 createFace(factory,
190 FaceUri("tcp4://127.0.0.1:6363"),
191 {},
192 ndn::nfd::FACE_PERSISTENCY_PERMANENT,
193 false,
194 {CreateFaceExpectedResult::SUCCESS, 0, ""});
195
196 createFace(factory,
197 FaceUri("tcp4://127.0.0.1:20072"),
198 {},
199 ndn::nfd::FACE_PERSISTENCY_PERMANENT,
200 false,
201 {CreateFaceExpectedResult::SUCCESS, 0, ""});
Junxiao Shicde37ad2015-12-24 01:02:05 -0700202}
203
204BOOST_AUTO_TEST_CASE(UnsupportedFaceCreate)
205{
206 TcpFactory factory;
207
Junxiao Shicde37ad2015-12-24 01:02:05 -0700208 factory.createChannel("127.0.0.1", "20071");
Eric Newberry78e32b02017-04-01 14:34:44 +0000209 factory.createChannel("127.0.0.1", "20072");
Junxiao Shicde37ad2015-12-24 01:02:05 -0700210
Eric Newberry42602412016-08-27 09:33:18 -0700211 createFace(factory,
Eric Newberry42602412016-08-27 09:33:18 -0700212 FaceUri("tcp4://127.0.0.1:20071"),
Eric Newberry78e32b02017-04-01 14:34:44 +0000213 {},
Eric Newberry42602412016-08-27 09:33:18 -0700214 ndn::nfd::FACE_PERSISTENCY_ON_DEMAND,
Eric Newberryf40551a2016-09-05 15:41:16 -0700215 false,
Eric Newberry42602412016-08-27 09:33:18 -0700216 {CreateFaceExpectedResult::FAILURE, 406,
Davide Pesaventoa3c9ddb2017-04-10 22:15:24 -0400217 "Outgoing TCP faces do not support on-demand persistency"});
Eric Newberry78e32b02017-04-01 14:34:44 +0000218
219 createFace(factory,
220 FaceUri("tcp4://127.0.0.1:20072"),
Davide Pesaventoa3c9ddb2017-04-10 22:15:24 -0400221 FaceUri("tcp4://127.0.0.1:20073"),
Eric Newberry78e32b02017-04-01 14:34:44 +0000222 ndn::nfd::FACE_PERSISTENCY_PERSISTENT,
223 false,
224 {CreateFaceExpectedResult::FAILURE, 406,
225 "Unicast TCP faces cannot be created with a LocalUri"});
Junxiao Shicde37ad2015-12-24 01:02:05 -0700226}
227
228class FaceCreateTimeoutFixture : public BaseFixture
229{
230public:
231 void
232 onFaceCreated(const shared_ptr<Face>& newFace)
233 {
234 BOOST_CHECK_MESSAGE(false, "Timeout expected");
Davide Pesaventoa3c9ddb2017-04-10 22:15:24 -0400235 face = newFace;
Junxiao Shicde37ad2015-12-24 01:02:05 -0700236
237 limitedIo.afterOp();
238 }
239
240 void
241 onConnectFailed(const std::string& reason)
242 {
243 BOOST_CHECK_MESSAGE(true, reason);
244
245 limitedIo.afterOp();
246 }
247
248public:
249 LimitedIo limitedIo;
Davide Pesaventoa3c9ddb2017-04-10 22:15:24 -0400250 shared_ptr<Face> face;
Junxiao Shicde37ad2015-12-24 01:02:05 -0700251};
252
253BOOST_FIXTURE_TEST_CASE(FaceCreateTimeout, FaceCreateTimeoutFixture)
254{
255 TcpFactory factory;
Davide Pesaventoa3c9ddb2017-04-10 22:15:24 -0400256 factory.createChannel("0.0.0.0", "20070");
Junxiao Shicde37ad2015-12-24 01:02:05 -0700257
258 factory.createFace(FaceUri("tcp4://192.0.2.1:20070"),
Eric Newberry78e32b02017-04-01 14:34:44 +0000259 {},
Junxiao Shicde37ad2015-12-24 01:02:05 -0700260 ndn::nfd::FACE_PERSISTENCY_PERSISTENT,
Eric Newberryf40551a2016-09-05 15:41:16 -0700261 false,
Junxiao Shicde37ad2015-12-24 01:02:05 -0700262 bind(&FaceCreateTimeoutFixture::onFaceCreated, this, _1),
Eric Newberry42602412016-08-27 09:33:18 -0700263 bind(&FaceCreateTimeoutFixture::onConnectFailed, this, _2));
Junxiao Shicde37ad2015-12-24 01:02:05 -0700264
Davide Pesaventoa3c9ddb2017-04-10 22:15:24 -0400265 BOOST_REQUIRE_EQUAL(limitedIo.run(1, time::seconds(10)), LimitedIo::EXCEED_OPS);
266 BOOST_CHECK(face == nullptr);
Junxiao Shicde37ad2015-12-24 01:02:05 -0700267}
268
269class FakeNetworkInterfaceFixture : public BaseFixture
270{
271public:
272 FakeNetworkInterfaceFixture()
273 {
274 using namespace boost::asio::ip;
275
276 auto fakeInterfaces = make_shared<std::vector<NetworkInterfaceInfo>>();
277
278 fakeInterfaces->push_back(
279 NetworkInterfaceInfo {0, "eth0",
280 ethernet::Address::fromString("3e:15:c2:8b:65:00"),
281 {address_v4::from_string("0.0.0.0")},
282 {address_v6::from_string("::")},
283 address_v4(),
284 IFF_UP});
285 fakeInterfaces->push_back(
286 NetworkInterfaceInfo {1, "eth0",
287 ethernet::Address::fromString("3e:15:c2:8b:65:00"),
288 {address_v4::from_string("192.168.2.1"), address_v4::from_string("192.168.2.2")},
289 {},
290 address_v4::from_string("192.168.2.255"),
291 0});
292 fakeInterfaces->push_back(
293 NetworkInterfaceInfo {2, "eth1",
294 ethernet::Address::fromString("3e:15:c2:8b:65:00"),
295 {address_v4::from_string("198.51.100.1")},
296 {address_v6::from_string("2001:db8::2"), address_v6::from_string("2001:db8::3")},
297 address_v4::from_string("198.51.100.255"),
298 IFF_MULTICAST | IFF_BROADCAST | IFF_UP});
299
300 setDebugNetworkInterfaces(fakeInterfaces);
301 }
302
303 ~FakeNetworkInterfaceFixture()
304 {
305 setDebugNetworkInterfaces(nullptr);
306 }
307};
308
309BOOST_FIXTURE_TEST_CASE(Bug2292, FakeNetworkInterfaceFixture)
310{
311 using namespace boost::asio::ip;
312
313 TcpFactory factory;
314 factory.prohibitEndpoint(tcp::Endpoint(address_v4::from_string("192.168.2.1"), 1024));
315 BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 1);
316 BOOST_CHECK((factory.m_prohibitedEndpoints ==
317 std::set<tcp::Endpoint> {
318 tcp::Endpoint(address_v4::from_string("192.168.2.1"), 1024),
319 }));
320
321 factory.m_prohibitedEndpoints.clear();
322 factory.prohibitEndpoint(tcp::Endpoint(address_v6::from_string("2001:db8::1"), 2048));
323 BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 1);
324 BOOST_CHECK((factory.m_prohibitedEndpoints ==
325 std::set<tcp::Endpoint> {
326 tcp::Endpoint(address_v6::from_string("2001:db8::1"), 2048)
327 }));
328
329 factory.m_prohibitedEndpoints.clear();
330 factory.prohibitEndpoint(tcp::Endpoint(address_v4(), 1024));
331 BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 4);
332 BOOST_CHECK((factory.m_prohibitedEndpoints ==
333 std::set<tcp::Endpoint> {
334 tcp::Endpoint(address_v4::from_string("192.168.2.1"), 1024),
335 tcp::Endpoint(address_v4::from_string("192.168.2.2"), 1024),
336 tcp::Endpoint(address_v4::from_string("198.51.100.1"), 1024),
337 tcp::Endpoint(address_v4::from_string("0.0.0.0"), 1024)
338 }));
339
340 factory.m_prohibitedEndpoints.clear();
341 factory.prohibitEndpoint(tcp::Endpoint(address_v6(), 2048));
342 BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 3);
343 BOOST_CHECK((factory.m_prohibitedEndpoints ==
344 std::set<tcp::Endpoint> {
345 tcp::Endpoint(address_v6::from_string("2001:db8::2"), 2048),
346 tcp::Endpoint(address_v6::from_string("2001:db8::3"), 2048),
347 tcp::Endpoint(address_v6::from_string("::"), 2048)
348 }));
349}
350
351BOOST_AUTO_TEST_SUITE_END() // TestTcpFactory
352BOOST_AUTO_TEST_SUITE_END() // Face
353
354} // namespace tests
Junxiao Shi38b24c72017-01-05 02:59:31 +0000355} // namespace face
Junxiao Shicde37ad2015-12-24 01:02:05 -0700356} // namespace nfd