blob: 70da6d15c4f84b0710255a4ec8af9147aeb43923 [file] [log] [blame]
Junxiao Shi96dc0c42014-01-30 23:51:59 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Alexander Afanasyev319f2c82015-01-07 14:56:53 -08003 * 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 Afanasyev9bcbc7c2014-04-06 19:37:37 -070010 *
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 DiBenedettoef04f272014-06-04 14:28:31 -060024 */
Junxiao Shi96dc0c42014-01-30 23:51:59 -070025
Alexander Afanasyev0eb70652014-02-27 18:35:07 -080026#include "face/tcp-factory.hpp"
Chengyu Fan4381fb62015-01-14 11:37:04 -070027#include <ndn-cxx/util/dns.hpp>
Alexander Afanasyev650028d2014-04-25 18:39:10 -070028#include "core/network-interface.hpp"
Alexander Afanasyev4a771362014-04-24 21:29:33 -070029#include <ndn-cxx/security/key-chain.hpp>
Junxiao Shi96dc0c42014-01-30 23:51:59 -070030
Junxiao Shid9ee45c2014-02-27 15:38:11 -070031#include "tests/test-common.hpp"
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070032#include "tests/limited-io.hpp"
Alexander Afanasyev650028d2014-04-25 18:39:10 -070033#include "dummy-stream-sender.hpp"
34#include "packet-datasets.hpp"
Junxiao Shi96dc0c42014-01-30 23:51:59 -070035
36namespace nfd {
Junxiao Shid9ee45c2014-02-27 15:38:11 -070037namespace tests {
Junxiao Shi96dc0c42014-01-30 23:51:59 -070038
Junxiao Shid9ee45c2014-02-27 15:38:11 -070039BOOST_FIXTURE_TEST_SUITE(FaceTcp, BaseFixture)
Junxiao Shi96dc0c42014-01-30 23:51:59 -070040
41BOOST_AUTO_TEST_CASE(ChannelMap)
42{
Alexander Afanasyev0eb70652014-02-27 18:35:07 -080043 TcpFactory factory;
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -080044
Alexander Afanasyevd6655302014-02-28 08:41:28 -080045 shared_ptr<TcpChannel> channel1 = factory.createChannel("127.0.0.1", "20070");
46 shared_ptr<TcpChannel> channel1a = factory.createChannel("127.0.0.1", "20070");
Junxiao Shi96dc0c42014-01-30 23:51:59 -070047 BOOST_CHECK_EQUAL(channel1, channel1a);
Junxiao Shi61e3cc52014-03-03 20:40:28 -070048 BOOST_CHECK_EQUAL(channel1->getUri().toString(), "tcp4://127.0.0.1:20070");
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -080049
Alexander Afanasyevd6655302014-02-28 08:41:28 -080050 shared_ptr<TcpChannel> channel2 = factory.createChannel("127.0.0.1", "20071");
Junxiao Shi96dc0c42014-01-30 23:51:59 -070051 BOOST_CHECK_NE(channel1, channel2);
Junxiao Shi61e3cc52014-03-03 20:40:28 -070052
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 Shi96dc0c42014-01-30 23:51:59 -070056}
57
Steve DiBenedettoef04f272014-06-04 14:28:31 -060058BOOST_AUTO_TEST_CASE(GetChannels)
59{
60 TcpFactory factory;
61 BOOST_REQUIRE_EQUAL(factory.getChannels().empty(), true);
62
Davide Pesaventob499a602014-11-18 22:36:56 +010063 std::vector<shared_ptr<const Channel>> expectedChannels;
Steve DiBenedettoef04f272014-06-04 14:28:31 -060064 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 Pesaventob499a602014-11-18 22:36:56 +010068 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 DiBenedettoef04f272014-06-04 14:28:31 -060073 BOOST_CHECK_EQUAL(expectedChannels.size(), 0);
74}
75
Alexander Afanasyev86bc91a2014-08-28 22:29:16 -070076class FaceCreateFixture : protected BaseFixture
77{
78public:
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
97BOOST_FIXTURE_TEST_CASE(FaceCreate, FaceCreateFixture)
98{
99 TcpFactory factory = TcpFactory();
100
Chengyu Fan4381fb62015-01-14 11:37:04 -0700101 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 Afanasyev86bc91a2014-08-28 22:29:16 -0700109 bind(&FaceCreateFixture::ignore, this),
110 bind(&FaceCreateFixture::failIfError, this, _1));
Alexander Afanasyev86bc91a2014-08-28 22:29:16 -0700111}
112
Junxiao Shid9ee45c2014-02-27 15:38:11 -0700113class EndToEndFixture : protected BaseFixture
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700114{
115public:
116 void
Alexander Afanasyevbd220a02014-02-20 00:29:56 -0800117 channel1_onFaceCreated(const shared_ptr<Face>& newFace)
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700118 {
Junxiao Shi79494162014-04-02 18:25:11 -0700119 BOOST_CHECK(!static_cast<bool>(face1));
120 face1 = newFace;
Junxiao Shic099ddb2014-12-25 20:53:20 -0700121 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 Shi96dc0c42014-01-30 23:51:59 -0700124
Junxiao Shi79494162014-04-02 18:25:11 -0700125 limitedIo.afterOp();
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700126 }
127
128 void
129 channel1_onConnectFailed(const std::string& reason)
130 {
131 BOOST_CHECK_MESSAGE(false, reason);
132
Junxiao Shi79494162014-04-02 18:25:11 -0700133 limitedIo.afterOp();
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700134 }
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800135
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700136 void
137 face1_onReceiveInterest(const Interest& interest)
138 {
Junxiao Shi79494162014-04-02 18:25:11 -0700139 face1_receivedInterests.push_back(interest);
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700140
Junxiao Shi79494162014-04-02 18:25:11 -0700141 limitedIo.afterOp();
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700142 }
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800143
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700144 void
145 face1_onReceiveData(const Data& data)
146 {
Junxiao Shi79494162014-04-02 18:25:11 -0700147 face1_receivedDatas.push_back(data);
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700148
Junxiao Shi79494162014-04-02 18:25:11 -0700149 limitedIo.afterOp();
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700150 }
151
152 void
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800153 face1_onFail()
154 {
Junxiao Shi79494162014-04-02 18:25:11 -0700155 face1.reset();
156 limitedIo.afterOp();
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800157 }
158
159 void
Alexander Afanasyevbd220a02014-02-20 00:29:56 -0800160 channel2_onFaceCreated(const shared_ptr<Face>& newFace)
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700161 {
Junxiao Shi79494162014-04-02 18:25:11 -0700162 BOOST_CHECK(!static_cast<bool>(face2));
163 face2 = newFace;
Junxiao Shic099ddb2014-12-25 20:53:20 -0700164 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 Shi96dc0c42014-01-30 23:51:59 -0700167
Junxiao Shi79494162014-04-02 18:25:11 -0700168 limitedIo.afterOp();
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700169 }
170
171 void
172 channel2_onConnectFailed(const std::string& reason)
173 {
174 BOOST_CHECK_MESSAGE(false, reason);
175
Junxiao Shi79494162014-04-02 18:25:11 -0700176 limitedIo.afterOp();
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700177 }
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800178
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700179 void
180 face2_onReceiveInterest(const Interest& interest)
181 {
Junxiao Shi79494162014-04-02 18:25:11 -0700182 face2_receivedInterests.push_back(interest);
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700183
Junxiao Shi79494162014-04-02 18:25:11 -0700184 limitedIo.afterOp();
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700185 }
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800186
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700187 void
188 face2_onReceiveData(const Data& data)
189 {
Junxiao Shi79494162014-04-02 18:25:11 -0700190 face2_receivedDatas.push_back(data);
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700191
Junxiao Shi79494162014-04-02 18:25:11 -0700192 limitedIo.afterOp();
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700193 }
194
195 void
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800196 face2_onFail()
197 {
Junxiao Shi79494162014-04-02 18:25:11 -0700198 face2.reset();
199 limitedIo.afterOp();
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800200 }
201
202 void
Alexander Afanasyevbd220a02014-02-20 00:29:56 -0800203 channel_onFaceCreated(const shared_ptr<Face>& newFace)
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800204 {
Junxiao Shi79494162014-04-02 18:25:11 -0700205 faces.push_back(newFace);
206 limitedIo.afterOp();
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800207 }
208
209 void
210 channel_onConnectFailed(const std::string& reason)
211 {
212 BOOST_CHECK_MESSAGE(false, reason);
213
Junxiao Shi79494162014-04-02 18:25:11 -0700214 limitedIo.afterOp();
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800215 }
216
217 void
218 checkFaceList(size_t shouldBe)
219 {
Junxiao Shi79494162014-04-02 18:25:11 -0700220 BOOST_CHECK_EQUAL(faces.size(), shouldBe);
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800221 }
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800222
Davide Pesaventoab1e8f22014-10-21 22:45:33 +0200223 void
224 connect(const shared_ptr<TcpChannel>& channel,
225 const std::string& remoteHost,
226 const std::string& remotePort)
227 {
Alexander Afanasyevbaba2532015-02-13 18:27:33 -0800228 channel->connect(tcp::Endpoint(boost::asio::ip::address::from_string(remoteHost),
229 boost::lexical_cast<uint16_t>(remotePort)),
Davide Pesaventoab1e8f22014-10-21 22:45:33 +0200230 bind(&EndToEndFixture::channel_onFaceCreated, this, _1),
231 bind(&EndToEndFixture::channel_onConnectFailed, this, _1));
232 }
233
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700234public:
Junxiao Shi79494162014-04-02 18:25:11 -0700235 LimitedIo limitedIo;
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700236
Junxiao Shi79494162014-04-02 18:25:11 -0700237 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 Afanasyeva16abd22014-01-31 18:12:29 -0800243
Davide Pesaventob499a602014-11-18 22:36:56 +0100244 std::list<shared_ptr<Face>> faces;
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700245};
246
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000247BOOST_FIXTURE_TEST_CASE(EndToEnd4, EndToEndFixture)
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700248{
Steve DiBenedettoca53ac62014-03-27 19:58:40 -0600249 TcpFactory factory1;
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700250
Steve DiBenedettoca53ac62014-03-27 19:58:40 -0600251 shared_ptr<TcpChannel> channel1 = factory1.createChannel("127.0.0.1", "20070");
252 factory1.createChannel("127.0.0.1", "20071");
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800253
Alexander Afanasyev53a6fd32014-03-23 00:00:04 -0700254 BOOST_CHECK_EQUAL(channel1->isListening(), false);
255
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700256 channel1->listen(bind(&EndToEndFixture::channel1_onFaceCreated, this, _1),
257 bind(&EndToEndFixture::channel1_onConnectFailed, this, _1));
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800258
Alexander Afanasyev53a6fd32014-03-23 00:00:04 -0700259 BOOST_CHECK_EQUAL(channel1->isListening(), true);
260
Steve DiBenedettoca53ac62014-03-27 19:58:40 -0600261 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 Fan4381fb62015-01-14 11:37:04 -0700266 factory2.createFace(FaceUri("tcp4://127.0.0.1:20070"),
Steve DiBenedettoca53ac62014-03-27 19:58:40 -0600267 bind(&EndToEndFixture::channel2_onFaceCreated, this, _1),
268 bind(&EndToEndFixture::channel2_onConnectFailed, this, _1));
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700269
Junxiao Shi79494162014-04-02 18:25:11 -0700270 BOOST_CHECK_MESSAGE(limitedIo.run(2, time::seconds(10)) == LimitedIo::EXCEED_OPS,
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700271 "TcpChannel error: cannot connect or cannot accept connection");
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700272
Junxiao Shi79494162014-04-02 18:25:11 -0700273 BOOST_REQUIRE(static_cast<bool>(face1));
274 BOOST_REQUIRE(static_cast<bool>(face2));
Alexander Afanasyevbd220a02014-02-20 00:29:56 -0800275
Junxiao Shi79494162014-04-02 18:25:11 -0700276 BOOST_CHECK(face1->isOnDemand());
277 BOOST_CHECK(!face2->isOnDemand());
Alexander Afanasyev355c0662014-03-20 18:08:17 -0700278
Junxiao Shi79494162014-04-02 18:25:11 -0700279 BOOST_CHECK_EQUAL(face2->getRemoteUri().toString(), "tcp4://127.0.0.1:20070");
280 BOOST_CHECK_EQUAL(face1->getLocalUri().toString(), "tcp4://127.0.0.1:20070");
281 // face1 has an unknown remoteUri, since the source port is automatically chosen by OS
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000282
Junxiao Shi79494162014-04-02 18:25:11 -0700283 BOOST_CHECK_EQUAL(face1->isLocal(), true);
284 BOOST_CHECK_EQUAL(face2->isLocal(), true);
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000285
Junxiao Shi79494162014-04-02 18:25:11 -0700286 BOOST_CHECK_EQUAL(static_cast<bool>(dynamic_pointer_cast<LocalFace>(face1)), true);
287 BOOST_CHECK_EQUAL(static_cast<bool>(dynamic_pointer_cast<LocalFace>(face2)), true);
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000288
289 // integrated tests needs to check that TcpFace for non-loopback fails these tests...
290
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700291 shared_ptr<Interest> interest1 = makeInterest("ndn:/TpnzGvW9R");
292 shared_ptr<Data> data1 = makeData("ndn:/KfczhUqVix");
293 shared_ptr<Interest> interest2 = makeInterest("ndn:/QWiIMfj5sL");
294 shared_ptr<Data> data2 = makeData("ndn:/XNBV796f");
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000295
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700296 face1->sendInterest(*interest1);
297 face1->sendInterest(*interest1);
298 face1->sendInterest(*interest1);
299 face1->sendData (*data1 );
Junxiao Shi5dd26c32014-07-20 23:15:14 -0700300 size_t nBytesSent1 = interest1->wireEncode().size() * 3 + data1->wireEncode().size();
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700301 face2->sendInterest(*interest2);
302 face2->sendData (*data2 );
303 face2->sendData (*data2 );
304 face2->sendData (*data2 );
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000305
Junxiao Shi79494162014-04-02 18:25:11 -0700306 BOOST_CHECK_MESSAGE(limitedIo.run(8, time::seconds(10)) == LimitedIo::EXCEED_OPS,
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000307 "TcpChannel error: cannot send or receive Interest/Data packets");
308
Junxiao Shi79494162014-04-02 18:25:11 -0700309 BOOST_REQUIRE_EQUAL(face1_receivedInterests.size(), 1);
310 BOOST_REQUIRE_EQUAL(face1_receivedDatas .size(), 3);
311 BOOST_REQUIRE_EQUAL(face2_receivedInterests.size(), 3);
312 BOOST_REQUIRE_EQUAL(face2_receivedDatas .size(), 1);
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000313
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700314 BOOST_CHECK_EQUAL(face1_receivedInterests[0].getName(), interest2->getName());
315 BOOST_CHECK_EQUAL(face1_receivedDatas [0].getName(), data2->getName());
316 BOOST_CHECK_EQUAL(face2_receivedInterests[0].getName(), interest1->getName());
317 BOOST_CHECK_EQUAL(face2_receivedDatas [0].getName(), data1->getName());
Alexander Afanasyev7e698e62014-03-07 16:48:35 +0000318
Junxiao Shi5dd26c32014-07-20 23:15:14 -0700319 // needed to ensure NOutBytes counters are accurate
320 limitedIo.run(LimitedIo::UNLIMITED_OPS, time::seconds(1));
321
Junxiao Shi79494162014-04-02 18:25:11 -0700322 const FaceCounters& counters1 = face1->getCounters();
Junxiao Shi6e694322014-04-03 10:27:13 -0700323 BOOST_CHECK_EQUAL(counters1.getNInInterests() , 1);
324 BOOST_CHECK_EQUAL(counters1.getNInDatas() , 3);
325 BOOST_CHECK_EQUAL(counters1.getNOutInterests(), 3);
326 BOOST_CHECK_EQUAL(counters1.getNOutDatas() , 1);
Junxiao Shi5dd26c32014-07-20 23:15:14 -0700327 BOOST_CHECK_EQUAL(counters1.getNOutBytes(), nBytesSent1);
Alexander Afanasyev7e698e62014-03-07 16:48:35 +0000328
Junxiao Shi79494162014-04-02 18:25:11 -0700329 const FaceCounters& counters2 = face2->getCounters();
Junxiao Shi6e694322014-04-03 10:27:13 -0700330 BOOST_CHECK_EQUAL(counters2.getNInInterests() , 3);
331 BOOST_CHECK_EQUAL(counters2.getNInDatas() , 1);
332 BOOST_CHECK_EQUAL(counters2.getNOutInterests(), 1);
333 BOOST_CHECK_EQUAL(counters2.getNOutDatas() , 3);
Junxiao Shi5dd26c32014-07-20 23:15:14 -0700334 BOOST_CHECK_EQUAL(counters2.getNInBytes(), nBytesSent1);
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000335}
336
337BOOST_FIXTURE_TEST_CASE(EndToEnd6, EndToEndFixture)
338{
Steve DiBenedettoca53ac62014-03-27 19:58:40 -0600339 TcpFactory factory1;
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000340
Steve DiBenedettoca53ac62014-03-27 19:58:40 -0600341 shared_ptr<TcpChannel> channel1 = factory1.createChannel("::1", "20070");
342 shared_ptr<TcpChannel> channel2 = factory1.createChannel("::1", "20071");
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000343
344 channel1->listen(bind(&EndToEndFixture::channel1_onFaceCreated, this, _1),
345 bind(&EndToEndFixture::channel1_onConnectFailed, this, _1));
346
Steve DiBenedettoca53ac62014-03-27 19:58:40 -0600347 TcpFactory factory2;
348
349 factory2.createChannel("::2", "20070");
350
Chengyu Fan4381fb62015-01-14 11:37:04 -0700351 factory2.createFace(FaceUri("tcp6://[::1]:20070"),
Steve DiBenedettoca53ac62014-03-27 19:58:40 -0600352 bind(&EndToEndFixture::channel2_onFaceCreated, this, _1),
353 bind(&EndToEndFixture::channel2_onConnectFailed, this, _1));
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000354
Junxiao Shi79494162014-04-02 18:25:11 -0700355 BOOST_CHECK_MESSAGE(limitedIo.run(2, time::seconds(10)) == LimitedIo::EXCEED_OPS,
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000356 "TcpChannel error: cannot connect or cannot accept connection");
357
Junxiao Shi79494162014-04-02 18:25:11 -0700358 BOOST_REQUIRE(static_cast<bool>(face1));
359 BOOST_REQUIRE(static_cast<bool>(face2));
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000360
Junxiao Shi79494162014-04-02 18:25:11 -0700361 BOOST_CHECK_EQUAL(face2->getRemoteUri().toString(), "tcp6://[::1]:20070");
362 BOOST_CHECK_EQUAL(face1->getLocalUri().toString(), "tcp6://[::1]:20070");
363 // face1 has an unknown remoteUri, since the source port is automatically chosen by OS
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000364
Junxiao Shi79494162014-04-02 18:25:11 -0700365 BOOST_CHECK_EQUAL(face1->isLocal(), true);
366 BOOST_CHECK_EQUAL(face2->isLocal(), true);
Alexander Afanasyevbd220a02014-02-20 00:29:56 -0800367
Junxiao Shi79494162014-04-02 18:25:11 -0700368 BOOST_CHECK_EQUAL(static_cast<bool>(dynamic_pointer_cast<LocalFace>(face1)), true);
369 BOOST_CHECK_EQUAL(static_cast<bool>(dynamic_pointer_cast<LocalFace>(face2)), true);
Alexander Afanasyevbd220a02014-02-20 00:29:56 -0800370
371 // integrated tests needs to check that TcpFace for non-loopback fails these tests...
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800372
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700373 shared_ptr<Interest> interest1 = makeInterest("ndn:/TpnzGvW9R");
374 shared_ptr<Data> data1 = makeData("ndn:/KfczhUqVix");
375 shared_ptr<Interest> interest2 = makeInterest("ndn:/QWiIMfj5sL");
376 shared_ptr<Data> data2 = makeData("ndn:/XNBV796f");
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700377
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700378 face1->sendInterest(*interest1);
379 face1->sendData (*data1 );
380 face2->sendInterest(*interest2);
381 face2->sendData (*data2 );
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700382
Junxiao Shi79494162014-04-02 18:25:11 -0700383 BOOST_CHECK_MESSAGE(limitedIo.run(4, time::seconds(10)) == LimitedIo::EXCEED_OPS,
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700384 "TcpChannel error: cannot send or receive Interest/Data packets");
385
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700386
Junxiao Shi79494162014-04-02 18:25:11 -0700387 BOOST_REQUIRE_EQUAL(face1_receivedInterests.size(), 1);
388 BOOST_REQUIRE_EQUAL(face1_receivedDatas .size(), 1);
389 BOOST_REQUIRE_EQUAL(face2_receivedInterests.size(), 1);
390 BOOST_REQUIRE_EQUAL(face2_receivedDatas .size(), 1);
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800391
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700392 BOOST_CHECK_EQUAL(face1_receivedInterests[0].getName(), interest2->getName());
393 BOOST_CHECK_EQUAL(face1_receivedDatas [0].getName(), data2->getName());
394 BOOST_CHECK_EQUAL(face2_receivedInterests[0].getName(), interest1->getName());
395 BOOST_CHECK_EQUAL(face2_receivedDatas [0].getName(), data1->getName());
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700396}
397
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800398BOOST_FIXTURE_TEST_CASE(MultipleAccepts, EndToEndFixture)
399{
Alexander Afanasyev0eb70652014-02-27 18:35:07 -0800400 TcpFactory factory;
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800401
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800402 shared_ptr<TcpChannel> channel1 = factory.createChannel("127.0.0.1", "20070");
403 shared_ptr<TcpChannel> channel2 = factory.createChannel("127.0.0.1", "20071");
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800404
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800405 channel1->listen(bind(&EndToEndFixture::channel_onFaceCreated, this, _1),
406 bind(&EndToEndFixture::channel_onConnectFailed, this, _1));
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800407
Alexander Afanasyevbaba2532015-02-13 18:27:33 -0800408 using namespace boost::asio;
409 channel2->connect(tcp::Endpoint(ip::address::from_string("127.0.0.1"), 20070),
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800410 bind(&EndToEndFixture::channel_onFaceCreated, this, _1),
411 bind(&EndToEndFixture::channel_onConnectFailed, this, _1),
Alexander Afanasyevc1e2ee02014-02-25 17:02:07 -0800412 time::seconds(4)); // very short timeout
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800413
Junxiao Shi79494162014-04-02 18:25:11 -0700414 BOOST_CHECK_MESSAGE(limitedIo.run(2, time::seconds(10)) == LimitedIo::EXCEED_OPS,
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700415 "TcpChannel error: cannot connect or cannot accept connection");
416
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800417
Junxiao Shi79494162014-04-02 18:25:11 -0700418 BOOST_CHECK_EQUAL(faces.size(), 2);
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800419
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800420 shared_ptr<TcpChannel> channel3 = factory.createChannel("127.0.0.1", "20072");
Alexander Afanasyevbaba2532015-02-13 18:27:33 -0800421 channel3->connect(tcp::Endpoint(ip::address::from_string("127.0.0.1"), 20070),
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800422 bind(&EndToEndFixture::channel_onFaceCreated, this, _1),
423 bind(&EndToEndFixture::channel_onConnectFailed, this, _1),
Alexander Afanasyevc1e2ee02014-02-25 17:02:07 -0800424 time::seconds(4)); // very short timeout
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800425
426
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800427 shared_ptr<TcpChannel> channel4 = factory.createChannel("127.0.0.1", "20073");
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800428
429 BOOST_CHECK_NE(channel3, channel4);
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800430
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700431 scheduler::schedule(time::seconds(1),
Davide Pesaventoab1e8f22014-10-21 22:45:33 +0200432 bind(&EndToEndFixture::connect, this, channel4, "127.0.0.1", "20070"));
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800433
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -0700434 scheduler::schedule(time::milliseconds(500),
Alexander Afanasyev7329e022014-02-27 14:47:22 -0800435 bind(&EndToEndFixture::checkFaceList, this, 4));
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800436
Junxiao Shi79494162014-04-02 18:25:11 -0700437 BOOST_CHECK_MESSAGE(limitedIo.run(4,// 2 connects and 2 accepts
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700438 time::seconds(10)) == LimitedIo::EXCEED_OPS,
439 "TcpChannel error: cannot connect or cannot accept multiple connections");
Alexander Afanasyev7329e022014-02-27 14:47:22 -0800440
Junxiao Shi79494162014-04-02 18:25:11 -0700441 BOOST_CHECK_EQUAL(faces.size(), 6);
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800442}
443
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800444
445BOOST_FIXTURE_TEST_CASE(FaceClosing, EndToEndFixture)
446{
Alexander Afanasyev0eb70652014-02-27 18:35:07 -0800447 TcpFactory factory;
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800448
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800449 shared_ptr<TcpChannel> channel1 = factory.createChannel("127.0.0.1", "20070");
450 shared_ptr<TcpChannel> channel2 = factory.createChannel("127.0.0.1", "20071");
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800451
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800452 channel1->listen(bind(&EndToEndFixture::channel1_onFaceCreated, this, _1),
453 bind(&EndToEndFixture::channel1_onConnectFailed, this, _1));
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800454
Alexander Afanasyevbaba2532015-02-13 18:27:33 -0800455 using namespace boost::asio;
456 channel2->connect(tcp::Endpoint(ip::address::from_string("127.0.0.1"), 20070),
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800457 bind(&EndToEndFixture::channel2_onFaceCreated, this, _1),
458 bind(&EndToEndFixture::channel2_onConnectFailed, this, _1),
Alexander Afanasyevc1e2ee02014-02-25 17:02:07 -0800459 time::seconds(4)); // very short timeout
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800460
Junxiao Shi79494162014-04-02 18:25:11 -0700461 BOOST_CHECK_MESSAGE(limitedIo.run(2, time::seconds(10)) == LimitedIo::EXCEED_OPS,
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700462 "TcpChannel error: cannot connect or cannot accept connection");
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800463
464 BOOST_CHECK_EQUAL(channel1->size(), 1);
465 BOOST_CHECK_EQUAL(channel2->size(), 1);
466
Junxiao Shi79494162014-04-02 18:25:11 -0700467 BOOST_REQUIRE(static_cast<bool>(face1));
468 BOOST_CHECK(static_cast<bool>(face2));
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800469
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700470 // Face::close must be invoked during io run to be counted as an op
Junxiao Shi79494162014-04-02 18:25:11 -0700471 scheduler::schedule(time::milliseconds(100), bind(&Face::close, face1));
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800472
Junxiao Shi79494162014-04-02 18:25:11 -0700473 BOOST_CHECK_MESSAGE(limitedIo.run(2, time::seconds(10)) == LimitedIo::EXCEED_OPS,
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700474 "FaceClosing error: cannot properly close faces");
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800475
476 // both faces should get closed
Junxiao Shi79494162014-04-02 18:25:11 -0700477 BOOST_CHECK(!static_cast<bool>(face1));
478 BOOST_CHECK(!static_cast<bool>(face2));
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800479
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800480 BOOST_CHECK_EQUAL(channel1->size(), 0);
481 BOOST_CHECK_EQUAL(channel2->size(), 0);
482}
483
484
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700485class SimpleEndToEndFixture : protected BaseFixture
486{
487public:
488 void
489 onFaceCreated(const shared_ptr<Face>& face)
490 {
Junxiao Shic099ddb2014-12-25 20:53:20 -0700491 face->onReceiveInterest.connect(bind(&SimpleEndToEndFixture::onReceiveInterest, this, _1));
492 face->onReceiveData.connect(bind(&SimpleEndToEndFixture::onReceiveData, this, _1));
493 face->onFail.connect(bind(&SimpleEndToEndFixture::onFail, this, face));
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700494
495 if (static_cast<bool>(dynamic_pointer_cast<LocalFace>(face))) {
496 static_pointer_cast<LocalFace>(face)->setLocalControlHeaderFeature(
497 LOCAL_CONTROL_FEATURE_INCOMING_FACE_ID);
498
499 static_pointer_cast<LocalFace>(face)->setLocalControlHeaderFeature(
500 LOCAL_CONTROL_FEATURE_NEXT_HOP_FACE_ID);
501 }
502
503 limitedIo.afterOp();
504 }
505
506 void
507 onConnectFailed(const std::string& reason)
508 {
509 BOOST_CHECK_MESSAGE(false, reason);
510
511 limitedIo.afterOp();
512 }
513
514 void
515 onReceiveInterest(const Interest& interest)
516 {
517 receivedInterests.push_back(interest);
518
519 limitedIo.afterOp();
520 }
521
522 void
523 onReceiveData(const Data& data)
524 {
525 receivedDatas.push_back(data);
526
527 limitedIo.afterOp();
528 }
529
530 void
531 onFail(const shared_ptr<Face>& face)
532 {
533 limitedIo.afterOp();
534 }
535
536public:
537 LimitedIo limitedIo;
538
539 std::vector<Interest> receivedInterests;
540 std::vector<Data> receivedDatas;
541};
542
543
544BOOST_FIXTURE_TEST_CASE_TEMPLATE(LocalFaceCorruptedInput, Dataset,
545 CorruptedPackets, SimpleEndToEndFixture)
546{
547 TcpFactory factory;
548
549 shared_ptr<TcpChannel> channel = factory.createChannel("127.0.0.1", "20070");
550 channel->listen(bind(&SimpleEndToEndFixture::onFaceCreated, this, _1),
551 bind(&SimpleEndToEndFixture::onConnectFailed, this, _1));
552 BOOST_REQUIRE_EQUAL(channel->isListening(), true);
553
554 DummyStreamSender<boost::asio::ip::tcp, Dataset> sender;
Chengyu Fan4381fb62015-01-14 11:37:04 -0700555 tcp::Endpoint endpoint(boost::asio::ip::address::from_string("127.0.0.1"), 20070);
556 sender.start(endpoint);
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700557
558 BOOST_CHECK_MESSAGE(limitedIo.run(LimitedIo::UNLIMITED_OPS,
559 time::seconds(1)) == LimitedIo::EXCEED_TIME,
560 "Exception thrown for " + Dataset::getName());
561}
562
563BOOST_FIXTURE_TEST_CASE_TEMPLATE(FaceCorruptedInput, Dataset,
564 CorruptedPackets, SimpleEndToEndFixture)
565{
566 // tests with non-local Face
567 std::string someIpv4Address;
Davide Pesaventob499a602014-11-18 22:36:56 +0100568 for (const auto& netif : listNetworkInterfaces()) {
569 if (!netif.isLoopback() && netif.isUp() && !netif.ipv4Addresses.empty()) {
570 someIpv4Address = netif.ipv4Addresses[0].to_string();
571 break;
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700572 }
Davide Pesaventob499a602014-11-18 22:36:56 +0100573 }
574 if (someIpv4Address.empty()) {
575 BOOST_TEST_MESSAGE("Test with non-local Face cannot be run "
576 "(no non-local interface with IPv4 address available)");
577 return;
578 }
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700579
580 TcpFactory factory;
581
582 shared_ptr<TcpChannel> channel = factory.createChannel(someIpv4Address, "20070");
583 channel->listen(bind(&SimpleEndToEndFixture::onFaceCreated, this, _1),
584 bind(&SimpleEndToEndFixture::onConnectFailed, this, _1));
585 BOOST_REQUIRE_EQUAL(channel->isListening(), true);
586
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700587 DummyStreamSender<boost::asio::ip::tcp, Dataset> sender;
Chengyu Fan4381fb62015-01-14 11:37:04 -0700588 tcp::Endpoint endpoint(ndn::dns::syncResolve(someIpv4Address, getGlobalIoService()), 20070);
589 sender.start(endpoint);
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700590
591 BOOST_CHECK_MESSAGE(limitedIo.run(LimitedIo::UNLIMITED_OPS,
592 time::seconds(1)) == LimitedIo::EXCEED_TIME,
593 "Exception thrown for " + Dataset::getName());
594}
595
Alexander Afanasyev18861802014-06-13 17:49:03 -0700596class FaceCreateTimeoutFixture : protected BaseFixture
597{
598public:
599 void
600 onFaceCreated(const shared_ptr<Face>& newFace)
601 {
602 BOOST_CHECK_MESSAGE(false, "Timeout expected");
603 BOOST_CHECK(!static_cast<bool>(face1));
604 face1 = newFace;
605
606 limitedIo.afterOp();
607 }
608
609 void
610 onConnectFailed(const std::string& reason)
611 {
612 BOOST_CHECK_MESSAGE(true, reason);
613
614 limitedIo.afterOp();
615 }
616
617public:
618 LimitedIo limitedIo;
619
620 shared_ptr<Face> face1;
621};
622
Alexander Afanasyev18861802014-06-13 17:49:03 -0700623BOOST_FIXTURE_TEST_CASE(FaceCreateTimeout, FaceCreateTimeoutFixture)
624{
625 TcpFactory factory;
626 shared_ptr<TcpChannel> channel = factory.createChannel("0.0.0.0", "20070");
627
Chengyu Fan4381fb62015-01-14 11:37:04 -0700628 factory.createFace(FaceUri("tcp4://192.0.2.1:20070"),
Alexander Afanasyev18861802014-06-13 17:49:03 -0700629 bind(&FaceCreateTimeoutFixture::onFaceCreated, this, _1),
630 bind(&FaceCreateTimeoutFixture::onConnectFailed, this, _1));
631
632 BOOST_CHECK_MESSAGE(limitedIo.run(1, time::seconds(10)) == LimitedIo::EXCEED_OPS,
633 "TcpChannel error: cannot connect or cannot accept connection");
634
635 BOOST_CHECK_EQUAL(static_cast<bool>(face1), false);
636}
637
Davide Pesavento3f5655f2014-08-30 21:38:59 +0200638BOOST_FIXTURE_TEST_CASE(Bug1856, EndToEndFixture)
639{
640 TcpFactory factory1;
641
642 shared_ptr<TcpChannel> channel1 = factory1.createChannel("127.0.0.1", "20070");
643 factory1.createChannel("127.0.0.1", "20071");
644
645 BOOST_CHECK_EQUAL(channel1->isListening(), false);
646
647 channel1->listen(bind(&EndToEndFixture::channel1_onFaceCreated, this, _1),
648 bind(&EndToEndFixture::channel1_onConnectFailed, this, _1));
649
650 BOOST_CHECK_EQUAL(channel1->isListening(), true);
651
652 TcpFactory factory2;
653
654 shared_ptr<TcpChannel> channel2 = factory2.createChannel("127.0.0.2", "20070");
655 factory2.createChannel("127.0.0.2", "20071");
656
Chengyu Fan4381fb62015-01-14 11:37:04 -0700657 factory2.createFace(FaceUri("tcp4://127.0.0.1:20070"),
Davide Pesavento3f5655f2014-08-30 21:38:59 +0200658 bind(&EndToEndFixture::channel2_onFaceCreated, this, _1),
659 bind(&EndToEndFixture::channel2_onConnectFailed, this, _1));
660
661 BOOST_CHECK_MESSAGE(limitedIo.run(2, time::seconds(10)) == LimitedIo::EXCEED_OPS,
662 "TcpChannel error: cannot connect or cannot accept connection");
663
664 BOOST_REQUIRE(static_cast<bool>(face1));
665 BOOST_REQUIRE(static_cast<bool>(face2));
666
667 std::ostringstream hugeName;
668 hugeName << "/huge-name/";
Junxiao Shi39cd6332014-11-06 21:53:18 -0700669 for (size_t i = 0; i < ndn::MAX_NDN_PACKET_SIZE; i++)
Davide Pesavento3f5655f2014-08-30 21:38:59 +0200670 hugeName << 'a';
671
672 shared_ptr<Interest> interest = makeInterest("ndn:/KfczhUqVix");
673 shared_ptr<Interest> hugeInterest = makeInterest(hugeName.str());
674
675 face1->sendInterest(*hugeInterest);
676 face2->sendInterest(*interest);
677 face2->sendInterest(*interest);
678
679 limitedIo.run(LimitedIo::UNLIMITED_OPS, time::seconds(1));
680 BOOST_TEST_MESSAGE("Unexpected assertion test passed");
681}
Alexander Afanasyev18861802014-06-13 17:49:03 -0700682
Alexander Afanasyev70aaf8a2014-12-13 00:44:22 -0800683class FakeNetworkInterfaceFixture : public BaseFixture
684{
685public:
686 FakeNetworkInterfaceFixture()
687 {
688 using namespace boost::asio::ip;
689
690 auto fakeInterfaces = make_shared<std::vector<NetworkInterfaceInfo>>();
691
692 fakeInterfaces->push_back(
693 NetworkInterfaceInfo {0, "eth0",
694 ethernet::Address::fromString("3e:15:c2:8b:65:00"),
695 {address_v4::from_string("0.0.0.0")},
696 {address_v6::from_string("::")},
697 address_v4(),
698 IFF_UP});
699 fakeInterfaces->push_back(
700 NetworkInterfaceInfo {1, "eth0",
701 ethernet::Address::fromString("3e:15:c2:8b:65:00"),
702 {address_v4::from_string("192.168.2.1"), address_v4::from_string("192.168.2.2")},
703 {},
704 address_v4::from_string("192.168.2.255"),
705 0});
706 fakeInterfaces->push_back(
707 NetworkInterfaceInfo {2, "eth1",
708 ethernet::Address::fromString("3e:15:c2:8b:65:00"),
709 {address_v4::from_string("198.51.100.1")},
710 {address_v6::from_string("2001:db8::2"), address_v6::from_string("2001:db8::3")},
711 address_v4::from_string("198.51.100.255"),
712 IFF_MULTICAST | IFF_BROADCAST | IFF_UP});
713
714 setDebugNetworkInterfaces(fakeInterfaces);
715 }
716
717 ~FakeNetworkInterfaceFixture()
718 {
719 setDebugNetworkInterfaces(nullptr);
720 }
721};
722
723BOOST_FIXTURE_TEST_CASE(Bug2292, FakeNetworkInterfaceFixture)
724{
725 using namespace boost::asio::ip;
726
727 TcpFactory factory;
728 factory.prohibitEndpoint(tcp::Endpoint(address_v4::from_string("192.168.2.1"), 1024));
729 BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 1);
730 BOOST_CHECK((factory.m_prohibitedEndpoints ==
731 std::set<tcp::Endpoint> {
732 tcp::Endpoint(address_v4::from_string("192.168.2.1"), 1024),
733 }));
734
735 factory.m_prohibitedEndpoints.clear();
736 factory.prohibitEndpoint(tcp::Endpoint(address_v6::from_string("2001:db8::1"), 2048));
737 BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 1);
738 BOOST_CHECK((factory.m_prohibitedEndpoints ==
739 std::set<tcp::Endpoint> {
740 tcp::Endpoint(address_v6::from_string("2001:db8::1"), 2048)
741 }));
742
743 factory.m_prohibitedEndpoints.clear();
744 factory.prohibitEndpoint(tcp::Endpoint(address_v4(), 1024));
745 BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 4);
746 BOOST_CHECK((factory.m_prohibitedEndpoints ==
747 std::set<tcp::Endpoint> {
748 tcp::Endpoint(address_v4::from_string("192.168.2.1"), 1024),
749 tcp::Endpoint(address_v4::from_string("192.168.2.2"), 1024),
750 tcp::Endpoint(address_v4::from_string("198.51.100.1"), 1024),
751 tcp::Endpoint(address_v4::from_string("0.0.0.0"), 1024)
752 }));
753
754 factory.m_prohibitedEndpoints.clear();
755 factory.prohibitEndpoint(tcp::Endpoint(address_v6(), 2048));
756 BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 3);
757 BOOST_CHECK((factory.m_prohibitedEndpoints ==
758 std::set<tcp::Endpoint> {
759 tcp::Endpoint(address_v6::from_string("2001:db8::2"), 2048),
760 tcp::Endpoint(address_v6::from_string("2001:db8::3"), 2048),
761 tcp::Endpoint(address_v6::from_string("::"), 2048)
762 }));
763}
764
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700765BOOST_AUTO_TEST_SUITE_END()
766
Junxiao Shid9ee45c2014-02-27 15:38:11 -0700767} // namespace tests
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700768} // namespace nfd