blob: 3110e87ff5e0880f9033445a8c498b2f77e358cf [file] [log] [blame]
Muktadir Chowdhuryc3ea26f2018-01-05 21:40:59 +00001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Ashlesh Gawande5d93aa52020-06-13 18:57:45 -07002/*
3 * Copyright (c) 2014-2021, Regents of the University of California,
Muktadir Chowdhuryc3ea26f2018-01-05 21:40:59 +00004 * 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.
10 *
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
Muktadir Chowdhuryc3ea26f2018-01-05 21:40:59 +000026#include "test-common.hpp"
27#include "nlsr.hpp"
28#include "name-prefix-list.hpp"
Ashlesh Gawande0db4d4d2020-02-05 20:30:02 -080029// #include "lsa.hpp"
Muktadir Chowdhuryc3ea26f2018-01-05 21:40:59 +000030
Muktadir Chowdhuryc3ea26f2018-01-05 21:40:59 +000031namespace nlsr {
32namespace test {
33
34class LsaSegmentStorageFixture : public UnitTestTimeFixture
35{
36public:
37 LsaSegmentStorageFixture()
Ashlesh Gawande15052402018-12-12 20:20:00 -060038 : face(m_ioService, m_keyChain, {true, true})
Saurab Dulal427e0122019-11-28 11:58:02 -060039 , conf(face, m_keyChain)
Ashlesh Gawande15052402018-12-12 20:20:00 -060040 , confProcessor(conf)
Ashlesh Gawande85998a12017-12-07 22:22:13 -060041 , nlsr(face, m_keyChain, conf)
42 , lsdb(nlsr.m_lsdb)
Ashlesh Gawande15052402018-12-12 20:20:00 -060043 , segmentPublisher(face, m_keyChain)
44 , numValidationSignal(0)
45 , afterSegmentValidatedConnection(lsdb.afterSegmentValidatedSignal.connect(
46 [this] (const ndn::Data& data) { ++numValidationSignal; }))
Muktadir Chowdhuryc3ea26f2018-01-05 21:40:59 +000047 {
Ashlesh Gawande15052402018-12-12 20:20:00 -060048 std::string config = R"CONF(
49 trust-anchor
50 {
51 type any
52 }
53 )CONF";
54 conf.m_validator.load(config, "config-file-from-string");
55
Ashlesh Gawande15052402018-12-12 20:20:00 -060056 this->advanceClocks(ndn::time::milliseconds(10));
Ashlesh Gawande15052402018-12-12 20:20:00 -060057 face.sentInterests.clear();
Muktadir Chowdhuryc3ea26f2018-01-05 21:40:59 +000058 }
59
Ashlesh Gawande15052402018-12-12 20:20:00 -060060 void
61 makeLsaContent(const ndn::Name& interestName, int numNames = 1000)
Ashlesh Gawande8c6d8c82018-02-28 21:41:31 -060062 {
Ashlesh Gawande15052402018-12-12 20:20:00 -060063 NamePrefixList npl1;
64 for (int i = 0; i < numNames; ++i) {
65 npl1.insert("name1-" + std::to_string(i));
66 }
Ashlesh Gawande8c6d8c82018-02-28 21:41:31 -060067 NameLsa nameLsa("/ndn/other-site/%C1.Router/other-router", 12,
Ashlesh Gawande0db4d4d2020-02-05 20:30:02 -080068 ndn::time::system_clock::now() + ndn::time::seconds(LSA_REFRESH_TIME_DEFAULT),
69 npl1);
70 segmentPublisher.publish(interestName, interestName, nameLsa.wireEncode(),
Ashlesh Gawande15052402018-12-12 20:20:00 -060071 ndn::time::seconds(LSA_REFRESH_TIME_DEFAULT));
Muktadir Chowdhuryc3ea26f2018-01-05 21:40:59 +000072 }
73
74 void
75 receiveLsaInterest(const ndn::Name& baseInterestName, uint64_t segmentNo,
76 bool isSegmentZero)
77 {
78 if (isSegmentZero) {
79 lsdb.processInterest(ndn::Name(), ndn::Interest(baseInterestName));
80 }
81 else {
82 ndn::Name nextInterestName(baseInterestName);
83 nextInterestName.appendSegment(segmentNo);
84 lsdb.processInterest(ndn::Name(), ndn::Interest(nextInterestName));
85 advanceClocks(ndn::time::milliseconds(1), 10);
86 }
87 }
88
89public:
90 ndn::util::DummyClientFace face;
Ashlesh Gawande85998a12017-12-07 22:22:13 -060091 ConfParameter conf;
Ashlesh Gawande15052402018-12-12 20:20:00 -060092 DummyConfFileProcessor confProcessor;
Muktadir Chowdhuryc3ea26f2018-01-05 21:40:59 +000093 Nlsr nlsr;
94 Lsdb& lsdb;
Ashlesh Gawande15052402018-12-12 20:20:00 -060095 psync::SegmentPublisher segmentPublisher;
96
97 int numValidationSignal;
98 ndn::util::signal::ScopedConnection afterSegmentValidatedConnection;
Muktadir Chowdhuryc3ea26f2018-01-05 21:40:59 +000099};
100
101BOOST_FIXTURE_TEST_SUITE(TestLsaSegmentStorage, LsaSegmentStorageFixture)
102
103BOOST_AUTO_TEST_CASE(Basic)
104{
105 ndn::Name lsaInterestName("/ndn/NLSR/LSA/other-site/%C1.Router/other-router/NAME");
106 lsaInterestName.appendNumber(12);
107
Ashlesh Gawande15052402018-12-12 20:20:00 -0600108 lsdb.expressInterest(lsaInterestName, 0);
109 advanceClocks(ndn::time::milliseconds(10));
Muktadir Chowdhuryc3ea26f2018-01-05 21:40:59 +0000110
Ashlesh Gawande15052402018-12-12 20:20:00 -0600111 makeLsaContent(lsaInterestName);
112 advanceClocks(ndn::time::milliseconds(10));
113
114 for (const auto& interest : face.sentInterests) {
115 segmentPublisher.replyFromStore(interest.getName());
116 advanceClocks(ndn::time::milliseconds(10));
Muktadir Chowdhuryc3ea26f2018-01-05 21:40:59 +0000117 }
118
Ashlesh Gawande15052402018-12-12 20:20:00 -0600119 // 3 data segments should be in the storage
120 BOOST_CHECK_EQUAL(lsdb.m_lsaStorage.size(), 3);
121 BOOST_CHECK_EQUAL(numValidationSignal, 3);
122 numValidationSignal = 0;
123 face.sentInterests.clear();
Muktadir Chowdhuryc3ea26f2018-01-05 21:40:59 +0000124
Ashlesh Gawande15052402018-12-12 20:20:00 -0600125 // Remove older LSA from storage upon receiving that of higher sequence
126 ndn::Name lsaInterestName2("/ndn/NLSR/LSA/other-site/%C1.Router/other-router/NAME");
127 lsaInterestName2.appendNumber(13);
128 lsdb.expressInterest(lsaInterestName2, 0);
129 advanceClocks(ndn::time::milliseconds(10));
Muktadir Chowdhuryc3ea26f2018-01-05 21:40:59 +0000130
Ashlesh Gawande15052402018-12-12 20:20:00 -0600131 makeLsaContent(lsaInterestName2, 1);
132 advanceClocks(ndn::time::milliseconds(10));
133 // Should have cleared all the three segments for the previous interest w/ seq 12
134 // And add one segment for this sequence 13
135 BOOST_CHECK_EQUAL(lsdb.m_lsaStorage.size(), 1);
136 BOOST_CHECK_EQUAL(numValidationSignal, 1);
Muktadir Chowdhuryc3ea26f2018-01-05 21:40:59 +0000137
Ashlesh Gawande15052402018-12-12 20:20:00 -0600138 // Scheduled removal of LSA
139 advanceClocks(ndn::time::seconds(LSA_REFRESH_TIME_DEFAULT));
140 BOOST_CHECK_EQUAL(lsdb.m_lsaStorage.size(), 0);
Ashlesh Gawande8c6d8c82018-02-28 21:41:31 -0600141}
142
Muktadir Chowdhuryc3ea26f2018-01-05 21:40:59 +0000143BOOST_AUTO_TEST_SUITE_END() // TestLsaSegmentStorage
144
145} // namespace test
146} // namespace nlsr