blob: ff0c710c0a98116a586206e401d853d0f36d136b [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));
231}
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700232
Yukai Tu7c90e6d2015-07-11 12:21:46 +0800233BOOST_FIXTURE_TEST_CASE(UnsupportedFaceCreate, FaceCreateFixture)
234{
235 UdpFactory factory;
236
237 factory.createChannel("127.0.0.1", "20070");
238 factory.createChannel("127.0.0.1", "20071");
239
240 BOOST_CHECK_THROW(factory.createFace(FaceUri("udp4://127.0.0.1:20070"),
241 ndn::nfd::FACE_PERSISTENCY_PERMANENT,
242 bind([]{}),
243 bind([]{})),
244 ProtocolFactory::Error);
245
246 BOOST_CHECK_THROW(factory.createFace(FaceUri("udp4://127.0.0.1:20071"),
247 ndn::nfd::FACE_PERSISTENCY_ON_DEMAND,
248 bind([]{}),
249 bind([]{})),
250 ProtocolFactory::Error);
251}
252
Chengyu Fan4381fb62015-01-14 11:37:04 -0700253class EndToEndIpv4
254{
255public:
256 static const std::string
257 getScheme()
258 {
259 return "udp4";
260 }
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700261
Chengyu Fan4381fb62015-01-14 11:37:04 -0700262 static const std::string
263 getLocalIp()
264 {
265 return "127.0.0.1";
266 }
Giulio Grassi624f6c62014-02-18 19:42:14 +0100267
Chengyu Fan4381fb62015-01-14 11:37:04 -0700268 static const std::string
269 getPort1()
270 {
271 return "20071";
272 }
273
274 static const std::string
275 getPort2()
276 {
277 return "20072";
278 }
279
280 static const std::string
281 getPort3()
282 {
283 return "20073";
284 }
285
286 static const FaceUri
287 getFaceUri1()
288 {
289 return FaceUri("udp4://127.0.0.1:20071");
290 }
291
292 static const FaceUri
293 getFaceUri2()
294 {
295 return FaceUri("udp4://127.0.0.1:20072");
296 }
297
298 static const FaceUri
299 getFaceUri3()
300 {
301 return FaceUri("udp4://127.0.0.1:20073");
302 }
303};
304
305class EndToEndIpv6
306{
307public:
308 static const std::string
309 getScheme()
310 {
311 return "udp6";
312 }
313
314 static const std::string
315 getLocalIp()
316 {
317 return "::1";
318 }
319
320 static const std::string
321 getPort1()
322 {
323 return "20071";
324 }
325
326 static const std::string
327 getPort2()
328 {
329 return "20072";
330 }
331
332 static const std::string
333 getPort3()
334 {
335 return "20073";
336 }
337
338 static const FaceUri
339 getFaceUri1()
340 {
341 return FaceUri("udp6://[::1]:20071");
342 }
343
344 static const FaceUri
345 getFaceUri2()
346 {
347 return FaceUri("udp6://[::1]:20072");
348 }
349
350 static const FaceUri
351 getFaceUri3()
352 {
353 return FaceUri("udp6://[::1]:20073");
354 }
355};
356
357typedef boost::mpl::list<EndToEndIpv4, EndToEndIpv6> EndToEndAddresses;
358
359// end to end communication
360BOOST_AUTO_TEST_CASE_TEMPLATE(EndToEnd, A, EndToEndAddresses)
361{
362 LimitedIo limitedIo;
363 UdpFactory factory;
364
365 shared_ptr<UdpChannel> channel1 = factory.createChannel(A::getLocalIp(), A::getPort1());
366
367 // face1 (on channel1) connects to face2 (on channel2, to be created)
368 shared_ptr<Face> face1;
369 unique_ptr<FaceHistory> history1;
370 factory.createFace(A::getFaceUri2(),
Yukai Tu7c90e6d2015-07-11 12:21:46 +0800371 ndn::nfd::FACE_PERSISTENCY_PERSISTENT,
Chengyu Fan4381fb62015-01-14 11:37:04 -0700372 [&] (shared_ptr<Face> newFace) {
373 face1 = newFace;
374 history1.reset(new FaceHistory(*face1, limitedIo));
375 limitedIo.afterOp();
376 },
377 [] (const std::string& reason) { BOOST_ERROR(reason); });
378
379 limitedIo.run(1, time::seconds(1));
380 BOOST_REQUIRE(face1 != nullptr);
381 BOOST_CHECK_EQUAL(face1->getRemoteUri(), A::getFaceUri2());
382 BOOST_CHECK_EQUAL(face1->getLocalUri(), A::getFaceUri1());
383 BOOST_CHECK_EQUAL(face1->isLocal(), false); // UdpFace is never local
384 BOOST_CHECK_EQUAL(face1->getCounters().getNInBytes(), 0);
385 BOOST_CHECK_EQUAL(face1->getCounters().getNOutBytes(), 0);
386
387 // channel2 creation must be after face1 creation,
388 // otherwise channel2's endpoint would be prohibited
389 shared_ptr<UdpChannel> channel2 = factory.createChannel(A::getLocalIp(), A::getPort2());
390 shared_ptr<Face> face2;
391 unique_ptr<FaceHistory> history2;
392 channel2->listen([&] (shared_ptr<Face> newFace) {
393 BOOST_CHECK(face2 == nullptr);
394 face2 = newFace;
395 history2.reset(new FaceHistory(*face2, limitedIo));
396 limitedIo.afterOp();
397 },
398 [] (const std::string& reason) { BOOST_ERROR(reason); });
399
400 limitedIo.run(1, time::seconds(1));
401 BOOST_CHECK(face2 == nullptr); // face2 shouldn't be created until face1 sends something
402
403 shared_ptr<Interest> interest1 = makeInterest("/I1");
404 shared_ptr<Interest> interest2 = makeInterest("/I2");
405 shared_ptr<Data> data1 = makeData("/D1");
406 shared_ptr<Data> data2 = makeData("/D2");
407
408 // face1 sends to channel2, creates face2
409 face1->sendInterest(*interest1);
410 face1->sendData(*data1);
411 face1->sendData(*data1);
412 face1->sendData(*data1);
413 size_t nBytesSent1 = interest1->wireEncode().size() + 3 * data1->wireEncode().size();
414
415 limitedIo.run(5, time::seconds(1)); // 1 accept, 4 receives
416
417 BOOST_REQUIRE(face2 != nullptr);
418 BOOST_CHECK_EQUAL(face2->getRemoteUri(), A::getFaceUri1());
419 BOOST_CHECK_EQUAL(face2->getLocalUri(), A::getFaceUri2());
420 BOOST_CHECK_EQUAL(face2->isLocal(), false); // UdpFace is never local
421 BOOST_CHECK_EQUAL(face2->getCounters().getNInBytes(), nBytesSent1);
Junxiao Shi5dd26c32014-07-20 23:15:14 -0700422 BOOST_CHECK_EQUAL(face2->getCounters().getNOutBytes(), 0);
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700423
Chengyu Fan4381fb62015-01-14 11:37:04 -0700424 BOOST_REQUIRE_EQUAL(history2->receivedInterests.size(), 1);
425 BOOST_CHECK_EQUAL(history2->receivedInterests.front().getName(), interest1->getName());
426 BOOST_REQUIRE_EQUAL(history2->receivedData.size(), 3);
427 BOOST_CHECK_EQUAL(history2->receivedData.front().getName(), data1->getName());
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700428
Chengyu Fan4381fb62015-01-14 11:37:04 -0700429 // face2 sends to face1
430 face2->sendInterest(*interest2);
431 face2->sendInterest(*interest2);
432 face2->sendInterest(*interest2);
433 face2->sendData(*data2);
434 size_t nBytesSent2 = 3 * interest2->wireEncode().size() + data2->wireEncode().size();
Giulio Grassi624f6c62014-02-18 19:42:14 +0100435
Chengyu Fan4381fb62015-01-14 11:37:04 -0700436 limitedIo.run(4, time::seconds(1)); // 4 receives
Giulio Grassi624f6c62014-02-18 19:42:14 +0100437
Chengyu Fan4381fb62015-01-14 11:37:04 -0700438 BOOST_REQUIRE_EQUAL(history1->receivedInterests.size(), 3);
439 BOOST_CHECK_EQUAL(history1->receivedInterests.front().getName(), interest2->getName());
440 BOOST_REQUIRE_EQUAL(history1->receivedData.size(), 1);
441 BOOST_CHECK_EQUAL(history1->receivedData.front().getName(), data2->getName());
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700442
Chengyu Fan4381fb62015-01-14 11:37:04 -0700443 // counters
Junxiao Shi79494162014-04-02 18:25:11 -0700444 const FaceCounters& counters1 = face1->getCounters();
Chengyu Fan4381fb62015-01-14 11:37:04 -0700445 BOOST_CHECK_EQUAL(counters1.getNInInterests(), 3);
446 BOOST_CHECK_EQUAL(counters1.getNInDatas(), 1);
447 BOOST_CHECK_EQUAL(counters1.getNOutInterests(), 1);
448 BOOST_CHECK_EQUAL(counters1.getNOutDatas(), 3);
Junxiao Shi5dd26c32014-07-20 23:15:14 -0700449 BOOST_CHECK_EQUAL(counters1.getNInBytes(), nBytesSent2);
Chengyu Fan4381fb62015-01-14 11:37:04 -0700450 BOOST_CHECK_EQUAL(counters1.getNOutBytes(), nBytesSent1);
Alexander Afanasyev7e698e62014-03-07 16:48:35 +0000451
Junxiao Shi79494162014-04-02 18:25:11 -0700452 const FaceCounters& counters2 = face2->getCounters();
Chengyu Fan4381fb62015-01-14 11:37:04 -0700453 BOOST_CHECK_EQUAL(counters2.getNInInterests(), 1);
454 BOOST_CHECK_EQUAL(counters2.getNInDatas(), 3);
455 BOOST_CHECK_EQUAL(counters2.getNOutInterests(), 3);
456 BOOST_CHECK_EQUAL(counters2.getNOutDatas(), 1);
457 BOOST_CHECK_EQUAL(counters2.getNInBytes(), nBytesSent1);
Junxiao Shi5dd26c32014-07-20 23:15:14 -0700458 BOOST_CHECK_EQUAL(counters2.getNOutBytes(), nBytesSent2);
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000459}
Giulio Grassi624f6c62014-02-18 19:42:14 +0100460
Chengyu Fan4381fb62015-01-14 11:37:04 -0700461// channel accepting multiple incoming connections
462BOOST_AUTO_TEST_CASE_TEMPLATE(MultipleAccepts, A, EndToEndAddresses)
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000463{
Chengyu Fan4381fb62015-01-14 11:37:04 -0700464 LimitedIo limitedIo;
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000465 UdpFactory factory;
466
Chengyu Fan4381fb62015-01-14 11:37:04 -0700467 // channel1 is listening
468 shared_ptr<UdpChannel> channel1 = factory.createChannel(A::getLocalIp(), A::getPort1());
469 std::vector<shared_ptr<Face>> faces1;
470 channel1->listen([&] (shared_ptr<Face> newFace) {
471 faces1.push_back(newFace);
472 limitedIo.afterOp();
473 },
474 [] (const std::string& reason) { BOOST_ERROR(reason); });
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000475
Chengyu Fan4381fb62015-01-14 11:37:04 -0700476 // face2 (on channel2) connects to channel1
477 shared_ptr<UdpChannel> channel2 = factory.createChannel(A::getLocalIp(), A::getPort2());
478 BOOST_CHECK_NE(channel1, channel2);
479 shared_ptr<Face> face2;
480 boost::asio::ip::address ipAddress2 = boost::asio::ip::address::from_string(A::getLocalIp());
481 udp::Endpoint endpoint2(ipAddress2, boost::lexical_cast<uint16_t>(A::getPort1()));
482 channel2->connect(endpoint2,
483 [&] (shared_ptr<Face> newFace) {
484 face2 = newFace;
485 limitedIo.afterOp();
486 },
487 [] (const std::string& reason) { BOOST_ERROR(reason); });
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000488
Chengyu Fan4381fb62015-01-14 11:37:04 -0700489 limitedIo.run(1, time::seconds(1)); // 1 create (on channel2)
490 BOOST_REQUIRE(face2 != nullptr);
491 BOOST_CHECK_EQUAL(faces1.size(), 0); // channel1 won't create face until face2 sends something
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000492
Chengyu Fan4381fb62015-01-14 11:37:04 -0700493 // face3 (on channel3) connects to channel1
494 shared_ptr<UdpChannel> channel3 = factory.createChannel(A::getLocalIp(), A::getPort3());
495 BOOST_CHECK_NE(channel1, channel3);
496 shared_ptr<Face> face3;
497 boost::asio::ip::address ipAddress3 = boost::asio::ip::address::from_string(A::getLocalIp());
498 udp::Endpoint endpoint3(ipAddress3, boost::lexical_cast<uint16_t>(A::getPort1()));
499 channel3->connect(endpoint3,
500 [&] (shared_ptr<Face> newFace) {
501 face3 = newFace;
502 limitedIo.afterOp();
503 },
504 [] (const std::string& reason) { BOOST_ERROR(reason); });
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000505
Chengyu Fan4381fb62015-01-14 11:37:04 -0700506 limitedIo.run(1, time::seconds(1)); // 1 create (on channel3)
507 BOOST_REQUIRE(face3 != nullptr);
508 BOOST_CHECK_EQUAL(faces1.size(), 0); // channel1 won't create face until face3 sends something
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000509
Chengyu Fan4381fb62015-01-14 11:37:04 -0700510 // face2 sends to channel1
511 shared_ptr<Interest> interest2 = makeInterest("/I2");
512 face2->sendInterest(*interest2);
513 limitedIo.run(1, time::milliseconds(100)); // 1 accept (on channel1)
514 BOOST_REQUIRE_EQUAL(faces1.size(), 1);
515 BOOST_CHECK_EQUAL(channel1->size(), 1);
516 BOOST_CHECK_EQUAL(faces1.at(0)->getRemoteUri(), A::getFaceUri2());
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000517
Chengyu Fan4381fb62015-01-14 11:37:04 -0700518 // face3 sends to channel1
519 shared_ptr<Data> data3 = makeData("/D3");
520 face3->sendData(*data3);
521 limitedIo.run(1, time::milliseconds(100)); // 1 accept (on channel1)
522 BOOST_REQUIRE_EQUAL(faces1.size(), 2);
523 BOOST_CHECK_EQUAL(channel1->size(), 2);
524 BOOST_CHECK_EQUAL(faces1.at(1)->getRemoteUri(), A::getFaceUri3());
Giulio Grassi624f6c62014-02-18 19:42:14 +0100525}
526
Chengyu Fan4381fb62015-01-14 11:37:04 -0700527// manually close a face
528BOOST_AUTO_TEST_CASE_TEMPLATE(ManualClose, A, EndToEndAddresses)
Giulio Grassi624f6c62014-02-18 19:42:14 +0100529{
Chengyu Fan4381fb62015-01-14 11:37:04 -0700530 LimitedIo limitedIo;
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700531 UdpFactory factory;
Giulio Grassi624f6c62014-02-18 19:42:14 +0100532
Chengyu Fan4381fb62015-01-14 11:37:04 -0700533 shared_ptr<UdpChannel> channel1 = factory.createChannel(A::getLocalIp(), A::getPort1());
534 shared_ptr<Face> face1;
535 unique_ptr<FaceHistory> history1;
536 factory.createFace(A::getFaceUri2(),
Yukai Tu7c90e6d2015-07-11 12:21:46 +0800537 ndn::nfd::FACE_PERSISTENCY_PERSISTENT,
Chengyu Fan4381fb62015-01-14 11:37:04 -0700538 [&] (shared_ptr<Face> newFace) {
539 face1 = newFace;
540 history1.reset(new FaceHistory(*face1, limitedIo));
541 limitedIo.afterOp();
542 },
543 [] (const std::string& reason) { BOOST_ERROR(reason); });
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700544
Chengyu Fan4381fb62015-01-14 11:37:04 -0700545 limitedIo.run(1, time::milliseconds(100));
546 BOOST_REQUIRE(face1 != nullptr);
547 BOOST_CHECK_EQUAL(channel1->size(), 1);
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700548
Chengyu Fan4381fb62015-01-14 11:37:04 -0700549 face1->close();
550 getGlobalIoService().poll();
551 BOOST_CHECK_EQUAL(history1->failures.size(), 1);
Giulio Grassi69871f02014-03-09 16:14:44 +0100552 BOOST_CHECK_EQUAL(channel1->size(), 0);
Chengyu Fan4381fb62015-01-14 11:37:04 -0700553}
Junxiao Shi79494162014-04-02 18:25:11 -0700554
Chengyu Fan4381fb62015-01-14 11:37:04 -0700555// automatically close an idle incoming face
556BOOST_AUTO_TEST_CASE_TEMPLATE(IdleClose, A, EndToEndAddresses)
557{
558 LimitedIo limitedIo;
559 UdpFactory factory;
560
561 // channel1 is listening
562 shared_ptr<UdpChannel> channel1 = factory.createChannel(A::getLocalIp(), A::getPort1(),
563 time::seconds(2));
564 shared_ptr<Face> face1;
565 unique_ptr<FaceHistory> history1;
566 channel1->listen([&] (shared_ptr<Face> newFace) {
567 BOOST_CHECK(face1 == nullptr);
568 face1 = newFace;
569 history1.reset(new FaceHistory(*face1, limitedIo));
570 limitedIo.afterOp();
571 },
572 [] (const std::string& reason) { BOOST_ERROR(reason); });
573
574 // face2 (on channel2) connects to channel1
575 shared_ptr<UdpChannel> channel2 = factory.createChannel(A::getLocalIp(), A::getPort2(),
576 time::seconds(2));
577 shared_ptr<Face> face2;
578 unique_ptr<FaceHistory> history2;
579 boost::asio::ip::address ipAddress = boost::asio::ip::address::from_string(A::getLocalIp());
580 udp::Endpoint endpoint(ipAddress, boost::lexical_cast<uint16_t>(A::getPort1()));
581 channel2->connect(endpoint,
582 [&] (shared_ptr<Face> newFace) {
583 face2 = newFace;
584 history2.reset(new FaceHistory(*face2, limitedIo));
585 limitedIo.afterOp();
586 },
587 [] (const std::string& reason) { BOOST_ERROR(reason); });
588
589 limitedIo.run(1, time::milliseconds(100)); // 1 create (on channel2)
590 BOOST_REQUIRE(face2 != nullptr);
Yukai Tu731f0d72015-07-04 11:14:44 +0800591 BOOST_CHECK_EQUAL(face2->getPersistency(), ndn::nfd::FACE_PERSISTENCY_PERSISTENT);
Davide Pesavento94279412015-02-27 01:29:32 +0100592 BOOST_CHECK_EQUAL(face2->isMultiAccess(), false);
Chengyu Fan4381fb62015-01-14 11:37:04 -0700593
594 // face2 sends to channel1, creates face1
595 shared_ptr<Interest> interest2 = makeInterest("/I2");
596 face2->sendInterest(*interest2);
597
598 limitedIo.run(2, time::seconds(1)); // 1 accept (on channel1), 1 receive (on face1)
Giulio Grassi69871f02014-03-09 16:14:44 +0100599 BOOST_CHECK_EQUAL(channel1->size(), 1);
Chengyu Fan4381fb62015-01-14 11:37:04 -0700600 BOOST_REQUIRE(face1 != nullptr);
Yukai Tu731f0d72015-07-04 11:14:44 +0800601 BOOST_CHECK_EQUAL(face1->getPersistency(), ndn::nfd::FACE_PERSISTENCY_ON_DEMAND);
Davide Pesavento94279412015-02-27 01:29:32 +0100602 BOOST_CHECK_EQUAL(face1->isMultiAccess(), false);
Junxiao Shi79494162014-04-02 18:25:11 -0700603
Chengyu Fan4381fb62015-01-14 11:37:04 -0700604 limitedIo.defer(time::seconds(1));
605 BOOST_CHECK_EQUAL(history1->failures.size(), 0); // face1 is not idle
606 BOOST_CHECK_EQUAL(history2->failures.size(), 0); // face2 is outgoing face and never closed
Giulio Grassi69871f02014-03-09 16:14:44 +0100607
Chengyu Fan4381fb62015-01-14 11:37:04 -0700608 limitedIo.defer(time::seconds(4));
609 BOOST_CHECK_EQUAL(history1->failures.size(), 1); // face1 is idle and automatically closed
610 BOOST_CHECK_EQUAL(channel1->size(), 0);
611 BOOST_CHECK_EQUAL(history2->failures.size(), 0); // face2 is outgoing face and never closed
Giulio Grassi69871f02014-03-09 16:14:44 +0100612}
613
Alexander Afanasyev70aaf8a2014-12-13 00:44:22 -0800614class FakeNetworkInterfaceFixture : public BaseFixture
615{
616public:
617 FakeNetworkInterfaceFixture()
618 {
619 using namespace boost::asio::ip;
620
621 auto fakeInterfaces = make_shared<std::vector<NetworkInterfaceInfo>>();
622
623 fakeInterfaces->push_back(
624 NetworkInterfaceInfo {0, "eth0",
625 ethernet::Address::fromString("3e:15:c2:8b:65:00"),
626 {address_v4::from_string("0.0.0.0")},
627 {address_v6::from_string("::")},
628 address_v4(),
629 IFF_UP});
630 fakeInterfaces->push_back(
631 NetworkInterfaceInfo {1, "eth0",
632 ethernet::Address::fromString("3e:15:c2:8b:65:00"),
633 {address_v4::from_string("192.168.2.1"), address_v4::from_string("192.168.2.2")},
634 {},
635 address_v4::from_string("192.168.2.255"),
636 0});
637 fakeInterfaces->push_back(
638 NetworkInterfaceInfo {2, "eth1",
639 ethernet::Address::fromString("3e:15:c2:8b:65:00"),
640 {address_v4::from_string("198.51.100.1")},
641 {address_v6::from_string("2001:db8::2"), address_v6::from_string("2001:db8::3")},
642 address_v4::from_string("198.51.100.255"),
643 IFF_MULTICAST | IFF_BROADCAST | IFF_UP});
644
645 setDebugNetworkInterfaces(fakeInterfaces);
646 }
647
648 ~FakeNetworkInterfaceFixture()
649 {
650 setDebugNetworkInterfaces(nullptr);
651 }
652};
653
654BOOST_FIXTURE_TEST_CASE(Bug2292, FakeNetworkInterfaceFixture)
655{
656 using namespace boost::asio::ip;
657
658 UdpFactory factory;
659 factory.prohibitEndpoint(udp::Endpoint(address_v4::from_string("192.168.2.1"), 1024));
660 BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 1);
661 BOOST_CHECK((factory.m_prohibitedEndpoints ==
662 std::set<udp::Endpoint> {
663 udp::Endpoint(address_v4::from_string("192.168.2.1"), 1024),
664 }));
665
666 factory.m_prohibitedEndpoints.clear();
667 factory.prohibitEndpoint(udp::Endpoint(address_v6::from_string("2001:db8::1"), 2048));
668 BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 1);
669 BOOST_CHECK((factory.m_prohibitedEndpoints ==
670 std::set<udp::Endpoint> {
671 udp::Endpoint(address_v6::from_string("2001:db8::1"), 2048),
672 }));
673
674 factory.m_prohibitedEndpoints.clear();
675 factory.prohibitEndpoint(udp::Endpoint(address_v4(), 1024));
676 BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 6);
677 BOOST_CHECK((factory.m_prohibitedEndpoints ==
678 std::set<udp::Endpoint> {
679 udp::Endpoint(address_v4::from_string("192.168.2.1"), 1024),
680 udp::Endpoint(address_v4::from_string("192.168.2.2"), 1024),
681 udp::Endpoint(address_v4::from_string("198.51.100.1"), 1024),
682 udp::Endpoint(address_v4::from_string("198.51.100.255"), 1024),
683 udp::Endpoint(address_v4::from_string("255.255.255.255"), 1024),
684 udp::Endpoint(address_v4::from_string("0.0.0.0"), 1024)
685 }));
686
687 factory.m_prohibitedEndpoints.clear();
688 factory.prohibitEndpoint(udp::Endpoint(address_v6(), 2048));
689 BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 3);
690 BOOST_CHECK((factory.m_prohibitedEndpoints ==
691 std::set<udp::Endpoint> {
692 udp::Endpoint(address_v6::from_string("2001:db8::2"), 2048),
693 udp::Endpoint(address_v6::from_string("2001:db8::3"), 2048),
694 udp::Endpoint(address_v6::from_string("::"), 2048),
695 }));
696}
697
Giulio Grassi624f6c62014-02-18 19:42:14 +0100698BOOST_AUTO_TEST_SUITE_END()
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700699
Giulio Grassi624f6c62014-02-18 19:42:14 +0100700} // namespace tests
701} // namespace nfd