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/tcp-factory.hpp" |
| 27 | |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 28 | #include "factory-test-common.hpp" |
Junxiao Shi | 38b24c7 | 2017-01-05 02:59:31 +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" |
| 31 | |
| 32 | namespace nfd { |
Junxiao Shi | 38b24c7 | 2017-01-05 02:59:31 +0000 | [diff] [blame] | 33 | namespace face { |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 34 | namespace tests { |
| 35 | |
Junxiao Shi | 38b24c7 | 2017-01-05 02:59:31 +0000 | [diff] [blame] | 36 | using namespace nfd::tests; |
| 37 | |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 38 | BOOST_AUTO_TEST_SUITE(Face) |
| 39 | BOOST_FIXTURE_TEST_SUITE(TestTcpFactory, BaseFixture) |
| 40 | |
| 41 | using nfd::Face; |
| 42 | |
Junxiao Shi | 38b24c7 | 2017-01-05 02:59:31 +0000 | [diff] [blame] | 43 | BOOST_FIXTURE_TEST_SUITE(ProcessConfig, FaceSystemFixture) |
| 44 | |
| 45 | BOOST_AUTO_TEST_CASE(Normal) |
| 46 | { |
| 47 | const std::string CONFIG = R"CONFIG( |
| 48 | face_system |
| 49 | { |
| 50 | tcp |
| 51 | { |
| 52 | listen yes |
| 53 | port 16363 |
| 54 | enable_v4 yes |
| 55 | enable_v6 yes |
| 56 | } |
| 57 | } |
| 58 | )CONFIG"; |
| 59 | |
Junxiao Shi | 1b65ca1 | 2017-01-21 23:04:41 +0000 | [diff] [blame] | 60 | parseConfig(CONFIG, true); |
| 61 | parseConfig(CONFIG, false); |
Junxiao Shi | 38b24c7 | 2017-01-05 02:59:31 +0000 | [diff] [blame] | 62 | |
| 63 | auto& factory = this->getFactoryById<TcpFactory>("tcp"); |
| 64 | BOOST_CHECK_EQUAL(factory.getChannels().size(), 2); |
| 65 | } |
| 66 | |
| 67 | BOOST_AUTO_TEST_CASE(Omitted) |
| 68 | { |
| 69 | const std::string CONFIG = R"CONFIG( |
| 70 | face_system |
| 71 | { |
| 72 | } |
| 73 | )CONFIG"; |
| 74 | |
Junxiao Shi | 1b65ca1 | 2017-01-21 23:04:41 +0000 | [diff] [blame] | 75 | parseConfig(CONFIG, true); |
| 76 | parseConfig(CONFIG, false); |
Junxiao Shi | 38b24c7 | 2017-01-05 02:59:31 +0000 | [diff] [blame] | 77 | |
| 78 | auto& factory = this->getFactoryById<TcpFactory>("tcp"); |
| 79 | BOOST_CHECK_EQUAL(factory.getChannels().size(), 0); |
| 80 | } |
| 81 | |
| 82 | BOOST_AUTO_TEST_CASE(BadListen) |
| 83 | { |
| 84 | const std::string CONFIG = R"CONFIG( |
| 85 | face_system |
| 86 | { |
| 87 | tcp |
| 88 | { |
| 89 | listen hello |
| 90 | } |
| 91 | } |
| 92 | )CONFIG"; |
| 93 | |
| 94 | BOOST_CHECK_THROW(parseConfig(CONFIG, true), ConfigFile::Error); |
| 95 | BOOST_CHECK_THROW(parseConfig(CONFIG, false), ConfigFile::Error); |
| 96 | } |
| 97 | |
| 98 | BOOST_AUTO_TEST_CASE(ChannelsDisabled) |
| 99 | { |
| 100 | const std::string CONFIG = R"CONFIG( |
| 101 | face_system |
| 102 | { |
| 103 | tcp |
| 104 | { |
| 105 | port 6363 |
| 106 | enable_v4 no |
| 107 | enable_v6 no |
| 108 | } |
| 109 | } |
| 110 | )CONFIG"; |
| 111 | |
| 112 | BOOST_CHECK_THROW(parseConfig(CONFIG, true), ConfigFile::Error); |
| 113 | BOOST_CHECK_THROW(parseConfig(CONFIG, false), ConfigFile::Error); |
| 114 | } |
| 115 | |
| 116 | BOOST_AUTO_TEST_CASE(UnknownOption) |
| 117 | { |
| 118 | const std::string CONFIG = R"CONFIG( |
| 119 | face_system |
| 120 | { |
| 121 | tcp |
| 122 | { |
| 123 | hello |
| 124 | } |
| 125 | } |
| 126 | )CONFIG"; |
| 127 | |
| 128 | BOOST_CHECK_THROW(parseConfig(CONFIG, true), ConfigFile::Error); |
| 129 | BOOST_CHECK_THROW(parseConfig(CONFIG, false), ConfigFile::Error); |
| 130 | } |
| 131 | |
| 132 | BOOST_AUTO_TEST_SUITE_END() // ProcessConfig |
| 133 | |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 134 | BOOST_AUTO_TEST_CASE(ChannelMap) |
| 135 | { |
| 136 | TcpFactory factory; |
| 137 | |
| 138 | shared_ptr<TcpChannel> channel1 = factory.createChannel("127.0.0.1", "20070"); |
| 139 | shared_ptr<TcpChannel> channel1a = factory.createChannel("127.0.0.1", "20070"); |
| 140 | BOOST_CHECK_EQUAL(channel1, channel1a); |
| 141 | BOOST_CHECK_EQUAL(channel1->getUri().toString(), "tcp4://127.0.0.1:20070"); |
| 142 | |
| 143 | shared_ptr<TcpChannel> channel2 = factory.createChannel("127.0.0.1", "20071"); |
| 144 | BOOST_CHECK_NE(channel1, channel2); |
| 145 | |
| 146 | shared_ptr<TcpChannel> channel3 = factory.createChannel("::1", "20071"); |
| 147 | BOOST_CHECK_NE(channel2, channel3); |
| 148 | BOOST_CHECK_EQUAL(channel3->getUri().toString(), "tcp6://[::1]:20071"); |
| 149 | } |
| 150 | |
| 151 | BOOST_AUTO_TEST_CASE(GetChannels) |
| 152 | { |
| 153 | TcpFactory factory; |
| 154 | BOOST_REQUIRE_EQUAL(factory.getChannels().empty(), true); |
| 155 | |
| 156 | std::vector<shared_ptr<const Channel>> expectedChannels; |
| 157 | expectedChannels.push_back(factory.createChannel("127.0.0.1", "20070")); |
| 158 | expectedChannels.push_back(factory.createChannel("127.0.0.1", "20071")); |
| 159 | expectedChannels.push_back(factory.createChannel("::1", "20071")); |
| 160 | |
| 161 | for (const auto& ch : factory.getChannels()) { |
| 162 | auto pos = std::find(expectedChannels.begin(), expectedChannels.end(), ch); |
| 163 | BOOST_REQUIRE(pos != expectedChannels.end()); |
| 164 | expectedChannels.erase(pos); |
| 165 | } |
| 166 | BOOST_CHECK_EQUAL(expectedChannels.size(), 0); |
| 167 | } |
| 168 | |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 169 | BOOST_AUTO_TEST_CASE(FaceCreate) |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 170 | { |
| 171 | TcpFactory factory; |
| 172 | |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 173 | createFace(factory, |
| 174 | FaceUri("tcp4://127.0.0.1:6363"), |
Eric Newberry | 78e32b0 | 2017-04-01 14:34:44 +0000 | [diff] [blame] | 175 | {}, |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 176 | ndn::nfd::FACE_PERSISTENCY_PERSISTENT, |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 177 | false, |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 178 | {CreateFaceExpectedResult::FAILURE, 504, "No channels available to connect"}); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 179 | |
| 180 | factory.createChannel("127.0.0.1", "20071"); |
| 181 | |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 182 | createFace(factory, |
Eric Newberry | 78e32b0 | 2017-04-01 14:34:44 +0000 | [diff] [blame] | 183 | FaceUri("tcp4://127.0.0.1:6363"), |
| 184 | {}, |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 185 | ndn::nfd::FACE_PERSISTENCY_PERSISTENT, |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 186 | false, |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 187 | {CreateFaceExpectedResult::SUCCESS, 0, ""}); |
Davide Pesavento | a3c9ddb | 2017-04-10 22:15:24 -0400 | [diff] [blame] | 188 | |
| 189 | createFace(factory, |
| 190 | FaceUri("tcp4://127.0.0.1:6363"), |
| 191 | {}, |
| 192 | ndn::nfd::FACE_PERSISTENCY_PERMANENT, |
| 193 | false, |
| 194 | {CreateFaceExpectedResult::SUCCESS, 0, ""}); |
| 195 | |
| 196 | createFace(factory, |
| 197 | FaceUri("tcp4://127.0.0.1:20072"), |
| 198 | {}, |
| 199 | ndn::nfd::FACE_PERSISTENCY_PERMANENT, |
| 200 | false, |
| 201 | {CreateFaceExpectedResult::SUCCESS, 0, ""}); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 202 | } |
| 203 | |
| 204 | BOOST_AUTO_TEST_CASE(UnsupportedFaceCreate) |
| 205 | { |
| 206 | TcpFactory factory; |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 207 | factory.createChannel("127.0.0.1", "20071"); |
| 208 | |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 209 | createFace(factory, |
Davide Pesavento | 46afec4 | 2017-05-28 14:28:47 -0400 | [diff] [blame] | 210 | FaceUri("tcp4://127.0.0.1:20072"), |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 211 | FaceUri("tcp4://127.0.0.1:20071"), |
Davide Pesavento | 46afec4 | 2017-05-28 14:28:47 -0400 | [diff] [blame] | 212 | ndn::nfd::FACE_PERSISTENCY_PERSISTENT, |
| 213 | false, |
| 214 | {CreateFaceExpectedResult::FAILURE, 406, |
| 215 | "Unicast TCP faces cannot be created with a LocalUri"}); |
| 216 | |
| 217 | createFace(factory, |
| 218 | FaceUri("tcp4://127.0.0.1:20072"), |
Eric Newberry | 78e32b0 | 2017-04-01 14:34:44 +0000 | [diff] [blame] | 219 | {}, |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 220 | ndn::nfd::FACE_PERSISTENCY_ON_DEMAND, |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 221 | false, |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 222 | {CreateFaceExpectedResult::FAILURE, 406, |
Davide Pesavento | 46afec4 | 2017-05-28 14:28:47 -0400 | [diff] [blame] | 223 | "Outgoing TCP faces do not support on-demand persistency"}); |
Eric Newberry | 78e32b0 | 2017-04-01 14:34:44 +0000 | [diff] [blame] | 224 | |
| 225 | createFace(factory, |
Davide Pesavento | 46afec4 | 2017-05-28 14:28:47 -0400 | [diff] [blame] | 226 | FaceUri("tcp4://127.0.0.1:20071"), |
| 227 | {}, |
Eric Newberry | 78e32b0 | 2017-04-01 14:34:44 +0000 | [diff] [blame] | 228 | ndn::nfd::FACE_PERSISTENCY_PERSISTENT, |
| 229 | false, |
| 230 | {CreateFaceExpectedResult::FAILURE, 406, |
Davide Pesavento | 46afec4 | 2017-05-28 14:28:47 -0400 | [diff] [blame] | 231 | "Requested endpoint is prohibited"}); |
| 232 | |
| 233 | createFace(factory, |
| 234 | FaceUri("tcp4://198.51.100.100:6363"), |
| 235 | {}, |
| 236 | ndn::nfd::FACE_PERSISTENCY_PERSISTENT, |
| 237 | true, |
| 238 | {CreateFaceExpectedResult::FAILURE, 406, |
| 239 | "Local fields can only be enabled on faces with local scope"}); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 240 | } |
| 241 | |
| 242 | class FaceCreateTimeoutFixture : public BaseFixture |
| 243 | { |
| 244 | public: |
| 245 | void |
| 246 | onFaceCreated(const shared_ptr<Face>& newFace) |
| 247 | { |
| 248 | BOOST_CHECK_MESSAGE(false, "Timeout expected"); |
Davide Pesavento | a3c9ddb | 2017-04-10 22:15:24 -0400 | [diff] [blame] | 249 | face = newFace; |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 250 | |
| 251 | limitedIo.afterOp(); |
| 252 | } |
| 253 | |
| 254 | void |
| 255 | onConnectFailed(const std::string& reason) |
| 256 | { |
| 257 | BOOST_CHECK_MESSAGE(true, reason); |
| 258 | |
| 259 | limitedIo.afterOp(); |
| 260 | } |
| 261 | |
| 262 | public: |
| 263 | LimitedIo limitedIo; |
Davide Pesavento | a3c9ddb | 2017-04-10 22:15:24 -0400 | [diff] [blame] | 264 | shared_ptr<Face> face; |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 265 | }; |
| 266 | |
| 267 | BOOST_FIXTURE_TEST_CASE(FaceCreateTimeout, FaceCreateTimeoutFixture) |
| 268 | { |
| 269 | TcpFactory factory; |
Davide Pesavento | a3c9ddb | 2017-04-10 22:15:24 -0400 | [diff] [blame] | 270 | factory.createChannel("0.0.0.0", "20070"); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 271 | |
| 272 | factory.createFace(FaceUri("tcp4://192.0.2.1:20070"), |
Eric Newberry | 78e32b0 | 2017-04-01 14:34:44 +0000 | [diff] [blame] | 273 | {}, |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 274 | ndn::nfd::FACE_PERSISTENCY_PERSISTENT, |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 275 | false, |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 276 | bind(&FaceCreateTimeoutFixture::onFaceCreated, this, _1), |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 277 | bind(&FaceCreateTimeoutFixture::onConnectFailed, this, _2)); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 278 | |
Davide Pesavento | a3c9ddb | 2017-04-10 22:15:24 -0400 | [diff] [blame] | 279 | BOOST_REQUIRE_EQUAL(limitedIo.run(1, time::seconds(10)), LimitedIo::EXCEED_OPS); |
| 280 | BOOST_CHECK(face == nullptr); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 281 | } |
| 282 | |
| 283 | class FakeNetworkInterfaceFixture : public BaseFixture |
| 284 | { |
| 285 | public: |
| 286 | FakeNetworkInterfaceFixture() |
| 287 | { |
| 288 | using namespace boost::asio::ip; |
| 289 | |
| 290 | auto fakeInterfaces = make_shared<std::vector<NetworkInterfaceInfo>>(); |
| 291 | |
| 292 | fakeInterfaces->push_back( |
| 293 | NetworkInterfaceInfo {0, "eth0", |
| 294 | ethernet::Address::fromString("3e:15:c2:8b:65:00"), |
| 295 | {address_v4::from_string("0.0.0.0")}, |
| 296 | {address_v6::from_string("::")}, |
| 297 | address_v4(), |
| 298 | IFF_UP}); |
| 299 | fakeInterfaces->push_back( |
| 300 | NetworkInterfaceInfo {1, "eth0", |
| 301 | ethernet::Address::fromString("3e:15:c2:8b:65:00"), |
| 302 | {address_v4::from_string("192.168.2.1"), address_v4::from_string("192.168.2.2")}, |
| 303 | {}, |
| 304 | address_v4::from_string("192.168.2.255"), |
| 305 | 0}); |
| 306 | fakeInterfaces->push_back( |
| 307 | NetworkInterfaceInfo {2, "eth1", |
| 308 | ethernet::Address::fromString("3e:15:c2:8b:65:00"), |
| 309 | {address_v4::from_string("198.51.100.1")}, |
| 310 | {address_v6::from_string("2001:db8::2"), address_v6::from_string("2001:db8::3")}, |
| 311 | address_v4::from_string("198.51.100.255"), |
| 312 | IFF_MULTICAST | IFF_BROADCAST | IFF_UP}); |
| 313 | |
| 314 | setDebugNetworkInterfaces(fakeInterfaces); |
| 315 | } |
| 316 | |
| 317 | ~FakeNetworkInterfaceFixture() |
| 318 | { |
| 319 | setDebugNetworkInterfaces(nullptr); |
| 320 | } |
| 321 | }; |
| 322 | |
| 323 | BOOST_FIXTURE_TEST_CASE(Bug2292, FakeNetworkInterfaceFixture) |
| 324 | { |
| 325 | using namespace boost::asio::ip; |
| 326 | |
| 327 | TcpFactory factory; |
| 328 | factory.prohibitEndpoint(tcp::Endpoint(address_v4::from_string("192.168.2.1"), 1024)); |
| 329 | BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 1); |
| 330 | BOOST_CHECK((factory.m_prohibitedEndpoints == |
| 331 | std::set<tcp::Endpoint> { |
| 332 | tcp::Endpoint(address_v4::from_string("192.168.2.1"), 1024), |
| 333 | })); |
| 334 | |
| 335 | factory.m_prohibitedEndpoints.clear(); |
| 336 | factory.prohibitEndpoint(tcp::Endpoint(address_v6::from_string("2001:db8::1"), 2048)); |
| 337 | BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 1); |
| 338 | BOOST_CHECK((factory.m_prohibitedEndpoints == |
| 339 | std::set<tcp::Endpoint> { |
| 340 | tcp::Endpoint(address_v6::from_string("2001:db8::1"), 2048) |
| 341 | })); |
| 342 | |
| 343 | factory.m_prohibitedEndpoints.clear(); |
| 344 | factory.prohibitEndpoint(tcp::Endpoint(address_v4(), 1024)); |
| 345 | BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 4); |
| 346 | BOOST_CHECK((factory.m_prohibitedEndpoints == |
| 347 | std::set<tcp::Endpoint> { |
| 348 | tcp::Endpoint(address_v4::from_string("192.168.2.1"), 1024), |
| 349 | tcp::Endpoint(address_v4::from_string("192.168.2.2"), 1024), |
| 350 | tcp::Endpoint(address_v4::from_string("198.51.100.1"), 1024), |
| 351 | tcp::Endpoint(address_v4::from_string("0.0.0.0"), 1024) |
| 352 | })); |
| 353 | |
| 354 | factory.m_prohibitedEndpoints.clear(); |
| 355 | factory.prohibitEndpoint(tcp::Endpoint(address_v6(), 2048)); |
| 356 | BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 3); |
| 357 | BOOST_CHECK((factory.m_prohibitedEndpoints == |
| 358 | std::set<tcp::Endpoint> { |
| 359 | tcp::Endpoint(address_v6::from_string("2001:db8::2"), 2048), |
| 360 | tcp::Endpoint(address_v6::from_string("2001:db8::3"), 2048), |
| 361 | tcp::Endpoint(address_v6::from_string("::"), 2048) |
| 362 | })); |
| 363 | } |
| 364 | |
| 365 | BOOST_AUTO_TEST_SUITE_END() // TestTcpFactory |
| 366 | BOOST_AUTO_TEST_SUITE_END() // Face |
| 367 | |
| 368 | } // namespace tests |
Junxiao Shi | 38b24c7 | 2017-01-05 02:59:31 +0000 | [diff] [blame] | 369 | } // namespace face |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 370 | } // namespace nfd |