blob: c00f54f525128457680b6aab72f565de83fdbfd3 [file] [log] [blame]
Giulio Grassi624f6c62014-02-18 19:42:14 +01001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Alexander Afanasyev319f2c82015-01-07 14:56:53 -08003 * Copyright (c) 2014-2015, Regents of the University of California,
4 * 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.
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -070010 *
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/>.
Steve DiBenedettoef04f272014-06-04 14:28:31 -060024 */
Giulio Grassi624f6c62014-02-18 19:42:14 +010025
Davide Pesavento6ad890a2015-03-09 03:43:17 +010026#include "face/udp-channel.hpp"
27#include "face/udp-face.hpp"
Giulio Grassi624f6c62014-02-18 19:42:14 +010028#include "face/udp-factory.hpp"
Junxiao Shi7e2413b2014-03-02 11:15:09 -070029
Davide Pesavento6ad890a2015-03-09 03:43:17 +010030#include "core/network-interface.hpp"
Junxiao Shi7e2413b2014-03-02 11:15:09 -070031#include "tests/test-common.hpp"
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070032#include "tests/limited-io.hpp"
Chengyu Fan4381fb62015-01-14 11:37:04 -070033#include "face-history.hpp"
Giulio Grassi624f6c62014-02-18 19:42:14 +010034
35namespace nfd {
36namespace tests {
37
38BOOST_FIXTURE_TEST_SUITE(FaceUdp, BaseFixture)
39
Steve DiBenedettoef04f272014-06-04 14:28:31 -060040BOOST_AUTO_TEST_CASE(GetChannels)
41{
42 UdpFactory factory;
43 BOOST_REQUIRE_EQUAL(factory.getChannels().empty(), true);
44
45 std::vector<shared_ptr<const Channel> > expectedChannels;
46
47 expectedChannels.push_back(factory.createChannel("127.0.0.1", "20070"));
48 expectedChannels.push_back(factory.createChannel("127.0.0.1", "20071"));
49 expectedChannels.push_back(factory.createChannel("::1", "20071"));
50
51 std::list<shared_ptr<const Channel> > channels = factory.getChannels();
52 for (std::list<shared_ptr<const Channel> >::const_iterator i = channels.begin();
53 i != channels.end(); ++i)
54 {
55 std::vector<shared_ptr<const Channel> >::iterator pos =
56 std::find(expectedChannels.begin(), expectedChannels.end(), *i);
57
58 BOOST_REQUIRE(pos != expectedChannels.end());
59 expectedChannels.erase(pos);
60 }
61
62 BOOST_CHECK_EQUAL(expectedChannels.size(), 0);
63}
64
Giulio Grassi624f6c62014-02-18 19:42:14 +010065class FactoryErrorCheck : protected BaseFixture
66{
67public:
Alexander Afanasyev86bc91a2014-08-28 22:29:16 -070068 bool
69 isTheSameMulticastEndpoint(const UdpFactory::Error& e) {
Giulio Grassi624f6c62014-02-18 19:42:14 +010070 return strcmp(e.what(),
71 "Cannot create the requested UDP unicast channel, local "
72 "endpoint is already allocated for a UDP multicast face") == 0;
73 }
Junxiao Shi7e2413b2014-03-02 11:15:09 -070074
Alexander Afanasyev86bc91a2014-08-28 22:29:16 -070075 bool
76 isNotMulticastAddress(const UdpFactory::Error& e) {
Giulio Grassi624f6c62014-02-18 19:42:14 +010077 return strcmp(e.what(),
78 "Cannot create the requested UDP multicast face, "
79 "the multicast group given as input is not a multicast address") == 0;
80 }
Junxiao Shi7e2413b2014-03-02 11:15:09 -070081
Alexander Afanasyev86bc91a2014-08-28 22:29:16 -070082 bool
83 isTheSameUnicastEndpoint(const UdpFactory::Error& e) {
Giulio Grassi624f6c62014-02-18 19:42:14 +010084 return strcmp(e.what(),
85 "Cannot create the requested UDP multicast face, local "
86 "endpoint is already allocated for a UDP unicast channel") == 0;
87 }
Junxiao Shi7e2413b2014-03-02 11:15:09 -070088
Alexander Afanasyev86bc91a2014-08-28 22:29:16 -070089 bool
90 isLocalEndpointOnDifferentGroup(const UdpFactory::Error& e) {
Giulio Grassi624f6c62014-02-18 19:42:14 +010091 return strcmp(e.what(),
92 "Cannot create the requested UDP multicast face, local "
93 "endpoint is already allocated for a UDP multicast face "
94 "on a different multicast group") == 0;
95 }
96};
Junxiao Shi7e2413b2014-03-02 11:15:09 -070097
Giulio Grassi624f6c62014-02-18 19:42:14 +010098BOOST_FIXTURE_TEST_CASE(ChannelMapUdp, FactoryErrorCheck)
99{
100 using boost::asio::ip::udp;
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700101
Giulio Grassi624f6c62014-02-18 19:42:14 +0100102 UdpFactory factory = UdpFactory();
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700103
Giulio Grassi624f6c62014-02-18 19:42:14 +0100104 //to instantiate multicast face on a specific ip address, change interfaceIp
105 std::string interfaceIp = "0.0.0.0";
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700106
Giulio Grassi624f6c62014-02-18 19:42:14 +0100107 shared_ptr<UdpChannel> channel1 = factory.createChannel("127.0.0.1", "20070");
108 shared_ptr<UdpChannel> channel1a = factory.createChannel("127.0.0.1", "20070");
109 BOOST_CHECK_EQUAL(channel1, channel1a);
Junxiao Shi61e3cc52014-03-03 20:40:28 -0700110 BOOST_CHECK_EQUAL(channel1->getUri().toString(), "udp4://127.0.0.1:20070");
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700111
Giulio Grassi624f6c62014-02-18 19:42:14 +0100112 shared_ptr<UdpChannel> channel2 = factory.createChannel("127.0.0.1", "20071");
113 BOOST_CHECK_NE(channel1, channel2);
114
115 shared_ptr<UdpChannel> channel3 = factory.createChannel(interfaceIp, "20070");
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700116
Junxiao Shi61e3cc52014-03-03 20:40:28 -0700117 shared_ptr<UdpChannel> channel4 = factory.createChannel("::1", "20071");
118 BOOST_CHECK_NE(channel2, channel4);
119 BOOST_CHECK_EQUAL(channel4->getUri().toString(), "udp6://[::1]:20071");
120
Giulio Grassi624f6c62014-02-18 19:42:14 +0100121 //same endpoint of a unicast channel
Davide Pesavento94279412015-02-27 01:29:32 +0100122 BOOST_CHECK_EXCEPTION(factory.createMulticastFace(interfaceIp, "224.0.0.1", "20070"),
123 UdpFactory::Error, isTheSameUnicastEndpoint);
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700124
Davide Pesavento94279412015-02-27 01:29:32 +0100125 auto multicastFace1 = factory.createMulticastFace(interfaceIp, "224.0.0.1", "20072");
126 auto multicastFace1a = factory.createMulticastFace(interfaceIp, "224.0.0.1", "20072");
Giulio Grassi624f6c62014-02-18 19:42:14 +0100127 BOOST_CHECK_EQUAL(multicastFace1, multicastFace1a);
Davide Pesavento94279412015-02-27 01:29:32 +0100128 BOOST_CHECK_EQUAL(multicastFace1->isLocal(), false);
Yukai Tu731f0d72015-07-04 11:14:44 +0800129 BOOST_CHECK_EQUAL(multicastFace1->getPersistency(), ndn::nfd::FACE_PERSISTENCY_PERSISTENT);
Davide Pesavento94279412015-02-27 01:29:32 +0100130 BOOST_CHECK_EQUAL(multicastFace1->isMultiAccess(), true);
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700131
Giulio Grassi624f6c62014-02-18 19:42:14 +0100132 //same endpoint of a multicast face
133 BOOST_CHECK_EXCEPTION(factory.createChannel(interfaceIp, "20072"),
Davide Pesavento94279412015-02-27 01:29:32 +0100134 UdpFactory::Error, isTheSameMulticastEndpoint);
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700135
Giulio Grassi624f6c62014-02-18 19:42:14 +0100136 //same multicast endpoint, different group
Davide Pesavento94279412015-02-27 01:29:32 +0100137 BOOST_CHECK_EXCEPTION(factory.createMulticastFace(interfaceIp, "224.0.0.42", "20072"),
138 UdpFactory::Error, isLocalEndpointOnDifferentGroup);
Giulio Grassi624f6c62014-02-18 19:42:14 +0100139
Davide Pesavento94279412015-02-27 01:29:32 +0100140 BOOST_CHECK_EXCEPTION(factory.createMulticastFace(interfaceIp, "192.168.10.15", "20025"),
141 UdpFactory::Error, isNotMulticastAddress);
Giulio Grassi624f6c62014-02-18 19:42:14 +0100142
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700143
Giulio Grassi624f6c62014-02-18 19:42:14 +0100144// //Test commented because it required to be run in a machine that can resolve ipv6 query
145// shared_ptr<UdpChannel> channel1v6 = factory.createChannel(//"::1",
146// "fe80::5e96:9dff:fe7d:9c8d%en1",
147// //"fe80::aa54:b2ff:fe08:27b8%wlan0",
148// "20070");
149//
150// //the creation of multicastFace2 works properly. It has been disable because it needs an IP address of
151// //an available network interface (different from the first one used)
152// shared_ptr<MulticastUdpFace> multicastFace2 = factory.createMulticastFace("192.168.1.17",
153// "224.0.0.1",
154// "20073");
155// BOOST_CHECK_NE(multicastFace1, multicastFace2);
156//
157//
158// //ipv6 - work in progress
159// shared_ptr<MulticastUdpFace> multicastFace3 = factory.createMulticastFace("fe80::5e96:9dff:fe7d:9c8d%en1",
160// "FF01:0:0:0:0:0:0:2",
161// "20073");
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700162//
Giulio Grassi624f6c62014-02-18 19:42:14 +0100163// shared_ptr<MulticastUdpFace> multicastFace4 = factory.createMulticastFace("fe80::aa54:b2ff:fe08:27b8%wlan0",
164// "FF01:0:0:0:0:0:0:2",
165// "20073");
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700166//
Giulio Grassi624f6c62014-02-18 19:42:14 +0100167// BOOST_CHECK_EQUAL(multicastFace3, multicastFace4);
168//
169// shared_ptr<MulticastUdpFace> multicastFace5 = factory.createMulticastFace("::1",
170// "FF01:0:0:0:0:0:0:2",
171// "20073");
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700172//
Giulio Grassi624f6c62014-02-18 19:42:14 +0100173// BOOST_CHECK_NE(multicastFace3, multicastFace5);
174//
175// //same local ipv6 endpoint for a different multicast group
176// BOOST_CHECK_THROW(factory.createMulticastFace("fe80::aa54:b2ff:fe08:27b8%wlan0",
177// "FE01:0:0:0:0:0:0:2",
178// "20073"),
179// UdpFactory::Error);
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700180//
Giulio Grassi624f6c62014-02-18 19:42:14 +0100181// //same local ipv6 (expect for th port number) endpoint for a different multicast group
182// BOOST_CHECK_THROW(factory.createMulticastFace("fe80::aa54:b2ff:fe08:27b8%wlan0",
183// "FE01:0:0:0:0:0:0:2",
184// "20075"),
185// UdpFactory::Error);
186//
187// BOOST_CHECK_THROW(factory.createMulticastFace("fa80::20a:9dff:fef6:12ff",
188// "FE12:0:0:0:0:0:0:2",
189// "20075"),
190// UdpFactory::Error);
191//
192// //not a multicast ipv6
193// BOOST_CHECK_THROW(factory.createMulticastFace("fa80::20a:9dff:fef6:12ff",
194// "A112:0:0:0:0:0:0:2",
195// "20075"),
196// UdpFactory::Error);
Giulio Grassi624f6c62014-02-18 19:42:14 +0100197}
198
Alexander Afanasyev86bc91a2014-08-28 22:29:16 -0700199class FaceCreateFixture : protected BaseFixture
200{
201public:
202 void
Alexander Afanasyev86bc91a2014-08-28 22:29:16 -0700203 checkError(const std::string& errorActual, const std::string& errorExpected)
204 {
205 BOOST_CHECK_EQUAL(errorActual, errorExpected);
206 }
207
208 void
209 failIfError(const std::string& errorActual)
210 {
211 BOOST_FAIL("No error expected, but got: [" << errorActual << "]");
212 }
213};
214
215BOOST_FIXTURE_TEST_CASE(FaceCreate, FaceCreateFixture)
216{
217 UdpFactory factory = UdpFactory();
218
Chengyu Fan4381fb62015-01-14 11:37:04 -0700219 factory.createFace(FaceUri("udp4://127.0.0.1:6363"),
Yukai Tu7c90e6d2015-07-11 12:21:46 +0800220 ndn::nfd::FACE_PERSISTENCY_PERSISTENT,
221 bind([]{}),
Chengyu Fan4381fb62015-01-14 11:37:04 -0700222 bind(&FaceCreateFixture::checkError, this, _1,
223 "No channels available to connect to 127.0.0.1:6363"));
Giulio Grassi624f6c62014-02-18 19:42:14 +0100224
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000225 factory.createChannel("127.0.0.1", "20071");
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700226
Giulio Grassi624f6c62014-02-18 19:42:14 +0100227 factory.createFace(FaceUri("udp4://127.0.0.1:20070"),
Yukai Tu7c90e6d2015-07-11 12:21:46 +0800228 ndn::nfd::FACE_PERSISTENCY_PERSISTENT,
229 bind([]{}),
Chengyu Fan4381fb62015-01-14 11:37:04 -0700230 bind(&FaceCreateFixture::failIfError, this, _1));
Yukai Tu375dcb02015-08-01 13:04:43 +0800231 //test the upgrade
232 factory.createFace(FaceUri("udp4://127.0.0.1:20070"),
233 ndn::nfd::FACE_PERSISTENCY_PERMANENT,
234 bind([]{}),
235 bind(&FaceCreateFixture::failIfError, this, _1));
236
237 factory.createFace(FaceUri("udp4://127.0.0.1:20072"),
238 ndn::nfd::FACE_PERSISTENCY_PERMANENT,
239 bind([]{}),
240 bind(&FaceCreateFixture::failIfError, this, _1));
Chengyu Fan4381fb62015-01-14 11:37:04 -0700241}
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700242
Yukai Tu375dcb02015-08-01 13:04:43 +0800243BOOST_AUTO_TEST_CASE(UnsupportedFaceCreate)
Yukai Tu7c90e6d2015-07-11 12:21:46 +0800244{
245 UdpFactory factory;
246
247 factory.createChannel("127.0.0.1", "20070");
Yukai Tu7c90e6d2015-07-11 12:21:46 +0800248
249 BOOST_CHECK_THROW(factory.createFace(FaceUri("udp4://127.0.0.1:20070"),
Yukai Tu7c90e6d2015-07-11 12:21:46 +0800250 ndn::nfd::FACE_PERSISTENCY_ON_DEMAND,
251 bind([]{}),
252 bind([]{})),
253 ProtocolFactory::Error);
254}
255
Chengyu Fan4381fb62015-01-14 11:37:04 -0700256class EndToEndIpv4
257{
258public:
259 static const std::string
260 getScheme()
261 {
262 return "udp4";
263 }
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700264
Chengyu Fan4381fb62015-01-14 11:37:04 -0700265 static const std::string
266 getLocalIp()
267 {
268 return "127.0.0.1";
269 }
Giulio Grassi624f6c62014-02-18 19:42:14 +0100270
Chengyu Fan4381fb62015-01-14 11:37:04 -0700271 static const std::string
272 getPort1()
273 {
274 return "20071";
275 }
276
277 static const std::string
278 getPort2()
279 {
280 return "20072";
281 }
282
283 static const std::string
284 getPort3()
285 {
286 return "20073";
287 }
288
289 static const FaceUri
290 getFaceUri1()
291 {
292 return FaceUri("udp4://127.0.0.1:20071");
293 }
294
295 static const FaceUri
296 getFaceUri2()
297 {
298 return FaceUri("udp4://127.0.0.1:20072");
299 }
300
301 static const FaceUri
302 getFaceUri3()
303 {
304 return FaceUri("udp4://127.0.0.1:20073");
305 }
306};
307
308class EndToEndIpv6
309{
310public:
311 static const std::string
312 getScheme()
313 {
314 return "udp6";
315 }
316
317 static const std::string
318 getLocalIp()
319 {
320 return "::1";
321 }
322
323 static const std::string
324 getPort1()
325 {
326 return "20071";
327 }
328
329 static const std::string
330 getPort2()
331 {
332 return "20072";
333 }
334
335 static const std::string
336 getPort3()
337 {
338 return "20073";
339 }
340
341 static const FaceUri
342 getFaceUri1()
343 {
344 return FaceUri("udp6://[::1]:20071");
345 }
346
347 static const FaceUri
348 getFaceUri2()
349 {
350 return FaceUri("udp6://[::1]:20072");
351 }
352
353 static const FaceUri
354 getFaceUri3()
355 {
356 return FaceUri("udp6://[::1]:20073");
357 }
358};
359
360typedef boost::mpl::list<EndToEndIpv4, EndToEndIpv6> EndToEndAddresses;
361
362// end to end communication
363BOOST_AUTO_TEST_CASE_TEMPLATE(EndToEnd, A, EndToEndAddresses)
364{
365 LimitedIo limitedIo;
366 UdpFactory factory;
367
368 shared_ptr<UdpChannel> channel1 = factory.createChannel(A::getLocalIp(), A::getPort1());
369
370 // face1 (on channel1) connects to face2 (on channel2, to be created)
371 shared_ptr<Face> face1;
372 unique_ptr<FaceHistory> history1;
373 factory.createFace(A::getFaceUri2(),
Yukai Tu7c90e6d2015-07-11 12:21:46 +0800374 ndn::nfd::FACE_PERSISTENCY_PERSISTENT,
Chengyu Fan4381fb62015-01-14 11:37:04 -0700375 [&] (shared_ptr<Face> newFace) {
376 face1 = newFace;
377 history1.reset(new FaceHistory(*face1, limitedIo));
378 limitedIo.afterOp();
379 },
380 [] (const std::string& reason) { BOOST_ERROR(reason); });
381
382 limitedIo.run(1, time::seconds(1));
383 BOOST_REQUIRE(face1 != nullptr);
384 BOOST_CHECK_EQUAL(face1->getRemoteUri(), A::getFaceUri2());
385 BOOST_CHECK_EQUAL(face1->getLocalUri(), A::getFaceUri1());
386 BOOST_CHECK_EQUAL(face1->isLocal(), false); // UdpFace is never local
387 BOOST_CHECK_EQUAL(face1->getCounters().getNInBytes(), 0);
388 BOOST_CHECK_EQUAL(face1->getCounters().getNOutBytes(), 0);
389
390 // channel2 creation must be after face1 creation,
391 // otherwise channel2's endpoint would be prohibited
392 shared_ptr<UdpChannel> channel2 = factory.createChannel(A::getLocalIp(), A::getPort2());
393 shared_ptr<Face> face2;
394 unique_ptr<FaceHistory> history2;
395 channel2->listen([&] (shared_ptr<Face> newFace) {
396 BOOST_CHECK(face2 == nullptr);
397 face2 = newFace;
398 history2.reset(new FaceHistory(*face2, limitedIo));
399 limitedIo.afterOp();
400 },
401 [] (const std::string& reason) { BOOST_ERROR(reason); });
402
403 limitedIo.run(1, time::seconds(1));
404 BOOST_CHECK(face2 == nullptr); // face2 shouldn't be created until face1 sends something
405
406 shared_ptr<Interest> interest1 = makeInterest("/I1");
407 shared_ptr<Interest> interest2 = makeInterest("/I2");
408 shared_ptr<Data> data1 = makeData("/D1");
409 shared_ptr<Data> data2 = makeData("/D2");
410
411 // face1 sends to channel2, creates face2
412 face1->sendInterest(*interest1);
413 face1->sendData(*data1);
414 face1->sendData(*data1);
415 face1->sendData(*data1);
416 size_t nBytesSent1 = interest1->wireEncode().size() + 3 * data1->wireEncode().size();
417
418 limitedIo.run(5, time::seconds(1)); // 1 accept, 4 receives
419
420 BOOST_REQUIRE(face2 != nullptr);
421 BOOST_CHECK_EQUAL(face2->getRemoteUri(), A::getFaceUri1());
422 BOOST_CHECK_EQUAL(face2->getLocalUri(), A::getFaceUri2());
423 BOOST_CHECK_EQUAL(face2->isLocal(), false); // UdpFace is never local
424 BOOST_CHECK_EQUAL(face2->getCounters().getNInBytes(), nBytesSent1);
Junxiao Shi5dd26c32014-07-20 23:15:14 -0700425 BOOST_CHECK_EQUAL(face2->getCounters().getNOutBytes(), 0);
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700426
Chengyu Fan4381fb62015-01-14 11:37:04 -0700427 BOOST_REQUIRE_EQUAL(history2->receivedInterests.size(), 1);
428 BOOST_CHECK_EQUAL(history2->receivedInterests.front().getName(), interest1->getName());
429 BOOST_REQUIRE_EQUAL(history2->receivedData.size(), 3);
430 BOOST_CHECK_EQUAL(history2->receivedData.front().getName(), data1->getName());
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700431
Chengyu Fan4381fb62015-01-14 11:37:04 -0700432 // face2 sends to face1
433 face2->sendInterest(*interest2);
434 face2->sendInterest(*interest2);
435 face2->sendInterest(*interest2);
436 face2->sendData(*data2);
437 size_t nBytesSent2 = 3 * interest2->wireEncode().size() + data2->wireEncode().size();
Giulio Grassi624f6c62014-02-18 19:42:14 +0100438
Chengyu Fan4381fb62015-01-14 11:37:04 -0700439 limitedIo.run(4, time::seconds(1)); // 4 receives
Giulio Grassi624f6c62014-02-18 19:42:14 +0100440
Chengyu Fan4381fb62015-01-14 11:37:04 -0700441 BOOST_REQUIRE_EQUAL(history1->receivedInterests.size(), 3);
442 BOOST_CHECK_EQUAL(history1->receivedInterests.front().getName(), interest2->getName());
443 BOOST_REQUIRE_EQUAL(history1->receivedData.size(), 1);
444 BOOST_CHECK_EQUAL(history1->receivedData.front().getName(), data2->getName());
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700445
Chengyu Fan4381fb62015-01-14 11:37:04 -0700446 // counters
Junxiao Shi79494162014-04-02 18:25:11 -0700447 const FaceCounters& counters1 = face1->getCounters();
Chengyu Fan4381fb62015-01-14 11:37:04 -0700448 BOOST_CHECK_EQUAL(counters1.getNInInterests(), 3);
449 BOOST_CHECK_EQUAL(counters1.getNInDatas(), 1);
450 BOOST_CHECK_EQUAL(counters1.getNOutInterests(), 1);
451 BOOST_CHECK_EQUAL(counters1.getNOutDatas(), 3);
Junxiao Shi5dd26c32014-07-20 23:15:14 -0700452 BOOST_CHECK_EQUAL(counters1.getNInBytes(), nBytesSent2);
Chengyu Fan4381fb62015-01-14 11:37:04 -0700453 BOOST_CHECK_EQUAL(counters1.getNOutBytes(), nBytesSent1);
Alexander Afanasyev7e698e62014-03-07 16:48:35 +0000454
Junxiao Shi79494162014-04-02 18:25:11 -0700455 const FaceCounters& counters2 = face2->getCounters();
Chengyu Fan4381fb62015-01-14 11:37:04 -0700456 BOOST_CHECK_EQUAL(counters2.getNInInterests(), 1);
457 BOOST_CHECK_EQUAL(counters2.getNInDatas(), 3);
458 BOOST_CHECK_EQUAL(counters2.getNOutInterests(), 3);
459 BOOST_CHECK_EQUAL(counters2.getNOutDatas(), 1);
460 BOOST_CHECK_EQUAL(counters2.getNInBytes(), nBytesSent1);
Junxiao Shi5dd26c32014-07-20 23:15:14 -0700461 BOOST_CHECK_EQUAL(counters2.getNOutBytes(), nBytesSent2);
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000462}
Giulio Grassi624f6c62014-02-18 19:42:14 +0100463
Chengyu Fan4381fb62015-01-14 11:37:04 -0700464// channel accepting multiple incoming connections
465BOOST_AUTO_TEST_CASE_TEMPLATE(MultipleAccepts, A, EndToEndAddresses)
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000466{
Chengyu Fan4381fb62015-01-14 11:37:04 -0700467 LimitedIo limitedIo;
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000468 UdpFactory factory;
469
Chengyu Fan4381fb62015-01-14 11:37:04 -0700470 // channel1 is listening
471 shared_ptr<UdpChannel> channel1 = factory.createChannel(A::getLocalIp(), A::getPort1());
472 std::vector<shared_ptr<Face>> faces1;
473 channel1->listen([&] (shared_ptr<Face> newFace) {
474 faces1.push_back(newFace);
475 limitedIo.afterOp();
476 },
477 [] (const std::string& reason) { BOOST_ERROR(reason); });
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000478
Chengyu Fan4381fb62015-01-14 11:37:04 -0700479 // face2 (on channel2) connects to channel1
480 shared_ptr<UdpChannel> channel2 = factory.createChannel(A::getLocalIp(), A::getPort2());
481 BOOST_CHECK_NE(channel1, channel2);
482 shared_ptr<Face> face2;
483 boost::asio::ip::address ipAddress2 = boost::asio::ip::address::from_string(A::getLocalIp());
484 udp::Endpoint endpoint2(ipAddress2, boost::lexical_cast<uint16_t>(A::getPort1()));
485 channel2->connect(endpoint2,
Yukai Tu375dcb02015-08-01 13:04:43 +0800486 ndn::nfd::FACE_PERSISTENCY_PERSISTENT,
Chengyu Fan4381fb62015-01-14 11:37:04 -0700487 [&] (shared_ptr<Face> newFace) {
488 face2 = newFace;
489 limitedIo.afterOp();
490 },
491 [] (const std::string& reason) { BOOST_ERROR(reason); });
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000492
Chengyu Fan4381fb62015-01-14 11:37:04 -0700493 limitedIo.run(1, time::seconds(1)); // 1 create (on channel2)
494 BOOST_REQUIRE(face2 != nullptr);
495 BOOST_CHECK_EQUAL(faces1.size(), 0); // channel1 won't create face until face2 sends something
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000496
Chengyu Fan4381fb62015-01-14 11:37:04 -0700497 // face3 (on channel3) connects to channel1
498 shared_ptr<UdpChannel> channel3 = factory.createChannel(A::getLocalIp(), A::getPort3());
499 BOOST_CHECK_NE(channel1, channel3);
500 shared_ptr<Face> face3;
501 boost::asio::ip::address ipAddress3 = boost::asio::ip::address::from_string(A::getLocalIp());
502 udp::Endpoint endpoint3(ipAddress3, boost::lexical_cast<uint16_t>(A::getPort1()));
503 channel3->connect(endpoint3,
Yukai Tu375dcb02015-08-01 13:04:43 +0800504 ndn::nfd::FACE_PERSISTENCY_PERSISTENT,
Chengyu Fan4381fb62015-01-14 11:37:04 -0700505 [&] (shared_ptr<Face> newFace) {
506 face3 = newFace;
507 limitedIo.afterOp();
508 },
509 [] (const std::string& reason) { BOOST_ERROR(reason); });
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000510
Chengyu Fan4381fb62015-01-14 11:37:04 -0700511 limitedIo.run(1, time::seconds(1)); // 1 create (on channel3)
512 BOOST_REQUIRE(face3 != nullptr);
513 BOOST_CHECK_EQUAL(faces1.size(), 0); // channel1 won't create face until face3 sends something
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000514
Chengyu Fan4381fb62015-01-14 11:37:04 -0700515 // face2 sends to channel1
516 shared_ptr<Interest> interest2 = makeInterest("/I2");
517 face2->sendInterest(*interest2);
518 limitedIo.run(1, time::milliseconds(100)); // 1 accept (on channel1)
519 BOOST_REQUIRE_EQUAL(faces1.size(), 1);
520 BOOST_CHECK_EQUAL(channel1->size(), 1);
521 BOOST_CHECK_EQUAL(faces1.at(0)->getRemoteUri(), A::getFaceUri2());
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000522
Chengyu Fan4381fb62015-01-14 11:37:04 -0700523 // face3 sends to channel1
524 shared_ptr<Data> data3 = makeData("/D3");
525 face3->sendData(*data3);
526 limitedIo.run(1, time::milliseconds(100)); // 1 accept (on channel1)
527 BOOST_REQUIRE_EQUAL(faces1.size(), 2);
528 BOOST_CHECK_EQUAL(channel1->size(), 2);
529 BOOST_CHECK_EQUAL(faces1.at(1)->getRemoteUri(), A::getFaceUri3());
Giulio Grassi624f6c62014-02-18 19:42:14 +0100530}
531
Chengyu Fan4381fb62015-01-14 11:37:04 -0700532// manually close a face
533BOOST_AUTO_TEST_CASE_TEMPLATE(ManualClose, A, EndToEndAddresses)
Giulio Grassi624f6c62014-02-18 19:42:14 +0100534{
Chengyu Fan4381fb62015-01-14 11:37:04 -0700535 LimitedIo limitedIo;
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700536 UdpFactory factory;
Giulio Grassi624f6c62014-02-18 19:42:14 +0100537
Chengyu Fan4381fb62015-01-14 11:37:04 -0700538 shared_ptr<UdpChannel> channel1 = factory.createChannel(A::getLocalIp(), A::getPort1());
539 shared_ptr<Face> face1;
540 unique_ptr<FaceHistory> history1;
541 factory.createFace(A::getFaceUri2(),
Yukai Tu7c90e6d2015-07-11 12:21:46 +0800542 ndn::nfd::FACE_PERSISTENCY_PERSISTENT,
Chengyu Fan4381fb62015-01-14 11:37:04 -0700543 [&] (shared_ptr<Face> newFace) {
544 face1 = newFace;
545 history1.reset(new FaceHistory(*face1, limitedIo));
546 limitedIo.afterOp();
547 },
548 [] (const std::string& reason) { BOOST_ERROR(reason); });
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700549
Chengyu Fan4381fb62015-01-14 11:37:04 -0700550 limitedIo.run(1, time::milliseconds(100));
551 BOOST_REQUIRE(face1 != nullptr);
552 BOOST_CHECK_EQUAL(channel1->size(), 1);
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700553
Chengyu Fan4381fb62015-01-14 11:37:04 -0700554 face1->close();
555 getGlobalIoService().poll();
556 BOOST_CHECK_EQUAL(history1->failures.size(), 1);
Giulio Grassi69871f02014-03-09 16:14:44 +0100557 BOOST_CHECK_EQUAL(channel1->size(), 0);
Chengyu Fan4381fb62015-01-14 11:37:04 -0700558}
Junxiao Shi79494162014-04-02 18:25:11 -0700559
Chengyu Fan4381fb62015-01-14 11:37:04 -0700560// automatically close an idle incoming face
561BOOST_AUTO_TEST_CASE_TEMPLATE(IdleClose, A, EndToEndAddresses)
562{
563 LimitedIo limitedIo;
564 UdpFactory factory;
565
566 // channel1 is listening
567 shared_ptr<UdpChannel> channel1 = factory.createChannel(A::getLocalIp(), A::getPort1(),
568 time::seconds(2));
569 shared_ptr<Face> face1;
570 unique_ptr<FaceHistory> history1;
571 channel1->listen([&] (shared_ptr<Face> newFace) {
572 BOOST_CHECK(face1 == nullptr);
573 face1 = newFace;
574 history1.reset(new FaceHistory(*face1, limitedIo));
575 limitedIo.afterOp();
576 },
577 [] (const std::string& reason) { BOOST_ERROR(reason); });
578
579 // face2 (on channel2) connects to channel1
580 shared_ptr<UdpChannel> channel2 = factory.createChannel(A::getLocalIp(), A::getPort2(),
581 time::seconds(2));
582 shared_ptr<Face> face2;
583 unique_ptr<FaceHistory> history2;
584 boost::asio::ip::address ipAddress = boost::asio::ip::address::from_string(A::getLocalIp());
585 udp::Endpoint endpoint(ipAddress, boost::lexical_cast<uint16_t>(A::getPort1()));
586 channel2->connect(endpoint,
Yukai Tu375dcb02015-08-01 13:04:43 +0800587 ndn::nfd::FACE_PERSISTENCY_PERSISTENT,
Chengyu Fan4381fb62015-01-14 11:37:04 -0700588 [&] (shared_ptr<Face> newFace) {
589 face2 = newFace;
590 history2.reset(new FaceHistory(*face2, limitedIo));
591 limitedIo.afterOp();
592 },
593 [] (const std::string& reason) { BOOST_ERROR(reason); });
594
595 limitedIo.run(1, time::milliseconds(100)); // 1 create (on channel2)
596 BOOST_REQUIRE(face2 != nullptr);
Yukai Tu731f0d72015-07-04 11:14:44 +0800597 BOOST_CHECK_EQUAL(face2->getPersistency(), ndn::nfd::FACE_PERSISTENCY_PERSISTENT);
Davide Pesavento94279412015-02-27 01:29:32 +0100598 BOOST_CHECK_EQUAL(face2->isMultiAccess(), false);
Chengyu Fan4381fb62015-01-14 11:37:04 -0700599
600 // face2 sends to channel1, creates face1
601 shared_ptr<Interest> interest2 = makeInterest("/I2");
602 face2->sendInterest(*interest2);
603
604 limitedIo.run(2, time::seconds(1)); // 1 accept (on channel1), 1 receive (on face1)
Giulio Grassi69871f02014-03-09 16:14:44 +0100605 BOOST_CHECK_EQUAL(channel1->size(), 1);
Chengyu Fan4381fb62015-01-14 11:37:04 -0700606 BOOST_REQUIRE(face1 != nullptr);
Yukai Tu731f0d72015-07-04 11:14:44 +0800607 BOOST_CHECK_EQUAL(face1->getPersistency(), ndn::nfd::FACE_PERSISTENCY_ON_DEMAND);
Davide Pesavento94279412015-02-27 01:29:32 +0100608 BOOST_CHECK_EQUAL(face1->isMultiAccess(), false);
Junxiao Shi79494162014-04-02 18:25:11 -0700609
Chengyu Fan4381fb62015-01-14 11:37:04 -0700610 limitedIo.defer(time::seconds(1));
611 BOOST_CHECK_EQUAL(history1->failures.size(), 0); // face1 is not idle
612 BOOST_CHECK_EQUAL(history2->failures.size(), 0); // face2 is outgoing face and never closed
Giulio Grassi69871f02014-03-09 16:14:44 +0100613
Chengyu Fan4381fb62015-01-14 11:37:04 -0700614 limitedIo.defer(time::seconds(4));
615 BOOST_CHECK_EQUAL(history1->failures.size(), 1); // face1 is idle and automatically closed
616 BOOST_CHECK_EQUAL(channel1->size(), 0);
617 BOOST_CHECK_EQUAL(history2->failures.size(), 0); // face2 is outgoing face and never closed
Giulio Grassi69871f02014-03-09 16:14:44 +0100618}
619
Alexander Afanasyev70aaf8a2014-12-13 00:44:22 -0800620class FakeNetworkInterfaceFixture : public BaseFixture
621{
622public:
623 FakeNetworkInterfaceFixture()
624 {
625 using namespace boost::asio::ip;
626
627 auto fakeInterfaces = make_shared<std::vector<NetworkInterfaceInfo>>();
628
629 fakeInterfaces->push_back(
630 NetworkInterfaceInfo {0, "eth0",
631 ethernet::Address::fromString("3e:15:c2:8b:65:00"),
632 {address_v4::from_string("0.0.0.0")},
633 {address_v6::from_string("::")},
634 address_v4(),
635 IFF_UP});
636 fakeInterfaces->push_back(
637 NetworkInterfaceInfo {1, "eth0",
638 ethernet::Address::fromString("3e:15:c2:8b:65:00"),
639 {address_v4::from_string("192.168.2.1"), address_v4::from_string("192.168.2.2")},
640 {},
641 address_v4::from_string("192.168.2.255"),
642 0});
643 fakeInterfaces->push_back(
644 NetworkInterfaceInfo {2, "eth1",
645 ethernet::Address::fromString("3e:15:c2:8b:65:00"),
646 {address_v4::from_string("198.51.100.1")},
647 {address_v6::from_string("2001:db8::2"), address_v6::from_string("2001:db8::3")},
648 address_v4::from_string("198.51.100.255"),
649 IFF_MULTICAST | IFF_BROADCAST | IFF_UP});
650
651 setDebugNetworkInterfaces(fakeInterfaces);
652 }
653
654 ~FakeNetworkInterfaceFixture()
655 {
656 setDebugNetworkInterfaces(nullptr);
657 }
658};
659
660BOOST_FIXTURE_TEST_CASE(Bug2292, FakeNetworkInterfaceFixture)
661{
662 using namespace boost::asio::ip;
663
664 UdpFactory factory;
665 factory.prohibitEndpoint(udp::Endpoint(address_v4::from_string("192.168.2.1"), 1024));
666 BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 1);
667 BOOST_CHECK((factory.m_prohibitedEndpoints ==
668 std::set<udp::Endpoint> {
669 udp::Endpoint(address_v4::from_string("192.168.2.1"), 1024),
670 }));
671
672 factory.m_prohibitedEndpoints.clear();
673 factory.prohibitEndpoint(udp::Endpoint(address_v6::from_string("2001:db8::1"), 2048));
674 BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 1);
675 BOOST_CHECK((factory.m_prohibitedEndpoints ==
676 std::set<udp::Endpoint> {
677 udp::Endpoint(address_v6::from_string("2001:db8::1"), 2048),
678 }));
679
680 factory.m_prohibitedEndpoints.clear();
681 factory.prohibitEndpoint(udp::Endpoint(address_v4(), 1024));
682 BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 6);
683 BOOST_CHECK((factory.m_prohibitedEndpoints ==
684 std::set<udp::Endpoint> {
685 udp::Endpoint(address_v4::from_string("192.168.2.1"), 1024),
686 udp::Endpoint(address_v4::from_string("192.168.2.2"), 1024),
687 udp::Endpoint(address_v4::from_string("198.51.100.1"), 1024),
688 udp::Endpoint(address_v4::from_string("198.51.100.255"), 1024),
689 udp::Endpoint(address_v4::from_string("255.255.255.255"), 1024),
690 udp::Endpoint(address_v4::from_string("0.0.0.0"), 1024)
691 }));
692
693 factory.m_prohibitedEndpoints.clear();
694 factory.prohibitEndpoint(udp::Endpoint(address_v6(), 2048));
695 BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 3);
696 BOOST_CHECK((factory.m_prohibitedEndpoints ==
697 std::set<udp::Endpoint> {
698 udp::Endpoint(address_v6::from_string("2001:db8::2"), 2048),
699 udp::Endpoint(address_v6::from_string("2001:db8::3"), 2048),
700 udp::Endpoint(address_v6::from_string("::"), 2048),
701 }));
702}
703
Giulio Grassi624f6c62014-02-18 19:42:14 +0100704BOOST_AUTO_TEST_SUITE_END()
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700705
Giulio Grassi624f6c62014-02-18 19:42:14 +0100706} // namespace tests
707} // namespace nfd