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