Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Junxiao Shi | 38b24c7 | 2017-01-05 02:59:31 +0000 | [diff] [blame] | 3 | * Copyright (c) 2014-2017, Regents of the University of California, |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 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. |
| 10 | * |
| 11 | * This file is part of NFD (Named Data Networking Forwarding Daemon). |
| 12 | * See AUTHORS.md for complete list of NFD authors and contributors. |
| 13 | * |
| 14 | * NFD is free software: you can redistribute it and/or modify it under the terms |
| 15 | * of the GNU General Public License as published by the Free Software Foundation, |
| 16 | * either version 3 of the License, or (at your option) any later version. |
| 17 | * |
| 18 | * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 19 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 20 | * PURPOSE. See the GNU General Public License for more details. |
| 21 | * |
| 22 | * You should have received a copy of the GNU General Public License along with |
| 23 | * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 24 | */ |
| 25 | |
| 26 | #include "face/udp-factory.hpp" |
| 27 | |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 28 | #include "factory-test-common.hpp" |
Junxiao Shi | 64d99f2 | 2017-01-21 23:06:36 +0000 | [diff] [blame] | 29 | #include "face-system-fixture.hpp" |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 30 | #include "tests/limited-io.hpp" |
Junxiao Shi | c31080d | 2017-01-24 15:10:12 +0000 | [diff] [blame] | 31 | #include <boost/algorithm/string/replace.hpp> |
| 32 | #include <boost/range/algorithm.hpp> |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 33 | |
| 34 | namespace nfd { |
Junxiao Shi | 64d99f2 | 2017-01-21 23:06:36 +0000 | [diff] [blame] | 35 | namespace face { |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 36 | namespace tests { |
| 37 | |
Junxiao Shi | 64d99f2 | 2017-01-21 23:06:36 +0000 | [diff] [blame] | 38 | using namespace nfd::tests; |
| 39 | |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 40 | BOOST_AUTO_TEST_SUITE(Face) |
| 41 | BOOST_FIXTURE_TEST_SUITE(TestUdpFactory, BaseFixture) |
| 42 | |
| 43 | using nfd::Face; |
| 44 | |
Junxiao Shi | 64d99f2 | 2017-01-21 23:06:36 +0000 | [diff] [blame] | 45 | BOOST_FIXTURE_TEST_SUITE(ProcessConfig, FaceSystemFixture) |
| 46 | |
| 47 | BOOST_AUTO_TEST_CASE(Channels) |
| 48 | { |
| 49 | const std::string CONFIG = R"CONFIG( |
| 50 | face_system |
| 51 | { |
| 52 | udp |
| 53 | { |
| 54 | port 7001 |
| 55 | enable_v4 yes |
| 56 | enable_v6 yes |
| 57 | idle_timeout 30 |
| 58 | mcast no |
| 59 | } |
| 60 | } |
| 61 | )CONFIG"; |
| 62 | |
| 63 | parseConfig(CONFIG, true); |
| 64 | parseConfig(CONFIG, false); |
| 65 | |
| 66 | auto& factory = this->getFactoryById<UdpFactory>("udp"); |
| 67 | checkChannelListEqual(factory, {"udp4://0.0.0.0:7001", "udp6://[::]:7001"}); |
| 68 | } |
| 69 | |
| 70 | BOOST_AUTO_TEST_CASE(ChannelV4) |
| 71 | { |
| 72 | const std::string CONFIG = R"CONFIG( |
| 73 | face_system |
| 74 | { |
| 75 | udp |
| 76 | { |
| 77 | port 7001 |
| 78 | enable_v4 yes |
| 79 | enable_v6 no |
| 80 | mcast no |
| 81 | } |
| 82 | } |
| 83 | )CONFIG"; |
| 84 | |
| 85 | parseConfig(CONFIG, true); |
| 86 | parseConfig(CONFIG, false); |
| 87 | |
| 88 | auto& factory = this->getFactoryById<UdpFactory>("udp"); |
| 89 | checkChannelListEqual(factory, {"udp4://0.0.0.0:7001"}); |
| 90 | } |
| 91 | |
| 92 | BOOST_AUTO_TEST_CASE(ChannelV6) |
| 93 | { |
| 94 | const std::string CONFIG = R"CONFIG( |
| 95 | face_system |
| 96 | { |
| 97 | udp |
| 98 | { |
| 99 | port 7001 |
| 100 | enable_v4 no |
| 101 | enable_v6 yes |
| 102 | mcast no |
| 103 | } |
| 104 | } |
| 105 | )CONFIG"; |
| 106 | |
| 107 | parseConfig(CONFIG, true); |
| 108 | parseConfig(CONFIG, false); |
| 109 | |
| 110 | auto& factory = this->getFactoryById<UdpFactory>("udp"); |
| 111 | checkChannelListEqual(factory, {"udp6://[::]:7001"}); |
| 112 | } |
| 113 | |
| 114 | class UdpMcastConfigFixture : public FaceSystemFixture |
| 115 | { |
| 116 | protected: |
| 117 | UdpMcastConfigFixture() |
| 118 | { |
| 119 | for (const auto& netif : listNetworkInterfaces()) { |
| 120 | if (netif.isUp() && netif.isMulticastCapable() && !netif.ipv4Addresses.empty()) { |
| 121 | netifs.push_back(netif); |
| 122 | } |
| 123 | } |
| 124 | } |
| 125 | |
| 126 | std::vector<const Face*> |
Teng Liang | fe4fce3 | 2017-03-29 04:49:38 +0000 | [diff] [blame] | 127 | listUdpMcastFaces(ndn::nfd::LinkType linkType = ndn::nfd::LINK_TYPE_MULTI_ACCESS) const |
Junxiao Shi | 64d99f2 | 2017-01-21 23:06:36 +0000 | [diff] [blame] | 128 | { |
Teng Liang | fe4fce3 | 2017-03-29 04:49:38 +0000 | [diff] [blame] | 129 | return this->listFacesByScheme("udp4", linkType); |
Junxiao Shi | 64d99f2 | 2017-01-21 23:06:36 +0000 | [diff] [blame] | 130 | } |
| 131 | |
| 132 | size_t |
Teng Liang | fe4fce3 | 2017-03-29 04:49:38 +0000 | [diff] [blame] | 133 | countUdpMcastFaces(ndn::nfd::LinkType linkType = ndn::nfd::LINK_TYPE_MULTI_ACCESS) const |
Junxiao Shi | 64d99f2 | 2017-01-21 23:06:36 +0000 | [diff] [blame] | 134 | { |
Teng Liang | fe4fce3 | 2017-03-29 04:49:38 +0000 | [diff] [blame] | 135 | return this->listUdpMcastFaces(linkType).size(); |
Junxiao Shi | 64d99f2 | 2017-01-21 23:06:36 +0000 | [diff] [blame] | 136 | } |
| 137 | |
Junxiao Shi | c31080d | 2017-01-24 15:10:12 +0000 | [diff] [blame] | 138 | /** \brief determine whether a UDP multicast face is created on \p netif |
| 139 | */ |
| 140 | static bool |
| 141 | isFaceOnNetif(const Face& face, const NetworkInterfaceInfo& netif) |
| 142 | { |
| 143 | auto ip = boost::asio::ip::address_v4::from_string(face.getLocalUri().getHost()); |
| 144 | return boost::count(netif.ipv4Addresses, ip) > 0; |
| 145 | } |
| 146 | |
Junxiao Shi | 64d99f2 | 2017-01-21 23:06:36 +0000 | [diff] [blame] | 147 | protected: |
| 148 | /** \brief MulticastUdpTransport-capable network interfaces |
| 149 | */ |
| 150 | std::vector<NetworkInterfaceInfo> netifs; |
| 151 | }; |
| 152 | |
| 153 | #define SKIP_IF_UDP_MCAST_NETIF_COUNT_LT(n) \ |
| 154 | do { \ |
| 155 | if (this->netifs.size() < (n)) { \ |
| 156 | BOOST_WARN_MESSAGE(false, "skipping assertions that require " #n \ |
| 157 | " or more MulticastUdpTransport-capable network interfaces"); \ |
| 158 | return; \ |
| 159 | } \ |
| 160 | } while (false) |
| 161 | |
| 162 | BOOST_FIXTURE_TEST_CASE(EnableDisableMcast, UdpMcastConfigFixture) |
| 163 | { |
| 164 | #ifdef __linux__ |
| 165 | // need superuser privilege for creating multicast faces on linux |
| 166 | SKIP_IF_NOT_SUPERUSER(); |
| 167 | #endif // __linux__ |
| 168 | |
| 169 | const std::string CONFIG_WITH_MCAST = R"CONFIG( |
| 170 | face_system |
| 171 | { |
| 172 | udp |
| 173 | { |
| 174 | mcast yes |
| 175 | } |
| 176 | } |
| 177 | )CONFIG"; |
| 178 | const std::string CONFIG_WITHOUT_MCAST = R"CONFIG( |
| 179 | face_system |
| 180 | { |
| 181 | udp |
| 182 | { |
| 183 | mcast no |
| 184 | } |
| 185 | } |
| 186 | )CONFIG"; |
| 187 | |
| 188 | parseConfig(CONFIG_WITHOUT_MCAST, false); |
| 189 | BOOST_CHECK_EQUAL(this->countUdpMcastFaces(), 0); |
| 190 | |
| 191 | SKIP_IF_UDP_MCAST_NETIF_COUNT_LT(1); |
| 192 | |
| 193 | parseConfig(CONFIG_WITH_MCAST, false); |
| 194 | g_io.poll(); |
| 195 | BOOST_CHECK_EQUAL(this->countUdpMcastFaces(), netifs.size()); |
| 196 | |
| 197 | parseConfig(CONFIG_WITHOUT_MCAST, false); |
| 198 | g_io.poll(); |
| 199 | BOOST_CHECK_EQUAL(this->countUdpMcastFaces(), 0); |
| 200 | } |
| 201 | |
Teng Liang | fe4fce3 | 2017-03-29 04:49:38 +0000 | [diff] [blame] | 202 | BOOST_FIXTURE_TEST_CASE(McastAdHoc, UdpMcastConfigFixture) |
| 203 | { |
| 204 | #ifdef __linux__ |
| 205 | // need superuser privilege for creating multicast faces on linux |
| 206 | SKIP_IF_NOT_SUPERUSER(); |
| 207 | #endif // __linux__ |
| 208 | SKIP_IF_UDP_MCAST_NETIF_COUNT_LT(1); |
| 209 | |
| 210 | const std::string CONFIG = R"CONFIG( |
| 211 | face_system |
| 212 | { |
| 213 | udp |
| 214 | { |
| 215 | mcast_ad_hoc yes |
| 216 | } |
| 217 | } |
| 218 | )CONFIG"; |
| 219 | |
| 220 | parseConfig(CONFIG, false); |
| 221 | BOOST_CHECK_EQUAL(this->countUdpMcastFaces(ndn::nfd::LINK_TYPE_AD_HOC), netifs.size()); |
| 222 | } |
| 223 | |
Junxiao Shi | 64d99f2 | 2017-01-21 23:06:36 +0000 | [diff] [blame] | 224 | BOOST_FIXTURE_TEST_CASE(ChangeMcastEndpoint, UdpMcastConfigFixture) |
| 225 | { |
| 226 | #ifdef __linux__ |
| 227 | // need superuser privilege for creating multicast faces on linux |
| 228 | SKIP_IF_NOT_SUPERUSER(); |
| 229 | #endif // __linux__ |
| 230 | SKIP_IF_UDP_MCAST_NETIF_COUNT_LT(1); |
| 231 | |
| 232 | const std::string CONFIG1 = R"CONFIG( |
| 233 | face_system |
| 234 | { |
| 235 | udp |
| 236 | { |
| 237 | mcast_group 239.66.30.1 |
| 238 | mcast_port 7011 |
| 239 | } |
| 240 | } |
| 241 | )CONFIG"; |
| 242 | const std::string CONFIG2 = R"CONFIG( |
| 243 | face_system |
| 244 | { |
| 245 | udp |
| 246 | { |
| 247 | mcast_group 239.66.30.2 |
| 248 | mcast_port 7012 |
| 249 | } |
| 250 | } |
| 251 | )CONFIG"; |
| 252 | |
| 253 | parseConfig(CONFIG1, false); |
| 254 | auto udpMcastFaces = this->listUdpMcastFaces(); |
| 255 | BOOST_REQUIRE_EQUAL(udpMcastFaces.size(), netifs.size()); |
| 256 | BOOST_CHECK_EQUAL(udpMcastFaces.front()->getRemoteUri(), |
| 257 | FaceUri("udp4://239.66.30.1:7011")); |
| 258 | |
| 259 | parseConfig(CONFIG2, false); |
| 260 | g_io.poll(); |
| 261 | udpMcastFaces = this->listUdpMcastFaces(); |
| 262 | BOOST_REQUIRE_EQUAL(udpMcastFaces.size(), netifs.size()); |
| 263 | BOOST_CHECK_EQUAL(udpMcastFaces.front()->getRemoteUri(), |
| 264 | FaceUri("udp4://239.66.30.2:7012")); |
| 265 | } |
| 266 | |
Junxiao Shi | c31080d | 2017-01-24 15:10:12 +0000 | [diff] [blame] | 267 | BOOST_FIXTURE_TEST_CASE(Whitelist, UdpMcastConfigFixture) |
| 268 | { |
| 269 | #ifdef __linux__ |
| 270 | // need superuser privilege for creating multicast faces on linux |
| 271 | SKIP_IF_NOT_SUPERUSER(); |
| 272 | #endif // __linux__ |
| 273 | SKIP_IF_UDP_MCAST_NETIF_COUNT_LT(1); |
| 274 | |
| 275 | std::string CONFIG = R"CONFIG( |
| 276 | face_system |
| 277 | { |
| 278 | udp |
| 279 | { |
| 280 | whitelist |
| 281 | { |
| 282 | ifname %ifname |
| 283 | } |
| 284 | } |
| 285 | } |
| 286 | )CONFIG"; |
| 287 | boost::replace_first(CONFIG, "%ifname", netifs.front().name); |
| 288 | |
| 289 | parseConfig(CONFIG, false); |
| 290 | auto udpMcastFaces = this->listUdpMcastFaces(); |
| 291 | BOOST_REQUIRE_EQUAL(udpMcastFaces.size(), 1); |
| 292 | BOOST_CHECK(isFaceOnNetif(*udpMcastFaces.front(), netifs.front())); |
| 293 | } |
| 294 | |
| 295 | BOOST_FIXTURE_TEST_CASE(Blacklist, UdpMcastConfigFixture) |
| 296 | { |
| 297 | #ifdef __linux__ |
| 298 | // need superuser privilege for creating multicast faces on linux |
| 299 | SKIP_IF_NOT_SUPERUSER(); |
| 300 | #endif // __linux__ |
| 301 | SKIP_IF_UDP_MCAST_NETIF_COUNT_LT(1); |
| 302 | |
| 303 | std::string CONFIG = R"CONFIG( |
| 304 | face_system |
| 305 | { |
| 306 | udp |
| 307 | { |
| 308 | blacklist |
| 309 | { |
| 310 | ifname %ifname |
| 311 | } |
| 312 | } |
| 313 | } |
| 314 | )CONFIG"; |
| 315 | boost::replace_first(CONFIG, "%ifname", netifs.front().name); |
| 316 | |
| 317 | parseConfig(CONFIG, false); |
| 318 | auto udpMcastFaces = this->listUdpMcastFaces(); |
| 319 | BOOST_CHECK_EQUAL(udpMcastFaces.size(), netifs.size() - 1); |
| 320 | BOOST_CHECK_EQUAL(boost::count_if(udpMcastFaces, [=] (const Face* face) { |
| 321 | return isFaceOnNetif(*face, netifs.front()); |
| 322 | }), 0); |
| 323 | } |
| 324 | |
| 325 | BOOST_FIXTURE_TEST_CASE(ChangePredicate, UdpMcastConfigFixture) |
| 326 | { |
| 327 | #ifdef __linux__ |
| 328 | // need superuser privilege for creating multicast faces on linux |
| 329 | SKIP_IF_NOT_SUPERUSER(); |
| 330 | #endif // __linux__ |
| 331 | SKIP_IF_UDP_MCAST_NETIF_COUNT_LT(2); |
| 332 | |
| 333 | std::string CONFIG1 = R"CONFIG( |
| 334 | face_system |
| 335 | { |
| 336 | udp |
| 337 | { |
| 338 | whitelist |
| 339 | { |
| 340 | ifname %ifname |
| 341 | } |
| 342 | } |
| 343 | } |
| 344 | )CONFIG"; |
| 345 | std::string CONFIG2 = CONFIG1; |
| 346 | boost::replace_first(CONFIG1, "%ifname", netifs.front().name); |
| 347 | boost::replace_first(CONFIG2, "%ifname", netifs.back().name); |
| 348 | |
| 349 | parseConfig(CONFIG1, false); |
| 350 | auto udpMcastFaces = this->listUdpMcastFaces(); |
| 351 | BOOST_REQUIRE_EQUAL(udpMcastFaces.size(), 1); |
| 352 | BOOST_CHECK(isFaceOnNetif(*udpMcastFaces.front(), netifs.front())); |
| 353 | |
| 354 | parseConfig(CONFIG2, false); |
| 355 | g_io.poll(); |
| 356 | udpMcastFaces = this->listUdpMcastFaces(); |
| 357 | BOOST_REQUIRE_EQUAL(udpMcastFaces.size(), 1); |
| 358 | BOOST_CHECK(isFaceOnNetif(*udpMcastFaces.front(), netifs.back())); |
| 359 | } |
| 360 | |
Junxiao Shi | 64d99f2 | 2017-01-21 23:06:36 +0000 | [diff] [blame] | 361 | BOOST_AUTO_TEST_CASE(Omitted) |
| 362 | { |
| 363 | const std::string CONFIG = R"CONFIG( |
| 364 | face_system |
| 365 | { |
| 366 | } |
| 367 | )CONFIG"; |
| 368 | |
| 369 | parseConfig(CONFIG, true); |
| 370 | parseConfig(CONFIG, false); |
| 371 | |
| 372 | auto& factory = this->getFactoryById<UdpFactory>("udp"); |
| 373 | BOOST_CHECK_EQUAL(factory.getChannels().size(), 0); |
| 374 | BOOST_CHECK_EQUAL(this->listFacesByScheme("udp4", ndn::nfd::LINK_TYPE_MULTI_ACCESS).size(), 0); |
| 375 | } |
| 376 | |
| 377 | BOOST_AUTO_TEST_CASE(BadIdleTimeout) |
| 378 | { |
| 379 | const std::string CONFIG = R"CONFIG( |
| 380 | face_system |
| 381 | { |
| 382 | udp |
| 383 | { |
| 384 | idle_timeout hello |
| 385 | } |
| 386 | } |
| 387 | )CONFIG"; |
| 388 | |
| 389 | BOOST_CHECK_THROW(parseConfig(CONFIG, true), ConfigFile::Error); |
| 390 | BOOST_CHECK_THROW(parseConfig(CONFIG, false), ConfigFile::Error); |
| 391 | } |
| 392 | |
| 393 | BOOST_AUTO_TEST_CASE(BadMcast) |
| 394 | { |
| 395 | const std::string CONFIG = R"CONFIG( |
| 396 | face_system |
| 397 | { |
| 398 | udp |
| 399 | { |
| 400 | mcast hello |
| 401 | } |
| 402 | } |
| 403 | )CONFIG"; |
| 404 | |
| 405 | BOOST_CHECK_THROW(parseConfig(CONFIG, true), ConfigFile::Error); |
| 406 | BOOST_CHECK_THROW(parseConfig(CONFIG, false), ConfigFile::Error); |
| 407 | } |
| 408 | |
| 409 | BOOST_AUTO_TEST_CASE(BadMcastGroup) |
| 410 | { |
| 411 | const std::string CONFIG = R"CONFIG( |
| 412 | face_system |
| 413 | { |
| 414 | udp |
| 415 | { |
| 416 | mcast_group hello |
| 417 | } |
| 418 | } |
| 419 | )CONFIG"; |
| 420 | |
| 421 | BOOST_CHECK_THROW(parseConfig(CONFIG, true), ConfigFile::Error); |
| 422 | BOOST_CHECK_THROW(parseConfig(CONFIG, false), ConfigFile::Error); |
| 423 | } |
| 424 | |
| 425 | BOOST_AUTO_TEST_CASE(BadMcastGroupV4Unicast) |
| 426 | { |
| 427 | const std::string CONFIG = R"CONFIG( |
| 428 | face_system |
| 429 | { |
| 430 | udp |
| 431 | { |
| 432 | mcast_group 10.0.0.1 |
| 433 | } |
| 434 | } |
| 435 | )CONFIG"; |
| 436 | |
| 437 | BOOST_CHECK_THROW(parseConfig(CONFIG, true), ConfigFile::Error); |
| 438 | BOOST_CHECK_THROW(parseConfig(CONFIG, false), ConfigFile::Error); |
| 439 | } |
| 440 | |
| 441 | BOOST_AUTO_TEST_CASE(BadMcastGroupV6) |
| 442 | { |
| 443 | const std::string CONFIG = R"CONFIG( |
| 444 | face_system |
| 445 | { |
| 446 | udp |
| 447 | { |
| 448 | mcast_group ff00::1 |
| 449 | } |
| 450 | } |
| 451 | )CONFIG"; |
| 452 | |
| 453 | BOOST_CHECK_THROW(parseConfig(CONFIG, true), ConfigFile::Error); |
| 454 | BOOST_CHECK_THROW(parseConfig(CONFIG, false), ConfigFile::Error); |
| 455 | } |
| 456 | |
| 457 | BOOST_AUTO_TEST_CASE(AllDisabled) |
| 458 | { |
| 459 | const std::string CONFIG = R"CONFIG( |
| 460 | face_system |
| 461 | { |
| 462 | udp |
| 463 | { |
| 464 | enable_v4 no |
| 465 | enable_v6 no |
| 466 | mcast no |
| 467 | } |
| 468 | } |
| 469 | )CONFIG"; |
| 470 | |
| 471 | BOOST_CHECK_THROW(parseConfig(CONFIG, true), ConfigFile::Error); |
| 472 | BOOST_CHECK_THROW(parseConfig(CONFIG, false), ConfigFile::Error); |
| 473 | } |
| 474 | |
| 475 | BOOST_AUTO_TEST_CASE(UnknownOption) |
| 476 | { |
| 477 | const std::string CONFIG = R"CONFIG( |
| 478 | face_system |
| 479 | { |
| 480 | udp |
| 481 | { |
| 482 | hello |
| 483 | } |
| 484 | } |
| 485 | )CONFIG"; |
| 486 | |
| 487 | BOOST_CHECK_THROW(parseConfig(CONFIG, true), ConfigFile::Error); |
| 488 | BOOST_CHECK_THROW(parseConfig(CONFIG, false), ConfigFile::Error); |
| 489 | } |
| 490 | |
| 491 | BOOST_AUTO_TEST_SUITE_END() // ProcessConfig |
| 492 | |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 493 | BOOST_AUTO_TEST_CASE(GetChannels) |
| 494 | { |
| 495 | UdpFactory factory; |
| 496 | BOOST_REQUIRE_EQUAL(factory.getChannels().empty(), true); |
| 497 | |
| 498 | std::vector<shared_ptr<const Channel>> expectedChannels; |
| 499 | expectedChannels.push_back(factory.createChannel("127.0.0.1", "20070")); |
| 500 | expectedChannels.push_back(factory.createChannel("127.0.0.1", "20071")); |
| 501 | expectedChannels.push_back(factory.createChannel("::1", "20071")); |
| 502 | |
| 503 | for (const auto& i : factory.getChannels()) { |
| 504 | auto pos = std::find(expectedChannels.begin(), expectedChannels.end(), i); |
| 505 | BOOST_REQUIRE(pos != expectedChannels.end()); |
| 506 | expectedChannels.erase(pos); |
| 507 | } |
| 508 | |
| 509 | BOOST_CHECK_EQUAL(expectedChannels.size(), 0); |
| 510 | } |
| 511 | |
Weiwei Liu | 72cee94 | 2016-02-04 16:49:19 -0700 | [diff] [blame] | 512 | BOOST_AUTO_TEST_CASE(CreateChannel) |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 513 | { |
Weiwei Liu | 72cee94 | 2016-02-04 16:49:19 -0700 | [diff] [blame] | 514 | UdpFactory factory; |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 515 | |
Weiwei Liu | 72cee94 | 2016-02-04 16:49:19 -0700 | [diff] [blame] | 516 | auto channel1 = factory.createChannel("127.0.0.1", "20070"); |
| 517 | auto channel1a = factory.createChannel("127.0.0.1", "20070"); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 518 | BOOST_CHECK_EQUAL(channel1, channel1a); |
| 519 | BOOST_CHECK_EQUAL(channel1->getUri().toString(), "udp4://127.0.0.1:20070"); |
| 520 | |
Weiwei Liu | 72cee94 | 2016-02-04 16:49:19 -0700 | [diff] [blame] | 521 | auto channel2 = factory.createChannel("127.0.0.1", "20071"); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 522 | BOOST_CHECK_NE(channel1, channel2); |
| 523 | |
Weiwei Liu | 72cee94 | 2016-02-04 16:49:19 -0700 | [diff] [blame] | 524 | auto channel3 = factory.createChannel("::1", "20071"); |
| 525 | BOOST_CHECK_NE(channel2, channel3); |
| 526 | BOOST_CHECK_EQUAL(channel3->getUri().toString(), "udp6://[::1]:20071"); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 527 | |
Weiwei Liu | 72cee94 | 2016-02-04 16:49:19 -0700 | [diff] [blame] | 528 | // createChannel with multicast address |
| 529 | BOOST_CHECK_EXCEPTION(factory.createChannel("224.0.0.1", "20070"), UdpFactory::Error, |
| 530 | [] (const UdpFactory::Error& e) { |
| 531 | return strcmp(e.what(), |
| 532 | "createChannel is only for unicast channels. The provided endpoint " |
| 533 | "is multicast. Use createMulticastFace to create a multicast face") == 0; |
| 534 | }); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 535 | |
Weiwei Liu | 72cee94 | 2016-02-04 16:49:19 -0700 | [diff] [blame] | 536 | // createChannel with a local endpoint that has already been allocated for a UDP multicast face |
| 537 | auto multicastFace = factory.createMulticastFace("127.0.0.1", "224.0.0.1", "20072"); |
| 538 | BOOST_CHECK_EXCEPTION(factory.createChannel("127.0.0.1", "20072"), UdpFactory::Error, |
| 539 | [] (const UdpFactory::Error& e) { |
| 540 | return strcmp(e.what(), |
| 541 | "Cannot create the requested UDP unicast channel, local " |
| 542 | "endpoint is already allocated for a UDP multicast face") == 0; |
| 543 | }); |
| 544 | } |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 545 | |
Weiwei Liu | 72cee94 | 2016-02-04 16:49:19 -0700 | [diff] [blame] | 546 | BOOST_AUTO_TEST_CASE(CreateMulticastFace) |
| 547 | { |
Weiwei Liu | 72cee94 | 2016-02-04 16:49:19 -0700 | [diff] [blame] | 548 | UdpFactory factory; |
| 549 | |
| 550 | auto multicastFace1 = factory.createMulticastFace("127.0.0.1", "224.0.0.1", "20070"); |
| 551 | auto multicastFace1a = factory.createMulticastFace("127.0.0.1", "224.0.0.1", "20070"); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 552 | BOOST_CHECK_EQUAL(multicastFace1, multicastFace1a); |
| 553 | |
Davide Pesavento | eee53aa | 2016-04-11 17:20:21 +0200 | [diff] [blame] | 554 | // createMulticastFace with a local endpoint that is already used by a channel |
Weiwei Liu | 72cee94 | 2016-02-04 16:49:19 -0700 | [diff] [blame] | 555 | auto channel = factory.createChannel("127.0.0.1", "20071"); |
| 556 | BOOST_CHECK_EXCEPTION(factory.createMulticastFace("127.0.0.1", "224.0.0.1", "20071"), UdpFactory::Error, |
| 557 | [] (const UdpFactory::Error& e) { |
| 558 | return strcmp(e.what(), |
| 559 | "Cannot create the requested UDP multicast face, local " |
| 560 | "endpoint is already allocated for a UDP unicast channel") == 0; |
| 561 | }); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 562 | |
Davide Pesavento | eee53aa | 2016-04-11 17:20:21 +0200 | [diff] [blame] | 563 | // createMulticastFace with a local endpoint that is already |
| 564 | // used by a multicast face on a different multicast group |
Weiwei Liu | 72cee94 | 2016-02-04 16:49:19 -0700 | [diff] [blame] | 565 | BOOST_CHECK_EXCEPTION(factory.createMulticastFace("127.0.0.1", "224.0.0.42", "20070"), UdpFactory::Error, |
| 566 | [] (const UdpFactory::Error& e) { |
| 567 | return strcmp(e.what(), |
| 568 | "Cannot create the requested UDP multicast face, local " |
| 569 | "endpoint is already allocated for a UDP multicast face " |
| 570 | "on a different multicast group") == 0; |
| 571 | }); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 572 | |
Weiwei Liu | 72cee94 | 2016-02-04 16:49:19 -0700 | [diff] [blame] | 573 | // createMulticastFace with an IPv4 unicast address |
| 574 | BOOST_CHECK_EXCEPTION(factory.createMulticastFace("127.0.0.1", "192.168.10.15", "20072"), UdpFactory::Error, |
| 575 | [] (const UdpFactory::Error& e) { |
| 576 | return strcmp(e.what(), |
| 577 | "Cannot create the requested UDP multicast face, " |
| 578 | "the multicast group given as input is not a multicast address") == 0; |
| 579 | }); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 580 | |
Weiwei Liu | 72cee94 | 2016-02-04 16:49:19 -0700 | [diff] [blame] | 581 | // createMulticastFace with an IPv6 multicast address |
| 582 | BOOST_CHECK_EXCEPTION(factory.createMulticastFace("::1", "ff01::114", "20073"), UdpFactory::Error, |
| 583 | [] (const UdpFactory::Error& e) { |
| 584 | return strcmp(e.what(), |
| 585 | "IPv6 multicast is not supported yet. Please provide an IPv4 " |
| 586 | "address") == 0; |
| 587 | }); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 588 | |
Weiwei Liu | 72cee94 | 2016-02-04 16:49:19 -0700 | [diff] [blame] | 589 | // createMulticastFace with different local and remote port numbers |
Davide Pesavento | eee53aa | 2016-04-11 17:20:21 +0200 | [diff] [blame] | 590 | udp::Endpoint localEndpoint(boost::asio::ip::address_v4::loopback(), 20074); |
| 591 | udp::Endpoint multicastEndpoint(boost::asio::ip::address::from_string("224.0.0.1"), 20075); |
Weiwei Liu | 72cee94 | 2016-02-04 16:49:19 -0700 | [diff] [blame] | 592 | BOOST_CHECK_EXCEPTION(factory.createMulticastFace(localEndpoint, multicastEndpoint), UdpFactory::Error, |
| 593 | [] (const UdpFactory::Error& e) { |
| 594 | return strcmp(e.what(), |
| 595 | "Cannot create the requested UDP multicast face, " |
| 596 | "both endpoints should have the same port number. ") == 0; |
| 597 | }); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 598 | } |
| 599 | |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 600 | BOOST_AUTO_TEST_CASE(FaceCreate) |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 601 | { |
Junxiao Shi | 38b24c7 | 2017-01-05 02:59:31 +0000 | [diff] [blame] | 602 | UdpFactory factory; |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 603 | |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 604 | createFace(factory, |
| 605 | FaceUri("udp4://127.0.0.1:6363"), |
Eric Newberry | 78e32b0 | 2017-04-01 14:34:44 +0000 | [diff] [blame^] | 606 | {}, |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 607 | ndn::nfd::FACE_PERSISTENCY_PERSISTENT, |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 608 | false, |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 609 | {CreateFaceExpectedResult::FAILURE, 504, "No channels available to connect"}); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 610 | |
| 611 | factory.createChannel("127.0.0.1", "20071"); |
| 612 | |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 613 | createFace(factory, |
| 614 | FaceUri("udp4://127.0.0.1:20070"), |
Eric Newberry | 78e32b0 | 2017-04-01 14:34:44 +0000 | [diff] [blame^] | 615 | {}, |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 616 | ndn::nfd::FACE_PERSISTENCY_PERSISTENT, |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 617 | false, |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 618 | {CreateFaceExpectedResult::SUCCESS, 0, ""}); |
Eric Newberry | 78e32b0 | 2017-04-01 14:34:44 +0000 | [diff] [blame^] | 619 | |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 620 | createFace(factory, |
| 621 | FaceUri("udp4://127.0.0.1:20070"), |
Eric Newberry | 78e32b0 | 2017-04-01 14:34:44 +0000 | [diff] [blame^] | 622 | {}, |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 623 | ndn::nfd::FACE_PERSISTENCY_PERMANENT, |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 624 | false, |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 625 | {CreateFaceExpectedResult::SUCCESS, 0, ""}); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 626 | |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 627 | createFace(factory, |
| 628 | FaceUri("udp4://127.0.0.1:20072"), |
Eric Newberry | 78e32b0 | 2017-04-01 14:34:44 +0000 | [diff] [blame^] | 629 | {}, |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 630 | ndn::nfd::FACE_PERSISTENCY_PERMANENT, |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 631 | false, |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 632 | {CreateFaceExpectedResult::SUCCESS, 0, ""}); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 633 | } |
| 634 | |
| 635 | BOOST_AUTO_TEST_CASE(UnsupportedFaceCreate) |
| 636 | { |
Junxiao Shi | 38b24c7 | 2017-01-05 02:59:31 +0000 | [diff] [blame] | 637 | UdpFactory factory; |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 638 | |
| 639 | factory.createChannel("127.0.0.1", "20070"); |
Eric Newberry | 78e32b0 | 2017-04-01 14:34:44 +0000 | [diff] [blame^] | 640 | factory.createChannel("127.0.0.1", "20071"); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 641 | |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 642 | createFace(factory, |
| 643 | FaceUri("udp4://127.0.0.1:20070"), |
Eric Newberry | 78e32b0 | 2017-04-01 14:34:44 +0000 | [diff] [blame^] | 644 | {}, |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 645 | ndn::nfd::FACE_PERSISTENCY_ON_DEMAND, |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 646 | false, |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 647 | {CreateFaceExpectedResult::FAILURE, 406, |
| 648 | "Outgoing unicast UDP faces do not support on-demand persistency"}); |
Eric Newberry | 78e32b0 | 2017-04-01 14:34:44 +0000 | [diff] [blame^] | 649 | |
| 650 | createFace(factory, |
| 651 | FaceUri("udp4://127.0.0.1:20071"), |
| 652 | FaceUri("udp4://127.0.0.1:20073"), |
| 653 | ndn::nfd::FACE_PERSISTENCY_PERSISTENT, |
| 654 | false, |
| 655 | {CreateFaceExpectedResult::FAILURE, 406, |
| 656 | "Unicast UDP faces cannot be created with a LocalUri"}); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 657 | } |
| 658 | |
| 659 | class FakeNetworkInterfaceFixture : public BaseFixture |
| 660 | { |
| 661 | public: |
| 662 | FakeNetworkInterfaceFixture() |
| 663 | { |
| 664 | using namespace boost::asio::ip; |
| 665 | |
| 666 | auto fakeInterfaces = make_shared<std::vector<NetworkInterfaceInfo>>(); |
| 667 | |
| 668 | fakeInterfaces->push_back( |
| 669 | NetworkInterfaceInfo {0, "eth0", |
| 670 | ethernet::Address::fromString("3e:15:c2:8b:65:00"), |
| 671 | {address_v4::from_string("0.0.0.0")}, |
| 672 | {address_v6::from_string("::")}, |
| 673 | address_v4(), |
| 674 | IFF_UP}); |
| 675 | fakeInterfaces->push_back( |
| 676 | NetworkInterfaceInfo {1, "eth0", |
| 677 | ethernet::Address::fromString("3e:15:c2:8b:65:00"), |
| 678 | {address_v4::from_string("192.168.2.1"), address_v4::from_string("192.168.2.2")}, |
| 679 | {}, |
| 680 | address_v4::from_string("192.168.2.255"), |
| 681 | 0}); |
| 682 | fakeInterfaces->push_back( |
| 683 | NetworkInterfaceInfo {2, "eth1", |
| 684 | ethernet::Address::fromString("3e:15:c2:8b:65:00"), |
| 685 | {address_v4::from_string("198.51.100.1")}, |
| 686 | {address_v6::from_string("2001:db8::2"), address_v6::from_string("2001:db8::3")}, |
| 687 | address_v4::from_string("198.51.100.255"), |
| 688 | IFF_MULTICAST | IFF_BROADCAST | IFF_UP}); |
| 689 | |
| 690 | setDebugNetworkInterfaces(fakeInterfaces); |
| 691 | } |
| 692 | |
| 693 | ~FakeNetworkInterfaceFixture() |
| 694 | { |
| 695 | setDebugNetworkInterfaces(nullptr); |
| 696 | } |
| 697 | }; |
| 698 | |
| 699 | BOOST_FIXTURE_TEST_CASE(Bug2292, FakeNetworkInterfaceFixture) |
| 700 | { |
| 701 | using namespace boost::asio::ip; |
| 702 | |
| 703 | UdpFactory factory; |
| 704 | factory.prohibitEndpoint(udp::Endpoint(address_v4::from_string("192.168.2.1"), 1024)); |
| 705 | BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 1); |
| 706 | BOOST_CHECK((factory.m_prohibitedEndpoints == |
| 707 | std::set<udp::Endpoint> { |
| 708 | udp::Endpoint(address_v4::from_string("192.168.2.1"), 1024), |
| 709 | })); |
| 710 | |
| 711 | factory.m_prohibitedEndpoints.clear(); |
| 712 | factory.prohibitEndpoint(udp::Endpoint(address_v6::from_string("2001:db8::1"), 2048)); |
| 713 | BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 1); |
| 714 | BOOST_CHECK((factory.m_prohibitedEndpoints == |
| 715 | std::set<udp::Endpoint> { |
| 716 | udp::Endpoint(address_v6::from_string("2001:db8::1"), 2048), |
| 717 | })); |
| 718 | |
| 719 | factory.m_prohibitedEndpoints.clear(); |
| 720 | factory.prohibitEndpoint(udp::Endpoint(address_v4(), 1024)); |
| 721 | BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 6); |
| 722 | BOOST_CHECK((factory.m_prohibitedEndpoints == |
| 723 | std::set<udp::Endpoint> { |
| 724 | udp::Endpoint(address_v4::from_string("192.168.2.1"), 1024), |
| 725 | udp::Endpoint(address_v4::from_string("192.168.2.2"), 1024), |
| 726 | udp::Endpoint(address_v4::from_string("198.51.100.1"), 1024), |
| 727 | udp::Endpoint(address_v4::from_string("198.51.100.255"), 1024), |
| 728 | udp::Endpoint(address_v4::from_string("255.255.255.255"), 1024), |
| 729 | udp::Endpoint(address_v4::from_string("0.0.0.0"), 1024) |
| 730 | })); |
| 731 | |
| 732 | factory.m_prohibitedEndpoints.clear(); |
| 733 | factory.prohibitEndpoint(udp::Endpoint(address_v6(), 2048)); |
| 734 | BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 3); |
| 735 | BOOST_CHECK((factory.m_prohibitedEndpoints == |
| 736 | std::set<udp::Endpoint> { |
| 737 | udp::Endpoint(address_v6::from_string("2001:db8::2"), 2048), |
| 738 | udp::Endpoint(address_v6::from_string("2001:db8::3"), 2048), |
| 739 | udp::Endpoint(address_v6::from_string("::"), 2048), |
| 740 | })); |
| 741 | } |
| 742 | |
| 743 | BOOST_AUTO_TEST_SUITE_END() // TestUdpFactory |
| 744 | BOOST_AUTO_TEST_SUITE_END() // Face |
| 745 | |
| 746 | } // namespace tests |
Junxiao Shi | 64d99f2 | 2017-01-21 23:06:36 +0000 | [diff] [blame] | 747 | } // namespace face |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 748 | } // namespace nfd |