blob: cbb3946c76f0e836165c57b749a4f6c49cc157c2 [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 Shi79494162014-04-02 18:25:11 -0700174 face1.reset();
175 limitedIo.afterOp();
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800176 }
177
178 void
Alexander Afanasyevbd220a02014-02-20 00:29:56 -0800179 channel2_onFaceCreated(const shared_ptr<Face>& newFace)
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700180 {
Junxiao Shi79494162014-04-02 18:25:11 -0700181 BOOST_CHECK(!static_cast<bool>(face2));
182 face2 = newFace;
Junxiao Shic099ddb2014-12-25 20:53:20 -0700183 face2->onReceiveInterest.connect(bind(&EndToEndFixture::face2_onReceiveInterest, this, _1));
184 face2->onReceiveData.connect(bind(&EndToEndFixture::face2_onReceiveData, this, _1));
185 face2->onFail.connect(bind(&EndToEndFixture::face2_onFail, this));
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700186
Junxiao Shi79494162014-04-02 18:25:11 -0700187 limitedIo.afterOp();
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700188 }
189
190 void
191 channel2_onConnectFailed(const std::string& reason)
192 {
193 BOOST_CHECK_MESSAGE(false, reason);
194
Junxiao Shi79494162014-04-02 18:25:11 -0700195 limitedIo.afterOp();
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700196 }
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800197
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700198 void
199 face2_onReceiveInterest(const Interest& interest)
200 {
Junxiao Shi79494162014-04-02 18:25:11 -0700201 face2_receivedInterests.push_back(interest);
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700202
Junxiao Shi79494162014-04-02 18:25:11 -0700203 limitedIo.afterOp();
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700204 }
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800205
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700206 void
207 face2_onReceiveData(const Data& data)
208 {
Junxiao Shi79494162014-04-02 18:25:11 -0700209 face2_receivedDatas.push_back(data);
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700210
Junxiao Shi79494162014-04-02 18:25:11 -0700211 limitedIo.afterOp();
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700212 }
213
214 void
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800215 face2_onFail()
216 {
Junxiao Shi79494162014-04-02 18:25:11 -0700217 face2.reset();
218 limitedIo.afterOp();
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800219 }
220
221 void
Alexander Afanasyevbd220a02014-02-20 00:29:56 -0800222 channel_onFaceCreated(const shared_ptr<Face>& newFace)
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800223 {
Junxiao Shi79494162014-04-02 18:25:11 -0700224 faces.push_back(newFace);
225 limitedIo.afterOp();
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800226 }
227
228 void
229 channel_onConnectFailed(const std::string& reason)
230 {
231 BOOST_CHECK_MESSAGE(false, reason);
232
Junxiao Shi79494162014-04-02 18:25:11 -0700233 limitedIo.afterOp();
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800234 }
235
236 void
237 checkFaceList(size_t shouldBe)
238 {
Junxiao Shi79494162014-04-02 18:25:11 -0700239 BOOST_CHECK_EQUAL(faces.size(), shouldBe);
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800240 }
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800241
Davide Pesaventoab1e8f22014-10-21 22:45:33 +0200242 void
243 connect(const shared_ptr<TcpChannel>& channel,
244 const std::string& remoteHost,
245 const std::string& remotePort)
246 {
Alexander Afanasyevbaba2532015-02-13 18:27:33 -0800247 channel->connect(tcp::Endpoint(boost::asio::ip::address::from_string(remoteHost),
248 boost::lexical_cast<uint16_t>(remotePort)),
Davide Pesaventoab1e8f22014-10-21 22:45:33 +0200249 bind(&EndToEndFixture::channel_onFaceCreated, this, _1),
250 bind(&EndToEndFixture::channel_onConnectFailed, this, _1));
251 }
252
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700253public:
Junxiao Shi79494162014-04-02 18:25:11 -0700254 LimitedIo limitedIo;
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700255
Junxiao Shi79494162014-04-02 18:25:11 -0700256 shared_ptr<Face> face1;
257 std::vector<Interest> face1_receivedInterests;
258 std::vector<Data> face1_receivedDatas;
259 shared_ptr<Face> face2;
260 std::vector<Interest> face2_receivedInterests;
261 std::vector<Data> face2_receivedDatas;
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800262
Davide Pesaventob499a602014-11-18 22:36:56 +0100263 std::list<shared_ptr<Face>> faces;
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700264};
265
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000266BOOST_FIXTURE_TEST_CASE(EndToEnd4, EndToEndFixture)
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700267{
Steve DiBenedettoca53ac62014-03-27 19:58:40 -0600268 TcpFactory factory1;
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700269
Steve DiBenedettoca53ac62014-03-27 19:58:40 -0600270 shared_ptr<TcpChannel> channel1 = factory1.createChannel("127.0.0.1", "20070");
271 factory1.createChannel("127.0.0.1", "20071");
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800272
Alexander Afanasyev53a6fd32014-03-23 00:00:04 -0700273 BOOST_CHECK_EQUAL(channel1->isListening(), false);
274
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700275 channel1->listen(bind(&EndToEndFixture::channel1_onFaceCreated, this, _1),
276 bind(&EndToEndFixture::channel1_onConnectFailed, this, _1));
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800277
Alexander Afanasyev53a6fd32014-03-23 00:00:04 -0700278 BOOST_CHECK_EQUAL(channel1->isListening(), true);
279
Steve DiBenedettoca53ac62014-03-27 19:58:40 -0600280 TcpFactory factory2;
281
282 shared_ptr<TcpChannel> channel2 = factory2.createChannel("127.0.0.2", "20070");
283 factory2.createChannel("127.0.0.2", "20071");
284
Chengyu Fan4381fb62015-01-14 11:37:04 -0700285 factory2.createFace(FaceUri("tcp4://127.0.0.1:20070"),
Yukai Tu7c90e6d2015-07-11 12:21:46 +0800286 ndn::nfd::FACE_PERSISTENCY_PERSISTENT,
Steve DiBenedettoca53ac62014-03-27 19:58:40 -0600287 bind(&EndToEndFixture::channel2_onFaceCreated, this, _1),
288 bind(&EndToEndFixture::channel2_onConnectFailed, this, _1));
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700289
Junxiao Shi79494162014-04-02 18:25:11 -0700290 BOOST_CHECK_MESSAGE(limitedIo.run(2, time::seconds(10)) == LimitedIo::EXCEED_OPS,
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700291 "TcpChannel error: cannot connect or cannot accept connection");
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700292
Junxiao Shi79494162014-04-02 18:25:11 -0700293 BOOST_REQUIRE(static_cast<bool>(face1));
294 BOOST_REQUIRE(static_cast<bool>(face2));
Alexander Afanasyevbd220a02014-02-20 00:29:56 -0800295
Yukai Tu731f0d72015-07-04 11:14:44 +0800296 BOOST_CHECK_EQUAL(face1->getPersistency(), ndn::nfd::FACE_PERSISTENCY_ON_DEMAND);
297 BOOST_CHECK_EQUAL(face2->getPersistency(), ndn::nfd::FACE_PERSISTENCY_PERSISTENT);
Davide Pesavento94279412015-02-27 01:29:32 +0100298 BOOST_CHECK_EQUAL(face1->isMultiAccess(), false);
299 BOOST_CHECK_EQUAL(face2->isMultiAccess(), false);
Alexander Afanasyev355c0662014-03-20 18:08:17 -0700300
Junxiao Shi79494162014-04-02 18:25:11 -0700301 BOOST_CHECK_EQUAL(face2->getRemoteUri().toString(), "tcp4://127.0.0.1:20070");
302 BOOST_CHECK_EQUAL(face1->getLocalUri().toString(), "tcp4://127.0.0.1:20070");
303 // face1 has an unknown remoteUri, since the source port is automatically chosen by OS
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000304
Junxiao Shi79494162014-04-02 18:25:11 -0700305 BOOST_CHECK_EQUAL(face1->isLocal(), true);
306 BOOST_CHECK_EQUAL(face2->isLocal(), true);
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000307
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700308 shared_ptr<Interest> interest1 = makeInterest("ndn:/TpnzGvW9R");
309 shared_ptr<Data> data1 = makeData("ndn:/KfczhUqVix");
310 shared_ptr<Interest> interest2 = makeInterest("ndn:/QWiIMfj5sL");
311 shared_ptr<Data> data2 = makeData("ndn:/XNBV796f");
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000312
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700313 face1->sendInterest(*interest1);
314 face1->sendInterest(*interest1);
315 face1->sendInterest(*interest1);
316 face1->sendData (*data1 );
Junxiao Shi5dd26c32014-07-20 23:15:14 -0700317 size_t nBytesSent1 = interest1->wireEncode().size() * 3 + data1->wireEncode().size();
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700318 face2->sendInterest(*interest2);
319 face2->sendData (*data2 );
320 face2->sendData (*data2 );
321 face2->sendData (*data2 );
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000322
Junxiao Shi79494162014-04-02 18:25:11 -0700323 BOOST_CHECK_MESSAGE(limitedIo.run(8, time::seconds(10)) == LimitedIo::EXCEED_OPS,
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000324 "TcpChannel error: cannot send or receive Interest/Data packets");
325
Junxiao Shi79494162014-04-02 18:25:11 -0700326 BOOST_REQUIRE_EQUAL(face1_receivedInterests.size(), 1);
327 BOOST_REQUIRE_EQUAL(face1_receivedDatas .size(), 3);
328 BOOST_REQUIRE_EQUAL(face2_receivedInterests.size(), 3);
329 BOOST_REQUIRE_EQUAL(face2_receivedDatas .size(), 1);
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000330
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700331 BOOST_CHECK_EQUAL(face1_receivedInterests[0].getName(), interest2->getName());
332 BOOST_CHECK_EQUAL(face1_receivedDatas [0].getName(), data2->getName());
333 BOOST_CHECK_EQUAL(face2_receivedInterests[0].getName(), interest1->getName());
334 BOOST_CHECK_EQUAL(face2_receivedDatas [0].getName(), data1->getName());
Alexander Afanasyev7e698e62014-03-07 16:48:35 +0000335
Junxiao Shi5dd26c32014-07-20 23:15:14 -0700336 // needed to ensure NOutBytes counters are accurate
337 limitedIo.run(LimitedIo::UNLIMITED_OPS, time::seconds(1));
338
Junxiao Shi79494162014-04-02 18:25:11 -0700339 const FaceCounters& counters1 = face1->getCounters();
Junxiao Shi6e694322014-04-03 10:27:13 -0700340 BOOST_CHECK_EQUAL(counters1.getNInInterests() , 1);
341 BOOST_CHECK_EQUAL(counters1.getNInDatas() , 3);
342 BOOST_CHECK_EQUAL(counters1.getNOutInterests(), 3);
343 BOOST_CHECK_EQUAL(counters1.getNOutDatas() , 1);
Junxiao Shi5dd26c32014-07-20 23:15:14 -0700344 BOOST_CHECK_EQUAL(counters1.getNOutBytes(), nBytesSent1);
Alexander Afanasyev7e698e62014-03-07 16:48:35 +0000345
Junxiao Shi79494162014-04-02 18:25:11 -0700346 const FaceCounters& counters2 = face2->getCounters();
Junxiao Shi6e694322014-04-03 10:27:13 -0700347 BOOST_CHECK_EQUAL(counters2.getNInInterests() , 3);
348 BOOST_CHECK_EQUAL(counters2.getNInDatas() , 1);
349 BOOST_CHECK_EQUAL(counters2.getNOutInterests(), 1);
350 BOOST_CHECK_EQUAL(counters2.getNOutDatas() , 3);
Junxiao Shi5dd26c32014-07-20 23:15:14 -0700351 BOOST_CHECK_EQUAL(counters2.getNInBytes(), nBytesSent1);
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000352}
353
354BOOST_FIXTURE_TEST_CASE(EndToEnd6, EndToEndFixture)
355{
Steve DiBenedettoca53ac62014-03-27 19:58:40 -0600356 TcpFactory factory1;
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000357
Steve DiBenedettoca53ac62014-03-27 19:58:40 -0600358 shared_ptr<TcpChannel> channel1 = factory1.createChannel("::1", "20070");
359 shared_ptr<TcpChannel> channel2 = factory1.createChannel("::1", "20071");
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000360
361 channel1->listen(bind(&EndToEndFixture::channel1_onFaceCreated, this, _1),
362 bind(&EndToEndFixture::channel1_onConnectFailed, this, _1));
363
Steve DiBenedettoca53ac62014-03-27 19:58:40 -0600364 TcpFactory factory2;
365
366 factory2.createChannel("::2", "20070");
367
Chengyu Fan4381fb62015-01-14 11:37:04 -0700368 factory2.createFace(FaceUri("tcp6://[::1]:20070"),
Yukai Tu7c90e6d2015-07-11 12:21:46 +0800369 ndn::nfd::FACE_PERSISTENCY_PERSISTENT,
Steve DiBenedettoca53ac62014-03-27 19:58:40 -0600370 bind(&EndToEndFixture::channel2_onFaceCreated, this, _1),
371 bind(&EndToEndFixture::channel2_onConnectFailed, this, _1));
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000372
Junxiao Shi79494162014-04-02 18:25:11 -0700373 BOOST_CHECK_MESSAGE(limitedIo.run(2, time::seconds(10)) == LimitedIo::EXCEED_OPS,
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000374 "TcpChannel error: cannot connect or cannot accept connection");
375
Junxiao Shi79494162014-04-02 18:25:11 -0700376 BOOST_REQUIRE(static_cast<bool>(face1));
377 BOOST_REQUIRE(static_cast<bool>(face2));
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000378
Junxiao Shi79494162014-04-02 18:25:11 -0700379 BOOST_CHECK_EQUAL(face2->getRemoteUri().toString(), "tcp6://[::1]:20070");
380 BOOST_CHECK_EQUAL(face1->getLocalUri().toString(), "tcp6://[::1]:20070");
381 // face1 has an unknown remoteUri, since the source port is automatically chosen by OS
Alexander Afanasyeva39b90b2014-03-05 15:31:00 +0000382
Junxiao Shi79494162014-04-02 18:25:11 -0700383 BOOST_CHECK_EQUAL(face1->isLocal(), true);
384 BOOST_CHECK_EQUAL(face2->isLocal(), true);
Alexander Afanasyevbd220a02014-02-20 00:29:56 -0800385
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700386 shared_ptr<Interest> interest1 = makeInterest("ndn:/TpnzGvW9R");
387 shared_ptr<Data> data1 = makeData("ndn:/KfczhUqVix");
388 shared_ptr<Interest> interest2 = makeInterest("ndn:/QWiIMfj5sL");
389 shared_ptr<Data> data2 = makeData("ndn:/XNBV796f");
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700390
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700391 face1->sendInterest(*interest1);
392 face1->sendData (*data1 );
393 face2->sendInterest(*interest2);
394 face2->sendData (*data2 );
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700395
Junxiao Shi79494162014-04-02 18:25:11 -0700396 BOOST_CHECK_MESSAGE(limitedIo.run(4, time::seconds(10)) == LimitedIo::EXCEED_OPS,
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700397 "TcpChannel error: cannot send or receive Interest/Data packets");
398
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700399
Junxiao Shi79494162014-04-02 18:25:11 -0700400 BOOST_REQUIRE_EQUAL(face1_receivedInterests.size(), 1);
401 BOOST_REQUIRE_EQUAL(face1_receivedDatas .size(), 1);
402 BOOST_REQUIRE_EQUAL(face2_receivedInterests.size(), 1);
403 BOOST_REQUIRE_EQUAL(face2_receivedDatas .size(), 1);
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800404
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700405 BOOST_CHECK_EQUAL(face1_receivedInterests[0].getName(), interest2->getName());
406 BOOST_CHECK_EQUAL(face1_receivedDatas [0].getName(), data2->getName());
407 BOOST_CHECK_EQUAL(face2_receivedInterests[0].getName(), interest1->getName());
408 BOOST_CHECK_EQUAL(face2_receivedDatas [0].getName(), data1->getName());
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700409}
410
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800411BOOST_FIXTURE_TEST_CASE(MultipleAccepts, EndToEndFixture)
412{
Alexander Afanasyev0eb70652014-02-27 18:35:07 -0800413 TcpFactory factory;
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800414
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800415 shared_ptr<TcpChannel> channel1 = factory.createChannel("127.0.0.1", "20070");
416 shared_ptr<TcpChannel> channel2 = factory.createChannel("127.0.0.1", "20071");
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800417
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800418 channel1->listen(bind(&EndToEndFixture::channel_onFaceCreated, this, _1),
419 bind(&EndToEndFixture::channel_onConnectFailed, this, _1));
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800420
Alexander Afanasyevbaba2532015-02-13 18:27:33 -0800421 using namespace boost::asio;
422 channel2->connect(tcp::Endpoint(ip::address::from_string("127.0.0.1"), 20070),
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800423 bind(&EndToEndFixture::channel_onFaceCreated, this, _1),
424 bind(&EndToEndFixture::channel_onConnectFailed, this, _1),
Alexander Afanasyevc1e2ee02014-02-25 17:02:07 -0800425 time::seconds(4)); // very short timeout
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800426
Junxiao Shi79494162014-04-02 18:25:11 -0700427 BOOST_CHECK_MESSAGE(limitedIo.run(2, time::seconds(10)) == LimitedIo::EXCEED_OPS,
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700428 "TcpChannel error: cannot connect or cannot accept connection");
429
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800430
Junxiao Shi79494162014-04-02 18:25:11 -0700431 BOOST_CHECK_EQUAL(faces.size(), 2);
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800432
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800433 shared_ptr<TcpChannel> channel3 = factory.createChannel("127.0.0.1", "20072");
Alexander Afanasyevbaba2532015-02-13 18:27:33 -0800434 channel3->connect(tcp::Endpoint(ip::address::from_string("127.0.0.1"), 20070),
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800435 bind(&EndToEndFixture::channel_onFaceCreated, this, _1),
436 bind(&EndToEndFixture::channel_onConnectFailed, this, _1),
Alexander Afanasyevc1e2ee02014-02-25 17:02:07 -0800437 time::seconds(4)); // very short timeout
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800438
439
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800440 shared_ptr<TcpChannel> channel4 = factory.createChannel("127.0.0.1", "20073");
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800441
442 BOOST_CHECK_NE(channel3, channel4);
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800443
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700444 scheduler::schedule(time::seconds(1),
Davide Pesaventoab1e8f22014-10-21 22:45:33 +0200445 bind(&EndToEndFixture::connect, this, channel4, "127.0.0.1", "20070"));
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800446
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -0700447 scheduler::schedule(time::milliseconds(500),
Alexander Afanasyev7329e022014-02-27 14:47:22 -0800448 bind(&EndToEndFixture::checkFaceList, this, 4));
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800449
Junxiao Shi79494162014-04-02 18:25:11 -0700450 BOOST_CHECK_MESSAGE(limitedIo.run(4,// 2 connects and 2 accepts
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700451 time::seconds(10)) == LimitedIo::EXCEED_OPS,
452 "TcpChannel error: cannot connect or cannot accept multiple connections");
Alexander Afanasyev7329e022014-02-27 14:47:22 -0800453
Junxiao Shi79494162014-04-02 18:25:11 -0700454 BOOST_CHECK_EQUAL(faces.size(), 6);
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800455}
456
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800457BOOST_FIXTURE_TEST_CASE(FaceClosing, EndToEndFixture)
458{
Alexander Afanasyev0eb70652014-02-27 18:35:07 -0800459 TcpFactory factory;
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800460
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800461 shared_ptr<TcpChannel> channel1 = factory.createChannel("127.0.0.1", "20070");
462 shared_ptr<TcpChannel> channel2 = factory.createChannel("127.0.0.1", "20071");
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800463
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800464 channel1->listen(bind(&EndToEndFixture::channel1_onFaceCreated, this, _1),
465 bind(&EndToEndFixture::channel1_onConnectFailed, this, _1));
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800466
Alexander Afanasyevbaba2532015-02-13 18:27:33 -0800467 using namespace boost::asio;
468 channel2->connect(tcp::Endpoint(ip::address::from_string("127.0.0.1"), 20070),
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800469 bind(&EndToEndFixture::channel2_onFaceCreated, this, _1),
470 bind(&EndToEndFixture::channel2_onConnectFailed, this, _1),
Alexander Afanasyevc1e2ee02014-02-25 17:02:07 -0800471 time::seconds(4)); // very short timeout
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -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 "TcpChannel error: cannot connect or cannot accept connection");
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800475
476 BOOST_CHECK_EQUAL(channel1->size(), 1);
477 BOOST_CHECK_EQUAL(channel2->size(), 1);
478
Junxiao Shi79494162014-04-02 18:25:11 -0700479 BOOST_REQUIRE(static_cast<bool>(face1));
480 BOOST_CHECK(static_cast<bool>(face2));
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800481
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700482 // Face::close must be invoked during io run to be counted as an op
Junxiao Shi79494162014-04-02 18:25:11 -0700483 scheduler::schedule(time::milliseconds(100), bind(&Face::close, face1));
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800484
Junxiao Shi79494162014-04-02 18:25:11 -0700485 BOOST_CHECK_MESSAGE(limitedIo.run(2, time::seconds(10)) == LimitedIo::EXCEED_OPS,
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700486 "FaceClosing error: cannot properly close faces");
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800487
488 // both faces should get closed
Junxiao Shi79494162014-04-02 18:25:11 -0700489 BOOST_CHECK(!static_cast<bool>(face1));
490 BOOST_CHECK(!static_cast<bool>(face2));
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800491
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800492 BOOST_CHECK_EQUAL(channel1->size(), 0);
493 BOOST_CHECK_EQUAL(channel2->size(), 0);
494}
495
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700496class SimpleEndToEndFixture : protected BaseFixture
497{
498public:
499 void
500 onFaceCreated(const shared_ptr<Face>& face)
501 {
Junxiao Shic099ddb2014-12-25 20:53:20 -0700502 face->onReceiveInterest.connect(bind(&SimpleEndToEndFixture::onReceiveInterest, this, _1));
503 face->onReceiveData.connect(bind(&SimpleEndToEndFixture::onReceiveData, this, _1));
504 face->onFail.connect(bind(&SimpleEndToEndFixture::onFail, this, face));
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700505
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700506 limitedIo.afterOp();
507 }
508
509 void
510 onConnectFailed(const std::string& reason)
511 {
512 BOOST_CHECK_MESSAGE(false, reason);
513
514 limitedIo.afterOp();
515 }
516
517 void
518 onReceiveInterest(const Interest& interest)
519 {
520 receivedInterests.push_back(interest);
521
522 limitedIo.afterOp();
523 }
524
525 void
526 onReceiveData(const Data& data)
527 {
528 receivedDatas.push_back(data);
529
530 limitedIo.afterOp();
531 }
532
533 void
534 onFail(const shared_ptr<Face>& face)
535 {
536 limitedIo.afterOp();
537 }
538
539public:
540 LimitedIo limitedIo;
541
542 std::vector<Interest> receivedInterests;
543 std::vector<Data> receivedDatas;
544};
545
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700546BOOST_FIXTURE_TEST_CASE_TEMPLATE(FaceCorruptedInput, Dataset,
547 CorruptedPackets, SimpleEndToEndFixture)
548{
Davide Pesavento2231ab52015-03-16 00:15:13 +0100549 // test with non-local Face
550 boost::asio::ip::address_v4 someIpv4Address;
Davide Pesaventob499a602014-11-18 22:36:56 +0100551 for (const auto& netif : listNetworkInterfaces()) {
552 if (!netif.isLoopback() && netif.isUp() && !netif.ipv4Addresses.empty()) {
Davide Pesavento2231ab52015-03-16 00:15:13 +0100553 someIpv4Address = netif.ipv4Addresses.front();
Davide Pesaventob499a602014-11-18 22:36:56 +0100554 break;
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700555 }
Davide Pesaventob499a602014-11-18 22:36:56 +0100556 }
Davide Pesavento2231ab52015-03-16 00:15:13 +0100557 if (someIpv4Address.is_unspecified()) {
Davide Pesaventob499a602014-11-18 22:36:56 +0100558 BOOST_TEST_MESSAGE("Test with non-local Face cannot be run "
Davide Pesavento2231ab52015-03-16 00:15:13 +0100559 "(no non-loopback interface with IPv4 address found)");
Davide Pesaventob499a602014-11-18 22:36:56 +0100560 return;
561 }
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700562
563 TcpFactory factory;
Davide Pesavento2231ab52015-03-16 00:15:13 +0100564 tcp::Endpoint endpoint(someIpv4Address, 20070);
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700565
Davide Pesavento2231ab52015-03-16 00:15:13 +0100566 shared_ptr<TcpChannel> channel = factory.createChannel(endpoint);
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700567 channel->listen(bind(&SimpleEndToEndFixture::onFaceCreated, this, _1),
568 bind(&SimpleEndToEndFixture::onConnectFailed, this, _1));
569 BOOST_REQUIRE_EQUAL(channel->isListening(), true);
570
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700571 DummyStreamSender<boost::asio::ip::tcp, Dataset> sender;
Chengyu Fan4381fb62015-01-14 11:37:04 -0700572 sender.start(endpoint);
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700573
574 BOOST_CHECK_MESSAGE(limitedIo.run(LimitedIo::UNLIMITED_OPS,
575 time::seconds(1)) == LimitedIo::EXCEED_TIME,
576 "Exception thrown for " + Dataset::getName());
577}
578
Alexander Afanasyev18861802014-06-13 17:49:03 -0700579class FaceCreateTimeoutFixture : protected BaseFixture
580{
581public:
582 void
583 onFaceCreated(const shared_ptr<Face>& newFace)
584 {
585 BOOST_CHECK_MESSAGE(false, "Timeout expected");
586 BOOST_CHECK(!static_cast<bool>(face1));
587 face1 = newFace;
588
589 limitedIo.afterOp();
590 }
591
592 void
593 onConnectFailed(const std::string& reason)
594 {
595 BOOST_CHECK_MESSAGE(true, reason);
596
597 limitedIo.afterOp();
598 }
599
600public:
601 LimitedIo limitedIo;
602
603 shared_ptr<Face> face1;
604};
605
Alexander Afanasyev18861802014-06-13 17:49:03 -0700606BOOST_FIXTURE_TEST_CASE(FaceCreateTimeout, FaceCreateTimeoutFixture)
607{
608 TcpFactory factory;
609 shared_ptr<TcpChannel> channel = factory.createChannel("0.0.0.0", "20070");
610
Chengyu Fan4381fb62015-01-14 11:37:04 -0700611 factory.createFace(FaceUri("tcp4://192.0.2.1:20070"),
Yukai Tu7c90e6d2015-07-11 12:21:46 +0800612 ndn::nfd::FACE_PERSISTENCY_PERSISTENT,
Alexander Afanasyev18861802014-06-13 17:49:03 -0700613 bind(&FaceCreateTimeoutFixture::onFaceCreated, this, _1),
614 bind(&FaceCreateTimeoutFixture::onConnectFailed, this, _1));
615
616 BOOST_CHECK_MESSAGE(limitedIo.run(1, time::seconds(10)) == LimitedIo::EXCEED_OPS,
617 "TcpChannel error: cannot connect or cannot accept connection");
618
619 BOOST_CHECK_EQUAL(static_cast<bool>(face1), false);
620}
621
Davide Pesavento3f5655f2014-08-30 21:38:59 +0200622BOOST_FIXTURE_TEST_CASE(Bug1856, EndToEndFixture)
623{
624 TcpFactory factory1;
625
626 shared_ptr<TcpChannel> channel1 = factory1.createChannel("127.0.0.1", "20070");
627 factory1.createChannel("127.0.0.1", "20071");
628
629 BOOST_CHECK_EQUAL(channel1->isListening(), false);
630
631 channel1->listen(bind(&EndToEndFixture::channel1_onFaceCreated, this, _1),
632 bind(&EndToEndFixture::channel1_onConnectFailed, this, _1));
633
634 BOOST_CHECK_EQUAL(channel1->isListening(), true);
635
636 TcpFactory factory2;
637
638 shared_ptr<TcpChannel> channel2 = factory2.createChannel("127.0.0.2", "20070");
639 factory2.createChannel("127.0.0.2", "20071");
640
Chengyu Fan4381fb62015-01-14 11:37:04 -0700641 factory2.createFace(FaceUri("tcp4://127.0.0.1:20070"),
Yukai Tu7c90e6d2015-07-11 12:21:46 +0800642 ndn::nfd::FACE_PERSISTENCY_PERSISTENT,
Davide Pesavento3f5655f2014-08-30 21:38:59 +0200643 bind(&EndToEndFixture::channel2_onFaceCreated, this, _1),
644 bind(&EndToEndFixture::channel2_onConnectFailed, this, _1));
645
646 BOOST_CHECK_MESSAGE(limitedIo.run(2, time::seconds(10)) == LimitedIo::EXCEED_OPS,
647 "TcpChannel error: cannot connect or cannot accept connection");
648
649 BOOST_REQUIRE(static_cast<bool>(face1));
650 BOOST_REQUIRE(static_cast<bool>(face2));
651
652 std::ostringstream hugeName;
653 hugeName << "/huge-name/";
Junxiao Shi39cd6332014-11-06 21:53:18 -0700654 for (size_t i = 0; i < ndn::MAX_NDN_PACKET_SIZE; i++)
Davide Pesavento3f5655f2014-08-30 21:38:59 +0200655 hugeName << 'a';
656
657 shared_ptr<Interest> interest = makeInterest("ndn:/KfczhUqVix");
658 shared_ptr<Interest> hugeInterest = makeInterest(hugeName.str());
659
660 face1->sendInterest(*hugeInterest);
661 face2->sendInterest(*interest);
662 face2->sendInterest(*interest);
663
664 limitedIo.run(LimitedIo::UNLIMITED_OPS, time::seconds(1));
665 BOOST_TEST_MESSAGE("Unexpected assertion test passed");
666}
Alexander Afanasyev18861802014-06-13 17:49:03 -0700667
Alexander Afanasyev70aaf8a2014-12-13 00:44:22 -0800668class FakeNetworkInterfaceFixture : public BaseFixture
669{
670public:
671 FakeNetworkInterfaceFixture()
672 {
673 using namespace boost::asio::ip;
674
675 auto fakeInterfaces = make_shared<std::vector<NetworkInterfaceInfo>>();
676
677 fakeInterfaces->push_back(
678 NetworkInterfaceInfo {0, "eth0",
679 ethernet::Address::fromString("3e:15:c2:8b:65:00"),
680 {address_v4::from_string("0.0.0.0")},
681 {address_v6::from_string("::")},
682 address_v4(),
683 IFF_UP});
684 fakeInterfaces->push_back(
685 NetworkInterfaceInfo {1, "eth0",
686 ethernet::Address::fromString("3e:15:c2:8b:65:00"),
687 {address_v4::from_string("192.168.2.1"), address_v4::from_string("192.168.2.2")},
688 {},
689 address_v4::from_string("192.168.2.255"),
690 0});
691 fakeInterfaces->push_back(
692 NetworkInterfaceInfo {2, "eth1",
693 ethernet::Address::fromString("3e:15:c2:8b:65:00"),
694 {address_v4::from_string("198.51.100.1")},
695 {address_v6::from_string("2001:db8::2"), address_v6::from_string("2001:db8::3")},
696 address_v4::from_string("198.51.100.255"),
697 IFF_MULTICAST | IFF_BROADCAST | IFF_UP});
698
699 setDebugNetworkInterfaces(fakeInterfaces);
700 }
701
702 ~FakeNetworkInterfaceFixture()
703 {
704 setDebugNetworkInterfaces(nullptr);
705 }
706};
707
708BOOST_FIXTURE_TEST_CASE(Bug2292, FakeNetworkInterfaceFixture)
709{
710 using namespace boost::asio::ip;
711
712 TcpFactory factory;
713 factory.prohibitEndpoint(tcp::Endpoint(address_v4::from_string("192.168.2.1"), 1024));
714 BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 1);
715 BOOST_CHECK((factory.m_prohibitedEndpoints ==
716 std::set<tcp::Endpoint> {
717 tcp::Endpoint(address_v4::from_string("192.168.2.1"), 1024),
718 }));
719
720 factory.m_prohibitedEndpoints.clear();
721 factory.prohibitEndpoint(tcp::Endpoint(address_v6::from_string("2001:db8::1"), 2048));
722 BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 1);
723 BOOST_CHECK((factory.m_prohibitedEndpoints ==
724 std::set<tcp::Endpoint> {
725 tcp::Endpoint(address_v6::from_string("2001:db8::1"), 2048)
726 }));
727
728 factory.m_prohibitedEndpoints.clear();
729 factory.prohibitEndpoint(tcp::Endpoint(address_v4(), 1024));
730 BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 4);
731 BOOST_CHECK((factory.m_prohibitedEndpoints ==
732 std::set<tcp::Endpoint> {
733 tcp::Endpoint(address_v4::from_string("192.168.2.1"), 1024),
734 tcp::Endpoint(address_v4::from_string("192.168.2.2"), 1024),
735 tcp::Endpoint(address_v4::from_string("198.51.100.1"), 1024),
736 tcp::Endpoint(address_v4::from_string("0.0.0.0"), 1024)
737 }));
738
739 factory.m_prohibitedEndpoints.clear();
740 factory.prohibitEndpoint(tcp::Endpoint(address_v6(), 2048));
741 BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 3);
742 BOOST_CHECK((factory.m_prohibitedEndpoints ==
743 std::set<tcp::Endpoint> {
744 tcp::Endpoint(address_v6::from_string("2001:db8::2"), 2048),
745 tcp::Endpoint(address_v6::from_string("2001:db8::3"), 2048),
746 tcp::Endpoint(address_v6::from_string("::"), 2048)
747 }));
748}
749
Yukai Tu16aabbc2015-10-06 05:08:42 -0700750BOOST_AUTO_TEST_SUITE_END() // TestTcp
751BOOST_AUTO_TEST_SUITE_END() // Face
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700752
Junxiao Shid9ee45c2014-02-27 15:38:11 -0700753} // namespace tests
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700754} // namespace nfd