blob: 9f5e7c1c05e89666271f5a04a39937d58bcb6554 [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"),
175 ndn::nfd::FACE_PERSISTENCY_PERSISTENT,
Eric Newberryf40551a2016-09-05 15:41:16 -0700176 false,
Eric Newberry42602412016-08-27 09:33:18 -0700177 {CreateFaceExpectedResult::FAILURE, 504, "No channels available to connect"});
Junxiao Shicde37ad2015-12-24 01:02:05 -0700178
179 factory.createChannel("127.0.0.1", "20071");
180
Eric Newberry42602412016-08-27 09:33:18 -0700181 createFace(factory,
182 FaceUri("tcp4://127.0.0.1:20070"),
183 ndn::nfd::FACE_PERSISTENCY_PERSISTENT,
Eric Newberryf40551a2016-09-05 15:41:16 -0700184 false,
Eric Newberry42602412016-08-27 09:33:18 -0700185 {CreateFaceExpectedResult::SUCCESS, 0, ""});
Junxiao Shicde37ad2015-12-24 01:02:05 -0700186}
187
188BOOST_AUTO_TEST_CASE(UnsupportedFaceCreate)
189{
190 TcpFactory factory;
191
192 factory.createChannel("127.0.0.1", "20070");
193 factory.createChannel("127.0.0.1", "20071");
194
Eric Newberry42602412016-08-27 09:33:18 -0700195 createFace(factory,
196 FaceUri("tcp4://127.0.0.1:20070"),
197 ndn::nfd::FACE_PERSISTENCY_PERMANENT,
Eric Newberryf40551a2016-09-05 15:41:16 -0700198 false,
Eric Newberry42602412016-08-27 09:33:18 -0700199 {CreateFaceExpectedResult::FAILURE, 406,
200 "Outgoing TCP faces only support persistent persistency"});
Junxiao Shicde37ad2015-12-24 01:02:05 -0700201
Eric Newberry42602412016-08-27 09:33:18 -0700202 createFace(factory,
203 FaceUri("tcp4://127.0.0.1:20071"),
204 ndn::nfd::FACE_PERSISTENCY_ON_DEMAND,
Eric Newberryf40551a2016-09-05 15:41:16 -0700205 false,
Eric Newberry42602412016-08-27 09:33:18 -0700206 {CreateFaceExpectedResult::FAILURE, 406,
207 "Outgoing TCP faces only support persistent persistency"});
Junxiao Shicde37ad2015-12-24 01:02:05 -0700208}
209
210class FaceCreateTimeoutFixture : public BaseFixture
211{
212public:
213 void
214 onFaceCreated(const shared_ptr<Face>& newFace)
215 {
216 BOOST_CHECK_MESSAGE(false, "Timeout expected");
217 BOOST_CHECK(!static_cast<bool>(face1));
218 face1 = newFace;
219
220 limitedIo.afterOp();
221 }
222
223 void
224 onConnectFailed(const std::string& reason)
225 {
226 BOOST_CHECK_MESSAGE(true, reason);
227
228 limitedIo.afterOp();
229 }
230
231public:
232 LimitedIo limitedIo;
233
234 shared_ptr<Face> face1;
235};
236
237BOOST_FIXTURE_TEST_CASE(FaceCreateTimeout, FaceCreateTimeoutFixture)
238{
239 TcpFactory factory;
240 shared_ptr<TcpChannel> channel = factory.createChannel("0.0.0.0", "20070");
241
242 factory.createFace(FaceUri("tcp4://192.0.2.1:20070"),
243 ndn::nfd::FACE_PERSISTENCY_PERSISTENT,
Eric Newberryf40551a2016-09-05 15:41:16 -0700244 false,
Junxiao Shicde37ad2015-12-24 01:02:05 -0700245 bind(&FaceCreateTimeoutFixture::onFaceCreated, this, _1),
Eric Newberry42602412016-08-27 09:33:18 -0700246 bind(&FaceCreateTimeoutFixture::onConnectFailed, this, _2));
Junxiao Shicde37ad2015-12-24 01:02:05 -0700247
248 BOOST_CHECK_MESSAGE(limitedIo.run(1, time::seconds(10)) == LimitedIo::EXCEED_OPS,
249 "TcpChannel error: cannot connect or cannot accept connection");
250
251 BOOST_CHECK_EQUAL(static_cast<bool>(face1), false);
252}
253
254class FakeNetworkInterfaceFixture : public BaseFixture
255{
256public:
257 FakeNetworkInterfaceFixture()
258 {
259 using namespace boost::asio::ip;
260
261 auto fakeInterfaces = make_shared<std::vector<NetworkInterfaceInfo>>();
262
263 fakeInterfaces->push_back(
264 NetworkInterfaceInfo {0, "eth0",
265 ethernet::Address::fromString("3e:15:c2:8b:65:00"),
266 {address_v4::from_string("0.0.0.0")},
267 {address_v6::from_string("::")},
268 address_v4(),
269 IFF_UP});
270 fakeInterfaces->push_back(
271 NetworkInterfaceInfo {1, "eth0",
272 ethernet::Address::fromString("3e:15:c2:8b:65:00"),
273 {address_v4::from_string("192.168.2.1"), address_v4::from_string("192.168.2.2")},
274 {},
275 address_v4::from_string("192.168.2.255"),
276 0});
277 fakeInterfaces->push_back(
278 NetworkInterfaceInfo {2, "eth1",
279 ethernet::Address::fromString("3e:15:c2:8b:65:00"),
280 {address_v4::from_string("198.51.100.1")},
281 {address_v6::from_string("2001:db8::2"), address_v6::from_string("2001:db8::3")},
282 address_v4::from_string("198.51.100.255"),
283 IFF_MULTICAST | IFF_BROADCAST | IFF_UP});
284
285 setDebugNetworkInterfaces(fakeInterfaces);
286 }
287
288 ~FakeNetworkInterfaceFixture()
289 {
290 setDebugNetworkInterfaces(nullptr);
291 }
292};
293
294BOOST_FIXTURE_TEST_CASE(Bug2292, FakeNetworkInterfaceFixture)
295{
296 using namespace boost::asio::ip;
297
298 TcpFactory factory;
299 factory.prohibitEndpoint(tcp::Endpoint(address_v4::from_string("192.168.2.1"), 1024));
300 BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 1);
301 BOOST_CHECK((factory.m_prohibitedEndpoints ==
302 std::set<tcp::Endpoint> {
303 tcp::Endpoint(address_v4::from_string("192.168.2.1"), 1024),
304 }));
305
306 factory.m_prohibitedEndpoints.clear();
307 factory.prohibitEndpoint(tcp::Endpoint(address_v6::from_string("2001:db8::1"), 2048));
308 BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 1);
309 BOOST_CHECK((factory.m_prohibitedEndpoints ==
310 std::set<tcp::Endpoint> {
311 tcp::Endpoint(address_v6::from_string("2001:db8::1"), 2048)
312 }));
313
314 factory.m_prohibitedEndpoints.clear();
315 factory.prohibitEndpoint(tcp::Endpoint(address_v4(), 1024));
316 BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 4);
317 BOOST_CHECK((factory.m_prohibitedEndpoints ==
318 std::set<tcp::Endpoint> {
319 tcp::Endpoint(address_v4::from_string("192.168.2.1"), 1024),
320 tcp::Endpoint(address_v4::from_string("192.168.2.2"), 1024),
321 tcp::Endpoint(address_v4::from_string("198.51.100.1"), 1024),
322 tcp::Endpoint(address_v4::from_string("0.0.0.0"), 1024)
323 }));
324
325 factory.m_prohibitedEndpoints.clear();
326 factory.prohibitEndpoint(tcp::Endpoint(address_v6(), 2048));
327 BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 3);
328 BOOST_CHECK((factory.m_prohibitedEndpoints ==
329 std::set<tcp::Endpoint> {
330 tcp::Endpoint(address_v6::from_string("2001:db8::2"), 2048),
331 tcp::Endpoint(address_v6::from_string("2001:db8::3"), 2048),
332 tcp::Endpoint(address_v6::from_string("::"), 2048)
333 }));
334}
335
336BOOST_AUTO_TEST_SUITE_END() // TestTcpFactory
337BOOST_AUTO_TEST_SUITE_END() // Face
338
339} // namespace tests
Junxiao Shi38b24c72017-01-05 02:59:31 +0000340} // namespace face
Junxiao Shicde37ad2015-12-24 01:02:05 -0700341} // namespace nfd