blob: 1b384ca901e03aabaa6d6f556e4f9187fdf855c7 [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)
Ashlesh Gawande3e105a02017-05-16 17:36:56 -050043 , sync(*face, nlsr.getLsdb(), nlsr.getConfParameter())
Vince Lehmanf1aa5232014-10-06 17:57:35 -050044 , lsdb(nlsr.getLsdb())
45 , conf(nlsr.getConfParameter())
Vince Lehman904c2412014-09-23 19:36:11 -050046 , REGISTER_COMMAND_PREFIX("/localhost/nfd/rib")
47 , REGISTER_VERB("register")
48 {
Vince Lehmanf1aa5232014-10-06 17:57:35 -050049 conf.setNetwork("/ndn");
50 conf.setSiteName("/site");
51 conf.setRouterName("/%C1.router/this-router");
52
53 nlsr.initialize();
54
55 face->processEvents(ndn::time::milliseconds(1));
Muktadir R Chowdhuryc69da0a2015-12-18 13:24:38 -060056 face->sentInterests.clear();
Ashlesh Gawande5bf83172014-09-19 12:38:17 -050057
58 INIT_LOGGERS("/tmp", "DEBUG");
Vince Lehman904c2412014-09-23 19:36:11 -050059 }
60
Vince Lehmanf1aa5232014-10-06 17:57:35 -050061 void
62 extractParameters(ndn::Interest& interest, ndn::Name::Component& verb,
63 ndn::nfd::ControlParameters& extractedParameters)
Vince Lehman904c2412014-09-23 19:36:11 -050064 {
65 const ndn::Name& name = interest.getName();
66 verb = name[REGISTER_COMMAND_PREFIX.size()];
67 const ndn::Name::Component& parameterComponent = name[REGISTER_COMMAND_PREFIX.size() + 1];
68
69 ndn::Block rawParameters = parameterComponent.blockFromValue();
70 extractedParameters.wireDecode(rawParameters);
71 }
72
Vince Lehmanf1aa5232014-10-06 17:57:35 -050073 void
74 areNamePrefixListsEqual(NamePrefixList& lhs, NamePrefixList& rhs)
75 {
Nick Gordonf14ec352017-07-24 16:09:58 -050076
Vince Lehmanf1aa5232014-10-06 17:57:35 -050077 typedef std::list<ndn::Name> NameList;
78
Nick Gordonf14ec352017-07-24 16:09:58 -050079 NameList lhsList = lhs.getNames();
80 NameList rhsList = rhs.getNames();
Vince Lehmanf1aa5232014-10-06 17:57:35 -050081
82 BOOST_REQUIRE_EQUAL(lhsList.size(), rhsList.size());
83
84 NameList::iterator i = lhsList.begin();
85 NameList::iterator j = rhsList.begin();
86
87 for (; i != lhsList.end(); ++i, ++j) {
88 BOOST_CHECK_EQUAL(*i, *j);
89 }
90 }
91
Vince Lehman904c2412014-09-23 19:36:11 -050092public:
dmcoomes9f936662017-03-02 10:33:09 -060093 std::shared_ptr<ndn::util::DummyClientFace> face;
Vince Lehman904c2412014-09-23 19:36:11 -050094 Nlsr nlsr;
95 SyncLogicHandler sync;
96
Vince Lehmanf1aa5232014-10-06 17:57:35 -050097 Lsdb& lsdb;
98 ConfParameter& conf;
99
Vince Lehman904c2412014-09-23 19:36:11 -0500100 ndn::Name REGISTER_COMMAND_PREFIX;
101 ndn::Name::Component REGISTER_VERB;
102};
103
104BOOST_FIXTURE_TEST_SUITE(TestLsdb, LsdbFixture)
Ashlesh Gawandeeb582eb2014-05-01 14:25:20 -0500105
Ashlesh Gawande5bf83172014-09-19 12:38:17 -0500106BOOST_AUTO_TEST_CASE(LsdbSync)
107{
108 ndn::Name interestName("/ndn/NLSR/LSA/cs/%C1.Router/router2/name");
109 uint64_t oldSeqNo = 82;
110
111 ndn::Name oldInterestName = interestName;
112 oldInterestName.appendNumber(oldSeqNo);
113
114 lsdb.expressInterest(oldInterestName, 0);
115 face->processEvents(ndn::time::milliseconds(1));
116
Muktadir R Chowdhuryc69da0a2015-12-18 13:24:38 -0600117 std::vector<ndn::Interest>& interests = face->sentInterests;
Ashlesh Gawande5bf83172014-09-19 12:38:17 -0500118
119 BOOST_REQUIRE(interests.size() > 0);
Ashlesh Gawande5bf83172014-09-19 12:38:17 -0500120
Nick Gordon098aae42017-08-23 15:18:46 -0500121 bool didFindInterest = false;
122 for (const auto& interest : interests) {
123 didFindInterest = didFindInterest || interest.getName() == oldInterestName;
124 }
125
126 BOOST_CHECK(didFindInterest);
Ashlesh Gawande5bf83172014-09-19 12:38:17 -0500127 interests.clear();
128
Nick Gordone98480b2017-05-24 11:23:03 -0500129 ndn::time::steady_clock::TimePoint deadline = ndn::time::steady_clock::now() +
130 ndn::time::seconds(LSA_REFRESH_TIME_MAX);
Ashlesh Gawande5bf83172014-09-19 12:38:17 -0500131
132 // Simulate an LSA interest timeout
Muktadir R Chowdhuryaa3b0852015-08-06 13:08:56 -0500133 lsdb.onFetchLsaError(ndn::util::SegmentFetcher::ErrorCode::INTEREST_TIMEOUT, "Timeout",
134 oldInterestName, 0, deadline, interestName, oldSeqNo);
Ashlesh Gawande5bf83172014-09-19 12:38:17 -0500135 face->processEvents(ndn::time::milliseconds(1));
136
137 BOOST_REQUIRE(interests.size() > 0);
Ashlesh Gawande5bf83172014-09-19 12:38:17 -0500138
Nick Gordon098aae42017-08-23 15:18:46 -0500139 didFindInterest = false;
140 for (const auto& interest : interests) {
141 didFindInterest = didFindInterest || interest.getName() == oldInterestName;
142 }
143
144 BOOST_CHECK(didFindInterest);
Ashlesh Gawande5bf83172014-09-19 12:38:17 -0500145 interests.clear();
146
147 uint64_t newSeqNo = 83;
148
149 ndn::Name newInterestName = interestName;
150 newInterestName.appendNumber(newSeqNo);
151
152 lsdb.expressInterest(newInterestName, 0);
153 face->processEvents(ndn::time::milliseconds(1));
154
155 BOOST_REQUIRE(interests.size() > 0);
Ashlesh Gawande5bf83172014-09-19 12:38:17 -0500156
Nick Gordon098aae42017-08-23 15:18:46 -0500157 didFindInterest = false;
158 for (const auto& interest : interests) {
159 didFindInterest = didFindInterest || interest.getName() == newInterestName;
160 }
161
162 BOOST_CHECK(didFindInterest);
163
Ashlesh Gawande5bf83172014-09-19 12:38:17 -0500164 interests.clear();
165
166 // Simulate an LSA interest timeout where the sequence number is outdated
Muktadir R Chowdhuryaa3b0852015-08-06 13:08:56 -0500167 lsdb.onFetchLsaError(ndn::util::SegmentFetcher::ErrorCode::INTEREST_TIMEOUT, "Timeout",
168 oldInterestName, 0, deadline, interestName, oldSeqNo);
Ashlesh Gawande5bf83172014-09-19 12:38:17 -0500169 face->processEvents(ndn::time::milliseconds(1));
170
171 // Interest should not be expressed for outdated sequence number
172 BOOST_CHECK_EQUAL(interests.size(), 0);
173}
174
Muktadir R Chowdhuryaa3b0852015-08-06 13:08:56 -0500175BOOST_AUTO_TEST_CASE(SegmentLsaData)
176{
177 ndn::Name router("/ndn/cs/%C1.Router/router1");
178 uint64_t seqNo = 12;
179 NamePrefixList prefixList;
180
181 NameLsa lsa(router, seqNo, ndn::time::system_clock::now(), prefixList);
182
183 ndn::Name prefix("/ndn/edu/memphis/netlab/research/nlsr/test/prefix/");
184
185 int nPrefixes = 0;
186 while (lsa.getData().size() < ndn::MAX_NDN_PACKET_SIZE) {
187 lsa.addName(ndn::Name(prefix).appendNumber(++nPrefixes));
188 }
189
190 std::string expectedDataContent = lsa.getData();
191 lsdb.installNameLsa(lsa);
192
193 ndn::Name interestName("/ndn/NLSR/LSA/cs/%C1.Router/router1/name/");
194 interestName.appendNumber(seqNo);
195
196 ndn::Interest interest(interestName);
197
198 lsdb.processInterest(ndn::Name(), interest);
199 face->processEvents(ndn::time::milliseconds(1));
200
201 std::vector<ndn::Data> data = face->sentData;
202 std::string recvDataContent;
203 for (unsigned int i = 0; i < data.size(); ++i)
204 {
205 const ndn::Block& nameBlock = data[i].getContent();
206
207 std::string nameBlockContent(reinterpret_cast<char const*>(nameBlock.value()),
208 nameBlock.value_size());
209 recvDataContent += nameBlockContent;
210 }
211
212 BOOST_CHECK_EQUAL(expectedDataContent, recvDataContent);
213}
214
215BOOST_AUTO_TEST_CASE(ReceiveSegmentedLsaData)
216{
217 ndn::Name router("/ndn/cs/%C1.Router/router1");
218 uint64_t seqNo = 12;
219 NamePrefixList prefixList;
220
221 NameLsa lsa(router, seqNo, ndn::time::system_clock::now(), prefixList);
222
223 ndn::Name prefix("/prefix/");
224
225 for (int nPrefixes = 0; nPrefixes < 3; ++nPrefixes) {
226 lsa.addName(ndn::Name(prefix).appendNumber(nPrefixes));
227 }
228
229 ndn::Name interestName("/ndn/NLSR/LSA/cs/%C1.Router/router1/name/");
230 interestName.appendNumber(seqNo);
231
dmcoomes9f936662017-03-02 10:33:09 -0600232 const ndn::ConstBufferPtr bufferPtr = std::make_shared<ndn::Buffer>(lsa.getData().c_str(),
Muktadir R Chowdhuryaa3b0852015-08-06 13:08:56 -0500233 lsa.getData().size());
234 lsdb.afterFetchLsa(bufferPtr, interestName);
235
236 NameLsa* foundLsa = lsdb.findNameLsa(lsa.getKey());
237 BOOST_REQUIRE(foundLsa != nullptr);
238
239 BOOST_CHECK_EQUAL(foundLsa->getData(), lsa.getData());
240}
241
Ashlesh Gawandeeb582eb2014-05-01 14:25:20 -0500242BOOST_AUTO_TEST_CASE(LsdbRemoveAndExists)
243{
akmhoquec7a79b22014-05-26 08:06:19 -0500244 ndn::time::system_clock::TimePoint testTimePoint = ndn::time::system_clock::now();
Ashlesh Gawandeeb582eb2014-05-01 14:25:20 -0500245 NamePrefixList npl1;
246
akmhoquefdbddb12014-05-02 18:35:19 -0500247 std::string s1 = "name1";
248 std::string s2 = "name2";
249 std::string router1 = "router1/1";
Ashlesh Gawandeeb582eb2014-05-01 14:25:20 -0500250
251 npl1.insert(s1);
252 npl1.insert(s2);
253
Vince Lehman904c2412014-09-23 19:36:11 -0500254 //For NameLsa lsType is name.
255 //12 is seqNo, randomly generated.
256 //1800 is the default life time.
Ashlesh Gawanded02c3882015-12-29 16:02:51 -0600257 NameLsa nlsa1(ndn::Name("/router1/1"), 12, testTimePoint, npl1);
Ashlesh Gawandeeb582eb2014-05-01 14:25:20 -0500258
Ashlesh Gawande3e105a02017-05-16 17:36:56 -0500259 Lsdb lsdb1(nlsr, g_scheduler);
Ashlesh Gawandeeb582eb2014-05-01 14:25:20 -0500260
akmhoque31d1d4b2014-05-05 22:08:14 -0500261 lsdb1.installNameLsa(nlsa1);
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700262 lsdb1.writeNameLsdbLog();
Ashlesh Gawandeeb582eb2014-05-01 14:25:20 -0500263
alvy49b1c0c2014-12-19 13:57:46 -0600264 BOOST_CHECK(lsdb1.doesLsaExist(ndn::Name("/router1/1/name"), NameLsa::TYPE_STRING));
Ashlesh Gawandeeb582eb2014-05-01 14:25:20 -0500265
akmhoque31d1d4b2014-05-05 22:08:14 -0500266 lsdb1.removeNameLsa(router1);
Ashlesh Gawandeeb582eb2014-05-01 14:25:20 -0500267
alvy49b1c0c2014-12-19 13:57:46 -0600268 BOOST_CHECK_EQUAL(lsdb1.doesLsaExist(ndn::Name("/router1/1"), NameLsa::TYPE_STRING), false);
Ashlesh Gawandeeb582eb2014-05-01 14:25:20 -0500269}
270
Vince Lehmanf1aa5232014-10-06 17:57:35 -0500271BOOST_AUTO_TEST_CASE(InstallNameLsa)
272{
273 // Install lsa with name1 and name2
274 ndn::Name name1("/ndn/name1");
275 ndn::Name name2("/ndn/name2");
276
277 NamePrefixList prefixes;
278 prefixes.insert(name1);
279 prefixes.insert(name2);
280
281 std::string otherRouter("/ndn/site/%C1.router/other-router");
282 ndn::time::system_clock::TimePoint MAX_TIME = ndn::time::system_clock::TimePoint::max();
283
Ashlesh Gawanded02c3882015-12-29 16:02:51 -0600284 NameLsa lsa(otherRouter, 1, MAX_TIME, prefixes);
Vince Lehmanf1aa5232014-10-06 17:57:35 -0500285 lsdb.installNameLsa(lsa);
286
alvy49b1c0c2014-12-19 13:57:46 -0600287 BOOST_REQUIRE_EQUAL(lsdb.doesLsaExist(otherRouter + "/name", NameLsa::TYPE_STRING), true);
Vince Lehmanf1aa5232014-10-06 17:57:35 -0500288 NamePrefixList& nameList = lsdb.findNameLsa(otherRouter + "/name")->getNpl();
289
Nick Gordonf14ec352017-07-24 16:09:58 -0500290 BOOST_CHECK_EQUAL(nameList, prefixes);
291 //areNamePrefixListsEqual(nameList, prefixes);
Vince Lehmanf1aa5232014-10-06 17:57:35 -0500292
293 // Add a prefix: name3
294 ndn::Name name3("/ndn/name3");
295 prefixes.insert(name3);
296
Ashlesh Gawanded02c3882015-12-29 16:02:51 -0600297 NameLsa addLsa(otherRouter, 2, MAX_TIME, prefixes);
Vince Lehmanf1aa5232014-10-06 17:57:35 -0500298 lsdb.installNameLsa(addLsa);
299
300 // Lsa should include name1, name2, and name3
Nick Gordonf14ec352017-07-24 16:09:58 -0500301 BOOST_CHECK_EQUAL(nameList, prefixes);
Vince Lehmanf1aa5232014-10-06 17:57:35 -0500302
303 // Remove a prefix: name2
304 prefixes.remove(name2);
305
Ashlesh Gawanded02c3882015-12-29 16:02:51 -0600306 NameLsa removeLsa(otherRouter, 3, MAX_TIME, prefixes);
Vince Lehmanf1aa5232014-10-06 17:57:35 -0500307 lsdb.installNameLsa(removeLsa);
308
309 // Lsa should include name1 and name3
Nick Gordonf14ec352017-07-24 16:09:58 -0500310 BOOST_CHECK_EQUAL(nameList, prefixes);
Vince Lehmanf1aa5232014-10-06 17:57:35 -0500311
312 // Add and remove a prefix: add name2, remove name3
313 prefixes.insert(name2);
314 prefixes.remove(name3);
315
Ashlesh Gawanded02c3882015-12-29 16:02:51 -0600316 NameLsa addAndRemoveLsa(otherRouter, 4, MAX_TIME, prefixes);
Vince Lehmanf1aa5232014-10-06 17:57:35 -0500317 lsdb.installNameLsa(addAndRemoveLsa);
318
319 // Lsa should include name1 and name2
Nick Gordonf14ec352017-07-24 16:09:58 -0500320 BOOST_CHECK_EQUAL(nameList, prefixes);
Vince Lehmanf1aa5232014-10-06 17:57:35 -0500321
322 // Install a completely new list of prefixes
323 ndn::Name name4("/ndn/name4");
324 ndn::Name name5("/ndn/name5");
325
326 NamePrefixList newPrefixes;
327 newPrefixes.insert(name4);
328 newPrefixes.insert(name5);
329
Ashlesh Gawanded02c3882015-12-29 16:02:51 -0600330 NameLsa newLsa(otherRouter, 5, MAX_TIME, newPrefixes);
Vince Lehmanf1aa5232014-10-06 17:57:35 -0500331 lsdb.installNameLsa(newLsa);
332
333 // Lsa should include name4 and name5
Nick Gordonf14ec352017-07-24 16:09:58 -0500334 BOOST_CHECK_EQUAL(nameList, newPrefixes);
Vince Lehmanf1aa5232014-10-06 17:57:35 -0500335}
336
Ashlesh Gawandeeb582eb2014-05-01 14:25:20 -0500337BOOST_AUTO_TEST_SUITE_END()
338
Nick Gordonfad8e252016-08-11 14:21:38 -0500339} // namespace test
340} // namespace nlsr