Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Alexander Afanasyev | 319f2c8 | 2015-01-07 14:56:53 -0800 | [diff] [blame] | 3 | * 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 Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 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/>. |
Steve DiBenedetto | ef04f27 | 2014-06-04 14:28:31 -0600 | [diff] [blame] | 24 | */ |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 25 | |
Davide Pesavento | 6ad890a | 2015-03-09 03:43:17 +0100 | [diff] [blame] | 26 | #include "face/udp-channel.hpp" |
| 27 | #include "face/udp-face.hpp" |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 28 | #include "face/udp-factory.hpp" |
Junxiao Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 29 | |
Davide Pesavento | 6ad890a | 2015-03-09 03:43:17 +0100 | [diff] [blame] | 30 | #include "core/network-interface.hpp" |
Junxiao Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 31 | #include "tests/test-common.hpp" |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 32 | #include "tests/limited-io.hpp" |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 33 | #include "face-history.hpp" |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 34 | |
| 35 | namespace nfd { |
| 36 | namespace tests { |
| 37 | |
| 38 | BOOST_FIXTURE_TEST_SUITE(FaceUdp, BaseFixture) |
| 39 | |
Steve DiBenedetto | ef04f27 | 2014-06-04 14:28:31 -0600 | [diff] [blame] | 40 | BOOST_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 Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 65 | class FactoryErrorCheck : protected BaseFixture |
| 66 | { |
| 67 | public: |
Alexander Afanasyev | 86bc91a | 2014-08-28 22:29:16 -0700 | [diff] [blame] | 68 | bool |
| 69 | isTheSameMulticastEndpoint(const UdpFactory::Error& e) { |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 70 | 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 Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 74 | |
Alexander Afanasyev | 86bc91a | 2014-08-28 22:29:16 -0700 | [diff] [blame] | 75 | bool |
| 76 | isNotMulticastAddress(const UdpFactory::Error& e) { |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 77 | 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 Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 81 | |
Alexander Afanasyev | 86bc91a | 2014-08-28 22:29:16 -0700 | [diff] [blame] | 82 | bool |
| 83 | isTheSameUnicastEndpoint(const UdpFactory::Error& e) { |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 84 | 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 Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 88 | |
Alexander Afanasyev | 86bc91a | 2014-08-28 22:29:16 -0700 | [diff] [blame] | 89 | bool |
| 90 | isLocalEndpointOnDifferentGroup(const UdpFactory::Error& e) { |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 91 | 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 Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 97 | |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 98 | BOOST_FIXTURE_TEST_CASE(ChannelMapUdp, FactoryErrorCheck) |
| 99 | { |
| 100 | using boost::asio::ip::udp; |
Junxiao Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 101 | |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 102 | UdpFactory factory = UdpFactory(); |
Junxiao Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 103 | |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 104 | //to instantiate multicast face on a specific ip address, change interfaceIp |
| 105 | std::string interfaceIp = "0.0.0.0"; |
Junxiao Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 106 | |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 107 | 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 Shi | 61e3cc5 | 2014-03-03 20:40:28 -0700 | [diff] [blame] | 110 | BOOST_CHECK_EQUAL(channel1->getUri().toString(), "udp4://127.0.0.1:20070"); |
Junxiao Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 111 | |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 112 | 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 Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 116 | |
Junxiao Shi | 61e3cc5 | 2014-03-03 20:40:28 -0700 | [diff] [blame] | 117 | 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 Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 121 | //same endpoint of a unicast channel |
Davide Pesavento | 9427941 | 2015-02-27 01:29:32 +0100 | [diff] [blame] | 122 | BOOST_CHECK_EXCEPTION(factory.createMulticastFace(interfaceIp, "224.0.0.1", "20070"), |
| 123 | UdpFactory::Error, isTheSameUnicastEndpoint); |
Junxiao Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 124 | |
Davide Pesavento | 9427941 | 2015-02-27 01:29:32 +0100 | [diff] [blame] | 125 | auto multicastFace1 = factory.createMulticastFace(interfaceIp, "224.0.0.1", "20072"); |
| 126 | auto multicastFace1a = factory.createMulticastFace(interfaceIp, "224.0.0.1", "20072"); |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 127 | BOOST_CHECK_EQUAL(multicastFace1, multicastFace1a); |
Davide Pesavento | 9427941 | 2015-02-27 01:29:32 +0100 | [diff] [blame] | 128 | BOOST_CHECK_EQUAL(multicastFace1->isLocal(), false); |
Yukai Tu | 731f0d7 | 2015-07-04 11:14:44 +0800 | [diff] [blame] | 129 | BOOST_CHECK_EQUAL(multicastFace1->getPersistency(), ndn::nfd::FACE_PERSISTENCY_PERSISTENT); |
Davide Pesavento | 9427941 | 2015-02-27 01:29:32 +0100 | [diff] [blame] | 130 | BOOST_CHECK_EQUAL(multicastFace1->isMultiAccess(), true); |
Junxiao Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 131 | |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 132 | //same endpoint of a multicast face |
| 133 | BOOST_CHECK_EXCEPTION(factory.createChannel(interfaceIp, "20072"), |
Davide Pesavento | 9427941 | 2015-02-27 01:29:32 +0100 | [diff] [blame] | 134 | UdpFactory::Error, isTheSameMulticastEndpoint); |
Junxiao Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 135 | |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 136 | //same multicast endpoint, different group |
Davide Pesavento | 9427941 | 2015-02-27 01:29:32 +0100 | [diff] [blame] | 137 | BOOST_CHECK_EXCEPTION(factory.createMulticastFace(interfaceIp, "224.0.0.42", "20072"), |
| 138 | UdpFactory::Error, isLocalEndpointOnDifferentGroup); |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 139 | |
Davide Pesavento | 9427941 | 2015-02-27 01:29:32 +0100 | [diff] [blame] | 140 | BOOST_CHECK_EXCEPTION(factory.createMulticastFace(interfaceIp, "192.168.10.15", "20025"), |
| 141 | UdpFactory::Error, isNotMulticastAddress); |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 142 | |
Junxiao Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 143 | |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 144 | // //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 Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 162 | // |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 163 | // shared_ptr<MulticastUdpFace> multicastFace4 = factory.createMulticastFace("fe80::aa54:b2ff:fe08:27b8%wlan0", |
| 164 | // "FF01:0:0:0:0:0:0:2", |
| 165 | // "20073"); |
Junxiao Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 166 | // |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 167 | // 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 Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 172 | // |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 173 | // 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 Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 180 | // |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 181 | // //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 Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 197 | } |
| 198 | |
Alexander Afanasyev | 86bc91a | 2014-08-28 22:29:16 -0700 | [diff] [blame] | 199 | class FaceCreateFixture : protected BaseFixture |
| 200 | { |
| 201 | public: |
| 202 | void |
Alexander Afanasyev | 86bc91a | 2014-08-28 22:29:16 -0700 | [diff] [blame] | 203 | 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 | |
| 215 | BOOST_FIXTURE_TEST_CASE(FaceCreate, FaceCreateFixture) |
| 216 | { |
| 217 | UdpFactory factory = UdpFactory(); |
| 218 | |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 219 | factory.createFace(FaceUri("udp4://127.0.0.1:6363"), |
Yukai Tu | 7c90e6d | 2015-07-11 12:21:46 +0800 | [diff] [blame] | 220 | ndn::nfd::FACE_PERSISTENCY_PERSISTENT, |
| 221 | bind([]{}), |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 222 | bind(&FaceCreateFixture::checkError, this, _1, |
| 223 | "No channels available to connect to 127.0.0.1:6363")); |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 224 | |
Alexander Afanasyev | a39b90b | 2014-03-05 15:31:00 +0000 | [diff] [blame] | 225 | factory.createChannel("127.0.0.1", "20071"); |
Junxiao Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 226 | |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 227 | factory.createFace(FaceUri("udp4://127.0.0.1:20070"), |
Yukai Tu | 7c90e6d | 2015-07-11 12:21:46 +0800 | [diff] [blame] | 228 | ndn::nfd::FACE_PERSISTENCY_PERSISTENT, |
| 229 | bind([]{}), |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 230 | bind(&FaceCreateFixture::failIfError, this, _1)); |
| 231 | } |
Junxiao Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 232 | |
Yukai Tu | 7c90e6d | 2015-07-11 12:21:46 +0800 | [diff] [blame] | 233 | BOOST_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 Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 253 | class EndToEndIpv4 |
| 254 | { |
| 255 | public: |
| 256 | static const std::string |
| 257 | getScheme() |
| 258 | { |
| 259 | return "udp4"; |
| 260 | } |
Junxiao Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 261 | |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 262 | static const std::string |
| 263 | getLocalIp() |
| 264 | { |
| 265 | return "127.0.0.1"; |
| 266 | } |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 267 | |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 268 | 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 | |
| 305 | class EndToEndIpv6 |
| 306 | { |
| 307 | public: |
| 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 | |
| 357 | typedef boost::mpl::list<EndToEndIpv4, EndToEndIpv6> EndToEndAddresses; |
| 358 | |
| 359 | // end to end communication |
| 360 | BOOST_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 Tu | 7c90e6d | 2015-07-11 12:21:46 +0800 | [diff] [blame] | 371 | ndn::nfd::FACE_PERSISTENCY_PERSISTENT, |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 372 | [&] (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 Shi | 5dd26c3 | 2014-07-20 23:15:14 -0700 | [diff] [blame] | 422 | BOOST_CHECK_EQUAL(face2->getCounters().getNOutBytes(), 0); |
Junxiao Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 423 | |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 424 | 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 Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 428 | |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 429 | // 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 Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 435 | |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 436 | limitedIo.run(4, time::seconds(1)); // 4 receives |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 437 | |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 438 | 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 Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 442 | |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 443 | // counters |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 444 | const FaceCounters& counters1 = face1->getCounters(); |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 445 | 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 Shi | 5dd26c3 | 2014-07-20 23:15:14 -0700 | [diff] [blame] | 449 | BOOST_CHECK_EQUAL(counters1.getNInBytes(), nBytesSent2); |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 450 | BOOST_CHECK_EQUAL(counters1.getNOutBytes(), nBytesSent1); |
Alexander Afanasyev | 7e698e6 | 2014-03-07 16:48:35 +0000 | [diff] [blame] | 451 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 452 | const FaceCounters& counters2 = face2->getCounters(); |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 453 | 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 Shi | 5dd26c3 | 2014-07-20 23:15:14 -0700 | [diff] [blame] | 458 | BOOST_CHECK_EQUAL(counters2.getNOutBytes(), nBytesSent2); |
Alexander Afanasyev | a39b90b | 2014-03-05 15:31:00 +0000 | [diff] [blame] | 459 | } |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 460 | |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 461 | // channel accepting multiple incoming connections |
| 462 | BOOST_AUTO_TEST_CASE_TEMPLATE(MultipleAccepts, A, EndToEndAddresses) |
Alexander Afanasyev | a39b90b | 2014-03-05 15:31:00 +0000 | [diff] [blame] | 463 | { |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 464 | LimitedIo limitedIo; |
Alexander Afanasyev | a39b90b | 2014-03-05 15:31:00 +0000 | [diff] [blame] | 465 | UdpFactory factory; |
| 466 | |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 467 | // 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 Afanasyev | a39b90b | 2014-03-05 15:31:00 +0000 | [diff] [blame] | 475 | |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 476 | // 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 Afanasyev | a39b90b | 2014-03-05 15:31:00 +0000 | [diff] [blame] | 488 | |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 489 | 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 Afanasyev | a39b90b | 2014-03-05 15:31:00 +0000 | [diff] [blame] | 492 | |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 493 | // 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 Afanasyev | a39b90b | 2014-03-05 15:31:00 +0000 | [diff] [blame] | 505 | |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 506 | 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 Afanasyev | a39b90b | 2014-03-05 15:31:00 +0000 | [diff] [blame] | 509 | |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 510 | // 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 Afanasyev | a39b90b | 2014-03-05 15:31:00 +0000 | [diff] [blame] | 517 | |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 518 | // 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 Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 525 | } |
| 526 | |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 527 | // manually close a face |
| 528 | BOOST_AUTO_TEST_CASE_TEMPLATE(ManualClose, A, EndToEndAddresses) |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 529 | { |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 530 | LimitedIo limitedIo; |
Junxiao Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 531 | UdpFactory factory; |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 532 | |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 533 | 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 Tu | 7c90e6d | 2015-07-11 12:21:46 +0800 | [diff] [blame] | 537 | ndn::nfd::FACE_PERSISTENCY_PERSISTENT, |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 538 | [&] (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 Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 544 | |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 545 | limitedIo.run(1, time::milliseconds(100)); |
| 546 | BOOST_REQUIRE(face1 != nullptr); |
| 547 | BOOST_CHECK_EQUAL(channel1->size(), 1); |
Junxiao Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 548 | |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 549 | face1->close(); |
| 550 | getGlobalIoService().poll(); |
| 551 | BOOST_CHECK_EQUAL(history1->failures.size(), 1); |
Giulio Grassi | 69871f0 | 2014-03-09 16:14:44 +0100 | [diff] [blame] | 552 | BOOST_CHECK_EQUAL(channel1->size(), 0); |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 553 | } |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 554 | |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 555 | // automatically close an idle incoming face |
| 556 | BOOST_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 Tu | 731f0d7 | 2015-07-04 11:14:44 +0800 | [diff] [blame] | 591 | BOOST_CHECK_EQUAL(face2->getPersistency(), ndn::nfd::FACE_PERSISTENCY_PERSISTENT); |
Davide Pesavento | 9427941 | 2015-02-27 01:29:32 +0100 | [diff] [blame] | 592 | BOOST_CHECK_EQUAL(face2->isMultiAccess(), false); |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 593 | |
| 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 Grassi | 69871f0 | 2014-03-09 16:14:44 +0100 | [diff] [blame] | 599 | BOOST_CHECK_EQUAL(channel1->size(), 1); |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 600 | BOOST_REQUIRE(face1 != nullptr); |
Yukai Tu | 731f0d7 | 2015-07-04 11:14:44 +0800 | [diff] [blame] | 601 | BOOST_CHECK_EQUAL(face1->getPersistency(), ndn::nfd::FACE_PERSISTENCY_ON_DEMAND); |
Davide Pesavento | 9427941 | 2015-02-27 01:29:32 +0100 | [diff] [blame] | 602 | BOOST_CHECK_EQUAL(face1->isMultiAccess(), false); |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 603 | |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 604 | 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 Grassi | 69871f0 | 2014-03-09 16:14:44 +0100 | [diff] [blame] | 607 | |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 608 | 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 Grassi | 69871f0 | 2014-03-09 16:14:44 +0100 | [diff] [blame] | 612 | } |
| 613 | |
Alexander Afanasyev | 70aaf8a | 2014-12-13 00:44:22 -0800 | [diff] [blame] | 614 | class FakeNetworkInterfaceFixture : public BaseFixture |
| 615 | { |
| 616 | public: |
| 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 | |
| 654 | BOOST_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 Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 698 | BOOST_AUTO_TEST_SUITE_END() |
Junxiao Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 699 | |
Giulio Grassi | 624f6c6 | 2014-02-18 19:42:14 +0100 | [diff] [blame] | 700 | } // namespace tests |
| 701 | } // namespace nfd |