blob: 3fcfb6e721c68d315c6b75daadc7a24d147617ea [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/**
Muktadir R Chowdhuryaa3b0852015-08-06 13:08:56 -05003 * Copyright (c) 2014-2016, 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
22#include "test-common.hpp"
23
Ashlesh Gawandeeb582eb2014-05-01 14:25:20 -050024#include "lsdb.hpp"
25#include "nlsr.hpp"
26#include "lsa.hpp"
27#include "name-prefix-list.hpp"
28#include <boost/test/unit_test.hpp>
29
Muktadir R Chowdhuryc69da0a2015-12-18 13:24:38 -060030#include <ndn-cxx/util/dummy-client-face.hpp>
Muktadir R Chowdhuryaa3b0852015-08-06 13:08:56 -050031#include <ndn-cxx/util/segment-fetcher.hpp>
Muktadir R Chowdhuryc69da0a2015-12-18 13:24:38 -060032
Ashlesh Gawandeeb582eb2014-05-01 14:25:20 -050033namespace nlsr {
Ashlesh Gawandeeb582eb2014-05-01 14:25:20 -050034namespace test {
35
Vince Lehman904c2412014-09-23 19:36:11 -050036using ndn::shared_ptr;
37
38class LsdbFixture : public BaseFixture
39{
40public:
41 LsdbFixture()
Muktadir R Chowdhuryaa3b0852015-08-06 13:08:56 -050042 : face(make_shared<ndn::util::DummyClientFace>(g_ioService))
Vince Lehman904c2412014-09-23 19:36:11 -050043 , nlsr(g_ioService, g_scheduler, ndn::ref(*face))
Vince Lehman0bcf9a32014-12-10 11:24:45 -060044 , sync(*face, nlsr.getLsdb(), nlsr.getConfParameter(), nlsr.getSequencingManager())
Vince Lehmanf1aa5232014-10-06 17:57:35 -050045 , lsdb(nlsr.getLsdb())
46 , conf(nlsr.getConfParameter())
Vince Lehman904c2412014-09-23 19:36:11 -050047 , REGISTER_COMMAND_PREFIX("/localhost/nfd/rib")
48 , REGISTER_VERB("register")
49 {
Vince Lehmanf1aa5232014-10-06 17:57:35 -050050 conf.setNetwork("/ndn");
51 conf.setSiteName("/site");
52 conf.setRouterName("/%C1.router/this-router");
53
54 nlsr.initialize();
55
56 face->processEvents(ndn::time::milliseconds(1));
Muktadir R Chowdhuryc69da0a2015-12-18 13:24:38 -060057 face->sentInterests.clear();
Ashlesh Gawande5bf83172014-09-19 12:38:17 -050058
59 INIT_LOGGERS("/tmp", "DEBUG");
Vince Lehman904c2412014-09-23 19:36:11 -050060 }
61
Vince Lehmanf1aa5232014-10-06 17:57:35 -050062 void
63 extractParameters(ndn::Interest& interest, ndn::Name::Component& verb,
64 ndn::nfd::ControlParameters& extractedParameters)
Vince Lehman904c2412014-09-23 19:36:11 -050065 {
66 const ndn::Name& name = interest.getName();
67 verb = name[REGISTER_COMMAND_PREFIX.size()];
68 const ndn::Name::Component& parameterComponent = name[REGISTER_COMMAND_PREFIX.size() + 1];
69
70 ndn::Block rawParameters = parameterComponent.blockFromValue();
71 extractedParameters.wireDecode(rawParameters);
72 }
73
Vince Lehmanf1aa5232014-10-06 17:57:35 -050074 void
75 areNamePrefixListsEqual(NamePrefixList& lhs, NamePrefixList& rhs)
76 {
77 typedef std::list<ndn::Name> NameList;
78
79 NameList& lhsList = lhs.getNameList();
80 NameList& rhsList = rhs.getNameList();
81
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:
Muktadir R Chowdhuryc69da0a2015-12-18 13:24:38 -060093 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);
120 std::vector<ndn::Interest>::iterator it = interests.begin();
121
122 BOOST_CHECK_EQUAL(it->getName(), oldInterestName);
123 interests.clear();
124
125 steady_clock::TimePoint deadline = steady_clock::now() +
Muktadir R Chowdhuryaa3b0852015-08-06 13:08:56 -0500126 ndn::time::seconds(LSA_REFRESH_TIME_MAX);
Ashlesh Gawande5bf83172014-09-19 12:38:17 -0500127
128 // Simulate an LSA interest timeout
Muktadir R Chowdhuryaa3b0852015-08-06 13:08:56 -0500129 lsdb.onFetchLsaError(ndn::util::SegmentFetcher::ErrorCode::INTEREST_TIMEOUT, "Timeout",
130 oldInterestName, 0, deadline, interestName, oldSeqNo);
Ashlesh Gawande5bf83172014-09-19 12:38:17 -0500131 face->processEvents(ndn::time::milliseconds(1));
132
133 BOOST_REQUIRE(interests.size() > 0);
134 it = interests.begin();
135
136 BOOST_CHECK_EQUAL(it->getName(), oldInterestName);
137 interests.clear();
138
139 uint64_t newSeqNo = 83;
140
141 ndn::Name newInterestName = interestName;
142 newInterestName.appendNumber(newSeqNo);
143
144 lsdb.expressInterest(newInterestName, 0);
145 face->processEvents(ndn::time::milliseconds(1));
146
147 BOOST_REQUIRE(interests.size() > 0);
148 it = interests.begin();
149
150 BOOST_CHECK_EQUAL(it->getName(), newInterestName);
151 interests.clear();
152
153 // Simulate an LSA interest timeout where the sequence number is outdated
Muktadir R Chowdhuryaa3b0852015-08-06 13:08:56 -0500154 lsdb.onFetchLsaError(ndn::util::SegmentFetcher::ErrorCode::INTEREST_TIMEOUT, "Timeout",
155 oldInterestName, 0, deadline, interestName, oldSeqNo);
Ashlesh Gawande5bf83172014-09-19 12:38:17 -0500156 face->processEvents(ndn::time::milliseconds(1));
157
158 // Interest should not be expressed for outdated sequence number
159 BOOST_CHECK_EQUAL(interests.size(), 0);
160}
161
Muktadir R Chowdhuryaa3b0852015-08-06 13:08:56 -0500162BOOST_AUTO_TEST_CASE(SegmentLsaData)
163{
164 ndn::Name router("/ndn/cs/%C1.Router/router1");
165 uint64_t seqNo = 12;
166 NamePrefixList prefixList;
167
168 NameLsa lsa(router, seqNo, ndn::time::system_clock::now(), prefixList);
169
170 ndn::Name prefix("/ndn/edu/memphis/netlab/research/nlsr/test/prefix/");
171
172 int nPrefixes = 0;
173 while (lsa.getData().size() < ndn::MAX_NDN_PACKET_SIZE) {
174 lsa.addName(ndn::Name(prefix).appendNumber(++nPrefixes));
175 }
176
177 std::string expectedDataContent = lsa.getData();
178 lsdb.installNameLsa(lsa);
179
180 ndn::Name interestName("/ndn/NLSR/LSA/cs/%C1.Router/router1/name/");
181 interestName.appendNumber(seqNo);
182
183 ndn::Interest interest(interestName);
184
185 lsdb.processInterest(ndn::Name(), interest);
186 face->processEvents(ndn::time::milliseconds(1));
187
188 std::vector<ndn::Data> data = face->sentData;
189 std::string recvDataContent;
190 for (unsigned int i = 0; i < data.size(); ++i)
191 {
192 const ndn::Block& nameBlock = data[i].getContent();
193
194 std::string nameBlockContent(reinterpret_cast<char const*>(nameBlock.value()),
195 nameBlock.value_size());
196 recvDataContent += nameBlockContent;
197 }
198
199 BOOST_CHECK_EQUAL(expectedDataContent, recvDataContent);
200}
201
202BOOST_AUTO_TEST_CASE(ReceiveSegmentedLsaData)
203{
204 ndn::Name router("/ndn/cs/%C1.Router/router1");
205 uint64_t seqNo = 12;
206 NamePrefixList prefixList;
207
208 NameLsa lsa(router, seqNo, ndn::time::system_clock::now(), prefixList);
209
210 ndn::Name prefix("/prefix/");
211
212 for (int nPrefixes = 0; nPrefixes < 3; ++nPrefixes) {
213 lsa.addName(ndn::Name(prefix).appendNumber(nPrefixes));
214 }
215
216 ndn::Name interestName("/ndn/NLSR/LSA/cs/%C1.Router/router1/name/");
217 interestName.appendNumber(seqNo);
218
219 const ndn::ConstBufferPtr bufferPtr = make_shared<ndn::Buffer>(lsa.getData().c_str(),
220 lsa.getData().size());
221 lsdb.afterFetchLsa(bufferPtr, interestName);
222
223 NameLsa* foundLsa = lsdb.findNameLsa(lsa.getKey());
224 BOOST_REQUIRE(foundLsa != nullptr);
225
226 BOOST_CHECK_EQUAL(foundLsa->getData(), lsa.getData());
227}
228
Ashlesh Gawandeeb582eb2014-05-01 14:25:20 -0500229BOOST_AUTO_TEST_CASE(LsdbRemoveAndExists)
230{
akmhoquec7a79b22014-05-26 08:06:19 -0500231 ndn::time::system_clock::TimePoint testTimePoint = ndn::time::system_clock::now();
Ashlesh Gawandeeb582eb2014-05-01 14:25:20 -0500232 NamePrefixList npl1;
233
akmhoquefdbddb12014-05-02 18:35:19 -0500234 std::string s1 = "name1";
235 std::string s2 = "name2";
236 std::string router1 = "router1/1";
Ashlesh Gawandeeb582eb2014-05-01 14:25:20 -0500237
238 npl1.insert(s1);
239 npl1.insert(s2);
240
Vince Lehman904c2412014-09-23 19:36:11 -0500241 //For NameLsa lsType is name.
242 //12 is seqNo, randomly generated.
243 //1800 is the default life time.
Ashlesh Gawanded02c3882015-12-29 16:02:51 -0600244 NameLsa nlsa1(ndn::Name("/router1/1"), 12, testTimePoint, npl1);
Ashlesh Gawandeeb582eb2014-05-01 14:25:20 -0500245
Vince Lehman0bcf9a32014-12-10 11:24:45 -0600246 Lsdb lsdb1(nlsr, g_scheduler, nlsr.getSyncLogicHandler());
Ashlesh Gawandeeb582eb2014-05-01 14:25:20 -0500247
akmhoque31d1d4b2014-05-05 22:08:14 -0500248 lsdb1.installNameLsa(nlsa1);
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700249 lsdb1.writeNameLsdbLog();
Ashlesh Gawandeeb582eb2014-05-01 14:25:20 -0500250
alvy49b1c0c2014-12-19 13:57:46 -0600251 BOOST_CHECK(lsdb1.doesLsaExist(ndn::Name("/router1/1/name"), NameLsa::TYPE_STRING));
Ashlesh Gawandeeb582eb2014-05-01 14:25:20 -0500252
akmhoque31d1d4b2014-05-05 22:08:14 -0500253 lsdb1.removeNameLsa(router1);
Ashlesh Gawandeeb582eb2014-05-01 14:25:20 -0500254
alvy49b1c0c2014-12-19 13:57:46 -0600255 BOOST_CHECK_EQUAL(lsdb1.doesLsaExist(ndn::Name("/router1/1"), NameLsa::TYPE_STRING), false);
Ashlesh Gawandeeb582eb2014-05-01 14:25:20 -0500256}
257
Vince Lehmanf1aa5232014-10-06 17:57:35 -0500258BOOST_AUTO_TEST_CASE(InstallNameLsa)
259{
260 // Install lsa with name1 and name2
261 ndn::Name name1("/ndn/name1");
262 ndn::Name name2("/ndn/name2");
263
264 NamePrefixList prefixes;
265 prefixes.insert(name1);
266 prefixes.insert(name2);
267
268 std::string otherRouter("/ndn/site/%C1.router/other-router");
269 ndn::time::system_clock::TimePoint MAX_TIME = ndn::time::system_clock::TimePoint::max();
270
Ashlesh Gawanded02c3882015-12-29 16:02:51 -0600271 NameLsa lsa(otherRouter, 1, MAX_TIME, prefixes);
Vince Lehmanf1aa5232014-10-06 17:57:35 -0500272 lsdb.installNameLsa(lsa);
273
alvy49b1c0c2014-12-19 13:57:46 -0600274 BOOST_REQUIRE_EQUAL(lsdb.doesLsaExist(otherRouter + "/name", NameLsa::TYPE_STRING), true);
Vince Lehmanf1aa5232014-10-06 17:57:35 -0500275 NamePrefixList& nameList = lsdb.findNameLsa(otherRouter + "/name")->getNpl();
276
277 areNamePrefixListsEqual(nameList, prefixes);
278
279 // Add a prefix: name3
280 ndn::Name name3("/ndn/name3");
281 prefixes.insert(name3);
282
Ashlesh Gawanded02c3882015-12-29 16:02:51 -0600283 NameLsa addLsa(otherRouter, 2, MAX_TIME, prefixes);
Vince Lehmanf1aa5232014-10-06 17:57:35 -0500284 lsdb.installNameLsa(addLsa);
285
286 // Lsa should include name1, name2, and name3
287 areNamePrefixListsEqual(nameList, prefixes);
288
289 // Remove a prefix: name2
290 prefixes.remove(name2);
291
Ashlesh Gawanded02c3882015-12-29 16:02:51 -0600292 NameLsa removeLsa(otherRouter, 3, MAX_TIME, prefixes);
Vince Lehmanf1aa5232014-10-06 17:57:35 -0500293 lsdb.installNameLsa(removeLsa);
294
295 // Lsa should include name1 and name3
296 areNamePrefixListsEqual(nameList, prefixes);
297
298 // Add and remove a prefix: add name2, remove name3
299 prefixes.insert(name2);
300 prefixes.remove(name3);
301
Ashlesh Gawanded02c3882015-12-29 16:02:51 -0600302 NameLsa addAndRemoveLsa(otherRouter, 4, MAX_TIME, prefixes);
Vince Lehmanf1aa5232014-10-06 17:57:35 -0500303 lsdb.installNameLsa(addAndRemoveLsa);
304
305 // Lsa should include name1 and name2
306 areNamePrefixListsEqual(nameList, prefixes);
307
308 // Install a completely new list of prefixes
309 ndn::Name name4("/ndn/name4");
310 ndn::Name name5("/ndn/name5");
311
312 NamePrefixList newPrefixes;
313 newPrefixes.insert(name4);
314 newPrefixes.insert(name5);
315
Ashlesh Gawanded02c3882015-12-29 16:02:51 -0600316 NameLsa newLsa(otherRouter, 5, MAX_TIME, newPrefixes);
Vince Lehmanf1aa5232014-10-06 17:57:35 -0500317 lsdb.installNameLsa(newLsa);
318
319 // Lsa should include name4 and name5
320 areNamePrefixListsEqual(nameList, newPrefixes);
321}
322
Ashlesh Gawandeeb582eb2014-05-01 14:25:20 -0500323BOOST_AUTO_TEST_SUITE_END()
324
Nick Gordonfad8e252016-08-11 14:21:38 -0500325} // namespace test
326} // namespace nlsr