blob: 51c4ae1bd63625d66fd7b07dfb0ed58ab85a9565 [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"
Alexander Afanasyev650028d2014-04-25 18:39:10 -070027#include "core/resolver.hpp"
28#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
101 factory.createFace(FaceUri("tcp4://127.0.0.1"),
102 bind(&FaceCreateFixture::ignore, this),
103 bind(&FaceCreateFixture::failIfError, this, _1));
104
105 factory.createFace(FaceUri("tcp4://127.0.0.1/"),
106 bind(&FaceCreateFixture::ignore, this),
107 bind(&FaceCreateFixture::failIfError, this, _1));
108
109 factory.createFace(FaceUri("tcp4://127.0.0.1/path"),
110 bind(&FaceCreateFixture::ignore, this),
111 bind(&FaceCreateFixture::checkError, this, _1, "Invalid URI"));
Alexander Afanasyev86bc91a2014-08-28 22:29:16 -0700112}
113
Junxiao Shid9ee45c2014-02-27 15:38:11 -0700114class EndToEndFixture : protected BaseFixture
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700115{
116public:
117 void
Alexander Afanasyevbd220a02014-02-20 00:29:56 -0800118 channel1_onFaceCreated(const shared_ptr<Face>& newFace)
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700119 {
Junxiao Shi79494162014-04-02 18:25:11 -0700120 BOOST_CHECK(!static_cast<bool>(face1));
121 face1 = newFace;
Junxiao Shic099ddb2014-12-25 20:53:20 -0700122 face1->onReceiveInterest.connect(bind(&EndToEndFixture::face1_onReceiveInterest, this, _1));
123 face1->onReceiveData.connect(bind(&EndToEndFixture::face1_onReceiveData, this, _1));
124 face1->onFail.connect(bind(&EndToEndFixture::face1_onFail, this));
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700125
Junxiao Shi79494162014-04-02 18:25:11 -0700126 limitedIo.afterOp();
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700127 }
128
129 void
130 channel1_onConnectFailed(const std::string& reason)
131 {
132 BOOST_CHECK_MESSAGE(false, reason);
133
Junxiao Shi79494162014-04-02 18:25:11 -0700134 limitedIo.afterOp();
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700135 }
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800136
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700137 void
138 face1_onReceiveInterest(const Interest& interest)
139 {
Junxiao Shi79494162014-04-02 18:25:11 -0700140 face1_receivedInterests.push_back(interest);
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700141
Junxiao Shi79494162014-04-02 18:25:11 -0700142 limitedIo.afterOp();
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700143 }
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800144
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700145 void
146 face1_onReceiveData(const Data& data)
147 {
Junxiao Shi79494162014-04-02 18:25:11 -0700148 face1_receivedDatas.push_back(data);
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700149
Junxiao Shi79494162014-04-02 18:25:11 -0700150 limitedIo.afterOp();
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700151 }
152
153 void
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800154 face1_onFail()
155 {
Junxiao Shi79494162014-04-02 18:25:11 -0700156 face1.reset();
157 limitedIo.afterOp();
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800158 }
159
160 void
Alexander Afanasyevbd220a02014-02-20 00:29:56 -0800161 channel2_onFaceCreated(const shared_ptr<Face>& newFace)
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700162 {
Junxiao Shi79494162014-04-02 18:25:11 -0700163 BOOST_CHECK(!static_cast<bool>(face2));
164 face2 = newFace;
Junxiao Shic099ddb2014-12-25 20:53:20 -0700165 face2->onReceiveInterest.connect(bind(&EndToEndFixture::face2_onReceiveInterest, this, _1));
166 face2->onReceiveData.connect(bind(&EndToEndFixture::face2_onReceiveData, this, _1));
167 face2->onFail.connect(bind(&EndToEndFixture::face2_onFail, this));
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700168
Junxiao Shi79494162014-04-02 18:25:11 -0700169 limitedIo.afterOp();
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700170 }
171
172 void
173 channel2_onConnectFailed(const std::string& reason)
174 {
175 BOOST_CHECK_MESSAGE(false, reason);
176
Junxiao Shi79494162014-04-02 18:25:11 -0700177 limitedIo.afterOp();
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700178 }
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800179
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700180 void
181 face2_onReceiveInterest(const Interest& interest)
182 {
Junxiao Shi79494162014-04-02 18:25:11 -0700183 face2_receivedInterests.push_back(interest);
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700184
Junxiao Shi79494162014-04-02 18:25:11 -0700185 limitedIo.afterOp();
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700186 }
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800187
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700188 void
189 face2_onReceiveData(const Data& data)
190 {
Junxiao Shi79494162014-04-02 18:25:11 -0700191 face2_receivedDatas.push_back(data);
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700192
Junxiao Shi79494162014-04-02 18:25:11 -0700193 limitedIo.afterOp();
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700194 }
195
196 void
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800197 face2_onFail()
198 {
Junxiao Shi79494162014-04-02 18:25:11 -0700199 face2.reset();
200 limitedIo.afterOp();
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800201 }
202
203 void
Alexander Afanasyevbd220a02014-02-20 00:29:56 -0800204 channel_onFaceCreated(const shared_ptr<Face>& newFace)
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800205 {
Junxiao Shi79494162014-04-02 18:25:11 -0700206 faces.push_back(newFace);
207 limitedIo.afterOp();
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800208 }
209
210 void
211 channel_onConnectFailed(const std::string& reason)
212 {
213 BOOST_CHECK_MESSAGE(false, reason);
214
Junxiao Shi79494162014-04-02 18:25:11 -0700215 limitedIo.afterOp();
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800216 }
217
218 void
219 checkFaceList(size_t shouldBe)
220 {
Junxiao Shi79494162014-04-02 18:25:11 -0700221 BOOST_CHECK_EQUAL(faces.size(), shouldBe);
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800222 }
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800223
Davide Pesaventoab1e8f22014-10-21 22:45:33 +0200224 void
225 connect(const shared_ptr<TcpChannel>& channel,
226 const std::string& remoteHost,
227 const std::string& remotePort)
228 {
229 channel->connect(remoteHost, remotePort,
230 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
266 factory2.createFace(FaceUri("tcp://127.0.0.1:20070"),
267 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
351 factory2.createFace(FaceUri("tcp://[::1]:20070"),
352 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 Afanasyeva16abd22014-01-31 18:12:29 -0800408 channel2->connect("127.0.0.1", "20070",
409 bind(&EndToEndFixture::channel_onFaceCreated, this, _1),
410 bind(&EndToEndFixture::channel_onConnectFailed, this, _1),
Alexander Afanasyevc1e2ee02014-02-25 17:02:07 -0800411 time::seconds(4)); // very short timeout
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800412
Junxiao Shi79494162014-04-02 18:25:11 -0700413 BOOST_CHECK_MESSAGE(limitedIo.run(2, time::seconds(10)) == LimitedIo::EXCEED_OPS,
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700414 "TcpChannel error: cannot connect or cannot accept connection");
415
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800416
Junxiao Shi79494162014-04-02 18:25:11 -0700417 BOOST_CHECK_EQUAL(faces.size(), 2);
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800418
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800419 shared_ptr<TcpChannel> channel3 = factory.createChannel("127.0.0.1", "20072");
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800420 channel3->connect("127.0.0.1", "20070",
421 bind(&EndToEndFixture::channel_onFaceCreated, this, _1),
422 bind(&EndToEndFixture::channel_onConnectFailed, this, _1),
Alexander Afanasyevc1e2ee02014-02-25 17:02:07 -0800423 time::seconds(4)); // very short timeout
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800424
425
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800426 shared_ptr<TcpChannel> channel4 = factory.createChannel("127.0.0.1", "20073");
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800427
428 BOOST_CHECK_NE(channel3, channel4);
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800429
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700430 scheduler::schedule(time::seconds(1),
Davide Pesaventoab1e8f22014-10-21 22:45:33 +0200431 bind(&EndToEndFixture::connect, this, channel4, "127.0.0.1", "20070"));
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800432
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -0700433 scheduler::schedule(time::milliseconds(500),
Alexander Afanasyev7329e022014-02-27 14:47:22 -0800434 bind(&EndToEndFixture::checkFaceList, this, 4));
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800435
Junxiao Shi79494162014-04-02 18:25:11 -0700436 BOOST_CHECK_MESSAGE(limitedIo.run(4,// 2 connects and 2 accepts
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700437 time::seconds(10)) == LimitedIo::EXCEED_OPS,
438 "TcpChannel error: cannot connect or cannot accept multiple connections");
Alexander Afanasyev7329e022014-02-27 14:47:22 -0800439
Junxiao Shi79494162014-04-02 18:25:11 -0700440 BOOST_CHECK_EQUAL(faces.size(), 6);
Alexander Afanasyeva16abd22014-01-31 18:12:29 -0800441}
442
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800443
444BOOST_FIXTURE_TEST_CASE(FaceClosing, EndToEndFixture)
445{
Alexander Afanasyev0eb70652014-02-27 18:35:07 -0800446 TcpFactory factory;
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800447
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800448 shared_ptr<TcpChannel> channel1 = factory.createChannel("127.0.0.1", "20070");
449 shared_ptr<TcpChannel> channel2 = factory.createChannel("127.0.0.1", "20071");
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800450
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800451 channel1->listen(bind(&EndToEndFixture::channel1_onFaceCreated, this, _1),
452 bind(&EndToEndFixture::channel1_onConnectFailed, this, _1));
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800453
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800454 channel2->connect("127.0.0.1", "20070",
455 bind(&EndToEndFixture::channel2_onFaceCreated, this, _1),
456 bind(&EndToEndFixture::channel2_onConnectFailed, this, _1),
Alexander Afanasyevc1e2ee02014-02-25 17:02:07 -0800457 time::seconds(4)); // very short timeout
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800458
Junxiao Shi79494162014-04-02 18:25:11 -0700459 BOOST_CHECK_MESSAGE(limitedIo.run(2, time::seconds(10)) == LimitedIo::EXCEED_OPS,
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700460 "TcpChannel error: cannot connect or cannot accept connection");
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800461
462 BOOST_CHECK_EQUAL(channel1->size(), 1);
463 BOOST_CHECK_EQUAL(channel2->size(), 1);
464
Junxiao Shi79494162014-04-02 18:25:11 -0700465 BOOST_REQUIRE(static_cast<bool>(face1));
466 BOOST_CHECK(static_cast<bool>(face2));
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800467
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700468 // Face::close must be invoked during io run to be counted as an op
Junxiao Shi79494162014-04-02 18:25:11 -0700469 scheduler::schedule(time::milliseconds(100), bind(&Face::close, face1));
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800470
Junxiao Shi79494162014-04-02 18:25:11 -0700471 BOOST_CHECK_MESSAGE(limitedIo.run(2, time::seconds(10)) == LimitedIo::EXCEED_OPS,
Junxiao Shi7e2413b2014-03-02 11:15:09 -0700472 "FaceClosing error: cannot properly close faces");
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800473
474 // both faces should get closed
Junxiao Shi79494162014-04-02 18:25:11 -0700475 BOOST_CHECK(!static_cast<bool>(face1));
476 BOOST_CHECK(!static_cast<bool>(face2));
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800477
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -0800478 BOOST_CHECK_EQUAL(channel1->size(), 0);
479 BOOST_CHECK_EQUAL(channel2->size(), 0);
480}
481
482
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700483class SimpleEndToEndFixture : protected BaseFixture
484{
485public:
486 void
487 onFaceCreated(const shared_ptr<Face>& face)
488 {
Junxiao Shic099ddb2014-12-25 20:53:20 -0700489 face->onReceiveInterest.connect(bind(&SimpleEndToEndFixture::onReceiveInterest, this, _1));
490 face->onReceiveData.connect(bind(&SimpleEndToEndFixture::onReceiveData, this, _1));
491 face->onFail.connect(bind(&SimpleEndToEndFixture::onFail, this, face));
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700492
493 if (static_cast<bool>(dynamic_pointer_cast<LocalFace>(face))) {
494 static_pointer_cast<LocalFace>(face)->setLocalControlHeaderFeature(
495 LOCAL_CONTROL_FEATURE_INCOMING_FACE_ID);
496
497 static_pointer_cast<LocalFace>(face)->setLocalControlHeaderFeature(
498 LOCAL_CONTROL_FEATURE_NEXT_HOP_FACE_ID);
499 }
500
501 limitedIo.afterOp();
502 }
503
504 void
505 onConnectFailed(const std::string& reason)
506 {
507 BOOST_CHECK_MESSAGE(false, reason);
508
509 limitedIo.afterOp();
510 }
511
512 void
513 onReceiveInterest(const Interest& interest)
514 {
515 receivedInterests.push_back(interest);
516
517 limitedIo.afterOp();
518 }
519
520 void
521 onReceiveData(const Data& data)
522 {
523 receivedDatas.push_back(data);
524
525 limitedIo.afterOp();
526 }
527
528 void
529 onFail(const shared_ptr<Face>& face)
530 {
531 limitedIo.afterOp();
532 }
533
534public:
535 LimitedIo limitedIo;
536
537 std::vector<Interest> receivedInterests;
538 std::vector<Data> receivedDatas;
539};
540
541
542BOOST_FIXTURE_TEST_CASE_TEMPLATE(LocalFaceCorruptedInput, Dataset,
543 CorruptedPackets, SimpleEndToEndFixture)
544{
545 TcpFactory factory;
546
547 shared_ptr<TcpChannel> channel = factory.createChannel("127.0.0.1", "20070");
548 channel->listen(bind(&SimpleEndToEndFixture::onFaceCreated, this, _1),
549 bind(&SimpleEndToEndFixture::onConnectFailed, this, _1));
550 BOOST_REQUIRE_EQUAL(channel->isListening(), true);
551
552 DummyStreamSender<boost::asio::ip::tcp, Dataset> sender;
553 sender.start(Resolver<boost::asio::ip::tcp>::syncResolve("127.0.0.1", "20070"));
554
555 BOOST_CHECK_MESSAGE(limitedIo.run(LimitedIo::UNLIMITED_OPS,
556 time::seconds(1)) == LimitedIo::EXCEED_TIME,
557 "Exception thrown for " + Dataset::getName());
558}
559
560BOOST_FIXTURE_TEST_CASE_TEMPLATE(FaceCorruptedInput, Dataset,
561 CorruptedPackets, SimpleEndToEndFixture)
562{
563 // tests with non-local Face
564 std::string someIpv4Address;
Davide Pesaventob499a602014-11-18 22:36:56 +0100565 for (const auto& netif : listNetworkInterfaces()) {
566 if (!netif.isLoopback() && netif.isUp() && !netif.ipv4Addresses.empty()) {
567 someIpv4Address = netif.ipv4Addresses[0].to_string();
568 break;
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700569 }
Davide Pesaventob499a602014-11-18 22:36:56 +0100570 }
571 if (someIpv4Address.empty()) {
572 BOOST_TEST_MESSAGE("Test with non-local Face cannot be run "
573 "(no non-local interface with IPv4 address available)");
574 return;
575 }
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700576
577 TcpFactory factory;
578
579 shared_ptr<TcpChannel> channel = factory.createChannel(someIpv4Address, "20070");
580 channel->listen(bind(&SimpleEndToEndFixture::onFaceCreated, this, _1),
581 bind(&SimpleEndToEndFixture::onConnectFailed, this, _1));
582 BOOST_REQUIRE_EQUAL(channel->isListening(), true);
583
Alexander Afanasyev650028d2014-04-25 18:39:10 -0700584 DummyStreamSender<boost::asio::ip::tcp, Dataset> sender;
585 sender.start(Resolver<boost::asio::ip::tcp>::syncResolve(someIpv4Address, "20070"));
586
587 BOOST_CHECK_MESSAGE(limitedIo.run(LimitedIo::UNLIMITED_OPS,
588 time::seconds(1)) == LimitedIo::EXCEED_TIME,
589 "Exception thrown for " + Dataset::getName());
590}
591
Alexander Afanasyev18861802014-06-13 17:49:03 -0700592class FaceCreateTimeoutFixture : protected BaseFixture
593{
594public:
595 void
596 onFaceCreated(const shared_ptr<Face>& newFace)
597 {
598 BOOST_CHECK_MESSAGE(false, "Timeout expected");
599 BOOST_CHECK(!static_cast<bool>(face1));
600 face1 = newFace;
601
602 limitedIo.afterOp();
603 }
604
605 void
606 onConnectFailed(const std::string& reason)
607 {
608 BOOST_CHECK_MESSAGE(true, reason);
609
610 limitedIo.afterOp();
611 }
612
613public:
614 LimitedIo limitedIo;
615
616 shared_ptr<Face> face1;
617};
618
Alexander Afanasyev18861802014-06-13 17:49:03 -0700619BOOST_FIXTURE_TEST_CASE(FaceCreateTimeout, FaceCreateTimeoutFixture)
620{
621 TcpFactory factory;
622 shared_ptr<TcpChannel> channel = factory.createChannel("0.0.0.0", "20070");
623
624 factory.createFace(FaceUri("tcp://192.0.2.1:20070"),
625 bind(&FaceCreateTimeoutFixture::onFaceCreated, this, _1),
626 bind(&FaceCreateTimeoutFixture::onConnectFailed, this, _1));
627
628 BOOST_CHECK_MESSAGE(limitedIo.run(1, time::seconds(10)) == LimitedIo::EXCEED_OPS,
629 "TcpChannel error: cannot connect or cannot accept connection");
630
631 BOOST_CHECK_EQUAL(static_cast<bool>(face1), false);
632}
633
Davide Pesavento3f5655f2014-08-30 21:38:59 +0200634BOOST_FIXTURE_TEST_CASE(Bug1856, EndToEndFixture)
635{
636 TcpFactory factory1;
637
638 shared_ptr<TcpChannel> channel1 = factory1.createChannel("127.0.0.1", "20070");
639 factory1.createChannel("127.0.0.1", "20071");
640
641 BOOST_CHECK_EQUAL(channel1->isListening(), false);
642
643 channel1->listen(bind(&EndToEndFixture::channel1_onFaceCreated, this, _1),
644 bind(&EndToEndFixture::channel1_onConnectFailed, this, _1));
645
646 BOOST_CHECK_EQUAL(channel1->isListening(), true);
647
648 TcpFactory factory2;
649
650 shared_ptr<TcpChannel> channel2 = factory2.createChannel("127.0.0.2", "20070");
651 factory2.createChannel("127.0.0.2", "20071");
652
653 factory2.createFace(FaceUri("tcp://127.0.0.1:20070"),
654 bind(&EndToEndFixture::channel2_onFaceCreated, this, _1),
655 bind(&EndToEndFixture::channel2_onConnectFailed, this, _1));
656
657 BOOST_CHECK_MESSAGE(limitedIo.run(2, time::seconds(10)) == LimitedIo::EXCEED_OPS,
658 "TcpChannel error: cannot connect or cannot accept connection");
659
660 BOOST_REQUIRE(static_cast<bool>(face1));
661 BOOST_REQUIRE(static_cast<bool>(face2));
662
663 std::ostringstream hugeName;
664 hugeName << "/huge-name/";
Junxiao Shi39cd6332014-11-06 21:53:18 -0700665 for (size_t i = 0; i < ndn::MAX_NDN_PACKET_SIZE; i++)
Davide Pesavento3f5655f2014-08-30 21:38:59 +0200666 hugeName << 'a';
667
668 shared_ptr<Interest> interest = makeInterest("ndn:/KfczhUqVix");
669 shared_ptr<Interest> hugeInterest = makeInterest(hugeName.str());
670
671 face1->sendInterest(*hugeInterest);
672 face2->sendInterest(*interest);
673 face2->sendInterest(*interest);
674
675 limitedIo.run(LimitedIo::UNLIMITED_OPS, time::seconds(1));
676 BOOST_TEST_MESSAGE("Unexpected assertion test passed");
677}
Alexander Afanasyev18861802014-06-13 17:49:03 -0700678
Alexander Afanasyev70aaf8a2014-12-13 00:44:22 -0800679class FakeNetworkInterfaceFixture : public BaseFixture
680{
681public:
682 FakeNetworkInterfaceFixture()
683 {
684 using namespace boost::asio::ip;
685
686 auto fakeInterfaces = make_shared<std::vector<NetworkInterfaceInfo>>();
687
688 fakeInterfaces->push_back(
689 NetworkInterfaceInfo {0, "eth0",
690 ethernet::Address::fromString("3e:15:c2:8b:65:00"),
691 {address_v4::from_string("0.0.0.0")},
692 {address_v6::from_string("::")},
693 address_v4(),
694 IFF_UP});
695 fakeInterfaces->push_back(
696 NetworkInterfaceInfo {1, "eth0",
697 ethernet::Address::fromString("3e:15:c2:8b:65:00"),
698 {address_v4::from_string("192.168.2.1"), address_v4::from_string("192.168.2.2")},
699 {},
700 address_v4::from_string("192.168.2.255"),
701 0});
702 fakeInterfaces->push_back(
703 NetworkInterfaceInfo {2, "eth1",
704 ethernet::Address::fromString("3e:15:c2:8b:65:00"),
705 {address_v4::from_string("198.51.100.1")},
706 {address_v6::from_string("2001:db8::2"), address_v6::from_string("2001:db8::3")},
707 address_v4::from_string("198.51.100.255"),
708 IFF_MULTICAST | IFF_BROADCAST | IFF_UP});
709
710 setDebugNetworkInterfaces(fakeInterfaces);
711 }
712
713 ~FakeNetworkInterfaceFixture()
714 {
715 setDebugNetworkInterfaces(nullptr);
716 }
717};
718
719BOOST_FIXTURE_TEST_CASE(Bug2292, FakeNetworkInterfaceFixture)
720{
721 using namespace boost::asio::ip;
722
723 TcpFactory factory;
724 factory.prohibitEndpoint(tcp::Endpoint(address_v4::from_string("192.168.2.1"), 1024));
725 BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 1);
726 BOOST_CHECK((factory.m_prohibitedEndpoints ==
727 std::set<tcp::Endpoint> {
728 tcp::Endpoint(address_v4::from_string("192.168.2.1"), 1024),
729 }));
730
731 factory.m_prohibitedEndpoints.clear();
732 factory.prohibitEndpoint(tcp::Endpoint(address_v6::from_string("2001:db8::1"), 2048));
733 BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 1);
734 BOOST_CHECK((factory.m_prohibitedEndpoints ==
735 std::set<tcp::Endpoint> {
736 tcp::Endpoint(address_v6::from_string("2001:db8::1"), 2048)
737 }));
738
739 factory.m_prohibitedEndpoints.clear();
740 factory.prohibitEndpoint(tcp::Endpoint(address_v4(), 1024));
741 BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 4);
742 BOOST_CHECK((factory.m_prohibitedEndpoints ==
743 std::set<tcp::Endpoint> {
744 tcp::Endpoint(address_v4::from_string("192.168.2.1"), 1024),
745 tcp::Endpoint(address_v4::from_string("192.168.2.2"), 1024),
746 tcp::Endpoint(address_v4::from_string("198.51.100.1"), 1024),
747 tcp::Endpoint(address_v4::from_string("0.0.0.0"), 1024)
748 }));
749
750 factory.m_prohibitedEndpoints.clear();
751 factory.prohibitEndpoint(tcp::Endpoint(address_v6(), 2048));
752 BOOST_REQUIRE_EQUAL(factory.m_prohibitedEndpoints.size(), 3);
753 BOOST_CHECK((factory.m_prohibitedEndpoints ==
754 std::set<tcp::Endpoint> {
755 tcp::Endpoint(address_v6::from_string("2001:db8::2"), 2048),
756 tcp::Endpoint(address_v6::from_string("2001:db8::3"), 2048),
757 tcp::Endpoint(address_v6::from_string("::"), 2048)
758 }));
759}
760
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700761BOOST_AUTO_TEST_SUITE_END()
762
Junxiao Shid9ee45c2014-02-27 15:38:11 -0700763} // namespace tests
Junxiao Shi96dc0c42014-01-30 23:51:59 -0700764} // namespace nfd