Junxiao Shi | 96dc0c4 | 2014-01-30 23:51:59 -0700 | [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 | */ |
Junxiao Shi | 96dc0c4 | 2014-01-30 23:51:59 -0700 | [diff] [blame] | 25 | |
Davide Pesavento | 6ad890a | 2015-03-09 03:43:17 +0100 | [diff] [blame] | 26 | #include "face/tcp-channel.hpp" |
| 27 | #include "face/tcp-face.hpp" |
Alexander Afanasyev | 0eb7065 | 2014-02-27 18:35:07 -0800 | [diff] [blame] | 28 | #include "face/tcp-factory.hpp" |
Junxiao Shi | 96dc0c4 | 2014-01-30 23:51:59 -0700 | [diff] [blame] | 29 | |
Davide Pesavento | 6ad890a | 2015-03-09 03:43:17 +0100 | [diff] [blame] | 30 | #include "core/network-interface.hpp" |
Junxiao Shi | d9ee45c | 2014-02-27 15:38:11 -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" |
Alexander Afanasyev | 650028d | 2014-04-25 18:39:10 -0700 | [diff] [blame] | 33 | #include "dummy-stream-sender.hpp" |
| 34 | #include "packet-datasets.hpp" |
Junxiao Shi | 96dc0c4 | 2014-01-30 23:51:59 -0700 | [diff] [blame] | 35 | |
Davide Pesavento | 6ad890a | 2015-03-09 03:43:17 +0100 | [diff] [blame] | 36 | #include <ndn-cxx/security/key-chain.hpp> |
Davide Pesavento | 6ad890a | 2015-03-09 03:43:17 +0100 | [diff] [blame] | 37 | |
Junxiao Shi | 96dc0c4 | 2014-01-30 23:51:59 -0700 | [diff] [blame] | 38 | namespace nfd { |
Junxiao Shi | d9ee45c | 2014-02-27 15:38:11 -0700 | [diff] [blame] | 39 | namespace tests { |
Junxiao Shi | 96dc0c4 | 2014-01-30 23:51:59 -0700 | [diff] [blame] | 40 | |
Junxiao Shi | d9ee45c | 2014-02-27 15:38:11 -0700 | [diff] [blame] | 41 | BOOST_FIXTURE_TEST_SUITE(FaceTcp, BaseFixture) |
Junxiao Shi | 96dc0c4 | 2014-01-30 23:51:59 -0700 | [diff] [blame] | 42 | |
| 43 | BOOST_AUTO_TEST_CASE(ChannelMap) |
| 44 | { |
Alexander Afanasyev | 0eb7065 | 2014-02-27 18:35:07 -0800 | [diff] [blame] | 45 | TcpFactory factory; |
Alexander Afanasyev | 5f1ec25 | 2014-02-28 10:59:17 -0800 | [diff] [blame] | 46 | |
Alexander Afanasyev | d665530 | 2014-02-28 08:41:28 -0800 | [diff] [blame] | 47 | shared_ptr<TcpChannel> channel1 = factory.createChannel("127.0.0.1", "20070"); |
| 48 | shared_ptr<TcpChannel> channel1a = factory.createChannel("127.0.0.1", "20070"); |
Junxiao Shi | 96dc0c4 | 2014-01-30 23:51:59 -0700 | [diff] [blame] | 49 | BOOST_CHECK_EQUAL(channel1, channel1a); |
Junxiao Shi | 61e3cc5 | 2014-03-03 20:40:28 -0700 | [diff] [blame] | 50 | BOOST_CHECK_EQUAL(channel1->getUri().toString(), "tcp4://127.0.0.1:20070"); |
Alexander Afanasyev | 5f1ec25 | 2014-02-28 10:59:17 -0800 | [diff] [blame] | 51 | |
Alexander Afanasyev | d665530 | 2014-02-28 08:41:28 -0800 | [diff] [blame] | 52 | shared_ptr<TcpChannel> channel2 = factory.createChannel("127.0.0.1", "20071"); |
Junxiao Shi | 96dc0c4 | 2014-01-30 23:51:59 -0700 | [diff] [blame] | 53 | BOOST_CHECK_NE(channel1, channel2); |
Junxiao Shi | 61e3cc5 | 2014-03-03 20:40:28 -0700 | [diff] [blame] | 54 | |
| 55 | shared_ptr<TcpChannel> channel3 = factory.createChannel("::1", "20071"); |
| 56 | BOOST_CHECK_NE(channel2, channel3); |
| 57 | BOOST_CHECK_EQUAL(channel3->getUri().toString(), "tcp6://[::1]:20071"); |
Junxiao Shi | 96dc0c4 | 2014-01-30 23:51:59 -0700 | [diff] [blame] | 58 | } |
| 59 | |
Steve DiBenedetto | ef04f27 | 2014-06-04 14:28:31 -0600 | [diff] [blame] | 60 | BOOST_AUTO_TEST_CASE(GetChannels) |
| 61 | { |
| 62 | TcpFactory factory; |
| 63 | BOOST_REQUIRE_EQUAL(factory.getChannels().empty(), true); |
| 64 | |
Davide Pesavento | b499a60 | 2014-11-18 22:36:56 +0100 | [diff] [blame] | 65 | std::vector<shared_ptr<const Channel>> expectedChannels; |
Steve DiBenedetto | ef04f27 | 2014-06-04 14:28:31 -0600 | [diff] [blame] | 66 | expectedChannels.push_back(factory.createChannel("127.0.0.1", "20070")); |
| 67 | expectedChannels.push_back(factory.createChannel("127.0.0.1", "20071")); |
| 68 | expectedChannels.push_back(factory.createChannel("::1", "20071")); |
| 69 | |
Davide Pesavento | b499a60 | 2014-11-18 22:36:56 +0100 | [diff] [blame] | 70 | for (const auto& ch : factory.getChannels()) { |
| 71 | auto pos = std::find(expectedChannels.begin(), expectedChannels.end(), ch); |
| 72 | BOOST_REQUIRE(pos != expectedChannels.end()); |
| 73 | expectedChannels.erase(pos); |
| 74 | } |
Steve DiBenedetto | ef04f27 | 2014-06-04 14:28:31 -0600 | [diff] [blame] | 75 | BOOST_CHECK_EQUAL(expectedChannels.size(), 0); |
| 76 | } |
| 77 | |
Alexander Afanasyev | 86bc91a | 2014-08-28 22:29:16 -0700 | [diff] [blame] | 78 | class FaceCreateFixture : protected BaseFixture |
| 79 | { |
| 80 | public: |
| 81 | void |
Alexander Afanasyev | 86bc91a | 2014-08-28 22:29:16 -0700 | [diff] [blame] | 82 | checkError(const std::string& errorActual, const std::string& errorExpected) |
| 83 | { |
| 84 | BOOST_CHECK_EQUAL(errorActual, errorExpected); |
| 85 | } |
| 86 | |
| 87 | void |
| 88 | failIfError(const std::string& errorActual) |
| 89 | { |
| 90 | BOOST_FAIL("No error expected, but got: [" << errorActual << "]"); |
| 91 | } |
| 92 | }; |
| 93 | |
| 94 | BOOST_FIXTURE_TEST_CASE(FaceCreate, FaceCreateFixture) |
| 95 | { |
Yukai Tu | 7c90e6d | 2015-07-11 12:21:46 +0800 | [diff] [blame^] | 96 | TcpFactory factory; |
Alexander Afanasyev | 86bc91a | 2014-08-28 22:29:16 -0700 | [diff] [blame] | 97 | |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 98 | factory.createFace(FaceUri("tcp4://127.0.0.1:6363"), |
Yukai Tu | 7c90e6d | 2015-07-11 12:21:46 +0800 | [diff] [blame^] | 99 | ndn::nfd::FACE_PERSISTENCY_PERSISTENT, |
| 100 | bind([]{}), |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 101 | bind(&FaceCreateFixture::checkError, this, _1, |
| 102 | "No channels available to connect to 127.0.0.1:6363")); |
| 103 | |
| 104 | factory.createChannel("127.0.0.1", "20071"); |
Yukai Tu | 7c90e6d | 2015-07-11 12:21:46 +0800 | [diff] [blame^] | 105 | |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 106 | factory.createFace(FaceUri("tcp4://127.0.0.1:20070"), |
Yukai Tu | 7c90e6d | 2015-07-11 12:21:46 +0800 | [diff] [blame^] | 107 | ndn::nfd::FACE_PERSISTENCY_PERSISTENT, |
| 108 | bind([]{}), |
Alexander Afanasyev | 86bc91a | 2014-08-28 22:29:16 -0700 | [diff] [blame] | 109 | bind(&FaceCreateFixture::failIfError, this, _1)); |
Alexander Afanasyev | 86bc91a | 2014-08-28 22:29:16 -0700 | [diff] [blame] | 110 | } |
| 111 | |
Yukai Tu | 7c90e6d | 2015-07-11 12:21:46 +0800 | [diff] [blame^] | 112 | BOOST_FIXTURE_TEST_CASE(UnsupportedFaceCreate, FaceCreateFixture) |
| 113 | { |
| 114 | TcpFactory factory; |
| 115 | |
| 116 | factory.createChannel("127.0.0.1", "20070"); |
| 117 | factory.createChannel("127.0.0.1", "20071"); |
| 118 | |
| 119 | BOOST_CHECK_THROW(factory.createFace(FaceUri("tcp4://127.0.0.1:20070"), |
| 120 | ndn::nfd::FACE_PERSISTENCY_PERMANENT, |
| 121 | bind([]{}), |
| 122 | bind([]{})), |
| 123 | ProtocolFactory::Error); |
| 124 | |
| 125 | BOOST_CHECK_THROW(factory.createFace(FaceUri("tcp4://127.0.0.1:20071"), |
| 126 | ndn::nfd::FACE_PERSISTENCY_ON_DEMAND, |
| 127 | bind([]{}), |
| 128 | bind([]{})), |
| 129 | ProtocolFactory::Error); |
| 130 | } |
| 131 | |
Junxiao Shi | d9ee45c | 2014-02-27 15:38:11 -0700 | [diff] [blame] | 132 | class EndToEndFixture : protected BaseFixture |
Junxiao Shi | 96dc0c4 | 2014-01-30 23:51:59 -0700 | [diff] [blame] | 133 | { |
| 134 | public: |
| 135 | void |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 136 | channel1_onFaceCreated(const shared_ptr<Face>& newFace) |
Junxiao Shi | 96dc0c4 | 2014-01-30 23:51:59 -0700 | [diff] [blame] | 137 | { |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 138 | BOOST_CHECK(!static_cast<bool>(face1)); |
| 139 | face1 = newFace; |
Junxiao Shi | c099ddb | 2014-12-25 20:53:20 -0700 | [diff] [blame] | 140 | face1->onReceiveInterest.connect(bind(&EndToEndFixture::face1_onReceiveInterest, this, _1)); |
| 141 | face1->onReceiveData.connect(bind(&EndToEndFixture::face1_onReceiveData, this, _1)); |
| 142 | face1->onFail.connect(bind(&EndToEndFixture::face1_onFail, this)); |
Junxiao Shi | 96dc0c4 | 2014-01-30 23:51:59 -0700 | [diff] [blame] | 143 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 144 | limitedIo.afterOp(); |
Junxiao Shi | 96dc0c4 | 2014-01-30 23:51:59 -0700 | [diff] [blame] | 145 | } |
| 146 | |
| 147 | void |
| 148 | channel1_onConnectFailed(const std::string& reason) |
| 149 | { |
| 150 | BOOST_CHECK_MESSAGE(false, reason); |
| 151 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 152 | limitedIo.afterOp(); |
Junxiao Shi | 96dc0c4 | 2014-01-30 23:51:59 -0700 | [diff] [blame] | 153 | } |
Alexander Afanasyev | 5f1ec25 | 2014-02-28 10:59:17 -0800 | [diff] [blame] | 154 | |
Junxiao Shi | 96dc0c4 | 2014-01-30 23:51:59 -0700 | [diff] [blame] | 155 | void |
| 156 | face1_onReceiveInterest(const Interest& interest) |
| 157 | { |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 158 | face1_receivedInterests.push_back(interest); |
Junxiao Shi | 96dc0c4 | 2014-01-30 23:51:59 -0700 | [diff] [blame] | 159 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 160 | limitedIo.afterOp(); |
Junxiao Shi | 96dc0c4 | 2014-01-30 23:51:59 -0700 | [diff] [blame] | 161 | } |
Alexander Afanasyev | 5f1ec25 | 2014-02-28 10:59:17 -0800 | [diff] [blame] | 162 | |
Junxiao Shi | 96dc0c4 | 2014-01-30 23:51:59 -0700 | [diff] [blame] | 163 | void |
| 164 | face1_onReceiveData(const Data& data) |
| 165 | { |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 166 | face1_receivedDatas.push_back(data); |
Junxiao Shi | 96dc0c4 | 2014-01-30 23:51:59 -0700 | [diff] [blame] | 167 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 168 | limitedIo.afterOp(); |
Junxiao Shi | 96dc0c4 | 2014-01-30 23:51:59 -0700 | [diff] [blame] | 169 | } |
| 170 | |
| 171 | void |
Alexander Afanasyev | a0a10fb | 2014-02-13 19:56:15 -0800 | [diff] [blame] | 172 | face1_onFail() |
| 173 | { |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 174 | face1.reset(); |
| 175 | limitedIo.afterOp(); |
Alexander Afanasyev | a0a10fb | 2014-02-13 19:56:15 -0800 | [diff] [blame] | 176 | } |
| 177 | |
| 178 | void |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 179 | channel2_onFaceCreated(const shared_ptr<Face>& newFace) |
Junxiao Shi | 96dc0c4 | 2014-01-30 23:51:59 -0700 | [diff] [blame] | 180 | { |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 181 | BOOST_CHECK(!static_cast<bool>(face2)); |
| 182 | face2 = newFace; |
Junxiao Shi | c099ddb | 2014-12-25 20:53:20 -0700 | [diff] [blame] | 183 | face2->onReceiveInterest.connect(bind(&EndToEndFixture::face2_onReceiveInterest, this, _1)); |
| 184 | face2->onReceiveData.connect(bind(&EndToEndFixture::face2_onReceiveData, this, _1)); |
| 185 | face2->onFail.connect(bind(&EndToEndFixture::face2_onFail, this)); |
Junxiao Shi | 96dc0c4 | 2014-01-30 23:51:59 -0700 | [diff] [blame] | 186 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 187 | limitedIo.afterOp(); |
Junxiao Shi | 96dc0c4 | 2014-01-30 23:51:59 -0700 | [diff] [blame] | 188 | } |
| 189 | |
| 190 | void |
| 191 | channel2_onConnectFailed(const std::string& reason) |
| 192 | { |
| 193 | BOOST_CHECK_MESSAGE(false, reason); |
| 194 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 195 | limitedIo.afterOp(); |
Junxiao Shi | 96dc0c4 | 2014-01-30 23:51:59 -0700 | [diff] [blame] | 196 | } |
Alexander Afanasyev | 5f1ec25 | 2014-02-28 10:59:17 -0800 | [diff] [blame] | 197 | |
Junxiao Shi | 96dc0c4 | 2014-01-30 23:51:59 -0700 | [diff] [blame] | 198 | void |
| 199 | face2_onReceiveInterest(const Interest& interest) |
| 200 | { |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 201 | face2_receivedInterests.push_back(interest); |
Junxiao Shi | 96dc0c4 | 2014-01-30 23:51:59 -0700 | [diff] [blame] | 202 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 203 | limitedIo.afterOp(); |
Junxiao Shi | 96dc0c4 | 2014-01-30 23:51:59 -0700 | [diff] [blame] | 204 | } |
Alexander Afanasyev | 5f1ec25 | 2014-02-28 10:59:17 -0800 | [diff] [blame] | 205 | |
Junxiao Shi | 96dc0c4 | 2014-01-30 23:51:59 -0700 | [diff] [blame] | 206 | void |
| 207 | face2_onReceiveData(const Data& data) |
| 208 | { |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 209 | face2_receivedDatas.push_back(data); |
Junxiao Shi | 96dc0c4 | 2014-01-30 23:51:59 -0700 | [diff] [blame] | 210 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 211 | limitedIo.afterOp(); |
Junxiao Shi | 96dc0c4 | 2014-01-30 23:51:59 -0700 | [diff] [blame] | 212 | } |
| 213 | |
| 214 | void |
Alexander Afanasyev | a0a10fb | 2014-02-13 19:56:15 -0800 | [diff] [blame] | 215 | face2_onFail() |
| 216 | { |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 217 | face2.reset(); |
| 218 | limitedIo.afterOp(); |
Alexander Afanasyev | a0a10fb | 2014-02-13 19:56:15 -0800 | [diff] [blame] | 219 | } |
| 220 | |
| 221 | void |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 222 | channel_onFaceCreated(const shared_ptr<Face>& newFace) |
Alexander Afanasyev | a16abd2 | 2014-01-31 18:12:29 -0800 | [diff] [blame] | 223 | { |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 224 | faces.push_back(newFace); |
| 225 | limitedIo.afterOp(); |
Alexander Afanasyev | a16abd2 | 2014-01-31 18:12:29 -0800 | [diff] [blame] | 226 | } |
| 227 | |
| 228 | void |
| 229 | channel_onConnectFailed(const std::string& reason) |
| 230 | { |
| 231 | BOOST_CHECK_MESSAGE(false, reason); |
| 232 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 233 | limitedIo.afterOp(); |
Alexander Afanasyev | a16abd2 | 2014-01-31 18:12:29 -0800 | [diff] [blame] | 234 | } |
| 235 | |
| 236 | void |
| 237 | checkFaceList(size_t shouldBe) |
| 238 | { |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 239 | BOOST_CHECK_EQUAL(faces.size(), shouldBe); |
Alexander Afanasyev | a16abd2 | 2014-01-31 18:12:29 -0800 | [diff] [blame] | 240 | } |
Alexander Afanasyev | 5f1ec25 | 2014-02-28 10:59:17 -0800 | [diff] [blame] | 241 | |
Davide Pesavento | ab1e8f2 | 2014-10-21 22:45:33 +0200 | [diff] [blame] | 242 | void |
| 243 | connect(const shared_ptr<TcpChannel>& channel, |
| 244 | const std::string& remoteHost, |
| 245 | const std::string& remotePort) |
| 246 | { |
Alexander Afanasyev | baba253 | 2015-02-13 18:27:33 -0800 | [diff] [blame] | 247 | channel->connect(tcp::Endpoint(boost::asio::ip::address::from_string(remoteHost), |
| 248 | boost::lexical_cast<uint16_t>(remotePort)), |
Davide Pesavento | ab1e8f2 | 2014-10-21 22:45:33 +0200 | [diff] [blame] | 249 | bind(&EndToEndFixture::channel_onFaceCreated, this, _1), |
| 250 | bind(&EndToEndFixture::channel_onConnectFailed, this, _1)); |
| 251 | } |
| 252 | |
Junxiao Shi | 96dc0c4 | 2014-01-30 23:51:59 -0700 | [diff] [blame] | 253 | public: |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 254 | LimitedIo limitedIo; |
Junxiao Shi | 96dc0c4 | 2014-01-30 23:51:59 -0700 | [diff] [blame] | 255 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 256 | shared_ptr<Face> face1; |
| 257 | std::vector<Interest> face1_receivedInterests; |
| 258 | std::vector<Data> face1_receivedDatas; |
| 259 | shared_ptr<Face> face2; |
| 260 | std::vector<Interest> face2_receivedInterests; |
| 261 | std::vector<Data> face2_receivedDatas; |
Alexander Afanasyev | a16abd2 | 2014-01-31 18:12:29 -0800 | [diff] [blame] | 262 | |
Davide Pesavento | b499a60 | 2014-11-18 22:36:56 +0100 | [diff] [blame] | 263 | std::list<shared_ptr<Face>> faces; |
Junxiao Shi | 96dc0c4 | 2014-01-30 23:51:59 -0700 | [diff] [blame] | 264 | }; |
| 265 | |
Alexander Afanasyev | a39b90b | 2014-03-05 15:31:00 +0000 | [diff] [blame] | 266 | BOOST_FIXTURE_TEST_CASE(EndToEnd4, EndToEndFixture) |
Junxiao Shi | 96dc0c4 | 2014-01-30 23:51:59 -0700 | [diff] [blame] | 267 | { |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 268 | TcpFactory factory1; |
Junxiao Shi | 96dc0c4 | 2014-01-30 23:51:59 -0700 | [diff] [blame] | 269 | |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 270 | shared_ptr<TcpChannel> channel1 = factory1.createChannel("127.0.0.1", "20070"); |
| 271 | factory1.createChannel("127.0.0.1", "20071"); |
Alexander Afanasyev | 5f1ec25 | 2014-02-28 10:59:17 -0800 | [diff] [blame] | 272 | |
Alexander Afanasyev | 53a6fd3 | 2014-03-23 00:00:04 -0700 | [diff] [blame] | 273 | BOOST_CHECK_EQUAL(channel1->isListening(), false); |
| 274 | |
Junxiao Shi | 96dc0c4 | 2014-01-30 23:51:59 -0700 | [diff] [blame] | 275 | channel1->listen(bind(&EndToEndFixture::channel1_onFaceCreated, this, _1), |
| 276 | bind(&EndToEndFixture::channel1_onConnectFailed, this, _1)); |
Alexander Afanasyev | 5f1ec25 | 2014-02-28 10:59:17 -0800 | [diff] [blame] | 277 | |
Alexander Afanasyev | 53a6fd3 | 2014-03-23 00:00:04 -0700 | [diff] [blame] | 278 | BOOST_CHECK_EQUAL(channel1->isListening(), true); |
| 279 | |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 280 | TcpFactory factory2; |
| 281 | |
| 282 | shared_ptr<TcpChannel> channel2 = factory2.createChannel("127.0.0.2", "20070"); |
| 283 | factory2.createChannel("127.0.0.2", "20071"); |
| 284 | |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 285 | factory2.createFace(FaceUri("tcp4://127.0.0.1:20070"), |
Yukai Tu | 7c90e6d | 2015-07-11 12:21:46 +0800 | [diff] [blame^] | 286 | ndn::nfd::FACE_PERSISTENCY_PERSISTENT, |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 287 | bind(&EndToEndFixture::channel2_onFaceCreated, this, _1), |
| 288 | bind(&EndToEndFixture::channel2_onConnectFailed, this, _1)); |
Junxiao Shi | 96dc0c4 | 2014-01-30 23:51:59 -0700 | [diff] [blame] | 289 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 290 | BOOST_CHECK_MESSAGE(limitedIo.run(2, time::seconds(10)) == LimitedIo::EXCEED_OPS, |
Junxiao Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 291 | "TcpChannel error: cannot connect or cannot accept connection"); |
Junxiao Shi | 96dc0c4 | 2014-01-30 23:51:59 -0700 | [diff] [blame] | 292 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 293 | BOOST_REQUIRE(static_cast<bool>(face1)); |
| 294 | BOOST_REQUIRE(static_cast<bool>(face2)); |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 295 | |
Yukai Tu | 731f0d7 | 2015-07-04 11:14:44 +0800 | [diff] [blame] | 296 | BOOST_CHECK_EQUAL(face1->getPersistency(), ndn::nfd::FACE_PERSISTENCY_ON_DEMAND); |
| 297 | BOOST_CHECK_EQUAL(face2->getPersistency(), ndn::nfd::FACE_PERSISTENCY_PERSISTENT); |
Davide Pesavento | 9427941 | 2015-02-27 01:29:32 +0100 | [diff] [blame] | 298 | BOOST_CHECK_EQUAL(face1->isMultiAccess(), false); |
| 299 | BOOST_CHECK_EQUAL(face2->isMultiAccess(), false); |
Alexander Afanasyev | 355c066 | 2014-03-20 18:08:17 -0700 | [diff] [blame] | 300 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 301 | BOOST_CHECK_EQUAL(face2->getRemoteUri().toString(), "tcp4://127.0.0.1:20070"); |
| 302 | BOOST_CHECK_EQUAL(face1->getLocalUri().toString(), "tcp4://127.0.0.1:20070"); |
| 303 | // face1 has an unknown remoteUri, since the source port is automatically chosen by OS |
Alexander Afanasyev | a39b90b | 2014-03-05 15:31:00 +0000 | [diff] [blame] | 304 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 305 | BOOST_CHECK_EQUAL(face1->isLocal(), true); |
| 306 | BOOST_CHECK_EQUAL(face2->isLocal(), true); |
Alexander Afanasyev | a39b90b | 2014-03-05 15:31:00 +0000 | [diff] [blame] | 307 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 308 | BOOST_CHECK_EQUAL(static_cast<bool>(dynamic_pointer_cast<LocalFace>(face1)), true); |
| 309 | BOOST_CHECK_EQUAL(static_cast<bool>(dynamic_pointer_cast<LocalFace>(face2)), true); |
Alexander Afanasyev | a39b90b | 2014-03-05 15:31:00 +0000 | [diff] [blame] | 310 | |
| 311 | // integrated tests needs to check that TcpFace for non-loopback fails these tests... |
| 312 | |
Alexander Afanasyev | 650028d | 2014-04-25 18:39:10 -0700 | [diff] [blame] | 313 | shared_ptr<Interest> interest1 = makeInterest("ndn:/TpnzGvW9R"); |
| 314 | shared_ptr<Data> data1 = makeData("ndn:/KfczhUqVix"); |
| 315 | shared_ptr<Interest> interest2 = makeInterest("ndn:/QWiIMfj5sL"); |
| 316 | shared_ptr<Data> data2 = makeData("ndn:/XNBV796f"); |
Alexander Afanasyev | a39b90b | 2014-03-05 15:31:00 +0000 | [diff] [blame] | 317 | |
Alexander Afanasyev | 650028d | 2014-04-25 18:39:10 -0700 | [diff] [blame] | 318 | face1->sendInterest(*interest1); |
| 319 | face1->sendInterest(*interest1); |
| 320 | face1->sendInterest(*interest1); |
| 321 | face1->sendData (*data1 ); |
Junxiao Shi | 5dd26c3 | 2014-07-20 23:15:14 -0700 | [diff] [blame] | 322 | size_t nBytesSent1 = interest1->wireEncode().size() * 3 + data1->wireEncode().size(); |
Alexander Afanasyev | 650028d | 2014-04-25 18:39:10 -0700 | [diff] [blame] | 323 | face2->sendInterest(*interest2); |
| 324 | face2->sendData (*data2 ); |
| 325 | face2->sendData (*data2 ); |
| 326 | face2->sendData (*data2 ); |
Alexander Afanasyev | a39b90b | 2014-03-05 15:31:00 +0000 | [diff] [blame] | 327 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 328 | BOOST_CHECK_MESSAGE(limitedIo.run(8, time::seconds(10)) == LimitedIo::EXCEED_OPS, |
Alexander Afanasyev | a39b90b | 2014-03-05 15:31:00 +0000 | [diff] [blame] | 329 | "TcpChannel error: cannot send or receive Interest/Data packets"); |
| 330 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 331 | BOOST_REQUIRE_EQUAL(face1_receivedInterests.size(), 1); |
| 332 | BOOST_REQUIRE_EQUAL(face1_receivedDatas .size(), 3); |
| 333 | BOOST_REQUIRE_EQUAL(face2_receivedInterests.size(), 3); |
| 334 | BOOST_REQUIRE_EQUAL(face2_receivedDatas .size(), 1); |
Alexander Afanasyev | a39b90b | 2014-03-05 15:31:00 +0000 | [diff] [blame] | 335 | |
Alexander Afanasyev | 650028d | 2014-04-25 18:39:10 -0700 | [diff] [blame] | 336 | BOOST_CHECK_EQUAL(face1_receivedInterests[0].getName(), interest2->getName()); |
| 337 | BOOST_CHECK_EQUAL(face1_receivedDatas [0].getName(), data2->getName()); |
| 338 | BOOST_CHECK_EQUAL(face2_receivedInterests[0].getName(), interest1->getName()); |
| 339 | BOOST_CHECK_EQUAL(face2_receivedDatas [0].getName(), data1->getName()); |
Alexander Afanasyev | 7e698e6 | 2014-03-07 16:48:35 +0000 | [diff] [blame] | 340 | |
Junxiao Shi | 5dd26c3 | 2014-07-20 23:15:14 -0700 | [diff] [blame] | 341 | // needed to ensure NOutBytes counters are accurate |
| 342 | limitedIo.run(LimitedIo::UNLIMITED_OPS, time::seconds(1)); |
| 343 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 344 | const FaceCounters& counters1 = face1->getCounters(); |
Junxiao Shi | 6e69432 | 2014-04-03 10:27:13 -0700 | [diff] [blame] | 345 | BOOST_CHECK_EQUAL(counters1.getNInInterests() , 1); |
| 346 | BOOST_CHECK_EQUAL(counters1.getNInDatas() , 3); |
| 347 | BOOST_CHECK_EQUAL(counters1.getNOutInterests(), 3); |
| 348 | BOOST_CHECK_EQUAL(counters1.getNOutDatas() , 1); |
Junxiao Shi | 5dd26c3 | 2014-07-20 23:15:14 -0700 | [diff] [blame] | 349 | BOOST_CHECK_EQUAL(counters1.getNOutBytes(), nBytesSent1); |
Alexander Afanasyev | 7e698e6 | 2014-03-07 16:48:35 +0000 | [diff] [blame] | 350 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 351 | const FaceCounters& counters2 = face2->getCounters(); |
Junxiao Shi | 6e69432 | 2014-04-03 10:27:13 -0700 | [diff] [blame] | 352 | BOOST_CHECK_EQUAL(counters2.getNInInterests() , 3); |
| 353 | BOOST_CHECK_EQUAL(counters2.getNInDatas() , 1); |
| 354 | BOOST_CHECK_EQUAL(counters2.getNOutInterests(), 1); |
| 355 | BOOST_CHECK_EQUAL(counters2.getNOutDatas() , 3); |
Junxiao Shi | 5dd26c3 | 2014-07-20 23:15:14 -0700 | [diff] [blame] | 356 | BOOST_CHECK_EQUAL(counters2.getNInBytes(), nBytesSent1); |
Alexander Afanasyev | a39b90b | 2014-03-05 15:31:00 +0000 | [diff] [blame] | 357 | } |
| 358 | |
| 359 | BOOST_FIXTURE_TEST_CASE(EndToEnd6, EndToEndFixture) |
| 360 | { |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 361 | TcpFactory factory1; |
Alexander Afanasyev | a39b90b | 2014-03-05 15:31:00 +0000 | [diff] [blame] | 362 | |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 363 | shared_ptr<TcpChannel> channel1 = factory1.createChannel("::1", "20070"); |
| 364 | shared_ptr<TcpChannel> channel2 = factory1.createChannel("::1", "20071"); |
Alexander Afanasyev | a39b90b | 2014-03-05 15:31:00 +0000 | [diff] [blame] | 365 | |
| 366 | channel1->listen(bind(&EndToEndFixture::channel1_onFaceCreated, this, _1), |
| 367 | bind(&EndToEndFixture::channel1_onConnectFailed, this, _1)); |
| 368 | |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 369 | TcpFactory factory2; |
| 370 | |
| 371 | factory2.createChannel("::2", "20070"); |
| 372 | |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 373 | factory2.createFace(FaceUri("tcp6://[::1]:20070"), |
Yukai Tu | 7c90e6d | 2015-07-11 12:21:46 +0800 | [diff] [blame^] | 374 | ndn::nfd::FACE_PERSISTENCY_PERSISTENT, |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 375 | bind(&EndToEndFixture::channel2_onFaceCreated, this, _1), |
| 376 | bind(&EndToEndFixture::channel2_onConnectFailed, this, _1)); |
Alexander Afanasyev | a39b90b | 2014-03-05 15:31:00 +0000 | [diff] [blame] | 377 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 378 | BOOST_CHECK_MESSAGE(limitedIo.run(2, time::seconds(10)) == LimitedIo::EXCEED_OPS, |
Alexander Afanasyev | a39b90b | 2014-03-05 15:31:00 +0000 | [diff] [blame] | 379 | "TcpChannel error: cannot connect or cannot accept connection"); |
| 380 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 381 | BOOST_REQUIRE(static_cast<bool>(face1)); |
| 382 | BOOST_REQUIRE(static_cast<bool>(face2)); |
Alexander Afanasyev | a39b90b | 2014-03-05 15:31:00 +0000 | [diff] [blame] | 383 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 384 | BOOST_CHECK_EQUAL(face2->getRemoteUri().toString(), "tcp6://[::1]:20070"); |
| 385 | BOOST_CHECK_EQUAL(face1->getLocalUri().toString(), "tcp6://[::1]:20070"); |
| 386 | // face1 has an unknown remoteUri, since the source port is automatically chosen by OS |
Alexander Afanasyev | a39b90b | 2014-03-05 15:31:00 +0000 | [diff] [blame] | 387 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 388 | BOOST_CHECK_EQUAL(face1->isLocal(), true); |
| 389 | BOOST_CHECK_EQUAL(face2->isLocal(), true); |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 390 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 391 | BOOST_CHECK_EQUAL(static_cast<bool>(dynamic_pointer_cast<LocalFace>(face1)), true); |
| 392 | BOOST_CHECK_EQUAL(static_cast<bool>(dynamic_pointer_cast<LocalFace>(face2)), true); |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 393 | |
| 394 | // integrated tests needs to check that TcpFace for non-loopback fails these tests... |
Alexander Afanasyev | 5f1ec25 | 2014-02-28 10:59:17 -0800 | [diff] [blame] | 395 | |
Alexander Afanasyev | 650028d | 2014-04-25 18:39:10 -0700 | [diff] [blame] | 396 | shared_ptr<Interest> interest1 = makeInterest("ndn:/TpnzGvW9R"); |
| 397 | shared_ptr<Data> data1 = makeData("ndn:/KfczhUqVix"); |
| 398 | shared_ptr<Interest> interest2 = makeInterest("ndn:/QWiIMfj5sL"); |
| 399 | shared_ptr<Data> data2 = makeData("ndn:/XNBV796f"); |
Junxiao Shi | 96dc0c4 | 2014-01-30 23:51:59 -0700 | [diff] [blame] | 400 | |
Alexander Afanasyev | 650028d | 2014-04-25 18:39:10 -0700 | [diff] [blame] | 401 | face1->sendInterest(*interest1); |
| 402 | face1->sendData (*data1 ); |
| 403 | face2->sendInterest(*interest2); |
| 404 | face2->sendData (*data2 ); |
Junxiao Shi | 96dc0c4 | 2014-01-30 23:51:59 -0700 | [diff] [blame] | 405 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 406 | BOOST_CHECK_MESSAGE(limitedIo.run(4, time::seconds(10)) == LimitedIo::EXCEED_OPS, |
Junxiao Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 407 | "TcpChannel error: cannot send or receive Interest/Data packets"); |
| 408 | |
Junxiao Shi | 96dc0c4 | 2014-01-30 23:51:59 -0700 | [diff] [blame] | 409 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 410 | BOOST_REQUIRE_EQUAL(face1_receivedInterests.size(), 1); |
| 411 | BOOST_REQUIRE_EQUAL(face1_receivedDatas .size(), 1); |
| 412 | BOOST_REQUIRE_EQUAL(face2_receivedInterests.size(), 1); |
| 413 | BOOST_REQUIRE_EQUAL(face2_receivedDatas .size(), 1); |
Alexander Afanasyev | 5f1ec25 | 2014-02-28 10:59:17 -0800 | [diff] [blame] | 414 | |
Alexander Afanasyev | 650028d | 2014-04-25 18:39:10 -0700 | [diff] [blame] | 415 | BOOST_CHECK_EQUAL(face1_receivedInterests[0].getName(), interest2->getName()); |
| 416 | BOOST_CHECK_EQUAL(face1_receivedDatas [0].getName(), data2->getName()); |
| 417 | BOOST_CHECK_EQUAL(face2_receivedInterests[0].getName(), interest1->getName()); |
| 418 | BOOST_CHECK_EQUAL(face2_receivedDatas [0].getName(), data1->getName()); |
Junxiao Shi | 96dc0c4 | 2014-01-30 23:51:59 -0700 | [diff] [blame] | 419 | } |
| 420 | |
Alexander Afanasyev | a16abd2 | 2014-01-31 18:12:29 -0800 | [diff] [blame] | 421 | BOOST_FIXTURE_TEST_CASE(MultipleAccepts, EndToEndFixture) |
| 422 | { |
Alexander Afanasyev | 0eb7065 | 2014-02-27 18:35:07 -0800 | [diff] [blame] | 423 | TcpFactory factory; |
Alexander Afanasyev | a16abd2 | 2014-01-31 18:12:29 -0800 | [diff] [blame] | 424 | |
Alexander Afanasyev | d665530 | 2014-02-28 08:41:28 -0800 | [diff] [blame] | 425 | shared_ptr<TcpChannel> channel1 = factory.createChannel("127.0.0.1", "20070"); |
| 426 | shared_ptr<TcpChannel> channel2 = factory.createChannel("127.0.0.1", "20071"); |
Alexander Afanasyev | 5f1ec25 | 2014-02-28 10:59:17 -0800 | [diff] [blame] | 427 | |
Alexander Afanasyev | a16abd2 | 2014-01-31 18:12:29 -0800 | [diff] [blame] | 428 | channel1->listen(bind(&EndToEndFixture::channel_onFaceCreated, this, _1), |
| 429 | bind(&EndToEndFixture::channel_onConnectFailed, this, _1)); |
Alexander Afanasyev | 5f1ec25 | 2014-02-28 10:59:17 -0800 | [diff] [blame] | 430 | |
Alexander Afanasyev | baba253 | 2015-02-13 18:27:33 -0800 | [diff] [blame] | 431 | using namespace boost::asio; |
| 432 | channel2->connect(tcp::Endpoint(ip::address::from_string("127.0.0.1"), 20070), |
Alexander Afanasyev | a16abd2 | 2014-01-31 18:12:29 -0800 | [diff] [blame] | 433 | bind(&EndToEndFixture::channel_onFaceCreated, this, _1), |
| 434 | bind(&EndToEndFixture::channel_onConnectFailed, this, _1), |
Alexander Afanasyev | c1e2ee0 | 2014-02-25 17:02:07 -0800 | [diff] [blame] | 435 | time::seconds(4)); // very short timeout |
Alexander Afanasyev | a16abd2 | 2014-01-31 18:12:29 -0800 | [diff] [blame] | 436 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 437 | BOOST_CHECK_MESSAGE(limitedIo.run(2, time::seconds(10)) == LimitedIo::EXCEED_OPS, |
Junxiao Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 438 | "TcpChannel error: cannot connect or cannot accept connection"); |
| 439 | |
Alexander Afanasyev | a16abd2 | 2014-01-31 18:12:29 -0800 | [diff] [blame] | 440 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 441 | BOOST_CHECK_EQUAL(faces.size(), 2); |
Alexander Afanasyev | 5f1ec25 | 2014-02-28 10:59:17 -0800 | [diff] [blame] | 442 | |
Alexander Afanasyev | d665530 | 2014-02-28 08:41:28 -0800 | [diff] [blame] | 443 | shared_ptr<TcpChannel> channel3 = factory.createChannel("127.0.0.1", "20072"); |
Alexander Afanasyev | baba253 | 2015-02-13 18:27:33 -0800 | [diff] [blame] | 444 | channel3->connect(tcp::Endpoint(ip::address::from_string("127.0.0.1"), 20070), |
Alexander Afanasyev | a16abd2 | 2014-01-31 18:12:29 -0800 | [diff] [blame] | 445 | bind(&EndToEndFixture::channel_onFaceCreated, this, _1), |
| 446 | bind(&EndToEndFixture::channel_onConnectFailed, this, _1), |
Alexander Afanasyev | c1e2ee0 | 2014-02-25 17:02:07 -0800 | [diff] [blame] | 447 | time::seconds(4)); // very short timeout |
Alexander Afanasyev | a16abd2 | 2014-01-31 18:12:29 -0800 | [diff] [blame] | 448 | |
| 449 | |
Alexander Afanasyev | d665530 | 2014-02-28 08:41:28 -0800 | [diff] [blame] | 450 | shared_ptr<TcpChannel> channel4 = factory.createChannel("127.0.0.1", "20073"); |
Alexander Afanasyev | a16abd2 | 2014-01-31 18:12:29 -0800 | [diff] [blame] | 451 | |
| 452 | BOOST_CHECK_NE(channel3, channel4); |
Alexander Afanasyev | 5f1ec25 | 2014-02-28 10:59:17 -0800 | [diff] [blame] | 453 | |
Junxiao Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 454 | scheduler::schedule(time::seconds(1), |
Davide Pesavento | ab1e8f2 | 2014-10-21 22:45:33 +0200 | [diff] [blame] | 455 | bind(&EndToEndFixture::connect, this, channel4, "127.0.0.1", "20070")); |
Alexander Afanasyev | a16abd2 | 2014-01-31 18:12:29 -0800 | [diff] [blame] | 456 | |
Alexander Afanasyev | eb3197f | 2014-03-17 19:28:18 -0700 | [diff] [blame] | 457 | scheduler::schedule(time::milliseconds(500), |
Alexander Afanasyev | 7329e02 | 2014-02-27 14:47:22 -0800 | [diff] [blame] | 458 | bind(&EndToEndFixture::checkFaceList, this, 4)); |
Alexander Afanasyev | 5f1ec25 | 2014-02-28 10:59:17 -0800 | [diff] [blame] | 459 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 460 | BOOST_CHECK_MESSAGE(limitedIo.run(4,// 2 connects and 2 accepts |
Junxiao Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 461 | time::seconds(10)) == LimitedIo::EXCEED_OPS, |
| 462 | "TcpChannel error: cannot connect or cannot accept multiple connections"); |
Alexander Afanasyev | 7329e02 | 2014-02-27 14:47:22 -0800 | [diff] [blame] | 463 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 464 | BOOST_CHECK_EQUAL(faces.size(), 6); |
Alexander Afanasyev | a16abd2 | 2014-01-31 18:12:29 -0800 | [diff] [blame] | 465 | } |
| 466 | |
Alexander Afanasyev | a0a10fb | 2014-02-13 19:56:15 -0800 | [diff] [blame] | 467 | |
| 468 | BOOST_FIXTURE_TEST_CASE(FaceClosing, EndToEndFixture) |
| 469 | { |
Alexander Afanasyev | 0eb7065 | 2014-02-27 18:35:07 -0800 | [diff] [blame] | 470 | TcpFactory factory; |
Alexander Afanasyev | a0a10fb | 2014-02-13 19:56:15 -0800 | [diff] [blame] | 471 | |
Alexander Afanasyev | d665530 | 2014-02-28 08:41:28 -0800 | [diff] [blame] | 472 | shared_ptr<TcpChannel> channel1 = factory.createChannel("127.0.0.1", "20070"); |
| 473 | shared_ptr<TcpChannel> channel2 = factory.createChannel("127.0.0.1", "20071"); |
Alexander Afanasyev | 5f1ec25 | 2014-02-28 10:59:17 -0800 | [diff] [blame] | 474 | |
Alexander Afanasyev | a0a10fb | 2014-02-13 19:56:15 -0800 | [diff] [blame] | 475 | channel1->listen(bind(&EndToEndFixture::channel1_onFaceCreated, this, _1), |
| 476 | bind(&EndToEndFixture::channel1_onConnectFailed, this, _1)); |
Alexander Afanasyev | 5f1ec25 | 2014-02-28 10:59:17 -0800 | [diff] [blame] | 477 | |
Alexander Afanasyev | baba253 | 2015-02-13 18:27:33 -0800 | [diff] [blame] | 478 | using namespace boost::asio; |
| 479 | channel2->connect(tcp::Endpoint(ip::address::from_string("127.0.0.1"), 20070), |
Alexander Afanasyev | a0a10fb | 2014-02-13 19:56:15 -0800 | [diff] [blame] | 480 | bind(&EndToEndFixture::channel2_onFaceCreated, this, _1), |
| 481 | bind(&EndToEndFixture::channel2_onConnectFailed, this, _1), |
Alexander Afanasyev | c1e2ee0 | 2014-02-25 17:02:07 -0800 | [diff] [blame] | 482 | time::seconds(4)); // very short timeout |
Alexander Afanasyev | a0a10fb | 2014-02-13 19:56:15 -0800 | [diff] [blame] | 483 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 484 | BOOST_CHECK_MESSAGE(limitedIo.run(2, time::seconds(10)) == LimitedIo::EXCEED_OPS, |
Junxiao Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 485 | "TcpChannel error: cannot connect or cannot accept connection"); |
Alexander Afanasyev | a0a10fb | 2014-02-13 19:56:15 -0800 | [diff] [blame] | 486 | |
| 487 | BOOST_CHECK_EQUAL(channel1->size(), 1); |
| 488 | BOOST_CHECK_EQUAL(channel2->size(), 1); |
| 489 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 490 | BOOST_REQUIRE(static_cast<bool>(face1)); |
| 491 | BOOST_CHECK(static_cast<bool>(face2)); |
Alexander Afanasyev | a0a10fb | 2014-02-13 19:56:15 -0800 | [diff] [blame] | 492 | |
Junxiao Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 493 | // Face::close must be invoked during io run to be counted as an op |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 494 | scheduler::schedule(time::milliseconds(100), bind(&Face::close, face1)); |
Alexander Afanasyev | 5f1ec25 | 2014-02-28 10:59:17 -0800 | [diff] [blame] | 495 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 496 | BOOST_CHECK_MESSAGE(limitedIo.run(2, time::seconds(10)) == LimitedIo::EXCEED_OPS, |
Junxiao Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 497 | "FaceClosing error: cannot properly close faces"); |
Alexander Afanasyev | a0a10fb | 2014-02-13 19:56:15 -0800 | [diff] [blame] | 498 | |
| 499 | // both faces should get closed |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 500 | BOOST_CHECK(!static_cast<bool>(face1)); |
| 501 | BOOST_CHECK(!static_cast<bool>(face2)); |
Alexander Afanasyev | 5f1ec25 | 2014-02-28 10:59:17 -0800 | [diff] [blame] | 502 | |
Alexander Afanasyev | a0a10fb | 2014-02-13 19:56:15 -0800 | [diff] [blame] | 503 | BOOST_CHECK_EQUAL(channel1->size(), 0); |
| 504 | BOOST_CHECK_EQUAL(channel2->size(), 0); |
| 505 | } |
| 506 | |
| 507 | |
Alexander Afanasyev | 650028d | 2014-04-25 18:39:10 -0700 | [diff] [blame] | 508 | class SimpleEndToEndFixture : protected BaseFixture |
| 509 | { |
| 510 | public: |
| 511 | void |
| 512 | onFaceCreated(const shared_ptr<Face>& face) |
| 513 | { |
Junxiao Shi | c099ddb | 2014-12-25 20:53:20 -0700 | [diff] [blame] | 514 | face->onReceiveInterest.connect(bind(&SimpleEndToEndFixture::onReceiveInterest, this, _1)); |
| 515 | face->onReceiveData.connect(bind(&SimpleEndToEndFixture::onReceiveData, this, _1)); |
| 516 | face->onFail.connect(bind(&SimpleEndToEndFixture::onFail, this, face)); |
Alexander Afanasyev | 650028d | 2014-04-25 18:39:10 -0700 | [diff] [blame] | 517 | |
| 518 | if (static_cast<bool>(dynamic_pointer_cast<LocalFace>(face))) { |
| 519 | static_pointer_cast<LocalFace>(face)->setLocalControlHeaderFeature( |
| 520 | LOCAL_CONTROL_FEATURE_INCOMING_FACE_ID); |
| 521 | |
| 522 | static_pointer_cast<LocalFace>(face)->setLocalControlHeaderFeature( |
| 523 | LOCAL_CONTROL_FEATURE_NEXT_HOP_FACE_ID); |
| 524 | } |
| 525 | |
| 526 | limitedIo.afterOp(); |
| 527 | } |
| 528 | |
| 529 | void |
| 530 | onConnectFailed(const std::string& reason) |
| 531 | { |
| 532 | BOOST_CHECK_MESSAGE(false, reason); |
| 533 | |
| 534 | limitedIo.afterOp(); |
| 535 | } |
| 536 | |
| 537 | void |
| 538 | onReceiveInterest(const Interest& interest) |
| 539 | { |
| 540 | receivedInterests.push_back(interest); |
| 541 | |
| 542 | limitedIo.afterOp(); |
| 543 | } |
| 544 | |
| 545 | void |
| 546 | onReceiveData(const Data& data) |
| 547 | { |
| 548 | receivedDatas.push_back(data); |
| 549 | |
| 550 | limitedIo.afterOp(); |
| 551 | } |
| 552 | |
| 553 | void |
| 554 | onFail(const shared_ptr<Face>& face) |
| 555 | { |
| 556 | limitedIo.afterOp(); |
| 557 | } |
| 558 | |
| 559 | public: |
| 560 | LimitedIo limitedIo; |
| 561 | |
| 562 | std::vector<Interest> receivedInterests; |
| 563 | std::vector<Data> receivedDatas; |
| 564 | }; |
| 565 | |
| 566 | |
| 567 | BOOST_FIXTURE_TEST_CASE_TEMPLATE(LocalFaceCorruptedInput, Dataset, |
| 568 | CorruptedPackets, SimpleEndToEndFixture) |
| 569 | { |
| 570 | TcpFactory factory; |
Davide Pesavento | 2231ab5 | 2015-03-16 00:15:13 +0100 | [diff] [blame] | 571 | tcp::Endpoint endpoint(boost::asio::ip::address_v4::from_string("127.0.0.1"), 20070); |
Alexander Afanasyev | 650028d | 2014-04-25 18:39:10 -0700 | [diff] [blame] | 572 | |
Davide Pesavento | 2231ab5 | 2015-03-16 00:15:13 +0100 | [diff] [blame] | 573 | shared_ptr<TcpChannel> channel = factory.createChannel(endpoint); |
Alexander Afanasyev | 650028d | 2014-04-25 18:39:10 -0700 | [diff] [blame] | 574 | channel->listen(bind(&SimpleEndToEndFixture::onFaceCreated, this, _1), |
| 575 | bind(&SimpleEndToEndFixture::onConnectFailed, this, _1)); |
| 576 | BOOST_REQUIRE_EQUAL(channel->isListening(), true); |
| 577 | |
| 578 | DummyStreamSender<boost::asio::ip::tcp, Dataset> sender; |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 579 | sender.start(endpoint); |
Alexander Afanasyev | 650028d | 2014-04-25 18:39:10 -0700 | [diff] [blame] | 580 | |
| 581 | BOOST_CHECK_MESSAGE(limitedIo.run(LimitedIo::UNLIMITED_OPS, |
| 582 | time::seconds(1)) == LimitedIo::EXCEED_TIME, |
| 583 | "Exception thrown for " + Dataset::getName()); |
| 584 | } |
| 585 | |
| 586 | BOOST_FIXTURE_TEST_CASE_TEMPLATE(FaceCorruptedInput, Dataset, |
| 587 | CorruptedPackets, SimpleEndToEndFixture) |
| 588 | { |
Davide Pesavento | 2231ab5 | 2015-03-16 00:15:13 +0100 | [diff] [blame] | 589 | // test with non-local Face |
| 590 | boost::asio::ip::address_v4 someIpv4Address; |
Davide Pesavento | b499a60 | 2014-11-18 22:36:56 +0100 | [diff] [blame] | 591 | for (const auto& netif : listNetworkInterfaces()) { |
| 592 | if (!netif.isLoopback() && netif.isUp() && !netif.ipv4Addresses.empty()) { |
Davide Pesavento | 2231ab5 | 2015-03-16 00:15:13 +0100 | [diff] [blame] | 593 | someIpv4Address = netif.ipv4Addresses.front(); |
Davide Pesavento | b499a60 | 2014-11-18 22:36:56 +0100 | [diff] [blame] | 594 | break; |
Alexander Afanasyev | 650028d | 2014-04-25 18:39:10 -0700 | [diff] [blame] | 595 | } |
Davide Pesavento | b499a60 | 2014-11-18 22:36:56 +0100 | [diff] [blame] | 596 | } |
Davide Pesavento | 2231ab5 | 2015-03-16 00:15:13 +0100 | [diff] [blame] | 597 | if (someIpv4Address.is_unspecified()) { |
Davide Pesavento | b499a60 | 2014-11-18 22:36:56 +0100 | [diff] [blame] | 598 | BOOST_TEST_MESSAGE("Test with non-local Face cannot be run " |
Davide Pesavento | 2231ab5 | 2015-03-16 00:15:13 +0100 | [diff] [blame] | 599 | "(no non-loopback interface with IPv4 address found)"); |
Davide Pesavento | b499a60 | 2014-11-18 22:36:56 +0100 | [diff] [blame] | 600 | return; |
| 601 | } |
Alexander Afanasyev | 650028d | 2014-04-25 18:39:10 -0700 | [diff] [blame] | 602 | |
| 603 | TcpFactory factory; |
Davide Pesavento | 2231ab5 | 2015-03-16 00:15:13 +0100 | [diff] [blame] | 604 | tcp::Endpoint endpoint(someIpv4Address, 20070); |
Alexander Afanasyev | 650028d | 2014-04-25 18:39:10 -0700 | [diff] [blame] | 605 | |
Davide Pesavento | 2231ab5 | 2015-03-16 00:15:13 +0100 | [diff] [blame] | 606 | shared_ptr<TcpChannel> channel = factory.createChannel(endpoint); |
Alexander Afanasyev | 650028d | 2014-04-25 18:39:10 -0700 | [diff] [blame] | 607 | channel->listen(bind(&SimpleEndToEndFixture::onFaceCreated, this, _1), |
| 608 | bind(&SimpleEndToEndFixture::onConnectFailed, this, _1)); |
| 609 | BOOST_REQUIRE_EQUAL(channel->isListening(), true); |
| 610 | |
Alexander Afanasyev | 650028d | 2014-04-25 18:39:10 -0700 | [diff] [blame] | 611 | DummyStreamSender<boost::asio::ip::tcp, Dataset> sender; |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 612 | sender.start(endpoint); |
Alexander Afanasyev | 650028d | 2014-04-25 18:39:10 -0700 | [diff] [blame] | 613 | |
| 614 | BOOST_CHECK_MESSAGE(limitedIo.run(LimitedIo::UNLIMITED_OPS, |
| 615 | time::seconds(1)) == LimitedIo::EXCEED_TIME, |
| 616 | "Exception thrown for " + Dataset::getName()); |
| 617 | } |
| 618 | |
Alexander Afanasyev | 1886180 | 2014-06-13 17:49:03 -0700 | [diff] [blame] | 619 | class FaceCreateTimeoutFixture : protected BaseFixture |
| 620 | { |
| 621 | public: |
| 622 | void |
| 623 | onFaceCreated(const shared_ptr<Face>& newFace) |
| 624 | { |
| 625 | BOOST_CHECK_MESSAGE(false, "Timeout expected"); |
| 626 | BOOST_CHECK(!static_cast<bool>(face1)); |
| 627 | face1 = newFace; |
| 628 | |
| 629 | limitedIo.afterOp(); |
| 630 | } |
| 631 | |
| 632 | void |
| 633 | onConnectFailed(const std::string& reason) |
| 634 | { |
| 635 | BOOST_CHECK_MESSAGE(true, reason); |
| 636 | |
| 637 | limitedIo.afterOp(); |
| 638 | } |
| 639 | |
| 640 | public: |
| 641 | LimitedIo limitedIo; |
| 642 | |
| 643 | shared_ptr<Face> face1; |
| 644 | }; |
| 645 | |
Alexander Afanasyev | 1886180 | 2014-06-13 17:49:03 -0700 | [diff] [blame] | 646 | BOOST_FIXTURE_TEST_CASE(FaceCreateTimeout, FaceCreateTimeoutFixture) |
| 647 | { |
| 648 | TcpFactory factory; |
| 649 | shared_ptr<TcpChannel> channel = factory.createChannel("0.0.0.0", "20070"); |
| 650 | |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 651 | factory.createFace(FaceUri("tcp4://192.0.2.1:20070"), |
Yukai Tu | 7c90e6d | 2015-07-11 12:21:46 +0800 | [diff] [blame^] | 652 | ndn::nfd::FACE_PERSISTENCY_PERSISTENT, |
Alexander Afanasyev | 1886180 | 2014-06-13 17:49:03 -0700 | [diff] [blame] | 653 | bind(&FaceCreateTimeoutFixture::onFaceCreated, this, _1), |
| 654 | bind(&FaceCreateTimeoutFixture::onConnectFailed, this, _1)); |
| 655 | |
| 656 | BOOST_CHECK_MESSAGE(limitedIo.run(1, time::seconds(10)) == LimitedIo::EXCEED_OPS, |
| 657 | "TcpChannel error: cannot connect or cannot accept connection"); |
| 658 | |
| 659 | BOOST_CHECK_EQUAL(static_cast<bool>(face1), false); |
| 660 | } |
| 661 | |
Davide Pesavento | 3f5655f | 2014-08-30 21:38:59 +0200 | [diff] [blame] | 662 | BOOST_FIXTURE_TEST_CASE(Bug1856, EndToEndFixture) |
| 663 | { |
| 664 | TcpFactory factory1; |
| 665 | |
| 666 | shared_ptr<TcpChannel> channel1 = factory1.createChannel("127.0.0.1", "20070"); |
| 667 | factory1.createChannel("127.0.0.1", "20071"); |
| 668 | |
| 669 | BOOST_CHECK_EQUAL(channel1->isListening(), false); |
| 670 | |
| 671 | channel1->listen(bind(&EndToEndFixture::channel1_onFaceCreated, this, _1), |
| 672 | bind(&EndToEndFixture::channel1_onConnectFailed, this, _1)); |
| 673 | |
| 674 | BOOST_CHECK_EQUAL(channel1->isListening(), true); |
| 675 | |
| 676 | TcpFactory factory2; |
| 677 | |
| 678 | shared_ptr<TcpChannel> channel2 = factory2.createChannel("127.0.0.2", "20070"); |
| 679 | factory2.createChannel("127.0.0.2", "20071"); |
| 680 | |
Chengyu Fan | 4381fb6 | 2015-01-14 11:37:04 -0700 | [diff] [blame] | 681 | factory2.createFace(FaceUri("tcp4://127.0.0.1:20070"), |
Yukai Tu | 7c90e6d | 2015-07-11 12:21:46 +0800 | [diff] [blame^] | 682 | ndn::nfd::FACE_PERSISTENCY_PERSISTENT, |
Davide Pesavento | 3f5655f | 2014-08-30 21:38:59 +0200 | [diff] [blame] | 683 | bind(&EndToEndFixture::channel2_onFaceCreated, this, _1), |
| 684 | bind(&EndToEndFixture::channel2_onConnectFailed, this, _1)); |
| 685 | |
| 686 | BOOST_CHECK_MESSAGE(limitedIo.run(2, time::seconds(10)) == LimitedIo::EXCEED_OPS, |
| 687 | "TcpChannel error: cannot connect or cannot accept connection"); |
| 688 | |
| 689 | BOOST_REQUIRE(static_cast<bool>(face1)); |
| 690 | BOOST_REQUIRE(static_cast<bool>(face2)); |
| 691 | |
| 692 | std::ostringstream hugeName; |
| 693 | hugeName << "/huge-name/"; |
Junxiao Shi | 39cd633 | 2014-11-06 21:53:18 -0700 | [diff] [blame] | 694 | for (size_t i = 0; i < ndn::MAX_NDN_PACKET_SIZE; i++) |
Davide Pesavento | 3f5655f | 2014-08-30 21:38:59 +0200 | [diff] [blame] | 695 | hugeName << 'a'; |
| 696 | |
| 697 | shared_ptr<Interest> interest = makeInterest("ndn:/KfczhUqVix"); |
| 698 | shared_ptr<Interest> hugeInterest = makeInterest(hugeName.str()); |
| 699 | |
| 700 | face1->sendInterest(*hugeInterest); |
| 701 | face2->sendInterest(*interest); |
| 702 | face2->sendInterest(*interest); |
| 703 | |
| 704 | limitedIo.run(LimitedIo::UNLIMITED_OPS, time::seconds(1)); |
| 705 | BOOST_TEST_MESSAGE("Unexpected assertion test passed"); |
| 706 | } |
Alexander Afanasyev | 1886180 | 2014-06-13 17:49:03 -0700 | [diff] [blame] | 707 | |
Alexander Afanasyev | 70aaf8a | 2014-12-13 00:44:22 -0800 | [diff] [blame] | 708 | class FakeNetworkInterfaceFixture : public BaseFixture |
| 709 | { |
| 710 | public: |
| 711 | FakeNetworkInterfaceFixture() |
| 712 | { |
| 713 | using namespace boost::asio::ip; |
| 714 | |
| 715 | auto fakeInterfaces = make_shared<std::vector<NetworkInterfaceInfo>>(); |
| 716 | |
| 717 | fakeInterfaces->push_back( |
| 718 | NetworkInterfaceInfo {0, "eth0", |
| 719 | ethernet::Address::fromString("3e:15:c2:8b:65:00"), |
| 720 | {address_v4::from_string("0.0.0.0")}, |
| 721 | {address_v6::from_string("::")}, |
| 722 | address_v4(), |
| 723 | IFF_UP}); |
| 724 | fakeInterfaces->push_back( |
| 725 | NetworkInterfaceInfo {1, "eth0", |
| 726 | ethernet::Address::fromString("3e:15:c2:8b:65:00"), |
| 727 | {address_v4::from_string("192.168.2.1"), address_v4::from_string("192.168.2.2")}, |
| 728 | {}, |
| 729 | address_v4::from_string("192.168.2.255"), |
| 730 | 0}); |
| 731 | fakeInterfaces->push_back( |
| 732 | NetworkInterfaceInfo {2, "eth1", |
| 733 | ethernet::Address::fromString("3e:15:c2:8b:65:00"), |
| 734 | {address_v4::from_string("198.51.100.1")}, |
| 735 | {address_v6::from_string("2001:db8::2"), address_v6::from_string("2001:db8::3")}, |
| 736 | address_v4::from_string("198.51.100.255"), |
| 737 | IFF_MULTICAST | IFF_BROADCAST | IFF_UP}); |
| 738 | |
| 739 | setDebugNetworkInterfaces(fakeInterfaces); |
| 740 | } |
| 741 | |
| 742 | ~FakeNetworkInterfaceFixture() |
| 743 | { |
| 744 | setDebugNetworkInterfaces(nullptr); |
| 745 | } |
| 746 | }; |
| 747 | |
| 748 | BOOST_FIXTURE_TEST_CASE(Bug2292, FakeNetworkInterfaceFixture) |
| 749 | { |
| 750 | using namespace boost::asio::ip; |
| 751 | |
| 752 | TcpFactory factory; |
| 753 | factory.prohibitEndpoint(tcp::Endpoint(address_v4::from_string("192.168.2.1"), 1024)); |
| 754 | BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 1); |
| 755 | BOOST_CHECK((factory.m_prohibitedEndpoints == |
| 756 | std::set<tcp::Endpoint> { |
| 757 | tcp::Endpoint(address_v4::from_string("192.168.2.1"), 1024), |
| 758 | })); |
| 759 | |
| 760 | factory.m_prohibitedEndpoints.clear(); |
| 761 | factory.prohibitEndpoint(tcp::Endpoint(address_v6::from_string("2001:db8::1"), 2048)); |
| 762 | BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 1); |
| 763 | BOOST_CHECK((factory.m_prohibitedEndpoints == |
| 764 | std::set<tcp::Endpoint> { |
| 765 | tcp::Endpoint(address_v6::from_string("2001:db8::1"), 2048) |
| 766 | })); |
| 767 | |
| 768 | factory.m_prohibitedEndpoints.clear(); |
| 769 | factory.prohibitEndpoint(tcp::Endpoint(address_v4(), 1024)); |
| 770 | BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 4); |
| 771 | BOOST_CHECK((factory.m_prohibitedEndpoints == |
| 772 | std::set<tcp::Endpoint> { |
| 773 | tcp::Endpoint(address_v4::from_string("192.168.2.1"), 1024), |
| 774 | tcp::Endpoint(address_v4::from_string("192.168.2.2"), 1024), |
| 775 | tcp::Endpoint(address_v4::from_string("198.51.100.1"), 1024), |
| 776 | tcp::Endpoint(address_v4::from_string("0.0.0.0"), 1024) |
| 777 | })); |
| 778 | |
| 779 | factory.m_prohibitedEndpoints.clear(); |
| 780 | factory.prohibitEndpoint(tcp::Endpoint(address_v6(), 2048)); |
| 781 | BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 3); |
| 782 | BOOST_CHECK((factory.m_prohibitedEndpoints == |
| 783 | std::set<tcp::Endpoint> { |
| 784 | tcp::Endpoint(address_v6::from_string("2001:db8::2"), 2048), |
| 785 | tcp::Endpoint(address_v6::from_string("2001:db8::3"), 2048), |
| 786 | tcp::Endpoint(address_v6::from_string("::"), 2048) |
| 787 | })); |
| 788 | } |
| 789 | |
Junxiao Shi | 96dc0c4 | 2014-01-30 23:51:59 -0700 | [diff] [blame] | 790 | BOOST_AUTO_TEST_SUITE_END() |
| 791 | |
Junxiao Shi | d9ee45c | 2014-02-27 15:38:11 -0700 | [diff] [blame] | 792 | } // namespace tests |
Junxiao Shi | 96dc0c4 | 2014-01-30 23:51:59 -0700 | [diff] [blame] | 793 | } // namespace nfd |