blob: ad2dfde4925dce8976e1ffe2d0fe67839bed63fa [file] [log] [blame]
akmhoque3d06e792014-05-27 16:23:20 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Ashlesh Gawandeeb582eb2014-05-01 14:25:20 -05002/**
Nick Gordonfeae5572017-01-13 12:06:26 -06003 * Copyright (c) 2014-2017, The University of Memphis,
Vince Lehmanc2e51f62015-01-20 15:03:11 -06004 * Regents of the University of California,
5 * Arizona Board of Regents.
akmhoque3d06e792014-05-27 16:23:20 -05006 *
7 * This file is part of NLSR (Named-data Link State Routing).
8 * See AUTHORS.md for complete list of NLSR authors and contributors.
9 *
10 * NLSR is free software: you can redistribute it and/or modify it under the terms
11 * of the GNU General Public License as published by the Free Software Foundation,
12 * either version 3 of the License, or (at your option) any later version.
13 *
14 * NLSR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
15 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
16 * PURPOSE. See the GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along with
19 * NLSR, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
akmhoque3d06e792014-05-27 16:23:20 -050020 **/
Vince Lehman7c603292014-09-11 17:48:16 -050021
Ashlesh Gawandeeb582eb2014-05-01 14:25:20 -050022#include "lsdb.hpp"
Nick Gordon098aae42017-08-23 15:18:46 -050023#include "test-common.hpp"
Ashlesh Gawandeeb582eb2014-05-01 14:25:20 -050024#include "nlsr.hpp"
25#include "lsa.hpp"
26#include "name-prefix-list.hpp"
27#include <boost/test/unit_test.hpp>
28
Muktadir R Chowdhuryc69da0a2015-12-18 13:24:38 -060029#include <ndn-cxx/util/dummy-client-face.hpp>
Muktadir R Chowdhuryaa3b0852015-08-06 13:08:56 -050030#include <ndn-cxx/util/segment-fetcher.hpp>
Muktadir R Chowdhuryc69da0a2015-12-18 13:24:38 -060031
Ashlesh Gawandeeb582eb2014-05-01 14:25:20 -050032namespace nlsr {
Ashlesh Gawandeeb582eb2014-05-01 14:25:20 -050033namespace test {
34
dmcoomes9f936662017-03-02 10:33:09 -060035using std::shared_ptr;
Vince Lehman904c2412014-09-23 19:36:11 -050036
37class LsdbFixture : public BaseFixture
38{
39public:
40 LsdbFixture()
dmcoomes9f936662017-03-02 10:33:09 -060041 : face(std::make_shared<ndn::util::DummyClientFace>(g_ioService))
42 , nlsr(g_ioService, g_scheduler, std::ref(*face), g_keyChain)
Vince Lehmanf1aa5232014-10-06 17:57:35 -050043 , lsdb(nlsr.getLsdb())
44 , conf(nlsr.getConfParameter())
Vince Lehman904c2412014-09-23 19:36:11 -050045 , REGISTER_COMMAND_PREFIX("/localhost/nfd/rib")
46 , REGISTER_VERB("register")
47 {
Vince Lehmanf1aa5232014-10-06 17:57:35 -050048 conf.setNetwork("/ndn");
49 conf.setSiteName("/site");
50 conf.setRouterName("/%C1.router/this-router");
51
52 nlsr.initialize();
53
54 face->processEvents(ndn::time::milliseconds(1));
Muktadir R Chowdhuryc69da0a2015-12-18 13:24:38 -060055 face->sentInterests.clear();
Ashlesh Gawande5bf83172014-09-19 12:38:17 -050056
57 INIT_LOGGERS("/tmp", "DEBUG");
Vince Lehman904c2412014-09-23 19:36:11 -050058 }
59
Vince Lehmanf1aa5232014-10-06 17:57:35 -050060 void
61 extractParameters(ndn::Interest& interest, ndn::Name::Component& verb,
62 ndn::nfd::ControlParameters& extractedParameters)
Vince Lehman904c2412014-09-23 19:36:11 -050063 {
64 const ndn::Name& name = interest.getName();
65 verb = name[REGISTER_COMMAND_PREFIX.size()];
66 const ndn::Name::Component& parameterComponent = name[REGISTER_COMMAND_PREFIX.size() + 1];
67
68 ndn::Block rawParameters = parameterComponent.blockFromValue();
69 extractedParameters.wireDecode(rawParameters);
70 }
71
Vince Lehmanf1aa5232014-10-06 17:57:35 -050072 void
73 areNamePrefixListsEqual(NamePrefixList& lhs, NamePrefixList& rhs)
74 {
Nick Gordonf14ec352017-07-24 16:09:58 -050075
Vince Lehmanf1aa5232014-10-06 17:57:35 -050076 typedef std::list<ndn::Name> NameList;
77
Nick Gordonf14ec352017-07-24 16:09:58 -050078 NameList lhsList = lhs.getNames();
79 NameList rhsList = rhs.getNames();
Vince Lehmanf1aa5232014-10-06 17:57:35 -050080
81 BOOST_REQUIRE_EQUAL(lhsList.size(), rhsList.size());
82
83 NameList::iterator i = lhsList.begin();
84 NameList::iterator j = rhsList.begin();
85
86 for (; i != lhsList.end(); ++i, ++j) {
87 BOOST_CHECK_EQUAL(*i, *j);
88 }
89 }
90
Vince Lehman904c2412014-09-23 19:36:11 -050091public:
dmcoomes9f936662017-03-02 10:33:09 -060092 std::shared_ptr<ndn::util::DummyClientFace> face;
Vince Lehman904c2412014-09-23 19:36:11 -050093 Nlsr nlsr;
Vince Lehmanf1aa5232014-10-06 17:57:35 -050094 Lsdb& lsdb;
95 ConfParameter& conf;
96
Vince Lehman904c2412014-09-23 19:36:11 -050097 ndn::Name REGISTER_COMMAND_PREFIX;
98 ndn::Name::Component REGISTER_VERB;
99};
100
101BOOST_FIXTURE_TEST_SUITE(TestLsdb, LsdbFixture)
Ashlesh Gawandeeb582eb2014-05-01 14:25:20 -0500102
Ashlesh Gawande5bf83172014-09-19 12:38:17 -0500103BOOST_AUTO_TEST_CASE(LsdbSync)
104{
105 ndn::Name interestName("/ndn/NLSR/LSA/cs/%C1.Router/router2/name");
106 uint64_t oldSeqNo = 82;
107
108 ndn::Name oldInterestName = interestName;
109 oldInterestName.appendNumber(oldSeqNo);
110
111 lsdb.expressInterest(oldInterestName, 0);
112 face->processEvents(ndn::time::milliseconds(1));
113
Muktadir R Chowdhuryc69da0a2015-12-18 13:24:38 -0600114 std::vector<ndn::Interest>& interests = face->sentInterests;
Ashlesh Gawande5bf83172014-09-19 12:38:17 -0500115
116 BOOST_REQUIRE(interests.size() > 0);
Ashlesh Gawande5bf83172014-09-19 12:38:17 -0500117
Nick Gordon098aae42017-08-23 15:18:46 -0500118 bool didFindInterest = false;
119 for (const auto& interest : interests) {
120 didFindInterest = didFindInterest || interest.getName() == oldInterestName;
121 }
122
123 BOOST_CHECK(didFindInterest);
Ashlesh Gawande5bf83172014-09-19 12:38:17 -0500124 interests.clear();
125
Nick Gordone98480b2017-05-24 11:23:03 -0500126 ndn::time::steady_clock::TimePoint deadline = ndn::time::steady_clock::now() +
127 ndn::time::seconds(LSA_REFRESH_TIME_MAX);
Ashlesh Gawande5bf83172014-09-19 12:38:17 -0500128
129 // Simulate an LSA interest timeout
Muktadir R Chowdhuryaa3b0852015-08-06 13:08:56 -0500130 lsdb.onFetchLsaError(ndn::util::SegmentFetcher::ErrorCode::INTEREST_TIMEOUT, "Timeout",
131 oldInterestName, 0, deadline, interestName, oldSeqNo);
Ashlesh Gawande5bf83172014-09-19 12:38:17 -0500132 face->processEvents(ndn::time::milliseconds(1));
133
134 BOOST_REQUIRE(interests.size() > 0);
Ashlesh Gawande5bf83172014-09-19 12:38:17 -0500135
Nick Gordon098aae42017-08-23 15:18:46 -0500136 didFindInterest = false;
137 for (const auto& interest : interests) {
138 didFindInterest = didFindInterest || interest.getName() == oldInterestName;
139 }
140
141 BOOST_CHECK(didFindInterest);
Ashlesh Gawande5bf83172014-09-19 12:38:17 -0500142 interests.clear();
143
144 uint64_t newSeqNo = 83;
145
146 ndn::Name newInterestName = interestName;
147 newInterestName.appendNumber(newSeqNo);
148
149 lsdb.expressInterest(newInterestName, 0);
150 face->processEvents(ndn::time::milliseconds(1));
151
152 BOOST_REQUIRE(interests.size() > 0);
Ashlesh Gawande5bf83172014-09-19 12:38:17 -0500153
Nick Gordon098aae42017-08-23 15:18:46 -0500154 didFindInterest = false;
155 for (const auto& interest : interests) {
156 didFindInterest = didFindInterest || interest.getName() == newInterestName;
157 }
158
159 BOOST_CHECK(didFindInterest);
160
Ashlesh Gawande5bf83172014-09-19 12:38:17 -0500161 interests.clear();
162
163 // Simulate an LSA interest timeout where the sequence number is outdated
Muktadir R Chowdhuryaa3b0852015-08-06 13:08:56 -0500164 lsdb.onFetchLsaError(ndn::util::SegmentFetcher::ErrorCode::INTEREST_TIMEOUT, "Timeout",
165 oldInterestName, 0, deadline, interestName, oldSeqNo);
Ashlesh Gawande5bf83172014-09-19 12:38:17 -0500166 face->processEvents(ndn::time::milliseconds(1));
167
168 // Interest should not be expressed for outdated sequence number
169 BOOST_CHECK_EQUAL(interests.size(), 0);
170}
171
Muktadir R Chowdhuryaa3b0852015-08-06 13:08:56 -0500172BOOST_AUTO_TEST_CASE(SegmentLsaData)
173{
174 ndn::Name router("/ndn/cs/%C1.Router/router1");
175 uint64_t seqNo = 12;
176 NamePrefixList prefixList;
177
178 NameLsa lsa(router, seqNo, ndn::time::system_clock::now(), prefixList);
179
180 ndn::Name prefix("/ndn/edu/memphis/netlab/research/nlsr/test/prefix/");
181
182 int nPrefixes = 0;
183 while (lsa.getData().size() < ndn::MAX_NDN_PACKET_SIZE) {
184 lsa.addName(ndn::Name(prefix).appendNumber(++nPrefixes));
185 }
186
187 std::string expectedDataContent = lsa.getData();
188 lsdb.installNameLsa(lsa);
189
190 ndn::Name interestName("/ndn/NLSR/LSA/cs/%C1.Router/router1/name/");
191 interestName.appendNumber(seqNo);
192
193 ndn::Interest interest(interestName);
194
195 lsdb.processInterest(ndn::Name(), interest);
196 face->processEvents(ndn::time::milliseconds(1));
197
198 std::vector<ndn::Data> data = face->sentData;
199 std::string recvDataContent;
200 for (unsigned int i = 0; i < data.size(); ++i)
201 {
202 const ndn::Block& nameBlock = data[i].getContent();
203
204 std::string nameBlockContent(reinterpret_cast<char const*>(nameBlock.value()),
205 nameBlock.value_size());
206 recvDataContent += nameBlockContent;
207 }
208
209 BOOST_CHECK_EQUAL(expectedDataContent, recvDataContent);
210}
211
212BOOST_AUTO_TEST_CASE(ReceiveSegmentedLsaData)
213{
214 ndn::Name router("/ndn/cs/%C1.Router/router1");
215 uint64_t seqNo = 12;
216 NamePrefixList prefixList;
217
218 NameLsa lsa(router, seqNo, ndn::time::system_clock::now(), prefixList);
219
220 ndn::Name prefix("/prefix/");
221
222 for (int nPrefixes = 0; nPrefixes < 3; ++nPrefixes) {
223 lsa.addName(ndn::Name(prefix).appendNumber(nPrefixes));
224 }
225
226 ndn::Name interestName("/ndn/NLSR/LSA/cs/%C1.Router/router1/name/");
227 interestName.appendNumber(seqNo);
228
dmcoomes9f936662017-03-02 10:33:09 -0600229 const ndn::ConstBufferPtr bufferPtr = std::make_shared<ndn::Buffer>(lsa.getData().c_str(),
Muktadir R Chowdhuryaa3b0852015-08-06 13:08:56 -0500230 lsa.getData().size());
231 lsdb.afterFetchLsa(bufferPtr, interestName);
232
233 NameLsa* foundLsa = lsdb.findNameLsa(lsa.getKey());
234 BOOST_REQUIRE(foundLsa != nullptr);
235
236 BOOST_CHECK_EQUAL(foundLsa->getData(), lsa.getData());
237}
238
Ashlesh Gawandeeb582eb2014-05-01 14:25:20 -0500239BOOST_AUTO_TEST_CASE(LsdbRemoveAndExists)
240{
akmhoquec7a79b22014-05-26 08:06:19 -0500241 ndn::time::system_clock::TimePoint testTimePoint = ndn::time::system_clock::now();
Ashlesh Gawandeeb582eb2014-05-01 14:25:20 -0500242 NamePrefixList npl1;
243
akmhoquefdbddb12014-05-02 18:35:19 -0500244 std::string s1 = "name1";
245 std::string s2 = "name2";
246 std::string router1 = "router1/1";
Ashlesh Gawandeeb582eb2014-05-01 14:25:20 -0500247
248 npl1.insert(s1);
249 npl1.insert(s2);
250
Vince Lehman904c2412014-09-23 19:36:11 -0500251 //For NameLsa lsType is name.
252 //12 is seqNo, randomly generated.
253 //1800 is the default life time.
Ashlesh Gawanded02c3882015-12-29 16:02:51 -0600254 NameLsa nlsa1(ndn::Name("/router1/1"), 12, testTimePoint, npl1);
Ashlesh Gawandeeb582eb2014-05-01 14:25:20 -0500255
Ashlesh Gawande3e105a02017-05-16 17:36:56 -0500256 Lsdb lsdb1(nlsr, g_scheduler);
Ashlesh Gawandeeb582eb2014-05-01 14:25:20 -0500257
akmhoque31d1d4b2014-05-05 22:08:14 -0500258 lsdb1.installNameLsa(nlsa1);
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700259 lsdb1.writeNameLsdbLog();
Ashlesh Gawandeeb582eb2014-05-01 14:25:20 -0500260
alvy49b1c0c2014-12-19 13:57:46 -0600261 BOOST_CHECK(lsdb1.doesLsaExist(ndn::Name("/router1/1/name"), NameLsa::TYPE_STRING));
Ashlesh Gawandeeb582eb2014-05-01 14:25:20 -0500262
akmhoque31d1d4b2014-05-05 22:08:14 -0500263 lsdb1.removeNameLsa(router1);
Ashlesh Gawandeeb582eb2014-05-01 14:25:20 -0500264
alvy49b1c0c2014-12-19 13:57:46 -0600265 BOOST_CHECK_EQUAL(lsdb1.doesLsaExist(ndn::Name("/router1/1"), NameLsa::TYPE_STRING), false);
Ashlesh Gawandeeb582eb2014-05-01 14:25:20 -0500266}
267
Vince Lehmanf1aa5232014-10-06 17:57:35 -0500268BOOST_AUTO_TEST_CASE(InstallNameLsa)
269{
270 // Install lsa with name1 and name2
271 ndn::Name name1("/ndn/name1");
272 ndn::Name name2("/ndn/name2");
273
274 NamePrefixList prefixes;
275 prefixes.insert(name1);
276 prefixes.insert(name2);
277
278 std::string otherRouter("/ndn/site/%C1.router/other-router");
279 ndn::time::system_clock::TimePoint MAX_TIME = ndn::time::system_clock::TimePoint::max();
280
Ashlesh Gawanded02c3882015-12-29 16:02:51 -0600281 NameLsa lsa(otherRouter, 1, MAX_TIME, prefixes);
Vince Lehmanf1aa5232014-10-06 17:57:35 -0500282 lsdb.installNameLsa(lsa);
283
alvy49b1c0c2014-12-19 13:57:46 -0600284 BOOST_REQUIRE_EQUAL(lsdb.doesLsaExist(otherRouter + "/name", NameLsa::TYPE_STRING), true);
Vince Lehmanf1aa5232014-10-06 17:57:35 -0500285 NamePrefixList& nameList = lsdb.findNameLsa(otherRouter + "/name")->getNpl();
286
Nick Gordonf14ec352017-07-24 16:09:58 -0500287 BOOST_CHECK_EQUAL(nameList, prefixes);
288 //areNamePrefixListsEqual(nameList, prefixes);
Vince Lehmanf1aa5232014-10-06 17:57:35 -0500289
290 // Add a prefix: name3
291 ndn::Name name3("/ndn/name3");
292 prefixes.insert(name3);
293
Ashlesh Gawanded02c3882015-12-29 16:02:51 -0600294 NameLsa addLsa(otherRouter, 2, MAX_TIME, prefixes);
Vince Lehmanf1aa5232014-10-06 17:57:35 -0500295 lsdb.installNameLsa(addLsa);
296
297 // Lsa should include name1, name2, and name3
Nick Gordonf14ec352017-07-24 16:09:58 -0500298 BOOST_CHECK_EQUAL(nameList, prefixes);
Vince Lehmanf1aa5232014-10-06 17:57:35 -0500299
300 // Remove a prefix: name2
301 prefixes.remove(name2);
302
Ashlesh Gawanded02c3882015-12-29 16:02:51 -0600303 NameLsa removeLsa(otherRouter, 3, MAX_TIME, prefixes);
Vince Lehmanf1aa5232014-10-06 17:57:35 -0500304 lsdb.installNameLsa(removeLsa);
305
306 // Lsa should include name1 and name3
Nick Gordonf14ec352017-07-24 16:09:58 -0500307 BOOST_CHECK_EQUAL(nameList, prefixes);
Vince Lehmanf1aa5232014-10-06 17:57:35 -0500308
309 // Add and remove a prefix: add name2, remove name3
310 prefixes.insert(name2);
311 prefixes.remove(name3);
312
Ashlesh Gawanded02c3882015-12-29 16:02:51 -0600313 NameLsa addAndRemoveLsa(otherRouter, 4, MAX_TIME, prefixes);
Vince Lehmanf1aa5232014-10-06 17:57:35 -0500314 lsdb.installNameLsa(addAndRemoveLsa);
315
316 // Lsa should include name1 and name2
Nick Gordonf14ec352017-07-24 16:09:58 -0500317 BOOST_CHECK_EQUAL(nameList, prefixes);
Vince Lehmanf1aa5232014-10-06 17:57:35 -0500318
319 // Install a completely new list of prefixes
320 ndn::Name name4("/ndn/name4");
321 ndn::Name name5("/ndn/name5");
322
323 NamePrefixList newPrefixes;
324 newPrefixes.insert(name4);
325 newPrefixes.insert(name5);
326
Ashlesh Gawanded02c3882015-12-29 16:02:51 -0600327 NameLsa newLsa(otherRouter, 5, MAX_TIME, newPrefixes);
Vince Lehmanf1aa5232014-10-06 17:57:35 -0500328 lsdb.installNameLsa(newLsa);
329
330 // Lsa should include name4 and name5
Nick Gordonf14ec352017-07-24 16:09:58 -0500331 BOOST_CHECK_EQUAL(nameList, newPrefixes);
Vince Lehmanf1aa5232014-10-06 17:57:35 -0500332}
333
Ashlesh Gawandeeb582eb2014-05-01 14:25:20 -0500334BOOST_AUTO_TEST_SUITE_END()
335
Nick Gordonfad8e252016-08-11 14:21:38 -0500336} // namespace test
337} // namespace nlsr