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"), |
| 175 | ndn::nfd::FACE_PERSISTENCY_PERSISTENT, |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 176 | false, |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 177 | {CreateFaceExpectedResult::FAILURE, 504, "No channels available to connect"}); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 178 | |
| 179 | factory.createChannel("127.0.0.1", "20071"); |
| 180 | |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 181 | createFace(factory, |
| 182 | FaceUri("tcp4://127.0.0.1:20070"), |
| 183 | ndn::nfd::FACE_PERSISTENCY_PERSISTENT, |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 184 | false, |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 185 | {CreateFaceExpectedResult::SUCCESS, 0, ""}); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 186 | } |
| 187 | |
| 188 | BOOST_AUTO_TEST_CASE(UnsupportedFaceCreate) |
| 189 | { |
| 190 | TcpFactory factory; |
| 191 | |
| 192 | factory.createChannel("127.0.0.1", "20070"); |
| 193 | factory.createChannel("127.0.0.1", "20071"); |
| 194 | |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 195 | createFace(factory, |
| 196 | FaceUri("tcp4://127.0.0.1:20070"), |
| 197 | ndn::nfd::FACE_PERSISTENCY_PERMANENT, |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 198 | false, |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 199 | {CreateFaceExpectedResult::FAILURE, 406, |
| 200 | "Outgoing TCP faces only support persistent persistency"}); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 201 | |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 202 | createFace(factory, |
| 203 | FaceUri("tcp4://127.0.0.1:20071"), |
| 204 | ndn::nfd::FACE_PERSISTENCY_ON_DEMAND, |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 205 | false, |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 206 | {CreateFaceExpectedResult::FAILURE, 406, |
| 207 | "Outgoing TCP faces only support persistent persistency"}); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 208 | } |
| 209 | |
| 210 | class FaceCreateTimeoutFixture : public BaseFixture |
| 211 | { |
| 212 | public: |
| 213 | void |
| 214 | onFaceCreated(const shared_ptr<Face>& newFace) |
| 215 | { |
| 216 | BOOST_CHECK_MESSAGE(false, "Timeout expected"); |
| 217 | BOOST_CHECK(!static_cast<bool>(face1)); |
| 218 | face1 = newFace; |
| 219 | |
| 220 | limitedIo.afterOp(); |
| 221 | } |
| 222 | |
| 223 | void |
| 224 | onConnectFailed(const std::string& reason) |
| 225 | { |
| 226 | BOOST_CHECK_MESSAGE(true, reason); |
| 227 | |
| 228 | limitedIo.afterOp(); |
| 229 | } |
| 230 | |
| 231 | public: |
| 232 | LimitedIo limitedIo; |
| 233 | |
| 234 | shared_ptr<Face> face1; |
| 235 | }; |
| 236 | |
| 237 | BOOST_FIXTURE_TEST_CASE(FaceCreateTimeout, FaceCreateTimeoutFixture) |
| 238 | { |
| 239 | TcpFactory factory; |
| 240 | shared_ptr<TcpChannel> channel = factory.createChannel("0.0.0.0", "20070"); |
| 241 | |
| 242 | factory.createFace(FaceUri("tcp4://192.0.2.1:20070"), |
| 243 | ndn::nfd::FACE_PERSISTENCY_PERSISTENT, |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 244 | false, |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 245 | bind(&FaceCreateTimeoutFixture::onFaceCreated, this, _1), |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 246 | bind(&FaceCreateTimeoutFixture::onConnectFailed, this, _2)); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 247 | |
| 248 | BOOST_CHECK_MESSAGE(limitedIo.run(1, time::seconds(10)) == LimitedIo::EXCEED_OPS, |
| 249 | "TcpChannel error: cannot connect or cannot accept connection"); |
| 250 | |
| 251 | BOOST_CHECK_EQUAL(static_cast<bool>(face1), false); |
| 252 | } |
| 253 | |
| 254 | class FakeNetworkInterfaceFixture : public BaseFixture |
| 255 | { |
| 256 | public: |
| 257 | FakeNetworkInterfaceFixture() |
| 258 | { |
| 259 | using namespace boost::asio::ip; |
| 260 | |
| 261 | auto fakeInterfaces = make_shared<std::vector<NetworkInterfaceInfo>>(); |
| 262 | |
| 263 | fakeInterfaces->push_back( |
| 264 | NetworkInterfaceInfo {0, "eth0", |
| 265 | ethernet::Address::fromString("3e:15:c2:8b:65:00"), |
| 266 | {address_v4::from_string("0.0.0.0")}, |
| 267 | {address_v6::from_string("::")}, |
| 268 | address_v4(), |
| 269 | IFF_UP}); |
| 270 | fakeInterfaces->push_back( |
| 271 | NetworkInterfaceInfo {1, "eth0", |
| 272 | ethernet::Address::fromString("3e:15:c2:8b:65:00"), |
| 273 | {address_v4::from_string("192.168.2.1"), address_v4::from_string("192.168.2.2")}, |
| 274 | {}, |
| 275 | address_v4::from_string("192.168.2.255"), |
| 276 | 0}); |
| 277 | fakeInterfaces->push_back( |
| 278 | NetworkInterfaceInfo {2, "eth1", |
| 279 | ethernet::Address::fromString("3e:15:c2:8b:65:00"), |
| 280 | {address_v4::from_string("198.51.100.1")}, |
| 281 | {address_v6::from_string("2001:db8::2"), address_v6::from_string("2001:db8::3")}, |
| 282 | address_v4::from_string("198.51.100.255"), |
| 283 | IFF_MULTICAST | IFF_BROADCAST | IFF_UP}); |
| 284 | |
| 285 | setDebugNetworkInterfaces(fakeInterfaces); |
| 286 | } |
| 287 | |
| 288 | ~FakeNetworkInterfaceFixture() |
| 289 | { |
| 290 | setDebugNetworkInterfaces(nullptr); |
| 291 | } |
| 292 | }; |
| 293 | |
| 294 | BOOST_FIXTURE_TEST_CASE(Bug2292, FakeNetworkInterfaceFixture) |
| 295 | { |
| 296 | using namespace boost::asio::ip; |
| 297 | |
| 298 | TcpFactory factory; |
| 299 | factory.prohibitEndpoint(tcp::Endpoint(address_v4::from_string("192.168.2.1"), 1024)); |
| 300 | BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 1); |
| 301 | BOOST_CHECK((factory.m_prohibitedEndpoints == |
| 302 | std::set<tcp::Endpoint> { |
| 303 | tcp::Endpoint(address_v4::from_string("192.168.2.1"), 1024), |
| 304 | })); |
| 305 | |
| 306 | factory.m_prohibitedEndpoints.clear(); |
| 307 | factory.prohibitEndpoint(tcp::Endpoint(address_v6::from_string("2001:db8::1"), 2048)); |
| 308 | BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 1); |
| 309 | BOOST_CHECK((factory.m_prohibitedEndpoints == |
| 310 | std::set<tcp::Endpoint> { |
| 311 | tcp::Endpoint(address_v6::from_string("2001:db8::1"), 2048) |
| 312 | })); |
| 313 | |
| 314 | factory.m_prohibitedEndpoints.clear(); |
| 315 | factory.prohibitEndpoint(tcp::Endpoint(address_v4(), 1024)); |
| 316 | BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 4); |
| 317 | BOOST_CHECK((factory.m_prohibitedEndpoints == |
| 318 | std::set<tcp::Endpoint> { |
| 319 | tcp::Endpoint(address_v4::from_string("192.168.2.1"), 1024), |
| 320 | tcp::Endpoint(address_v4::from_string("192.168.2.2"), 1024), |
| 321 | tcp::Endpoint(address_v4::from_string("198.51.100.1"), 1024), |
| 322 | tcp::Endpoint(address_v4::from_string("0.0.0.0"), 1024) |
| 323 | })); |
| 324 | |
| 325 | factory.m_prohibitedEndpoints.clear(); |
| 326 | factory.prohibitEndpoint(tcp::Endpoint(address_v6(), 2048)); |
| 327 | BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 3); |
| 328 | BOOST_CHECK((factory.m_prohibitedEndpoints == |
| 329 | std::set<tcp::Endpoint> { |
| 330 | tcp::Endpoint(address_v6::from_string("2001:db8::2"), 2048), |
| 331 | tcp::Endpoint(address_v6::from_string("2001:db8::3"), 2048), |
| 332 | tcp::Endpoint(address_v6::from_string("::"), 2048) |
| 333 | })); |
| 334 | } |
| 335 | |
| 336 | BOOST_AUTO_TEST_SUITE_END() // TestTcpFactory |
| 337 | BOOST_AUTO_TEST_SUITE_END() // Face |
| 338 | |
| 339 | } // namespace tests |
Junxiao Shi | 38b24c7 | 2017-01-05 02:59:31 +0000 | [diff] [blame] | 340 | } // namespace face |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 341 | } // namespace nfd |