Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Weiwei Liu | 72cee94 | 2016-02-04 16:49:19 -0700 | [diff] [blame] | 3 | * Copyright (c) 2014-2016, 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 | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 29 | #include "core/network-interface.hpp" |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 30 | #include "tests/limited-io.hpp" |
| 31 | |
| 32 | namespace nfd { |
| 33 | namespace tests { |
| 34 | |
| 35 | BOOST_AUTO_TEST_SUITE(Face) |
| 36 | BOOST_FIXTURE_TEST_SUITE(TestUdpFactory, BaseFixture) |
| 37 | |
| 38 | using nfd::Face; |
| 39 | |
| 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 | expectedChannels.push_back(factory.createChannel("127.0.0.1", "20070")); |
| 47 | expectedChannels.push_back(factory.createChannel("127.0.0.1", "20071")); |
| 48 | expectedChannels.push_back(factory.createChannel("::1", "20071")); |
| 49 | |
| 50 | for (const auto& i : factory.getChannels()) { |
| 51 | auto pos = std::find(expectedChannels.begin(), expectedChannels.end(), i); |
| 52 | BOOST_REQUIRE(pos != expectedChannels.end()); |
| 53 | expectedChannels.erase(pos); |
| 54 | } |
| 55 | |
| 56 | BOOST_CHECK_EQUAL(expectedChannels.size(), 0); |
| 57 | } |
| 58 | |
Weiwei Liu | 72cee94 | 2016-02-04 16:49:19 -0700 | [diff] [blame] | 59 | BOOST_AUTO_TEST_CASE(CreateChannel) |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 60 | { |
Weiwei Liu | 72cee94 | 2016-02-04 16:49:19 -0700 | [diff] [blame] | 61 | UdpFactory factory; |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 62 | |
Weiwei Liu | 72cee94 | 2016-02-04 16:49:19 -0700 | [diff] [blame] | 63 | auto channel1 = factory.createChannel("127.0.0.1", "20070"); |
| 64 | auto channel1a = factory.createChannel("127.0.0.1", "20070"); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 65 | BOOST_CHECK_EQUAL(channel1, channel1a); |
| 66 | BOOST_CHECK_EQUAL(channel1->getUri().toString(), "udp4://127.0.0.1:20070"); |
| 67 | |
Weiwei Liu | 72cee94 | 2016-02-04 16:49:19 -0700 | [diff] [blame] | 68 | auto channel2 = factory.createChannel("127.0.0.1", "20071"); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 69 | BOOST_CHECK_NE(channel1, channel2); |
| 70 | |
Weiwei Liu | 72cee94 | 2016-02-04 16:49:19 -0700 | [diff] [blame] | 71 | auto channel3 = factory.createChannel("::1", "20071"); |
| 72 | BOOST_CHECK_NE(channel2, channel3); |
| 73 | BOOST_CHECK_EQUAL(channel3->getUri().toString(), "udp6://[::1]:20071"); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 74 | |
Weiwei Liu | 72cee94 | 2016-02-04 16:49:19 -0700 | [diff] [blame] | 75 | // createChannel with multicast address |
| 76 | BOOST_CHECK_EXCEPTION(factory.createChannel("224.0.0.1", "20070"), UdpFactory::Error, |
| 77 | [] (const UdpFactory::Error& e) { |
| 78 | return strcmp(e.what(), |
| 79 | "createChannel is only for unicast channels. The provided endpoint " |
| 80 | "is multicast. Use createMulticastFace to create a multicast face") == 0; |
| 81 | }); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 82 | |
Weiwei Liu | 72cee94 | 2016-02-04 16:49:19 -0700 | [diff] [blame] | 83 | // createChannel with a local endpoint that has already been allocated for a UDP multicast face |
| 84 | auto multicastFace = factory.createMulticastFace("127.0.0.1", "224.0.0.1", "20072"); |
| 85 | BOOST_CHECK_EXCEPTION(factory.createChannel("127.0.0.1", "20072"), UdpFactory::Error, |
| 86 | [] (const UdpFactory::Error& e) { |
| 87 | return strcmp(e.what(), |
| 88 | "Cannot create the requested UDP unicast channel, local " |
| 89 | "endpoint is already allocated for a UDP multicast face") == 0; |
| 90 | }); |
| 91 | } |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 92 | |
Weiwei Liu | 72cee94 | 2016-02-04 16:49:19 -0700 | [diff] [blame] | 93 | BOOST_AUTO_TEST_CASE(CreateMulticastFace) |
| 94 | { |
Weiwei Liu | 72cee94 | 2016-02-04 16:49:19 -0700 | [diff] [blame] | 95 | UdpFactory factory; |
| 96 | |
| 97 | auto multicastFace1 = factory.createMulticastFace("127.0.0.1", "224.0.0.1", "20070"); |
| 98 | 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] | 99 | BOOST_CHECK_EQUAL(multicastFace1, multicastFace1a); |
| 100 | |
Davide Pesavento | eee53aa | 2016-04-11 17:20:21 +0200 | [diff] [blame] | 101 | // createMulticastFace with a local endpoint that is already used by a channel |
Weiwei Liu | 72cee94 | 2016-02-04 16:49:19 -0700 | [diff] [blame] | 102 | auto channel = factory.createChannel("127.0.0.1", "20071"); |
| 103 | BOOST_CHECK_EXCEPTION(factory.createMulticastFace("127.0.0.1", "224.0.0.1", "20071"), UdpFactory::Error, |
| 104 | [] (const UdpFactory::Error& e) { |
| 105 | return strcmp(e.what(), |
| 106 | "Cannot create the requested UDP multicast face, local " |
| 107 | "endpoint is already allocated for a UDP unicast channel") == 0; |
| 108 | }); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 109 | |
Davide Pesavento | eee53aa | 2016-04-11 17:20:21 +0200 | [diff] [blame] | 110 | // createMulticastFace with a local endpoint that is already |
| 111 | // used by a multicast face on a different multicast group |
Weiwei Liu | 72cee94 | 2016-02-04 16:49:19 -0700 | [diff] [blame] | 112 | BOOST_CHECK_EXCEPTION(factory.createMulticastFace("127.0.0.1", "224.0.0.42", "20070"), UdpFactory::Error, |
| 113 | [] (const UdpFactory::Error& e) { |
| 114 | return strcmp(e.what(), |
| 115 | "Cannot create the requested UDP multicast face, local " |
| 116 | "endpoint is already allocated for a UDP multicast face " |
| 117 | "on a different multicast group") == 0; |
| 118 | }); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 119 | |
Weiwei Liu | 72cee94 | 2016-02-04 16:49:19 -0700 | [diff] [blame] | 120 | // createMulticastFace with an IPv4 unicast address |
| 121 | BOOST_CHECK_EXCEPTION(factory.createMulticastFace("127.0.0.1", "192.168.10.15", "20072"), UdpFactory::Error, |
| 122 | [] (const UdpFactory::Error& e) { |
| 123 | return strcmp(e.what(), |
| 124 | "Cannot create the requested UDP multicast face, " |
| 125 | "the multicast group given as input is not a multicast address") == 0; |
| 126 | }); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 127 | |
Weiwei Liu | 72cee94 | 2016-02-04 16:49:19 -0700 | [diff] [blame] | 128 | // createMulticastFace with an IPv6 multicast address |
| 129 | BOOST_CHECK_EXCEPTION(factory.createMulticastFace("::1", "ff01::114", "20073"), UdpFactory::Error, |
| 130 | [] (const UdpFactory::Error& e) { |
| 131 | return strcmp(e.what(), |
| 132 | "IPv6 multicast is not supported yet. Please provide an IPv4 " |
| 133 | "address") == 0; |
| 134 | }); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 135 | |
Weiwei Liu | 72cee94 | 2016-02-04 16:49:19 -0700 | [diff] [blame] | 136 | // createMulticastFace with different local and remote port numbers |
Davide Pesavento | eee53aa | 2016-04-11 17:20:21 +0200 | [diff] [blame] | 137 | udp::Endpoint localEndpoint(boost::asio::ip::address_v4::loopback(), 20074); |
| 138 | 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] | 139 | BOOST_CHECK_EXCEPTION(factory.createMulticastFace(localEndpoint, multicastEndpoint), UdpFactory::Error, |
| 140 | [] (const UdpFactory::Error& e) { |
| 141 | return strcmp(e.what(), |
| 142 | "Cannot create the requested UDP multicast face, " |
| 143 | "both endpoints should have the same port number. ") == 0; |
| 144 | }); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 145 | } |
| 146 | |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 147 | BOOST_AUTO_TEST_CASE(FaceCreate) |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 148 | { |
| 149 | UdpFactory factory = UdpFactory(); |
| 150 | |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 151 | createFace(factory, |
| 152 | FaceUri("udp4://127.0.0.1:6363"), |
| 153 | ndn::nfd::FACE_PERSISTENCY_PERSISTENT, |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 154 | false, |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 155 | {CreateFaceExpectedResult::FAILURE, 504, "No channels available to connect"}); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 156 | |
| 157 | factory.createChannel("127.0.0.1", "20071"); |
| 158 | |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 159 | createFace(factory, |
| 160 | FaceUri("udp4://127.0.0.1:20070"), |
| 161 | ndn::nfd::FACE_PERSISTENCY_PERSISTENT, |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 162 | false, |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 163 | {CreateFaceExpectedResult::SUCCESS, 0, ""}); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 164 | //test the upgrade |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 165 | createFace(factory, |
| 166 | FaceUri("udp4://127.0.0.1:20070"), |
| 167 | ndn::nfd::FACE_PERSISTENCY_PERMANENT, |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 168 | false, |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 169 | {CreateFaceExpectedResult::SUCCESS, 0, ""}); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 170 | |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 171 | createFace(factory, |
| 172 | FaceUri("udp4://127.0.0.1:20072"), |
| 173 | ndn::nfd::FACE_PERSISTENCY_PERMANENT, |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 174 | false, |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 175 | {CreateFaceExpectedResult::SUCCESS, 0, ""}); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 176 | } |
| 177 | |
| 178 | BOOST_AUTO_TEST_CASE(UnsupportedFaceCreate) |
| 179 | { |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 180 | UdpFactory factory = UdpFactory(); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 181 | |
| 182 | factory.createChannel("127.0.0.1", "20070"); |
| 183 | |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 184 | createFace(factory, |
| 185 | FaceUri("udp4://127.0.0.1:20070"), |
| 186 | ndn::nfd::FACE_PERSISTENCY_ON_DEMAND, |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 187 | false, |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 188 | {CreateFaceExpectedResult::FAILURE, 406, |
| 189 | "Outgoing unicast UDP faces do not support on-demand persistency"}); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 190 | } |
| 191 | |
| 192 | class FakeNetworkInterfaceFixture : public BaseFixture |
| 193 | { |
| 194 | public: |
| 195 | FakeNetworkInterfaceFixture() |
| 196 | { |
| 197 | using namespace boost::asio::ip; |
| 198 | |
| 199 | auto fakeInterfaces = make_shared<std::vector<NetworkInterfaceInfo>>(); |
| 200 | |
| 201 | fakeInterfaces->push_back( |
| 202 | NetworkInterfaceInfo {0, "eth0", |
| 203 | ethernet::Address::fromString("3e:15:c2:8b:65:00"), |
| 204 | {address_v4::from_string("0.0.0.0")}, |
| 205 | {address_v6::from_string("::")}, |
| 206 | address_v4(), |
| 207 | IFF_UP}); |
| 208 | fakeInterfaces->push_back( |
| 209 | NetworkInterfaceInfo {1, "eth0", |
| 210 | ethernet::Address::fromString("3e:15:c2:8b:65:00"), |
| 211 | {address_v4::from_string("192.168.2.1"), address_v4::from_string("192.168.2.2")}, |
| 212 | {}, |
| 213 | address_v4::from_string("192.168.2.255"), |
| 214 | 0}); |
| 215 | fakeInterfaces->push_back( |
| 216 | NetworkInterfaceInfo {2, "eth1", |
| 217 | ethernet::Address::fromString("3e:15:c2:8b:65:00"), |
| 218 | {address_v4::from_string("198.51.100.1")}, |
| 219 | {address_v6::from_string("2001:db8::2"), address_v6::from_string("2001:db8::3")}, |
| 220 | address_v4::from_string("198.51.100.255"), |
| 221 | IFF_MULTICAST | IFF_BROADCAST | IFF_UP}); |
| 222 | |
| 223 | setDebugNetworkInterfaces(fakeInterfaces); |
| 224 | } |
| 225 | |
| 226 | ~FakeNetworkInterfaceFixture() |
| 227 | { |
| 228 | setDebugNetworkInterfaces(nullptr); |
| 229 | } |
| 230 | }; |
| 231 | |
| 232 | BOOST_FIXTURE_TEST_CASE(Bug2292, FakeNetworkInterfaceFixture) |
| 233 | { |
| 234 | using namespace boost::asio::ip; |
| 235 | |
| 236 | UdpFactory factory; |
| 237 | factory.prohibitEndpoint(udp::Endpoint(address_v4::from_string("192.168.2.1"), 1024)); |
| 238 | BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 1); |
| 239 | BOOST_CHECK((factory.m_prohibitedEndpoints == |
| 240 | std::set<udp::Endpoint> { |
| 241 | udp::Endpoint(address_v4::from_string("192.168.2.1"), 1024), |
| 242 | })); |
| 243 | |
| 244 | factory.m_prohibitedEndpoints.clear(); |
| 245 | factory.prohibitEndpoint(udp::Endpoint(address_v6::from_string("2001:db8::1"), 2048)); |
| 246 | BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 1); |
| 247 | BOOST_CHECK((factory.m_prohibitedEndpoints == |
| 248 | std::set<udp::Endpoint> { |
| 249 | udp::Endpoint(address_v6::from_string("2001:db8::1"), 2048), |
| 250 | })); |
| 251 | |
| 252 | factory.m_prohibitedEndpoints.clear(); |
| 253 | factory.prohibitEndpoint(udp::Endpoint(address_v4(), 1024)); |
| 254 | BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 6); |
| 255 | BOOST_CHECK((factory.m_prohibitedEndpoints == |
| 256 | std::set<udp::Endpoint> { |
| 257 | udp::Endpoint(address_v4::from_string("192.168.2.1"), 1024), |
| 258 | udp::Endpoint(address_v4::from_string("192.168.2.2"), 1024), |
| 259 | udp::Endpoint(address_v4::from_string("198.51.100.1"), 1024), |
| 260 | udp::Endpoint(address_v4::from_string("198.51.100.255"), 1024), |
| 261 | udp::Endpoint(address_v4::from_string("255.255.255.255"), 1024), |
| 262 | udp::Endpoint(address_v4::from_string("0.0.0.0"), 1024) |
| 263 | })); |
| 264 | |
| 265 | factory.m_prohibitedEndpoints.clear(); |
| 266 | factory.prohibitEndpoint(udp::Endpoint(address_v6(), 2048)); |
| 267 | BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 3); |
| 268 | BOOST_CHECK((factory.m_prohibitedEndpoints == |
| 269 | std::set<udp::Endpoint> { |
| 270 | udp::Endpoint(address_v6::from_string("2001:db8::2"), 2048), |
| 271 | udp::Endpoint(address_v6::from_string("2001:db8::3"), 2048), |
| 272 | udp::Endpoint(address_v6::from_string("::"), 2048), |
| 273 | })); |
| 274 | } |
| 275 | |
| 276 | BOOST_AUTO_TEST_SUITE_END() // TestUdpFactory |
| 277 | BOOST_AUTO_TEST_SUITE_END() // Face |
| 278 | |
| 279 | } // namespace tests |
| 280 | } // namespace nfd |