blob: 6ed5b0acdf9ffc20644a9611a60291434caa1e04 [file] [log] [blame]
Vince Lehman72446ec2014-07-09 10:50:02 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Junxiao Shi75306352018-02-01 21:59:44 +00002/*
Alexander Afanasyeva1583702020-06-03 13:55:45 -04003 * Copyright (c) 2014-2020, Regents of the University of California,
Alexander Afanasyev7c10b3b2015-01-20 12:24:27 -08004 * 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.
Vince Lehman72446ec2014-07-09 10:50:02 -050010 *
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/>.
24 */
25
Davide Pesavento8a05c7f2019-02-28 02:26:19 -050026#include "mgmt/rib-manager.hpp"
Vince Lehman72446ec2014-07-09 10:50:02 -050027
Davide Pesavento78ddcab2019-02-28 22:00:03 -050028#include "manager-common-fixture.hpp"
Junxiao Shidf1dc652019-08-30 19:03:19 +000029#include "tests/daemon/rib/fib-updates-common.hpp"
Davide Pesavento0064c1d2018-03-03 18:43:53 -050030
Junxiao Shicbc8e942016-09-06 03:17:45 +000031#include <ndn-cxx/lp/tags.hpp>
Davide Pesaventod2ea2352017-03-12 20:38:09 -040032#include <ndn-cxx/mgmt/nfd/face-status.hpp>
33#include <ndn-cxx/mgmt/nfd/rib-entry.hpp>
Zhiyi Zhanga499aa22019-09-24 15:00:40 -070034#include <ndn-cxx/security/signing-helpers.hpp>
35
36#include <boost/property_tree/info_parser.hpp>
Vince Lehman26b215c2014-08-17 15:00:41 -050037
Vince Lehman72446ec2014-07-09 10:50:02 -050038namespace nfd {
Vince Lehman72446ec2014-07-09 10:50:02 -050039namespace tests {
40
Yanbiao Licf0db022016-01-29 00:54:25 -080041struct ConfigurationStatus
Vince Lehman72446ec2014-07-09 10:50:02 -050042{
Yanbiao Licf0db022016-01-29 00:54:25 -080043 bool isLocalhostConfigured;
44 bool isLocalhopConfigured;
Vince Lehman72446ec2014-07-09 10:50:02 -050045};
46
Junxiao Shif4cfed12018-08-22 23:26:29 +000047static ConfigSection
48getValidatorConfigSection()
49{
50 ConfigSection section;
51 section.put("trust-anchor.type", "any");
52 return section;
53}
54
Zhiyi Zhanga499aa22019-09-24 15:00:40 -070055static ConfigSection
56makeSection(const std::string& config)
57{
58 std::istringstream inputStream(config);
59 ConfigSection section;
60 boost::property_tree::read_info(inputStream, section);
61 return section;
62}
63
64static ConfigSection
65getLocalhopValidatorConfigSection()
66{
67 std::string config = R"CONF(
68 rule
69 {
70 id rule-id1
71 for interest
72 filter
73 {
74 type name
75 name /localhop/nfd/rib
76 relation is-prefix-of
77 }
78 checker
79 {
80 type customized
81 sig-type ecdsa-sha256
82 key-locator
83 {
84 type name
85 name /TrustAnchor-identity/Derived-identity
86 relation is-prefix-of
87 }
88 }
89 }
90 rule
91 {
92 id rule-id2
93 for data
94 filter
95 {
96 type name
97 name /TrustAnchor-identity/Derived-identity/KEY
98 relation is-prefix-of
99 }
100 checker
101 {
102 type customized
103 sig-type ecdsa-sha256
104 key-locator
105 {
106 type name
107 name /TrustAnchor-identity
108 relation is-prefix-of
109 }
110 }
111 }
112 trust-anchor
113 {
114 type file
115 file-name signer.ndncert
116 }
117 )CONF";
118 return makeSection(config);
119}
120
Yanbiao Licf0db022016-01-29 00:54:25 -0800121class RibManagerFixture : public ManagerCommonFixture
Vince Lehman72446ec2014-07-09 10:50:02 -0500122{
123public:
Davide Pesaventoe1bdc082018-10-11 21:20:23 -0400124 RibManagerFixture(const ConfigurationStatus& status, bool shouldClearRib)
Junxiao Shidf1dc652019-08-30 19:03:19 +0000125 : m_status(status)
Zhiyi Zhanga499aa22019-09-24 15:00:40 -0700126 , m_anchorId("/TrustAnchor-identity")
127 , m_derivedId("/TrustAnchor-identity/Derived-identity")
Davide Pesavento9f8b10e2018-08-22 08:45:37 +0000128 , m_nfdController(m_face, m_keyChain)
129 , m_fibUpdater(m_rib, m_nfdController)
Davide Pesavento0a71dd32019-03-17 20:36:18 -0400130 , m_manager(m_rib, m_face, m_keyChain, m_nfdController, m_dispatcher)
Vince Lehman72446ec2014-07-09 10:50:02 -0500131 {
Zhiyi Zhanga499aa22019-09-24 15:00:40 -0700132 addIdentity(m_anchorId);
133 addIdentity(m_derivedId);
134
135 m_derivedCert = m_keyChain.getPib().getIdentity(m_derivedId).getDefaultKey().getDefaultCertificate();
136 ndn::SignatureInfo signatureInfo;
137 signatureInfo.setValidityPeriod(m_derivedCert.getValidityPeriod());
138 ndn::security::SigningInfo signingInfo(ndn::security::SigningInfo::SIGNER_TYPE_ID,
139 m_anchorId, signatureInfo);
140 m_keyChain.sign(m_derivedCert, signingInfo);
141 saveIdentityCertificate(m_anchorId, "signer.ndncert", true);
142
Yanbiao Licf0db022016-01-29 00:54:25 -0800143 if (m_status.isLocalhostConfigured) {
Junxiao Shif4cfed12018-08-22 23:26:29 +0000144 m_manager.applyLocalhostConfig(getValidatorConfigSection(), "test");
Yanbiao Licf0db022016-01-29 00:54:25 -0800145 }
146 if (m_status.isLocalhopConfigured) {
Zhiyi Zhanga499aa22019-09-24 15:00:40 -0700147 m_manager.enableLocalhop(getLocalhopValidatorConfigSection(), "test");
Yanbiao Licf0db022016-01-29 00:54:25 -0800148 }
Junxiao Shif4cfed12018-08-22 23:26:29 +0000149 else {
150 m_manager.disableLocalhop();
151 }
Yanbiao Licf0db022016-01-29 00:54:25 -0800152
153 registerWithNfd();
154
155 if (shouldClearRib) {
156 clearRib();
157 }
Zhiyi Zhanga499aa22019-09-24 15:00:40 -0700158
159 m_face.onSendInterest.connect([this] (const Interest& interest) {
160 if (interest.getName().isPrefixOf(m_derivedCert.getName())) {
161 if (m_status.isLocalhopConfigured && interest.template getTag<lp::NextHopFaceIdTag>() != nullptr) {
162 m_face.put(m_derivedCert);
163 }
164 }
165 });
Yanbiao Licf0db022016-01-29 00:54:25 -0800166 }
167
168private:
169 void
170 registerWithNfd()
171 {
172 m_manager.registerWithNfd();
Davide Pesavento8a05c7f2019-02-28 02:26:19 -0500173 advanceClocks(1_ms);
Yanbiao Licf0db022016-01-29 00:54:25 -0800174
175 auto replyFibAddCommand = [this] (const Interest& interest) {
Davide Pesavento78ddcab2019-02-28 22:00:03 -0500176 ControlParameters params(interest.getName().get(-5).blockFromValue());
Junxiao Shifde3f542016-07-10 19:54:53 +0000177 BOOST_CHECK(params.getName() == "/localhost/nfd/rib" || params.getName() == "/localhop/nfd/rib");
Yanbiao Licf0db022016-01-29 00:54:25 -0800178 params.setFaceId(1).setCost(0);
Davide Pesavento78ddcab2019-02-28 22:00:03 -0500179 ControlResponse resp;
Yanbiao Licf0db022016-01-29 00:54:25 -0800180
181 resp.setCode(200).setBody(params.wireEncode());
182 shared_ptr<Data> data = make_shared<Data>(interest.getName());
183 data->setContent(resp.wireEncode());
184
185 m_keyChain.sign(*data, ndn::security::SigningInfo(ndn::security::SigningInfo::SIGNER_TYPE_SHA256));
186
Junxiao Shi221b6fe2016-07-14 18:21:56 +0000187 m_face.getIoService().post([this, data] { m_face.receive(*data); });
Yanbiao Licf0db022016-01-29 00:54:25 -0800188 };
189
190 Name commandPrefix("/localhost/nfd/fib/add-nexthop");
Junxiao Shidf1dc652019-08-30 19:03:19 +0000191 for (const auto& command : m_face.sentInterests) {
Yanbiao Licf0db022016-01-29 00:54:25 -0800192 if (commandPrefix.isPrefixOf(command.getName())) {
193 replyFibAddCommand(command);
Davide Pesavento8a05c7f2019-02-28 02:26:19 -0500194 advanceClocks(1_ms);
Yanbiao Licf0db022016-01-29 00:54:25 -0800195 }
196 }
197
198 // clear commands and responses
199 m_responses.clear();
Junxiao Shidf1dc652019-08-30 19:03:19 +0000200 m_face.sentInterests.clear();
Yanbiao Licf0db022016-01-29 00:54:25 -0800201 }
202
Davide Pesaventoe94804b2016-09-19 17:23:21 +0000203 void
204 clearRib()
Yanbiao Licf0db022016-01-29 00:54:25 -0800205 {
206 while (!m_rib.empty()) {
Davide Pesaventoe94804b2016-09-19 17:23:21 +0000207 m_rib.erase(m_rib.begin()->first, *m_rib.begin()->second->begin());
Yanbiao Licf0db022016-01-29 00:54:25 -0800208 }
209 }
210
211public:
Davide Pesavento22db5392017-04-14 00:56:43 -0400212 static ControlParameters
213 makeRegisterParameters(const Name& name, uint64_t faceId = 0,
Davide Pesaventod2ea2352017-03-12 20:38:09 -0400214 time::milliseconds expiry = time::milliseconds::max())
Yanbiao Licf0db022016-01-29 00:54:25 -0800215 {
216 return ControlParameters()
217 .setName(name)
Davide Pesavento22db5392017-04-14 00:56:43 -0400218 .setFaceId(faceId)
219 .setOrigin(ndn::nfd::ROUTE_ORIGIN_NLSR)
Yanbiao Licf0db022016-01-29 00:54:25 -0800220 .setCost(10)
221 .setFlags(0)
222 .setExpirationPeriod(expiry);
223 }
224
Davide Pesavento22db5392017-04-14 00:56:43 -0400225 static ControlParameters
226 makeUnregisterParameters(const Name& name, uint64_t faceId = 0)
Yanbiao Licf0db022016-01-29 00:54:25 -0800227 {
228 return ControlParameters()
229 .setName(name)
Davide Pesavento22db5392017-04-14 00:56:43 -0400230 .setFaceId(faceId)
231 .setOrigin(ndn::nfd::ROUTE_ORIGIN_NLSR);
Yanbiao Licf0db022016-01-29 00:54:25 -0800232 }
233
Davide Pesavento9f8b10e2018-08-22 08:45:37 +0000234protected:
Yanbiao Licf0db022016-01-29 00:54:25 -0800235 ConfigurationStatus m_status;
Zhiyi Zhanga499aa22019-09-24 15:00:40 -0700236 Name m_anchorId;
237 Name m_derivedId;
Alexander Afanasyeva1583702020-06-03 13:55:45 -0400238 ndn::security::Certificate m_derivedCert;
Yanbiao Licf0db022016-01-29 00:54:25 -0800239
Davide Pesavento9f8b10e2018-08-22 08:45:37 +0000240 ndn::nfd::Controller m_nfdController;
Davide Pesavento8a05c7f2019-02-28 02:26:19 -0500241 rib::Rib m_rib;
Junxiao Shidf1dc652019-08-30 19:03:19 +0000242 rib::tests::MockFibUpdater m_fibUpdater;
Yanbiao Licf0db022016-01-29 00:54:25 -0800243 RibManager m_manager;
Yanbiao Licf0db022016-01-29 00:54:25 -0800244};
245
Davide Pesavento8a05c7f2019-02-28 02:26:19 -0500246BOOST_AUTO_TEST_SUITE(Mgmt)
Yanbiao Licf0db022016-01-29 00:54:25 -0800247BOOST_AUTO_TEST_SUITE(TestRibManager)
248
249class AddTopPrefixFixture : public RibManagerFixture
250{
251public:
252 AddTopPrefixFixture()
253 : RibManagerFixture({true, true}, false)
254 {
Vince Lehman72446ec2014-07-09 10:50:02 -0500255 }
256};
257
Yanbiao Licf0db022016-01-29 00:54:25 -0800258BOOST_FIXTURE_TEST_CASE(AddTopPrefix, AddTopPrefixFixture)
Steve DiBenedettocd4ee5f2014-12-08 16:09:11 -0700259{
Yanbiao Licf0db022016-01-29 00:54:25 -0800260 BOOST_CHECK_EQUAL(m_rib.size(), 2);
Vince Lehman76c751c2014-11-18 17:36:38 -0600261
Yanbiao Licf0db022016-01-29 00:54:25 -0800262 std::vector<Name> ribEntryNames;
263 for (auto&& entry : m_rib) {
264 ribEntryNames.push_back(entry.first);
265 }
266 BOOST_CHECK_EQUAL(ribEntryNames[0], "/localhop/nfd");
267 BOOST_CHECK_EQUAL(ribEntryNames[1], "/localhost/nfd");
Steve DiBenedettocd4ee5f2014-12-08 16:09:11 -0700268}
269
Yanbiao Licf0db022016-01-29 00:54:25 -0800270class UnauthorizedRibManagerFixture : public RibManagerFixture
Vince Lehman72446ec2014-07-09 10:50:02 -0500271{
Yanbiao Licf0db022016-01-29 00:54:25 -0800272public:
273 UnauthorizedRibManagerFixture()
274 : RibManagerFixture({false, false}, true)
275 {
276 }
277};
Vince Lehman72446ec2014-07-09 10:50:02 -0500278
Yanbiao Licf0db022016-01-29 00:54:25 -0800279class LocalhostAuthorizedRibManagerFixture : public RibManagerFixture
280{
281public:
282 LocalhostAuthorizedRibManagerFixture()
283 : RibManagerFixture({true, false}, true)
284 {
285 }
286};
Vince Lehman72446ec2014-07-09 10:50:02 -0500287
Yanbiao Licf0db022016-01-29 00:54:25 -0800288class LocalhopAuthorizedRibManagerFixture : public RibManagerFixture
289{
290public:
291 LocalhopAuthorizedRibManagerFixture()
292 : RibManagerFixture({false, true}, true)
293 {
294 }
295};
296
297class AuthorizedRibManagerFixture : public RibManagerFixture
298{
299public:
300 AuthorizedRibManagerFixture()
301 : RibManagerFixture({true, true}, true)
302 {
303 }
304};
305
Davide Pesaventod2ea2352017-03-12 20:38:09 -0400306using AllFixtures = boost::mpl::vector<
Yanbiao Licf0db022016-01-29 00:54:25 -0800307 UnauthorizedRibManagerFixture,
308 LocalhostAuthorizedRibManagerFixture,
309 LocalhopAuthorizedRibManagerFixture,
310 AuthorizedRibManagerFixture
Davide Pesaventod2ea2352017-03-12 20:38:09 -0400311>;
Yanbiao Licf0db022016-01-29 00:54:25 -0800312
313BOOST_FIXTURE_TEST_CASE_TEMPLATE(CommandAuthorization, T, AllFixtures, T)
314{
315 auto parameters = this->makeRegisterParameters("/test-authorization", 9527);
316 auto commandHost = this->makeControlCommandRequest("/localhost/nfd/rib/register", parameters);
Zhiyi Zhanga499aa22019-09-24 15:00:40 -0700317 auto commandHop = this->makeControlCommandRequest("/localhop/nfd/rib/register", parameters,
318 this->m_derivedId);
319 if (this->m_status.isLocalhopConfigured) {
320 commandHop.setTag(make_shared<lp::IncomingFaceIdTag>(123));
321 }
Yanbiao Licf0db022016-01-29 00:54:25 -0800322 auto successResp = this->makeResponse(200, "Success", parameters);
323 auto failureResp = ControlResponse(403, "authorization rejected");
324
325 BOOST_CHECK_EQUAL(this->m_responses.size(), 0);
326 this->receiveInterest(commandHost);
327 this->receiveInterest(commandHop);
328
329 auto nExpectedResponses = this->m_status.isLocalhopConfigured ? 2 : 1;
330 auto expectedLocalhostResponse = this->m_status.isLocalhostConfigured ? successResp : failureResp;
331 auto expectedLocalhopResponse = this->m_status.isLocalhopConfigured ? successResp : failureResp;
332
333 BOOST_REQUIRE_EQUAL(this->m_responses.size(), nExpectedResponses);
Junxiao Shi8a1f1702017-07-03 00:05:08 +0000334 BOOST_CHECK_EQUAL(this->checkResponse(0, commandHost.getName(), expectedLocalhostResponse),
Yanbiao Licf0db022016-01-29 00:54:25 -0800335 ManagerCommonFixture::CheckResponseResult::OK);
336 if (nExpectedResponses == 2) {
Junxiao Shi8a1f1702017-07-03 00:05:08 +0000337 BOOST_CHECK_EQUAL(this->checkResponse(1, commandHop.getName(), expectedLocalhopResponse),
Yanbiao Licf0db022016-01-29 00:54:25 -0800338 ManagerCommonFixture::CheckResponseResult::OK);
339 }
Vince Lehman72446ec2014-07-09 10:50:02 -0500340}
341
Yanbiao Licf0db022016-01-29 00:54:25 -0800342BOOST_FIXTURE_TEST_SUITE(RegisterUnregister, LocalhostAuthorizedRibManagerFixture)
343
344BOOST_AUTO_TEST_CASE(Basic)
Vince Lehman72446ec2014-07-09 10:50:02 -0500345{
Yanbiao Licf0db022016-01-29 00:54:25 -0800346 auto paramsRegister = makeRegisterParameters("/test-register-unregister", 9527);
347 auto paramsUnregister = makeUnregisterParameters("/test-register-unregister", 9527);
Vince Lehman72446ec2014-07-09 10:50:02 -0500348
Junxiao Shi8a1f1702017-07-03 00:05:08 +0000349 auto commandRegister = makeControlCommandRequest("/localhost/nfd/rib/register", paramsRegister);
350 commandRegister.setTag(make_shared<lp::IncomingFaceIdTag>(1234));
351 auto commandUnregister = makeControlCommandRequest("/localhost/nfd/rib/unregister", paramsUnregister);
352 commandUnregister.setTag(make_shared<lp::IncomingFaceIdTag>(1234));
Vince Lehman72446ec2014-07-09 10:50:02 -0500353
Yanbiao Licf0db022016-01-29 00:54:25 -0800354 receiveInterest(commandRegister);
355 receiveInterest(commandUnregister);
Vince Lehman72446ec2014-07-09 10:50:02 -0500356
Yanbiao Licf0db022016-01-29 00:54:25 -0800357 BOOST_REQUIRE_EQUAL(m_responses.size(), 2);
Junxiao Shi8a1f1702017-07-03 00:05:08 +0000358 BOOST_CHECK_EQUAL(checkResponse(0, commandRegister.getName(), makeResponse(200, "Success", paramsRegister)),
Yanbiao Licf0db022016-01-29 00:54:25 -0800359 CheckResponseResult::OK);
Junxiao Shi8a1f1702017-07-03 00:05:08 +0000360 BOOST_CHECK_EQUAL(checkResponse(1, commandUnregister.getName(), makeResponse(200, "Success", paramsUnregister)),
Yanbiao Licf0db022016-01-29 00:54:25 -0800361 CheckResponseResult::OK);
Vince Lehman72446ec2014-07-09 10:50:02 -0500362
Junxiao Shidf1dc652019-08-30 19:03:19 +0000363 BOOST_REQUIRE_EQUAL(m_fibUpdater.updates.size(), 2);
364 BOOST_CHECK_EQUAL(m_fibUpdater.updates.front(),
365 rib::FibUpdate::createAddUpdate("/test-register-unregister", 9527, 10));
366 BOOST_CHECK_EQUAL(m_fibUpdater.updates.back(),
367 rib::FibUpdate::createRemoveUpdate("/test-register-unregister", 9527));
Vince Lehman72446ec2014-07-09 10:50:02 -0500368}
369
Yanbiao Licf0db022016-01-29 00:54:25 -0800370BOOST_AUTO_TEST_CASE(SelfOperation)
Vince Lehman72446ec2014-07-09 10:50:02 -0500371{
Yanbiao Licf0db022016-01-29 00:54:25 -0800372 auto paramsRegister = makeRegisterParameters("/test-self-register-unregister");
373 auto paramsUnregister = makeUnregisterParameters("/test-self-register-unregister");
374 BOOST_CHECK_EQUAL(paramsRegister.getFaceId(), 0);
375 BOOST_CHECK_EQUAL(paramsUnregister.getFaceId(), 0);
Vince Lehman72446ec2014-07-09 10:50:02 -0500376
Yanbiao Licf0db022016-01-29 00:54:25 -0800377 const uint64_t inFaceId = 9527;
Junxiao Shi8a1f1702017-07-03 00:05:08 +0000378 auto commandRegister = makeControlCommandRequest("/localhost/nfd/rib/register", paramsRegister);
379 commandRegister.setTag(make_shared<lp::IncomingFaceIdTag>(inFaceId));
380 auto commandUnregister = makeControlCommandRequest("/localhost/nfd/rib/unregister", paramsUnregister);
381 commandUnregister.setTag(make_shared<lp::IncomingFaceIdTag>(inFaceId));
Vince Lehman72446ec2014-07-09 10:50:02 -0500382
Yanbiao Licf0db022016-01-29 00:54:25 -0800383 receiveInterest(commandRegister);
384 receiveInterest(commandUnregister);
Vince Lehman72446ec2014-07-09 10:50:02 -0500385
Yanbiao Licf0db022016-01-29 00:54:25 -0800386 paramsRegister.setFaceId(inFaceId);
387 paramsUnregister.setFaceId(inFaceId);
Vince Lehman72446ec2014-07-09 10:50:02 -0500388
Yanbiao Licf0db022016-01-29 00:54:25 -0800389 BOOST_REQUIRE_EQUAL(m_responses.size(), 2);
Junxiao Shi8a1f1702017-07-03 00:05:08 +0000390 BOOST_CHECK_EQUAL(checkResponse(0, commandRegister.getName(), makeResponse(200, "Success", paramsRegister)),
Yanbiao Licf0db022016-01-29 00:54:25 -0800391 CheckResponseResult::OK);
Junxiao Shi8a1f1702017-07-03 00:05:08 +0000392 BOOST_CHECK_EQUAL(checkResponse(1, commandUnregister.getName(), makeResponse(200, "Success", paramsUnregister)),
Yanbiao Licf0db022016-01-29 00:54:25 -0800393 CheckResponseResult::OK);
Vince Lehman72446ec2014-07-09 10:50:02 -0500394
Junxiao Shidf1dc652019-08-30 19:03:19 +0000395 BOOST_REQUIRE_EQUAL(m_fibUpdater.updates.size(), 2);
396 BOOST_CHECK_EQUAL(m_fibUpdater.updates.front(),
397 rib::FibUpdate::createAddUpdate("/test-self-register-unregister", 9527, 10));
398 BOOST_CHECK_EQUAL(m_fibUpdater.updates.back(),
399 rib::FibUpdate::createRemoveUpdate("/test-self-register-unregister", 9527));
Vince Lehman72446ec2014-07-09 10:50:02 -0500400}
401
Yanbiao Licf0db022016-01-29 00:54:25 -0800402BOOST_AUTO_TEST_CASE(Expiration)
Junxiao Shi0de23a22015-12-03 20:07:02 +0000403{
Davide Pesavento8a05c7f2019-02-28 02:26:19 -0500404 auto paramsRegister = makeRegisterParameters("/test-expiry", 9527, 50_ms);
Yanbiao Licf0db022016-01-29 00:54:25 -0800405 auto paramsUnregister = makeRegisterParameters("/test-expiry", 9527);
406 receiveInterest(makeControlCommandRequest("/localhost/nfd/rib/register", paramsRegister));
Junxiao Shi0de23a22015-12-03 20:07:02 +0000407
Davide Pesavento8a05c7f2019-02-28 02:26:19 -0500408 advanceClocks(55_ms);
Junxiao Shidf1dc652019-08-30 19:03:19 +0000409 BOOST_REQUIRE_EQUAL(m_fibUpdater.updates.size(), 2); // the registered route has expired
410 BOOST_CHECK_EQUAL(m_fibUpdater.updates.front(),
411 rib::FibUpdate::createAddUpdate("/test-expiry", 9527, 10));
412 BOOST_CHECK_EQUAL(m_fibUpdater.updates.back(),
413 rib::FibUpdate::createRemoveUpdate("/test-expiry", 9527));
Junxiao Shi0de23a22015-12-03 20:07:02 +0000414
Junxiao Shidf1dc652019-08-30 19:03:19 +0000415 m_fibUpdater.updates.clear();
Davide Pesavento8a05c7f2019-02-28 02:26:19 -0500416 paramsRegister.setExpirationPeriod(100_ms);
Yanbiao Licf0db022016-01-29 00:54:25 -0800417 receiveInterest(makeControlCommandRequest("/localhost/nfd/rib/register", paramsRegister));
Junxiao Shi0de23a22015-12-03 20:07:02 +0000418
Davide Pesavento8a05c7f2019-02-28 02:26:19 -0500419 advanceClocks(55_ms);
Junxiao Shidf1dc652019-08-30 19:03:19 +0000420 BOOST_REQUIRE_EQUAL(m_fibUpdater.updates.size(), 1); // the registered route is still active
421 BOOST_CHECK_EQUAL(m_fibUpdater.updates.front(),
422 rib::FibUpdate::createAddUpdate("/test-expiry", 9527, 10));
Junxiao Shi0de23a22015-12-03 20:07:02 +0000423}
424
Junxiao Shi75306352018-02-01 21:59:44 +0000425BOOST_AUTO_TEST_CASE(NameTooLong)
426{
427 Name prefix;
Davide Pesavento2cae8ca2019-04-18 20:48:05 -0400428 while (prefix.size() <= Fib::getMaxDepth()) {
Junxiao Shi75306352018-02-01 21:59:44 +0000429 prefix.append("A");
430 }
431 auto params = makeRegisterParameters(prefix, 2899);
432 auto command = makeControlCommandRequest("/localhost/nfd/rib/register", params);
433 receiveInterest(command);
434
435 BOOST_REQUIRE_EQUAL(m_responses.size(), 1);
Davide Pesavento2cae8ca2019-04-18 20:48:05 -0400436 BOOST_CHECK_EQUAL(checkResponse(0, command.getName(),
437 ControlResponse(414, "Route prefix cannot exceed " +
438 to_string(Fib::getMaxDepth()) + " components")),
Junxiao Shi75306352018-02-01 21:59:44 +0000439 CheckResponseResult::OK);
440
Junxiao Shidf1dc652019-08-30 19:03:19 +0000441 BOOST_CHECK_EQUAL(m_fibUpdater.updates.size(), 0);
Junxiao Shi75306352018-02-01 21:59:44 +0000442}
443
Yanbiao Licf0db022016-01-29 00:54:25 -0800444BOOST_AUTO_TEST_SUITE_END() // RegisterUnregister
445
Yanbiao Licf0db022016-01-29 00:54:25 -0800446BOOST_FIXTURE_TEST_CASE(RibDataset, UnauthorizedRibManagerFixture)
Vince Lehman72446ec2014-07-09 10:50:02 -0500447{
Yanbiao Licf0db022016-01-29 00:54:25 -0800448 uint64_t faceId = 0;
Davide Pesavento8a05c7f2019-02-28 02:26:19 -0500449 auto generateRoute = [&faceId] () -> rib::Route {
450 rib::Route route;
Yanbiao Licf0db022016-01-29 00:54:25 -0800451 route.faceId = ++faceId;
Davide Pesaventod2ea2352017-03-12 20:38:09 -0400452 route.cost = route.faceId * 10;
Davide Pesavento87fc0f82018-04-11 23:43:51 -0400453 route.expires = nullopt;
Yanbiao Licf0db022016-01-29 00:54:25 -0800454 return route;
455 };
Vince Lehman72446ec2014-07-09 10:50:02 -0500456
Yanbiao Licf0db022016-01-29 00:54:25 -0800457 const size_t nEntries = 108;
458 std::set<Name> actualPrefixes;
459 for (size_t i = 0; i < nEntries; ++i) {
460 Name prefix = Name("/test-dataset").appendNumber(i);
461 actualPrefixes.insert(prefix);
462 m_rib.insert(prefix, generateRoute());
463 if (i & 0x1) {
464 m_rib.insert(prefix, generateRoute());
465 m_rib.insert(prefix, generateRoute());
466 }
467 }
Vince Lehman72446ec2014-07-09 10:50:02 -0500468
Junxiao Shi9d727852019-05-14 13:44:22 -0600469 receiveInterest(*makeInterest("/localhost/nfd/rib/list", true));
Vince Lehman72446ec2014-07-09 10:50:02 -0500470
Davide Pesaventod2ea2352017-03-12 20:38:09 -0400471 Block content = concatenateResponses();
472 content.parse();
Yanbiao Licf0db022016-01-29 00:54:25 -0800473 BOOST_REQUIRE_EQUAL(content.elements().size(), nEntries);
474
Davide Pesaventod2ea2352017-03-12 20:38:09 -0400475 std::vector<ndn::nfd::RibEntry> receivedRecords, expectedRecords;
Yanbiao Licf0db022016-01-29 00:54:25 -0800476 for (size_t idx = 0; idx < nEntries; ++idx) {
Davide Pesaventod2ea2352017-03-12 20:38:09 -0400477 ndn::nfd::RibEntry decodedEntry(content.elements()[idx]);
Yanbiao Licf0db022016-01-29 00:54:25 -0800478 receivedRecords.push_back(decodedEntry);
Yanbiao Licf0db022016-01-29 00:54:25 -0800479 actualPrefixes.erase(decodedEntry.getName());
480
481 auto matchedEntryIt = m_rib.find(decodedEntry.getName());
482 BOOST_REQUIRE(matchedEntryIt != m_rib.end());
483
484 auto matchedEntry = matchedEntryIt->second;
485 BOOST_REQUIRE(matchedEntry != nullptr);
486
Davide Pesaventod2ea2352017-03-12 20:38:09 -0400487 expectedRecords.emplace_back();
488 expectedRecords.back().setName(matchedEntry->getName());
489 for (const auto& route : matchedEntry->getRoutes()) {
490 expectedRecords.back().addRoute(ndn::nfd::Route()
491 .setFaceId(route.faceId)
492 .setOrigin(route.origin)
493 .setCost(route.cost)
494 .setFlags(route.flags));
Yanbiao Licf0db022016-01-29 00:54:25 -0800495 }
Yanbiao Licf0db022016-01-29 00:54:25 -0800496 }
497
498 BOOST_CHECK_EQUAL(actualPrefixes.size(), 0);
Yanbiao Licf0db022016-01-29 00:54:25 -0800499 BOOST_CHECK_EQUAL_COLLECTIONS(receivedRecords.begin(), receivedRecords.end(),
500 expectedRecords.begin(), expectedRecords.end());
Vince Lehman72446ec2014-07-09 10:50:02 -0500501}
502
Yanbiao Licf0db022016-01-29 00:54:25 -0800503BOOST_FIXTURE_TEST_SUITE(FaceMonitor, LocalhostAuthorizedRibManagerFixture)
504
505BOOST_AUTO_TEST_CASE(FetchActiveFacesEvent)
Vince Lehmancd16c832014-07-23 15:14:55 -0700506{
Junxiao Shidf1dc652019-08-30 19:03:19 +0000507 BOOST_CHECK_EQUAL(m_fibUpdater.updates.size(), 0);
Vince Lehman76c751c2014-11-18 17:36:38 -0600508
Davide Pesavento8a05c7f2019-02-28 02:26:19 -0500509 advanceClocks(301_s); // RibManager::ACTIVE_FACE_FETCH_INTERVAL = 300s
Junxiao Shidf1dc652019-08-30 19:03:19 +0000510 BOOST_REQUIRE_EQUAL(m_face.sentInterests.size(), 2);
511 BOOST_CHECK_EQUAL(m_face.sentInterests[0].getName(), "/localhost/nfd/faces/events");
512 BOOST_CHECK_EQUAL(m_face.sentInterests[1].getName(), "/localhost/nfd/faces/list");
Vince Lehmancd16c832014-07-23 15:14:55 -0700513}
514
Yanbiao Licf0db022016-01-29 00:54:25 -0800515BOOST_AUTO_TEST_CASE(RemoveInvalidFaces)
Vince Lehman281ded72014-08-21 12:17:08 -0500516{
Yanbiao Licf0db022016-01-29 00:54:25 -0800517 auto parameters1 = makeRegisterParameters("/test-remove-invalid-faces-1");
518 auto parameters2 = makeRegisterParameters("/test-remove-invalid-faces-2");
519 receiveInterest(makeControlCommandRequest("/localhost/nfd/rib/register", parameters1.setFaceId(1)));
520 receiveInterest(makeControlCommandRequest("/localhost/nfd/rib/register", parameters1.setFaceId(2)));
521 receiveInterest(makeControlCommandRequest("/localhost/nfd/rib/register", parameters2.setFaceId(2)));
522 BOOST_REQUIRE_EQUAL(m_rib.size(), 3);
Vince Lehman281ded72014-08-21 12:17:08 -0500523
Vince Lehman26b215c2014-08-17 15:00:41 -0500524 ndn::nfd::FaceStatus status;
525 status.setFaceId(1);
Weiwei Liu6e21cdb2016-09-29 15:16:23 -0700526 std::vector<ndn::nfd::FaceStatus> activeFaces;
527 activeFaces.push_back(status);
Vince Lehman26b215c2014-08-17 15:00:41 -0500528
Weiwei Liu6e21cdb2016-09-29 15:16:23 -0700529 m_manager.removeInvalidFaces(activeFaces);
Davide Pesavento8a05c7f2019-02-28 02:26:19 -0500530 advanceClocks(100_ms);
Yanbiao Licf0db022016-01-29 00:54:25 -0800531 BOOST_REQUIRE_EQUAL(m_rib.size(), 1);
Vince Lehman26b215c2014-08-17 15:00:41 -0500532
Yanbiao Licf0db022016-01-29 00:54:25 -0800533 auto it1 = m_rib.find("/test-remove-invalid-faces-1");
534 auto it2 = m_rib.find("/test-remove-invalid-faces-2");
535 BOOST_CHECK(it2 == m_rib.end());
536 BOOST_REQUIRE(it1 != m_rib.end());
537 BOOST_CHECK(it1->second->hasFaceId(1));
538 BOOST_CHECK(!it1->second->hasFaceId(2));
Vince Lehman26b215c2014-08-17 15:00:41 -0500539}
540
Yanbiao Licf0db022016-01-29 00:54:25 -0800541BOOST_AUTO_TEST_CASE(OnNotification)
Vince Lehman7c7d33a2015-01-20 17:40:26 -0600542{
Yanbiao Licf0db022016-01-29 00:54:25 -0800543 auto parameters1 = makeRegisterParameters("/test-face-event-notification-1", 1);
544 auto parameters2 = makeRegisterParameters("/test-face-event-notification-2", 1);
545 receiveInterest(makeControlCommandRequest("/localhost/nfd/rib/register", parameters1));
546 receiveInterest(makeControlCommandRequest("/localhost/nfd/rib/register", parameters2));
547 BOOST_REQUIRE_EQUAL(m_rib.size(), 2);
Vince Lehman7c7d33a2015-01-20 17:40:26 -0600548
Davide Pesavento8a05c7f2019-02-28 02:26:19 -0500549 auto makeNotification = [] (ndn::nfd::FaceEventKind kind, uint64_t faceId) {
550 return ndn::nfd::FaceEventNotification().setKind(kind).setFaceId(faceId);
Yanbiao Licf0db022016-01-29 00:54:25 -0800551 };
Vince Lehman7c7d33a2015-01-20 17:40:26 -0600552
Yanbiao Licf0db022016-01-29 00:54:25 -0800553 m_manager.onNotification(makeNotification(ndn::nfd::FaceEventKind::FACE_EVENT_DESTROYED, 1));
Davide Pesavento8a05c7f2019-02-28 02:26:19 -0500554 advanceClocks(100_ms);
Yanbiao Licf0db022016-01-29 00:54:25 -0800555 BOOST_CHECK_EQUAL(m_rib.size(), 0);
Vince Lehman7c7d33a2015-01-20 17:40:26 -0600556
Yanbiao Licf0db022016-01-29 00:54:25 -0800557 m_manager.onNotification(makeNotification(ndn::nfd::FaceEventKind::FACE_EVENT_CREATED, 2));
Davide Pesavento8a05c7f2019-02-28 02:26:19 -0500558 advanceClocks(100_ms);
Yanbiao Licf0db022016-01-29 00:54:25 -0800559 BOOST_CHECK_EQUAL(m_rib.size(), 0);
Vince Lehman7c7d33a2015-01-20 17:40:26 -0600560}
561
Yanbiao Licf0db022016-01-29 00:54:25 -0800562BOOST_AUTO_TEST_SUITE_END() // FaceMonitor
Davide Pesavento8a05c7f2019-02-28 02:26:19 -0500563
Yanbiao Licf0db022016-01-29 00:54:25 -0800564BOOST_AUTO_TEST_SUITE_END() // TestRibManager
Davide Pesavento8a05c7f2019-02-28 02:26:19 -0500565BOOST_AUTO_TEST_SUITE_END() // Mgmt
Vince Lehman72446ec2014-07-09 10:50:02 -0500566
567} // namespace tests
Vince Lehman72446ec2014-07-09 10:50:02 -0500568} // namespace nfd