blob: 2548dcd528813328e2d442f7abaef623d1557c7e [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
Davide Pesavento6ad890a2015-03-09 03:43:17 +010026#include "face/tcp-channel.hpp"
Alexander Afanasyev0eb70652014-02-27 18:35:07 -080027#include "face/tcp-factory.hpp"
Junxiao Shi96dc0c42014-01-30 23:51:59 -070028
Davide Pesavento6ad890a2015-03-09 03:43:17 +010029#include "core/network-interface.hpp"
Junxiao Shid9ee45c2014-02-27 15:38:11 -070030#include "tests/test-common.hpp"
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070031#include "tests/limited-io.hpp"
Alexander Afanasyev650028d2014-04-25 18:39:10 -070032#include "dummy-stream-sender.hpp"
33#include "packet-datasets.hpp"
Junxiao Shi96dc0c42014-01-30 23:51:59 -070034
35namespace nfd {
Junxiao Shid9ee45c2014-02-27 15:38:11 -070036namespace tests {
Junxiao Shi96dc0c42014-01-30 23:51:59 -070037
Yukai Tu16aabbc2015-10-06 05:08:42 -070038BOOST_AUTO_TEST_SUITE(Face)
39BOOST_FIXTURE_TEST_SUITE(TestTcp, BaseFixture)
40
41using nfd::Face;
Junxiao Shi96dc0c42014-01-30 23:51:59 -070042
43BOOST_AUTO_TEST_CASE(ChannelMap)
44{
Alexander Afanasyev0eb70652014-02-27 18:35:07 -080045 TcpFactory factory;
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -080046
Alexander Afanasyevd6655302014-02-28 08:41:28 -080047 shared_ptr<TcpChannel> channel1 = factory.createChannel("127.0.0.1", "20070");
48 shared_ptr<TcpChannel> channel1a = factory.createChannel("127.0.0.1", "20070");
Junxiao Shi96dc0c42014-01-30 23:51:59 -070049 BOOST_CHECK_EQUAL(channel1, channel1a);
Junxiao Shi61e3cc52014-03-03 20:40:28 -070050 BOOST_CHECK_EQUAL(channel1->getUri().toString(), "tcp4://127.0.0.1:20070");
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -080051
Alexander Afanasyevd6655302014-02-28 08:41:28 -080052 shared_ptr<TcpChannel> channel2 = factory.createChannel("127.0.0.1", "20071");
Junxiao Shi96dc0c42014-01-30 23:51:59 -070053 BOOST_CHECK_NE(channel1, channel2);
Junxiao Shi61e3cc52014-03-03 20:40:28 -070054
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 Shi96dc0c42014-01-30 23:51:59 -070058}
59
Steve DiBenedettoef04f272014-06-04 14:28:31 -060060BOOST_AUTO_TEST_CASE(GetChannels)
61{
62 TcpFactory factory;
63 BOOST_REQUIRE_EQUAL(factory.getChannels().empty(), true);
64
Davide Pesaventob499a602014-11-18 22:36:56 +010065 std::vector<shared_ptr<const Channel>> expectedChannels;
Steve DiBenedettoef04f272014-06-04 14:28:31 -060066 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 Pesaventob499a602014-11-18 22:36:56 +010070 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 DiBenedettoef04f272014-06-04 14:28:31 -060075 BOOST_CHECK_EQUAL(expectedChannels.size(), 0);
76}
77
Alexander Afanasyev86bc91a2014-08-28 22:29:16 -070078class FaceCreateFixture : protected BaseFixture
79{
80public:
81 void
Alexander Afanasyev86bc91a2014-08-28 22:29:16 -070082 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
94BOOST_FIXTURE_TEST_CASE(FaceCreate, FaceCreateFixture)
95{
Yukai Tu7c90e6d2015-07-11 12:21:46 +080096 TcpFactory factory;
Alexander Afanasyev86bc91a2014-08-28 22:29:16 -070097
Chengyu Fan4381fb62015-01-14 11:37:04 -070098 factory.createFace(FaceUri("tcp4://127.0.0.1:6363"),
Yukai Tu7c90e6d2015-07-11 12:21:46 +080099 ndn::nfd::FACE_PERSISTENCY_PERSISTENT,
100 bind([]{}),
Chengyu Fan4381fb62015-01-14 11:37:04 -0700101 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 Tu16aabbc2015-10-06 05:08:42 -0700105
Chengyu Fan4381fb62015-01-14 11:37:04 -0700106 factory.createFace(FaceUri("tcp4://127.0.0.1:20070"),
Yukai Tu7c90e6d2015-07-11 12:21:46 +0800107 ndn::nfd::FACE_PERSISTENCY_PERSISTENT,
108 bind([]{}),
Alexander Afanasyev86bc91a2014-08-28 22:29:16 -0700109 bind(&FaceCreateFixture::failIfError, this, _1));
Alexander Afanasyev86bc91a2014-08-28 22:29:16 -0700110}
111
Yukai Tu16aabbc2015-10-06 05:08:42 -0700112BOOST_AUTO_TEST_CASE(UnsupportedFaceCreate)
Yukai Tu7c90e6d2015-07-11 12:21:46 +0800113{
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 Shid9ee45c2014-02-27 15:38:11 -0700132class EndToEndFixture : protected BaseFixture
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700133{
134public:
135 void
Alexander Afanasyevbd220a02014-02-20 00:29:56 -0800136 channel1_onFaceCreated(const shared_ptr<Face>& newFace)
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700137 {
Junxiao Shi79494162014-04-02 18:25:11 -0700138 BOOST_CHECK(!static_cast<bool>(face1));
139 face1 = newFace;
Junxiao Shic099ddb2014-12-25 20:53:20 -0700140 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 Shi96dc0c42014-01-30 23:51:59 -0700143
Junxiao Shi79494162014-04-02 18:25:11 -0700144 limitedIo.afterOp();
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700145 }
146
147 void
148 channel1_onConnectFailed(const std::string& reason)
149 {
150 BOOST_CHECK_MESSAGE(false, reason);
151
Junxiao Shi79494162014-04-02 18:25:11 -0700152 limitedIo.afterOp();
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700153 }
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800154
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700155 void
156 face1_onReceiveInterest(const Interest& interest)
157 {
Junxiao Shi79494162014-04-02 18:25:11 -0700158 face1_receivedInterests.push_back(interest);
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700159
Junxiao Shi79494162014-04-02 18:25:11 -0700160 limitedIo.afterOp();
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700161 }
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800162
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700163 void
164 face1_onReceiveData(const Data& data)
165 {
Junxiao Shi79494162014-04-02 18:25:11 -0700166 face1_receivedDatas.push_back(data);
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
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800172 face1_onFail()
173 {
Junxiao Shid5134a72015-11-08 07:53:24 -0700174 g_io.post([this] {
175 face1.reset();
176 limitedIo.afterOp();
177 });
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800178 }
179
180 void
Alexander Afanasyevbd220a02014-02-20 00:29:56 -0800181 channel2_onFaceCreated(const shared_ptr<Face>& newFace)
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700182 {
Junxiao Shi79494162014-04-02 18:25:11 -0700183 BOOST_CHECK(!static_cast<bool>(face2));
184 face2 = newFace;
Junxiao Shic099ddb2014-12-25 20:53:20 -0700185 face2->onReceiveInterest.connect(bind(&EndToEndFixture::face2_onReceiveInterest, this, _1));
186 face2->onReceiveData.connect(bind(&EndToEndFixture::face2_onReceiveData, this, _1));
187 face2->onFail.connect(bind(&EndToEndFixture::face2_onFail, this));
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700188
Junxiao Shi79494162014-04-02 18:25:11 -0700189 limitedIo.afterOp();
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700190 }
191
192 void
193 channel2_onConnectFailed(const std::string& reason)
194 {
195 BOOST_CHECK_MESSAGE(false, reason);
196
Junxiao Shi79494162014-04-02 18:25:11 -0700197 limitedIo.afterOp();
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700198 }
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800199
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700200 void
201 face2_onReceiveInterest(const Interest& interest)
202 {
Junxiao Shi79494162014-04-02 18:25:11 -0700203 face2_receivedInterests.push_back(interest);
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700204
Junxiao Shi79494162014-04-02 18:25:11 -0700205 limitedIo.afterOp();
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700206 }
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800207
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700208 void
209 face2_onReceiveData(const Data& data)
210 {
Junxiao Shi79494162014-04-02 18:25:11 -0700211 face2_receivedDatas.push_back(data);
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700212
Junxiao Shi79494162014-04-02 18:25:11 -0700213 limitedIo.afterOp();
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700214 }
215
216 void
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800217 face2_onFail()
218 {
Junxiao Shid5134a72015-11-08 07:53:24 -0700219 g_io.post([this] {
220 face2.reset();
221 limitedIo.afterOp();
222 });
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800223 }
224
225 void
Alexander Afanasyevbd220a02014-02-20 00:29:56 -0800226 channel_onFaceCreated(const shared_ptr<Face>& newFace)
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800227 {
Junxiao Shi79494162014-04-02 18:25:11 -0700228 faces.push_back(newFace);
229 limitedIo.afterOp();
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800230 }
231
232 void
233 channel_onConnectFailed(const std::string& reason)
234 {
235 BOOST_CHECK_MESSAGE(false, reason);
236
Junxiao Shi79494162014-04-02 18:25:11 -0700237 limitedIo.afterOp();
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800238 }
239
240 void
241 checkFaceList(size_t shouldBe)
242 {
Junxiao Shi79494162014-04-02 18:25:11 -0700243 BOOST_CHECK_EQUAL(faces.size(), shouldBe);
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800244 }
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800245
Davide Pesaventoab1e8f22014-10-21 22:45:33 +0200246 void
247 connect(const shared_ptr<TcpChannel>& channel,
248 const std::string& remoteHost,
249 const std::string& remotePort)
250 {
Alexander Afanasyevbaba2532015-02-13 18:27:33 -0800251 channel->connect(tcp::Endpoint(boost::asio::ip::address::from_string(remoteHost),
252 boost::lexical_cast<uint16_t>(remotePort)),
Davide Pesaventoab1e8f22014-10-21 22:45:33 +0200253 bind(&EndToEndFixture::channel_onFaceCreated, this, _1),
254 bind(&EndToEndFixture::channel_onConnectFailed, this, _1));
255 }
256
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700257public:
Junxiao Shi79494162014-04-02 18:25:11 -0700258 LimitedIo limitedIo;
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700259
Junxiao Shi79494162014-04-02 18:25:11 -0700260 shared_ptr<Face> face1;
261 std::vector<Interest> face1_receivedInterests;
262 std::vector<Data> face1_receivedDatas;
263 shared_ptr<Face> face2;
264 std::vector<Interest> face2_receivedInterests;
265 std::vector<Data> face2_receivedDatas;
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800266
Davide Pesaventob499a602014-11-18 22:36:56 +0100267 std::list<shared_ptr<Face>> faces;
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700268};
269
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000270BOOST_FIXTURE_TEST_CASE(EndToEnd4, EndToEndFixture)
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700271{
Steve DiBenedettoca53ac62014-03-27 19:58:40 -0600272 TcpFactory factory1;
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700273
Steve DiBenedettoca53ac62014-03-27 19:58:40 -0600274 shared_ptr<TcpChannel> channel1 = factory1.createChannel("127.0.0.1", "20070");
275 factory1.createChannel("127.0.0.1", "20071");
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800276
Alexander Afanasyev53a6fd32014-03-23 00:00:04 -0700277 BOOST_CHECK_EQUAL(channel1->isListening(), false);
278
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700279 channel1->listen(bind(&EndToEndFixture::channel1_onFaceCreated, this, _1),
280 bind(&EndToEndFixture::channel1_onConnectFailed, this, _1));
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800281
Alexander Afanasyev53a6fd32014-03-23 00:00:04 -0700282 BOOST_CHECK_EQUAL(channel1->isListening(), true);
283
Steve DiBenedettoca53ac62014-03-27 19:58:40 -0600284 TcpFactory factory2;
285
286 shared_ptr<TcpChannel> channel2 = factory2.createChannel("127.0.0.2", "20070");
287 factory2.createChannel("127.0.0.2", "20071");
288
Chengyu Fan4381fb62015-01-14 11:37:04 -0700289 factory2.createFace(FaceUri("tcp4://127.0.0.1:20070"),
Yukai Tu7c90e6d2015-07-11 12:21:46 +0800290 ndn::nfd::FACE_PERSISTENCY_PERSISTENT,
Steve DiBenedettoca53ac62014-03-27 19:58:40 -0600291 bind(&EndToEndFixture::channel2_onFaceCreated, this, _1),
292 bind(&EndToEndFixture::channel2_onConnectFailed, this, _1));
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700293
Junxiao Shi79494162014-04-02 18:25:11 -0700294 BOOST_CHECK_MESSAGE(limitedIo.run(2, time::seconds(10)) == LimitedIo::EXCEED_OPS,
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700295 "TcpChannel error: cannot connect or cannot accept connection");
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700296
Junxiao Shi79494162014-04-02 18:25:11 -0700297 BOOST_REQUIRE(static_cast<bool>(face1));
298 BOOST_REQUIRE(static_cast<bool>(face2));
Alexander Afanasyevbd220a02014-02-20 00:29:56 -0800299
Yukai Tu731f0d72015-07-04 11:14:44 +0800300 BOOST_CHECK_EQUAL(face1->getPersistency(), ndn::nfd::FACE_PERSISTENCY_ON_DEMAND);
301 BOOST_CHECK_EQUAL(face2->getPersistency(), ndn::nfd::FACE_PERSISTENCY_PERSISTENT);
Davide Pesavento94279412015-02-27 01:29:32 +0100302 BOOST_CHECK_EQUAL(face1->isMultiAccess(), false);
303 BOOST_CHECK_EQUAL(face2->isMultiAccess(), false);
Alexander Afanasyev355c0662014-03-20 18:08:17 -0700304
Junxiao Shi79494162014-04-02 18:25:11 -0700305 BOOST_CHECK_EQUAL(face2->getRemoteUri().toString(), "tcp4://127.0.0.1:20070");
306 BOOST_CHECK_EQUAL(face1->getLocalUri().toString(), "tcp4://127.0.0.1:20070");
307 // face1 has an unknown remoteUri, since the source port is automatically chosen by OS
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000308
Junxiao Shi79494162014-04-02 18:25:11 -0700309 BOOST_CHECK_EQUAL(face1->isLocal(), true);
310 BOOST_CHECK_EQUAL(face2->isLocal(), true);
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000311
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700312 shared_ptr<Interest> interest1 = makeInterest("ndn:/TpnzGvW9R");
313 shared_ptr<Data> data1 = makeData("ndn:/KfczhUqVix");
314 shared_ptr<Interest> interest2 = makeInterest("ndn:/QWiIMfj5sL");
315 shared_ptr<Data> data2 = makeData("ndn:/XNBV796f");
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000316
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700317 face1->sendInterest(*interest1);
318 face1->sendInterest(*interest1);
319 face1->sendInterest(*interest1);
320 face1->sendData (*data1 );
Junxiao Shi5dd26c32014-07-20 23:15:14 -0700321 size_t nBytesSent1 = interest1->wireEncode().size() * 3 + data1->wireEncode().size();
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700322 face2->sendInterest(*interest2);
323 face2->sendData (*data2 );
324 face2->sendData (*data2 );
325 face2->sendData (*data2 );
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000326
Junxiao Shi79494162014-04-02 18:25:11 -0700327 BOOST_CHECK_MESSAGE(limitedIo.run(8, time::seconds(10)) == LimitedIo::EXCEED_OPS,
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000328 "TcpChannel error: cannot send or receive Interest/Data packets");
329
Junxiao Shi79494162014-04-02 18:25:11 -0700330 BOOST_REQUIRE_EQUAL(face1_receivedInterests.size(), 1);
331 BOOST_REQUIRE_EQUAL(face1_receivedDatas .size(), 3);
332 BOOST_REQUIRE_EQUAL(face2_receivedInterests.size(), 3);
333 BOOST_REQUIRE_EQUAL(face2_receivedDatas .size(), 1);
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000334
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700335 BOOST_CHECK_EQUAL(face1_receivedInterests[0].getName(), interest2->getName());
336 BOOST_CHECK_EQUAL(face1_receivedDatas [0].getName(), data2->getName());
337 BOOST_CHECK_EQUAL(face2_receivedInterests[0].getName(), interest1->getName());
338 BOOST_CHECK_EQUAL(face2_receivedDatas [0].getName(), data1->getName());
Alexander Afanasyev7e698e62014-03-07 16:48:35 +0000339
Junxiao Shi5dd26c32014-07-20 23:15:14 -0700340 // needed to ensure NOutBytes counters are accurate
341 limitedIo.run(LimitedIo::UNLIMITED_OPS, time::seconds(1));
342
Junxiao Shi79494162014-04-02 18:25:11 -0700343 const FaceCounters& counters1 = face1->getCounters();
Junxiao Shi6e694322014-04-03 10:27:13 -0700344 BOOST_CHECK_EQUAL(counters1.getNInInterests() , 1);
345 BOOST_CHECK_EQUAL(counters1.getNInDatas() , 3);
346 BOOST_CHECK_EQUAL(counters1.getNOutInterests(), 3);
347 BOOST_CHECK_EQUAL(counters1.getNOutDatas() , 1);
Junxiao Shi5dd26c32014-07-20 23:15:14 -0700348 BOOST_CHECK_EQUAL(counters1.getNOutBytes(), nBytesSent1);
Alexander Afanasyev7e698e62014-03-07 16:48:35 +0000349
Junxiao Shi79494162014-04-02 18:25:11 -0700350 const FaceCounters& counters2 = face2->getCounters();
Junxiao Shi6e694322014-04-03 10:27:13 -0700351 BOOST_CHECK_EQUAL(counters2.getNInInterests() , 3);
352 BOOST_CHECK_EQUAL(counters2.getNInDatas() , 1);
353 BOOST_CHECK_EQUAL(counters2.getNOutInterests(), 1);
354 BOOST_CHECK_EQUAL(counters2.getNOutDatas() , 3);
Junxiao Shi5dd26c32014-07-20 23:15:14 -0700355 BOOST_CHECK_EQUAL(counters2.getNInBytes(), nBytesSent1);
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000356}
357
358BOOST_FIXTURE_TEST_CASE(EndToEnd6, EndToEndFixture)
359{
Steve DiBenedettoca53ac62014-03-27 19:58:40 -0600360 TcpFactory factory1;
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000361
Steve DiBenedettoca53ac62014-03-27 19:58:40 -0600362 shared_ptr<TcpChannel> channel1 = factory1.createChannel("::1", "20070");
363 shared_ptr<TcpChannel> channel2 = factory1.createChannel("::1", "20071");
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000364
365 channel1->listen(bind(&EndToEndFixture::channel1_onFaceCreated, this, _1),
366 bind(&EndToEndFixture::channel1_onConnectFailed, this, _1));
367
Steve DiBenedettoca53ac62014-03-27 19:58:40 -0600368 TcpFactory factory2;
369
370 factory2.createChannel("::2", "20070");
371
Chengyu Fan4381fb62015-01-14 11:37:04 -0700372 factory2.createFace(FaceUri("tcp6://[::1]:20070"),
Yukai Tu7c90e6d2015-07-11 12:21:46 +0800373 ndn::nfd::FACE_PERSISTENCY_PERSISTENT,
Steve DiBenedettoca53ac62014-03-27 19:58:40 -0600374 bind(&EndToEndFixture::channel2_onFaceCreated, this, _1),
375 bind(&EndToEndFixture::channel2_onConnectFailed, this, _1));
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000376
Junxiao Shi79494162014-04-02 18:25:11 -0700377 BOOST_CHECK_MESSAGE(limitedIo.run(2, time::seconds(10)) == LimitedIo::EXCEED_OPS,
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000378 "TcpChannel error: cannot connect or cannot accept connection");
379
Junxiao Shi79494162014-04-02 18:25:11 -0700380 BOOST_REQUIRE(static_cast<bool>(face1));
381 BOOST_REQUIRE(static_cast<bool>(face2));
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000382
Junxiao Shi79494162014-04-02 18:25:11 -0700383 BOOST_CHECK_EQUAL(face2->getRemoteUri().toString(), "tcp6://[::1]:20070");
384 BOOST_CHECK_EQUAL(face1->getLocalUri().toString(), "tcp6://[::1]:20070");
385 // face1 has an unknown remoteUri, since the source port is automatically chosen by OS
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000386
Junxiao Shi79494162014-04-02 18:25:11 -0700387 BOOST_CHECK_EQUAL(face1->isLocal(), true);
388 BOOST_CHECK_EQUAL(face2->isLocal(), true);
Alexander Afanasyevbd220a02014-02-20 00:29:56 -0800389
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700390 shared_ptr<Interest> interest1 = makeInterest("ndn:/TpnzGvW9R");
391 shared_ptr<Data> data1 = makeData("ndn:/KfczhUqVix");
392 shared_ptr<Interest> interest2 = makeInterest("ndn:/QWiIMfj5sL");
393 shared_ptr<Data> data2 = makeData("ndn:/XNBV796f");
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700394
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700395 face1->sendInterest(*interest1);
396 face1->sendData (*data1 );
397 face2->sendInterest(*interest2);
398 face2->sendData (*data2 );
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700399
Junxiao Shi79494162014-04-02 18:25:11 -0700400 BOOST_CHECK_MESSAGE(limitedIo.run(4, time::seconds(10)) == LimitedIo::EXCEED_OPS,
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700401 "TcpChannel error: cannot send or receive Interest/Data packets");
402
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700403
Junxiao Shi79494162014-04-02 18:25:11 -0700404 BOOST_REQUIRE_EQUAL(face1_receivedInterests.size(), 1);
405 BOOST_REQUIRE_EQUAL(face1_receivedDatas .size(), 1);
406 BOOST_REQUIRE_EQUAL(face2_receivedInterests.size(), 1);
407 BOOST_REQUIRE_EQUAL(face2_receivedDatas .size(), 1);
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800408
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700409 BOOST_CHECK_EQUAL(face1_receivedInterests[0].getName(), interest2->getName());
410 BOOST_CHECK_EQUAL(face1_receivedDatas [0].getName(), data2->getName());
411 BOOST_CHECK_EQUAL(face2_receivedInterests[0].getName(), interest1->getName());
412 BOOST_CHECK_EQUAL(face2_receivedDatas [0].getName(), data1->getName());
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700413}
414
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800415BOOST_FIXTURE_TEST_CASE(MultipleAccepts, EndToEndFixture)
416{
Alexander Afanasyev0eb70652014-02-27 18:35:07 -0800417 TcpFactory factory;
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800418
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800419 shared_ptr<TcpChannel> channel1 = factory.createChannel("127.0.0.1", "20070");
420 shared_ptr<TcpChannel> channel2 = factory.createChannel("127.0.0.1", "20071");
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800421
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800422 channel1->listen(bind(&EndToEndFixture::channel_onFaceCreated, this, _1),
423 bind(&EndToEndFixture::channel_onConnectFailed, this, _1));
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800424
Alexander Afanasyevbaba2532015-02-13 18:27:33 -0800425 using namespace boost::asio;
426 channel2->connect(tcp::Endpoint(ip::address::from_string("127.0.0.1"), 20070),
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800427 bind(&EndToEndFixture::channel_onFaceCreated, this, _1),
428 bind(&EndToEndFixture::channel_onConnectFailed, this, _1),
Alexander Afanasyevc1e2ee02014-02-25 17:02:07 -0800429 time::seconds(4)); // very short timeout
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800430
Junxiao Shi79494162014-04-02 18:25:11 -0700431 BOOST_CHECK_MESSAGE(limitedIo.run(2, time::seconds(10)) == LimitedIo::EXCEED_OPS,
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700432 "TcpChannel error: cannot connect or cannot accept connection");
433
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800434
Junxiao Shi79494162014-04-02 18:25:11 -0700435 BOOST_CHECK_EQUAL(faces.size(), 2);
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800436
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800437 shared_ptr<TcpChannel> channel3 = factory.createChannel("127.0.0.1", "20072");
Alexander Afanasyevbaba2532015-02-13 18:27:33 -0800438 channel3->connect(tcp::Endpoint(ip::address::from_string("127.0.0.1"), 20070),
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800439 bind(&EndToEndFixture::channel_onFaceCreated, this, _1),
440 bind(&EndToEndFixture::channel_onConnectFailed, this, _1),
Alexander Afanasyevc1e2ee02014-02-25 17:02:07 -0800441 time::seconds(4)); // very short timeout
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800442
443
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800444 shared_ptr<TcpChannel> channel4 = factory.createChannel("127.0.0.1", "20073");
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800445
446 BOOST_CHECK_NE(channel3, channel4);
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800447
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700448 scheduler::schedule(time::seconds(1),
Davide Pesaventoab1e8f22014-10-21 22:45:33 +0200449 bind(&EndToEndFixture::connect, this, channel4, "127.0.0.1", "20070"));
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800450
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -0700451 scheduler::schedule(time::milliseconds(500),
Alexander Afanasyev7329e022014-02-27 14:47:22 -0800452 bind(&EndToEndFixture::checkFaceList, this, 4));
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800453
Junxiao Shi79494162014-04-02 18:25:11 -0700454 BOOST_CHECK_MESSAGE(limitedIo.run(4,// 2 connects and 2 accepts
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700455 time::seconds(10)) == LimitedIo::EXCEED_OPS,
456 "TcpChannel error: cannot connect or cannot accept multiple connections");
Alexander Afanasyev7329e022014-02-27 14:47:22 -0800457
Junxiao Shi79494162014-04-02 18:25:11 -0700458 BOOST_CHECK_EQUAL(faces.size(), 6);
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800459}
460
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800461BOOST_FIXTURE_TEST_CASE(FaceClosing, EndToEndFixture)
462{
Alexander Afanasyev0eb70652014-02-27 18:35:07 -0800463 TcpFactory factory;
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800464
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800465 shared_ptr<TcpChannel> channel1 = factory.createChannel("127.0.0.1", "20070");
466 shared_ptr<TcpChannel> channel2 = factory.createChannel("127.0.0.1", "20071");
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800467
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800468 channel1->listen(bind(&EndToEndFixture::channel1_onFaceCreated, this, _1),
469 bind(&EndToEndFixture::channel1_onConnectFailed, this, _1));
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800470
Alexander Afanasyevbaba2532015-02-13 18:27:33 -0800471 using namespace boost::asio;
472 channel2->connect(tcp::Endpoint(ip::address::from_string("127.0.0.1"), 20070),
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800473 bind(&EndToEndFixture::channel2_onFaceCreated, this, _1),
474 bind(&EndToEndFixture::channel2_onConnectFailed, this, _1),
Alexander Afanasyevc1e2ee02014-02-25 17:02:07 -0800475 time::seconds(4)); // very short timeout
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800476
Junxiao Shi79494162014-04-02 18:25:11 -0700477 BOOST_CHECK_MESSAGE(limitedIo.run(2, time::seconds(10)) == LimitedIo::EXCEED_OPS,
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700478 "TcpChannel error: cannot connect or cannot accept connection");
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800479
480 BOOST_CHECK_EQUAL(channel1->size(), 1);
481 BOOST_CHECK_EQUAL(channel2->size(), 1);
482
Junxiao Shi79494162014-04-02 18:25:11 -0700483 BOOST_REQUIRE(static_cast<bool>(face1));
484 BOOST_CHECK(static_cast<bool>(face2));
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800485
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700486 // Face::close must be invoked during io run to be counted as an op
Junxiao Shi79494162014-04-02 18:25:11 -0700487 scheduler::schedule(time::milliseconds(100), bind(&Face::close, face1));
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800488
Junxiao Shi79494162014-04-02 18:25:11 -0700489 BOOST_CHECK_MESSAGE(limitedIo.run(2, time::seconds(10)) == LimitedIo::EXCEED_OPS,
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700490 "FaceClosing error: cannot properly close faces");
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800491
492 // both faces should get closed
Junxiao Shi79494162014-04-02 18:25:11 -0700493 BOOST_CHECK(!static_cast<bool>(face1));
494 BOOST_CHECK(!static_cast<bool>(face2));
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800495
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800496 BOOST_CHECK_EQUAL(channel1->size(), 0);
497 BOOST_CHECK_EQUAL(channel2->size(), 0);
498}
499
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700500class SimpleEndToEndFixture : protected BaseFixture
501{
502public:
503 void
504 onFaceCreated(const shared_ptr<Face>& face)
505 {
Junxiao Shic099ddb2014-12-25 20:53:20 -0700506 face->onReceiveInterest.connect(bind(&SimpleEndToEndFixture::onReceiveInterest, this, _1));
507 face->onReceiveData.connect(bind(&SimpleEndToEndFixture::onReceiveData, this, _1));
508 face->onFail.connect(bind(&SimpleEndToEndFixture::onFail, this, face));
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700509
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700510 limitedIo.afterOp();
511 }
512
513 void
514 onConnectFailed(const std::string& reason)
515 {
516 BOOST_CHECK_MESSAGE(false, reason);
517
518 limitedIo.afterOp();
519 }
520
521 void
522 onReceiveInterest(const Interest& interest)
523 {
524 receivedInterests.push_back(interest);
525
526 limitedIo.afterOp();
527 }
528
529 void
530 onReceiveData(const Data& data)
531 {
532 receivedDatas.push_back(data);
533
534 limitedIo.afterOp();
535 }
536
537 void
538 onFail(const shared_ptr<Face>& face)
539 {
540 limitedIo.afterOp();
541 }
542
543public:
544 LimitedIo limitedIo;
545
546 std::vector<Interest> receivedInterests;
547 std::vector<Data> receivedDatas;
548};
549
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700550BOOST_FIXTURE_TEST_CASE_TEMPLATE(FaceCorruptedInput, Dataset,
551 CorruptedPackets, SimpleEndToEndFixture)
552{
Davide Pesavento2231ab52015-03-16 00:15:13 +0100553 // test with non-local Face
554 boost::asio::ip::address_v4 someIpv4Address;
Davide Pesaventob499a602014-11-18 22:36:56 +0100555 for (const auto& netif : listNetworkInterfaces()) {
556 if (!netif.isLoopback() && netif.isUp() && !netif.ipv4Addresses.empty()) {
Davide Pesavento2231ab52015-03-16 00:15:13 +0100557 someIpv4Address = netif.ipv4Addresses.front();
Davide Pesaventob499a602014-11-18 22:36:56 +0100558 break;
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700559 }
Davide Pesaventob499a602014-11-18 22:36:56 +0100560 }
Davide Pesavento2231ab52015-03-16 00:15:13 +0100561 if (someIpv4Address.is_unspecified()) {
Davide Pesaventob499a602014-11-18 22:36:56 +0100562 BOOST_TEST_MESSAGE("Test with non-local Face cannot be run "
Davide Pesavento2231ab52015-03-16 00:15:13 +0100563 "(no non-loopback interface with IPv4 address found)");
Davide Pesaventob499a602014-11-18 22:36:56 +0100564 return;
565 }
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700566
567 TcpFactory factory;
Davide Pesavento2231ab52015-03-16 00:15:13 +0100568 tcp::Endpoint endpoint(someIpv4Address, 20070);
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700569
Davide Pesavento2231ab52015-03-16 00:15:13 +0100570 shared_ptr<TcpChannel> channel = factory.createChannel(endpoint);
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700571 channel->listen(bind(&SimpleEndToEndFixture::onFaceCreated, this, _1),
572 bind(&SimpleEndToEndFixture::onConnectFailed, this, _1));
573 BOOST_REQUIRE_EQUAL(channel->isListening(), true);
574
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700575 DummyStreamSender<boost::asio::ip::tcp, Dataset> sender;
Chengyu Fan4381fb62015-01-14 11:37:04 -0700576 sender.start(endpoint);
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700577
578 BOOST_CHECK_MESSAGE(limitedIo.run(LimitedIo::UNLIMITED_OPS,
579 time::seconds(1)) == LimitedIo::EXCEED_TIME,
580 "Exception thrown for " + Dataset::getName());
581}
582
Alexander Afanasyev18861802014-06-13 17:49:03 -0700583class FaceCreateTimeoutFixture : protected BaseFixture
584{
585public:
586 void
587 onFaceCreated(const shared_ptr<Face>& newFace)
588 {
589 BOOST_CHECK_MESSAGE(false, "Timeout expected");
590 BOOST_CHECK(!static_cast<bool>(face1));
591 face1 = newFace;
592
593 limitedIo.afterOp();
594 }
595
596 void
597 onConnectFailed(const std::string& reason)
598 {
599 BOOST_CHECK_MESSAGE(true, reason);
600
601 limitedIo.afterOp();
602 }
603
604public:
605 LimitedIo limitedIo;
606
607 shared_ptr<Face> face1;
608};
609
Alexander Afanasyev18861802014-06-13 17:49:03 -0700610BOOST_FIXTURE_TEST_CASE(FaceCreateTimeout, FaceCreateTimeoutFixture)
611{
612 TcpFactory factory;
613 shared_ptr<TcpChannel> channel = factory.createChannel("0.0.0.0", "20070");
614
Chengyu Fan4381fb62015-01-14 11:37:04 -0700615 factory.createFace(FaceUri("tcp4://192.0.2.1:20070"),
Yukai Tu7c90e6d2015-07-11 12:21:46 +0800616 ndn::nfd::FACE_PERSISTENCY_PERSISTENT,
Alexander Afanasyev18861802014-06-13 17:49:03 -0700617 bind(&FaceCreateTimeoutFixture::onFaceCreated, this, _1),
618 bind(&FaceCreateTimeoutFixture::onConnectFailed, this, _1));
619
620 BOOST_CHECK_MESSAGE(limitedIo.run(1, time::seconds(10)) == LimitedIo::EXCEED_OPS,
621 "TcpChannel error: cannot connect or cannot accept connection");
622
623 BOOST_CHECK_EQUAL(static_cast<bool>(face1), false);
624}
625
Davide Pesavento3f5655f2014-08-30 21:38:59 +0200626BOOST_FIXTURE_TEST_CASE(Bug1856, EndToEndFixture)
627{
628 TcpFactory factory1;
629
630 shared_ptr<TcpChannel> channel1 = factory1.createChannel("127.0.0.1", "20070");
631 factory1.createChannel("127.0.0.1", "20071");
632
633 BOOST_CHECK_EQUAL(channel1->isListening(), false);
634
635 channel1->listen(bind(&EndToEndFixture::channel1_onFaceCreated, this, _1),
636 bind(&EndToEndFixture::channel1_onConnectFailed, this, _1));
637
638 BOOST_CHECK_EQUAL(channel1->isListening(), true);
639
640 TcpFactory factory2;
641
642 shared_ptr<TcpChannel> channel2 = factory2.createChannel("127.0.0.2", "20070");
643 factory2.createChannel("127.0.0.2", "20071");
644
Chengyu Fan4381fb62015-01-14 11:37:04 -0700645 factory2.createFace(FaceUri("tcp4://127.0.0.1:20070"),
Yukai Tu7c90e6d2015-07-11 12:21:46 +0800646 ndn::nfd::FACE_PERSISTENCY_PERSISTENT,
Davide Pesavento3f5655f2014-08-30 21:38:59 +0200647 bind(&EndToEndFixture::channel2_onFaceCreated, this, _1),
648 bind(&EndToEndFixture::channel2_onConnectFailed, this, _1));
649
650 BOOST_CHECK_MESSAGE(limitedIo.run(2, time::seconds(10)) == LimitedIo::EXCEED_OPS,
651 "TcpChannel error: cannot connect or cannot accept connection");
652
653 BOOST_REQUIRE(static_cast<bool>(face1));
654 BOOST_REQUIRE(static_cast<bool>(face2));
655
656 std::ostringstream hugeName;
657 hugeName << "/huge-name/";
Junxiao Shi39cd6332014-11-06 21:53:18 -0700658 for (size_t i = 0; i < ndn::MAX_NDN_PACKET_SIZE; i++)
Davide Pesavento3f5655f2014-08-30 21:38:59 +0200659 hugeName << 'a';
660
661 shared_ptr<Interest> interest = makeInterest("ndn:/KfczhUqVix");
662 shared_ptr<Interest> hugeInterest = makeInterest(hugeName.str());
663
664 face1->sendInterest(*hugeInterest);
665 face2->sendInterest(*interest);
666 face2->sendInterest(*interest);
667
668 limitedIo.run(LimitedIo::UNLIMITED_OPS, time::seconds(1));
669 BOOST_TEST_MESSAGE("Unexpected assertion test passed");
670}
Alexander Afanasyev18861802014-06-13 17:49:03 -0700671
Alexander Afanasyev70aaf8a2014-12-13 00:44:22 -0800672class FakeNetworkInterfaceFixture : public BaseFixture
673{
674public:
675 FakeNetworkInterfaceFixture()
676 {
677 using namespace boost::asio::ip;
678
679 auto fakeInterfaces = make_shared<std::vector<NetworkInterfaceInfo>>();
680
681 fakeInterfaces->push_back(
682 NetworkInterfaceInfo {0, "eth0",
683 ethernet::Address::fromString("3e:15:c2:8b:65:00"),
684 {address_v4::from_string("0.0.0.0")},
685 {address_v6::from_string("::")},
686 address_v4(),
687 IFF_UP});
688 fakeInterfaces->push_back(
689 NetworkInterfaceInfo {1, "eth0",
690 ethernet::Address::fromString("3e:15:c2:8b:65:00"),
691 {address_v4::from_string("192.168.2.1"), address_v4::from_string("192.168.2.2")},
692 {},
693 address_v4::from_string("192.168.2.255"),
694 0});
695 fakeInterfaces->push_back(
696 NetworkInterfaceInfo {2, "eth1",
697 ethernet::Address::fromString("3e:15:c2:8b:65:00"),
698 {address_v4::from_string("198.51.100.1")},
699 {address_v6::from_string("2001:db8::2"), address_v6::from_string("2001:db8::3")},
700 address_v4::from_string("198.51.100.255"),
701 IFF_MULTICAST | IFF_BROADCAST | IFF_UP});
702
703 setDebugNetworkInterfaces(fakeInterfaces);
704 }
705
706 ~FakeNetworkInterfaceFixture()
707 {
708 setDebugNetworkInterfaces(nullptr);
709 }
710};
711
712BOOST_FIXTURE_TEST_CASE(Bug2292, FakeNetworkInterfaceFixture)
713{
714 using namespace boost::asio::ip;
715
716 TcpFactory factory;
717 factory.prohibitEndpoint(tcp::Endpoint(address_v4::from_string("192.168.2.1"), 1024));
718 BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 1);
719 BOOST_CHECK((factory.m_prohibitedEndpoints ==
720 std::set<tcp::Endpoint> {
721 tcp::Endpoint(address_v4::from_string("192.168.2.1"), 1024),
722 }));
723
724 factory.m_prohibitedEndpoints.clear();
725 factory.prohibitEndpoint(tcp::Endpoint(address_v6::from_string("2001:db8::1"), 2048));
726 BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 1);
727 BOOST_CHECK((factory.m_prohibitedEndpoints ==
728 std::set<tcp::Endpoint> {
729 tcp::Endpoint(address_v6::from_string("2001:db8::1"), 2048)
730 }));
731
732 factory.m_prohibitedEndpoints.clear();
733 factory.prohibitEndpoint(tcp::Endpoint(address_v4(), 1024));
734 BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 4);
735 BOOST_CHECK((factory.m_prohibitedEndpoints ==
736 std::set<tcp::Endpoint> {
737 tcp::Endpoint(address_v4::from_string("192.168.2.1"), 1024),
738 tcp::Endpoint(address_v4::from_string("192.168.2.2"), 1024),
739 tcp::Endpoint(address_v4::from_string("198.51.100.1"), 1024),
740 tcp::Endpoint(address_v4::from_string("0.0.0.0"), 1024)
741 }));
742
743 factory.m_prohibitedEndpoints.clear();
744 factory.prohibitEndpoint(tcp::Endpoint(address_v6(), 2048));
745 BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 3);
746 BOOST_CHECK((factory.m_prohibitedEndpoints ==
747 std::set<tcp::Endpoint> {
748 tcp::Endpoint(address_v6::from_string("2001:db8::2"), 2048),
749 tcp::Endpoint(address_v6::from_string("2001:db8::3"), 2048),
750 tcp::Endpoint(address_v6::from_string("::"), 2048)
751 }));
752}
753
Yukai Tu16aabbc2015-10-06 05:08:42 -0700754BOOST_AUTO_TEST_SUITE_END() // TestTcp
755BOOST_AUTO_TEST_SUITE_END() // Face
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700756
Junxiao Shid9ee45c2014-02-27 15:38:11 -0700757} // namespace tests
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700758} // namespace nfd