blob: cfd82b6cfaf648b792ca624a5c4c83375212f3f1 [file] [log] [blame]
Ashlesh Gawande85998a12017-12-07 22:22:13 -06001 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Alejandro Gil Torrese0d20482016-03-06 23:56:19 -06002/**
Saurab Dulal427e0122019-11-28 11:58:02 -06003 * Copyright (c) 2014-2020, The University of Memphis,
Alejandro Gil Torrese0d20482016-03-06 23:56:19 -06004 * Regents of the University of California,
5 * Arizona Board of Regents.
6 *
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/>.
20 **/
21
22#include "statistics.hpp"
23#include "test-common.hpp"
24#include "hello-protocol.hpp"
25#include "lsdb.hpp"
26#include "nlsr.hpp"
27
28#include <ndn-cxx/util/dummy-client-face.hpp>
29
30namespace nlsr {
31namespace test {
32
Muktadir Chowdhuryf04f9892017-08-20 20:42:56 -050033class StatisticsFixture : public UnitTestTimeFixture
Alejandro Gil Torrese0d20482016-03-06 23:56:19 -060034{
35public:
36 StatisticsFixture()
Muktadir Chowdhuryf04f9892017-08-20 20:42:56 -050037 : face(m_ioService, m_keyChain)
Saurab Dulal427e0122019-11-28 11:58:02 -060038 , conf(face, m_keyChain)
Ashlesh Gawande6b388fc2019-09-30 10:14:41 -050039 , confProcessor(conf)
Ashlesh Gawande85998a12017-12-07 22:22:13 -060040 , nlsr(face, m_keyChain, conf)
41 , lsdb(nlsr.m_lsdb)
Alejandro Gil Torrese0d20482016-03-06 23:56:19 -060042 , hello(nlsr.m_helloProtocol)
Ashlesh Gawande85998a12017-12-07 22:22:13 -060043 , collector(nlsr.m_statsCollector)
Alejandro Gil Torrese0d20482016-03-06 23:56:19 -060044 {
Ashlesh Gawandef7da9c52018-02-06 17:36:46 -060045 // Otherwise code coverage node fails with default 60 seconds lifetime
46 conf.setSyncInterestLifetime(1000);
Alejandro Gil Torrese0d20482016-03-06 23:56:19 -060047
Muktadir Chowdhuryf04f9892017-08-20 20:42:56 -050048 addIdentity(conf.getRouterPrefix());
49
Alejandro Gil Torrese0d20482016-03-06 23:56:19 -060050 nlsr.initialize();
51
Muktadir Chowdhuryf04f9892017-08-20 20:42:56 -050052 this->advanceClocks(ndn::time::milliseconds(1), 10);
53 face.sentInterests.clear();
Alejandro Gil Torrese0d20482016-03-06 23:56:19 -060054 }
55
56 /*!
57 * \brief Checks if lsa interest was received and data for interest was sent
58 *
59 * \param interestPrefix is an interest name prefix
60 * \param lsaType indicates whether the lsa is a name, adjacency, or coordinate
61 * \param seqNo sequence number that will be appended to an interest name
62 * \param receivedInterestType is the specific Statisitcs::PacketType interest that is received
63 * \param sentDataType is the Statistics::PacketType data being sent upon interest process
64 *
65 * This is a general function that can be used for all three types of lsa. Calling processInterest()
66 * from lsdb will cause the statsCollector to increment the incoming interest type and increment the
67 * outgoing data type.
68 */
69 void
70 receiveInterestAndCheckSentStats(const std::string& interestPrefix,
71 const std::string& lsaType,
72 uint32_t seqNo,
73 Statistics::PacketType receivedInterestType,
74 Statistics::PacketType sentDataType)
75 {
76 size_t rcvBefore = collector.getStatistics().get(receivedInterestType);
77 size_t sentBefore = collector.getStatistics().get(sentDataType);
78
79 ndn::Name interestName = ndn::Name(ndn::Name(interestPrefix + lsaType).appendNumber(seqNo));
80 lsdb.processInterest(ndn::Name(), ndn::Interest(interestName));
Muktadir Chowdhuryf04f9892017-08-20 20:42:56 -050081 this->advanceClocks(ndn::time::milliseconds(1), 10);
Alejandro Gil Torrese0d20482016-03-06 23:56:19 -060082
83 BOOST_CHECK_EQUAL(collector.getStatistics().get(receivedInterestType), rcvBefore + 1);
84 BOOST_CHECK_EQUAL(collector.getStatistics().get(sentDataType), sentBefore + 1);
85 }
86
87 /*!
88 * \brief Checks if statistics update after an lsa interest is sent
89 *
90 * \param prefix is an interest prefix
91 * \param lsaType indicates whether the lsa is a name, adjacency, or coordinate
92 * \param seqNo is the sequence number
93 * \param statsType is a statistical PacketType
94 *
95 * The function is called to initiate an expressInterest call in lsdb and to check if the
96 * expected statistical packetType was incremented.
97 */
98 void
99 sendInterestAndCheckStats(const std::string& prefix,
100 const std::string& lsaType,
101 uint32_t seqNo,
102 Statistics::PacketType statsType)
103 {
104 size_t sentBefore = collector.getStatistics().get(statsType);
105
106 lsdb.expressInterest(ndn::Name(prefix + lsaType).appendNumber(seqNo), 0,
107 ndn::time::steady_clock::TimePoint::min());
Muktadir Chowdhuryf04f9892017-08-20 20:42:56 -0500108 this->advanceClocks(ndn::time::milliseconds(1), 10);
Alejandro Gil Torrese0d20482016-03-06 23:56:19 -0600109
110 BOOST_CHECK_EQUAL(collector.getStatistics().get(statsType), sentBefore + 1);
111 }
112
113public:
Muktadir Chowdhuryf04f9892017-08-20 20:42:56 -0500114 ndn::util::DummyClientFace face;
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600115 ConfParameter conf;
Ashlesh Gawande6b388fc2019-09-30 10:14:41 -0500116 DummyConfFileProcessor confProcessor;
Alejandro Gil Torrese0d20482016-03-06 23:56:19 -0600117 Nlsr nlsr;
118
119 Lsdb& lsdb;
120 HelloProtocol& hello;
Alejandro Gil Torrese0d20482016-03-06 23:56:19 -0600121 StatsCollector& collector;
122};
123
124BOOST_FIXTURE_TEST_SUITE(TestStatistics, StatisticsFixture)
125
126
127// A statistical PacketType is directly incremented (without signals).
128BOOST_AUTO_TEST_CASE(StatsIncrement)
129{
130 Statistics stats;
131 BOOST_CHECK_EQUAL(stats.get(Statistics::PacketType::SENT_HELLO_INTEREST), 0);
132 stats.increment(Statistics::PacketType::SENT_HELLO_INTEREST);
133 BOOST_CHECK_EQUAL(stats.get(Statistics::PacketType::SENT_HELLO_INTEREST), 1);
134}
135
136/*
137 * After a PacketType has been incremented, the resetAll() function is called, which sets all
138 * statistical packetType counts to 0
139 */
140BOOST_AUTO_TEST_CASE(StatsReset)
141{
142 Statistics stats;
143 stats.increment(Statistics::PacketType::SENT_HELLO_INTEREST);
144 stats.resetAll();
145 BOOST_CHECK_EQUAL(stats.get(Statistics::PacketType::SENT_HELLO_INTEREST), 0);
146}
147
Alejandro Gil Torrese0d20482016-03-06 23:56:19 -0600148/*
149 * This tests hello interests and hello data statistical collection by constructing an adjacency lsa
150 * and calling functions that trigger the sending and receiving hello of interests/data.
151 */
152BOOST_AUTO_TEST_CASE(SendHelloInterest)
153{
Muktadir Chowdhuryf04f9892017-08-20 20:42:56 -0500154 Adjacent other("/ndn/router/other", ndn::FaceUri("udp4://other"), 25, Adjacent::STATUS_INACTIVE, 0, 0);
Alejandro Gil Torrese0d20482016-03-06 23:56:19 -0600155
156 // This router's Adjacency LSA
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600157 conf.getAdjacencyList().insert(other);
Alejandro Gil Torrese0d20482016-03-06 23:56:19 -0600158
Muktadir Chowdhuryf04f9892017-08-20 20:42:56 -0500159 ndn::Name otherName(other.getName());
160 otherName.append("NLSR");
161 otherName.append("INFO");
162 otherName.append(conf.getRouterPrefix().wireEncode());
Alejandro Gil Torrese0d20482016-03-06 23:56:19 -0600163
Muktadir Chowdhuryf04f9892017-08-20 20:42:56 -0500164 hello.expressInterest(otherName, 1);
165 this->advanceClocks(ndn::time::milliseconds(1), 10);
Alejandro Gil Torrese0d20482016-03-06 23:56:19 -0600166
167 BOOST_CHECK_EQUAL(collector.getStatistics().get(Statistics::PacketType::SENT_HELLO_INTEREST), 1);
168
Muktadir Chowdhuryf04f9892017-08-20 20:42:56 -0500169 ndn::Name thisName(conf.getRouterPrefix());
170 thisName.append("NLSR");
171 thisName.append("INFO");
172 thisName.append(other.getName().wireEncode());
173
174 ndn::Interest interest(thisName);
Alejandro Gil Torrese0d20482016-03-06 23:56:19 -0600175 hello.processInterest(ndn::Name(), interest);
176
Muktadir Chowdhuryf04f9892017-08-20 20:42:56 -0500177 this->advanceClocks(ndn::time::milliseconds(1), 10);
Alejandro Gil Torrese0d20482016-03-06 23:56:19 -0600178
179 BOOST_CHECK_EQUAL(collector.getStatistics().get(Statistics::PacketType::RCV_HELLO_INTEREST), 1);
180 BOOST_CHECK_EQUAL(collector.getStatistics().get(Statistics::PacketType::SENT_HELLO_DATA), 1);
181
182 // Receive Hello Data
Muktadir Chowdhuryf04f9892017-08-20 20:42:56 -0500183 ndn::Name dataName = otherName;
Alejandro Gil Torrese0d20482016-03-06 23:56:19 -0600184
Muktadir Chowdhuryf04f9892017-08-20 20:42:56 -0500185 ndn::Data data(dataName);
Alejandro Gil Torrese0d20482016-03-06 23:56:19 -0600186 hello.onContentValidated(data);
187
188 BOOST_CHECK_EQUAL(collector.getStatistics().get(Statistics::PacketType::RCV_HELLO_DATA), 1);
189}
190
191/*
192 * An interest is sent for each lsa type (name, adjacency, coordinate). The respective statistics are
193 * totaled and checked.
194 */
195BOOST_AUTO_TEST_CASE(LsdbSendLsaInterest)
196{
Ashlesh Gawande939b6f82018-12-09 16:51:09 -0600197 const std::string interestPrefix("/localhop/ndn/nlsr/LSA/site/%C1.Router/router/");
Alejandro Gil Torrese0d20482016-03-06 23:56:19 -0600198 uint32_t seqNo = 1;
199
200 // Adjacency LSA
Ashlesh Gawande0db4d4d2020-02-05 20:30:02 -0800201 sendInterestAndCheckStats(interestPrefix, boost::lexical_cast<std::string>(Lsa::Type::ADJACENCY),
202 seqNo, Statistics::PacketType::SENT_ADJ_LSA_INTEREST);
Alejandro Gil Torrese0d20482016-03-06 23:56:19 -0600203
204 // Coordinate LSA
Ashlesh Gawande0db4d4d2020-02-05 20:30:02 -0800205 sendInterestAndCheckStats(interestPrefix, boost::lexical_cast<std::string>(Lsa::Type::COORDINATE),
206 seqNo, Statistics::PacketType::SENT_COORD_LSA_INTEREST);
Alejandro Gil Torrese0d20482016-03-06 23:56:19 -0600207
208 // Name LSA
Ashlesh Gawande0db4d4d2020-02-05 20:30:02 -0800209 sendInterestAndCheckStats(interestPrefix, boost::lexical_cast<std::string>(Lsa::Type::NAME),
210 seqNo, Statistics::PacketType::SENT_NAME_LSA_INTEREST);
Alejandro Gil Torrese0d20482016-03-06 23:56:19 -0600211
212 // 3 total lsa interests were sent
213 BOOST_CHECK_EQUAL(collector.getStatistics().get(Statistics::PacketType::SENT_LSA_INTEREST), 3);
214}
215
216/*
Nick Gordon727d4832017-10-13 18:04:25 -0500217 * Tests the statistics collected upon processing incoming lsa
218 * interests and respective outgoing data. This process will trigger
219 * both an increment for received lsa interest and sent lsa data.
Alejandro Gil Torrese0d20482016-03-06 23:56:19 -0600220 *
221 * /sa receiveInterestAndCheckSentStats
222 */
223BOOST_AUTO_TEST_CASE(LsdbReceiveInterestSendData)
224{
Alejandro Gil Torrese0d20482016-03-06 23:56:19 -0600225 // Adjacency LSA
Muktadir Chowdhuryc3ea26f2018-01-05 21:40:59 +0000226 lsdb.buildAndInstallOwnAdjLsa();
227
228 ndn::Name adjLsaKey = conf.getRouterPrefix();
Ashlesh Gawande0db4d4d2020-02-05 20:30:02 -0800229 adjLsaKey.append(boost::lexical_cast<std::string>(Lsa::Type::ADJACENCY));
Muktadir Chowdhuryc3ea26f2018-01-05 21:40:59 +0000230
231 AdjLsa* adjLsa = lsdb.findAdjLsa(adjLsaKey);
Ashlesh Gawande0db4d4d2020-02-05 20:30:02 -0800232 uint32_t seqNo = adjLsa->getSeqNo();
Muktadir Chowdhuryc3ea26f2018-01-05 21:40:59 +0000233
Alejandro Gil Torrese0d20482016-03-06 23:56:19 -0600234 Adjacent adjacency("adjacency");
235 adjacency.setStatus(Adjacent::STATUS_ACTIVE);
236
Muktadir Chowdhuryc3ea26f2018-01-05 21:40:59 +0000237 adjLsa->addAdjacent(adjacency);
Alejandro Gil Torrese0d20482016-03-06 23:56:19 -0600238
Muktadir Chowdhuryc3ea26f2018-01-05 21:40:59 +0000239 lsdb.installAdjLsa(*adjLsa);
Alejandro Gil Torrese0d20482016-03-06 23:56:19 -0600240
Ashlesh Gawande939b6f82018-12-09 16:51:09 -0600241 const std::string interestPrefix("/localhop/ndn/nlsr/LSA/site/%C1.Router/this-router/");
Alejandro Gil Torrese0d20482016-03-06 23:56:19 -0600242
243 // Receive Adjacency LSA Interest
244 receiveInterestAndCheckSentStats(interestPrefix,
Ashlesh Gawande0db4d4d2020-02-05 20:30:02 -0800245 boost::lexical_cast<std::string>(Lsa::Type::ADJACENCY),
Alejandro Gil Torrese0d20482016-03-06 23:56:19 -0600246 seqNo,
247 Statistics::PacketType::RCV_ADJ_LSA_INTEREST,
248 Statistics::PacketType::SENT_ADJ_LSA_DATA);
249
250 // Name LSA
Muktadir Chowdhuryc3ea26f2018-01-05 21:40:59 +0000251 ndn::Name nameLsaKey = conf.getRouterPrefix();
Ashlesh Gawande0db4d4d2020-02-05 20:30:02 -0800252 nameLsaKey.append(boost::lexical_cast<std::string>(Lsa::Type::NAME));
Alejandro Gil Torrese0d20482016-03-06 23:56:19 -0600253
Muktadir Chowdhuryc3ea26f2018-01-05 21:40:59 +0000254 NameLsa* nameLsa = lsdb.findNameLsa(nameLsaKey);
Ashlesh Gawande6b388fc2019-09-30 10:14:41 -0500255 BOOST_ASSERT(nameLsa != nullptr);
Muktadir Chowdhuryc3ea26f2018-01-05 21:40:59 +0000256
Ashlesh Gawande0db4d4d2020-02-05 20:30:02 -0800257 seqNo = nameLsa->getSeqNo();
Muktadir Chowdhuryc3ea26f2018-01-05 21:40:59 +0000258
259 nameLsa->addName(ndn::Name("/ndn/name"));
260 lsdb.installNameLsa(*nameLsa);
Alejandro Gil Torrese0d20482016-03-06 23:56:19 -0600261
262 // Receive Name LSA Interest
263 receiveInterestAndCheckSentStats(interestPrefix,
Ashlesh Gawande0db4d4d2020-02-05 20:30:02 -0800264 boost::lexical_cast<std::string>(Lsa::Type::NAME),
Alejandro Gil Torrese0d20482016-03-06 23:56:19 -0600265 seqNo,
266 Statistics::PacketType::RCV_NAME_LSA_INTEREST,
267 Statistics::PacketType::SENT_NAME_LSA_DATA);
268
Muktadir Chowdhuryc3ea26f2018-01-05 21:40:59 +0000269 // // Coordinate LSA
270 lsdb.buildAndInstallOwnCoordinateLsa();
271 ndn::Name coorLsaKey = conf.getRouterPrefix();
Ashlesh Gawande0db4d4d2020-02-05 20:30:02 -0800272 coorLsaKey.append(boost::lexical_cast<std::string>(Lsa::Type::COORDINATE));
Muktadir Chowdhuryc3ea26f2018-01-05 21:40:59 +0000273
274 CoordinateLsa* coorLsa = lsdb.findCoordinateLsa(coorLsaKey);
Ashlesh Gawande0db4d4d2020-02-05 20:30:02 -0800275 seqNo = coorLsa->getSeqNo();
Muktadir Chowdhuryc3ea26f2018-01-05 21:40:59 +0000276 coorLsa->setCorTheta({20.0, 30.0});
277 lsdb.installCoordinateLsa(*coorLsa);
Alejandro Gil Torrese0d20482016-03-06 23:56:19 -0600278
279 // Receive Adjacency LSA Interest
280 receiveInterestAndCheckSentStats(interestPrefix,
Ashlesh Gawande0db4d4d2020-02-05 20:30:02 -0800281 boost::lexical_cast<std::string>(Lsa::Type::COORDINATE),
Alejandro Gil Torrese0d20482016-03-06 23:56:19 -0600282 seqNo,
283 Statistics::PacketType::RCV_COORD_LSA_INTEREST,
284 Statistics::PacketType::SENT_COORD_LSA_DATA);
285
286 // 3 different lsa type interests should be received
287 BOOST_CHECK_EQUAL(collector.getStatistics().get(Statistics::PacketType::RCV_LSA_INTEREST), 3);
288
289 // data should have been sent 3x, once per lsa type
290 BOOST_CHECK_EQUAL(collector.getStatistics().get(Statistics::PacketType::SENT_LSA_DATA), 3);
291}
292
293/*
294 * Data for each lsa type (name, adjacency, coordinate) is sent to the lsdb and statistics are
295 * checked to verify the respective statistical PacketType has been received.
296 */
297BOOST_AUTO_TEST_CASE(LsdbReceiveData)
298{
299 ndn::Name routerName("/ndn/cs/%C1.Router/router1");
300 uint32_t seqNo = 1;
301 ndn::time::system_clock::TimePoint MAX_TIME = ndn::time::system_clock::TimePoint::max();
302
303 // adjacency lsa
Ashlesh Gawande939b6f82018-12-09 16:51:09 -0600304 ndn::Name adjInterest("/localhop/ndn/nlsr/LSA/cs/%C1.Router/router1/ADJACENCY/");
Alejandro Gil Torrese0d20482016-03-06 23:56:19 -0600305 adjInterest.appendNumber(seqNo);
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600306 AdjLsa aLsa(routerName, seqNo, MAX_TIME, 1, conf.getAdjacencyList());
Alejandro Gil Torrese0d20482016-03-06 23:56:19 -0600307 lsdb.installAdjLsa(aLsa);
308
Ashlesh Gawande0db4d4d2020-02-05 20:30:02 -0800309 lsdb.afterFetchLsa(aLsa.wireEncode().getBuffer(), adjInterest);
Alejandro Gil Torrese0d20482016-03-06 23:56:19 -0600310 BOOST_CHECK_EQUAL(collector.getStatistics().get(Statistics::PacketType::RCV_ADJ_LSA_DATA), 1);
311
312 // coordinate lsa
Ashlesh Gawande939b6f82018-12-09 16:51:09 -0600313 ndn::Name coordInterest("/localhop/ndn/nlsr/LSA/cs/%C1.Router/router1/COORDINATE/");
Alejandro Gil Torrese0d20482016-03-06 23:56:19 -0600314 coordInterest.appendNumber(seqNo);
315 std::vector<double> angles = {20.0, 30.0};
316 CoordinateLsa cLsa(routerName, seqNo, MAX_TIME, 2.5, angles);
317 lsdb.installCoordinateLsa(cLsa);
318
Ashlesh Gawande0db4d4d2020-02-05 20:30:02 -0800319 lsdb.afterFetchLsa(cLsa.wireEncode().getBuffer(), coordInterest);
Alejandro Gil Torrese0d20482016-03-06 23:56:19 -0600320 BOOST_CHECK_EQUAL(collector.getStatistics().get(Statistics::PacketType::RCV_COORD_LSA_DATA), 1);
321
322 // name lsa
Ashlesh Gawande939b6f82018-12-09 16:51:09 -0600323 ndn::Name interestName("/localhop/ndn/nlsr/LSA/cs/%C1.Router/router1/NAME/");
Alejandro Gil Torrese0d20482016-03-06 23:56:19 -0600324 interestName.appendNumber(seqNo);
Ashlesh Gawande0db4d4d2020-02-05 20:30:02 -0800325 NameLsa nlsa(routerName, seqNo, MAX_TIME, conf.getNamePrefixList());
326 lsdb.installNameLsa(nlsa);
Alejandro Gil Torrese0d20482016-03-06 23:56:19 -0600327
Ashlesh Gawande0db4d4d2020-02-05 20:30:02 -0800328 lsdb.afterFetchLsa(nlsa.wireEncode().getBuffer(), interestName);
Alejandro Gil Torrese0d20482016-03-06 23:56:19 -0600329 BOOST_CHECK_EQUAL(collector.getStatistics().get(Statistics::PacketType::RCV_NAME_LSA_DATA), 1);
330
331 // 3 lsa data types should be received
332 BOOST_CHECK_EQUAL(collector.getStatistics().get(Statistics::PacketType::RCV_LSA_DATA), 3);
333}
334
335BOOST_AUTO_TEST_SUITE_END()
336
337} // namespace test
338} // namespace nlsr