blob: 79b2b94075188a7017f7d56fdf44ab1778a6e1dd [file] [log] [blame]
Junxiao Shi65d00722014-02-17 10:50:20 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shi4370fde2016-02-24 12:20:46 -07003 * Copyright (c) 2014-2016, Regents of the University of California,
Junxiao Shi767cb332015-01-08 09:35:49 -07004 * Arizona Board of Regents,
5 * Colorado State University,
Junxiao Shi35353962015-01-08 09:13:47 -07006 * University Pierre & Marie Curie, Sorbonne University,
Junxiao Shi767cb332015-01-08 09:35:49 -07007 * Washington University in St. Louis,
8 * Beijing Institute of Technology,
9 * The University of Memphis.
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -070010 *
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/>.
Junxiao Shi19838042014-06-21 00:34:01 -070024 */
Junxiao Shi65d00722014-02-17 10:50:20 -070025
26#include "table/measurements.hpp"
Junxiao Shi8c0500f2015-11-11 08:30:16 -070027#include "table/fib.hpp"
Junxiao Shi767cb332015-01-08 09:35:49 -070028#include "table/pit.hpp"
Junxiao Shi65d00722014-02-17 10:50:20 -070029
Junxiao Shid9ee45c2014-02-27 15:38:11 -070030#include "tests/test-common.hpp"
Junxiao Shi65d00722014-02-17 10:50:20 -070031
32namespace nfd {
Junxiao Shi80f9fcd2016-07-23 02:48:36 +000033namespace measurements {
Junxiao Shid9ee45c2014-02-27 15:38:11 -070034namespace tests {
Junxiao Shi65d00722014-02-17 10:50:20 -070035
Junxiao Shi80f9fcd2016-07-23 02:48:36 +000036using namespace nfd::tests;
37
Junxiao Shi8c0500f2015-11-11 08:30:16 -070038BOOST_AUTO_TEST_SUITE(Table)
39
40class MeasurementsFixture : public UnitTestTimeFixture
41{
42public:
43 MeasurementsFixture()
44 : measurements(nameTree)
45 {
46 }
47
48public:
49 NameTree nameTree;
50 Measurements measurements;
51};
52
53BOOST_FIXTURE_TEST_SUITE(TestMeasurements, MeasurementsFixture)
Junxiao Shi65d00722014-02-17 10:50:20 -070054
55BOOST_AUTO_TEST_CASE(Get_Parent)
56{
Junxiao Shi80f9fcd2016-07-23 02:48:36 +000057 Entry& entryAB = measurements.get("/A/B");
58 BOOST_CHECK_EQUAL(entryAB.getName(), "/A/B");
Junxiao Shi65d00722014-02-17 10:50:20 -070059
Junxiao Shi80f9fcd2016-07-23 02:48:36 +000060 Entry& entry0 = measurements.get("/");
61 BOOST_CHECK_EQUAL(entry0.getName(), "/");
Junxiao Shi65d00722014-02-17 10:50:20 -070062
Junxiao Shi80f9fcd2016-07-23 02:48:36 +000063 Entry* entryA = measurements.getParent(entryAB);
Junxiao Shie368d992014-12-02 23:44:31 -070064 BOOST_REQUIRE(entryA != nullptr);
Junxiao Shi8c0500f2015-11-11 08:30:16 -070065 BOOST_CHECK_EQUAL(entryA->getName(), "/A");
Junxiao Shi65d00722014-02-17 10:50:20 -070066
Junxiao Shi80f9fcd2016-07-23 02:48:36 +000067 Entry* entry0c = measurements.getParent(*entryA);
68 BOOST_REQUIRE(entry0c != nullptr);
69 BOOST_CHECK_EQUAL(&entry0, entry0c);
Junxiao Shi65d00722014-02-17 10:50:20 -070070}
71
Junxiao Shi8c0500f2015-11-11 08:30:16 -070072BOOST_AUTO_TEST_CASE(GetWithFibEntry)
73{
74 Fib fib(nameTree);
75
Junxiao Shia6de4292016-07-12 02:08:10 +000076 const fib::Entry* fibA = fib.insert("/A").first;
77 const fib::Entry* fibAB = fib.insert("/A/B").first;
Junxiao Shi8c0500f2015-11-11 08:30:16 -070078
Junxiao Shi80f9fcd2016-07-23 02:48:36 +000079 Entry& entryA = measurements.get(*fibA);
80 BOOST_CHECK_EQUAL(entryA.getName(), "/A");
Junxiao Shi8c0500f2015-11-11 08:30:16 -070081
Junxiao Shi80f9fcd2016-07-23 02:48:36 +000082 Entry& entryAB = measurements.get(*fibAB);
83 BOOST_CHECK_EQUAL(entryAB.getName(), "/A/B");
Junxiao Shi8c0500f2015-11-11 08:30:16 -070084}
85
86BOOST_AUTO_TEST_CASE(GetWithEmptyFibEntry) // Bug 3275
87{
88 Fib fib(nameTree);
89
Junxiao Shia6de4292016-07-12 02:08:10 +000090 const fib::Entry& fib0 = fib.findLongestPrefixMatch("/");
Junxiao Shi8c0500f2015-11-11 08:30:16 -070091
Junxiao Shi80f9fcd2016-07-23 02:48:36 +000092 Entry& entry0 = measurements.get(fib0);
93 BOOST_CHECK_EQUAL(entry0.getName(), "/");
Junxiao Shi8c0500f2015-11-11 08:30:16 -070094}
95
96BOOST_AUTO_TEST_CASE(GetWithPitEntry)
97{
98 Pit pit(nameTree);
99
100 shared_ptr<Interest> interestA = makeInterest("/A");
101 shared_ptr<pit::Entry> pitA = pit.insert(*interestA).first;
Junxiao Shi4370fde2016-02-24 12:20:46 -0700102 shared_ptr<Data> dataABC = makeData("/A/B/C");
103 Name fullName = dataABC->getFullName();
104 shared_ptr<Interest> interestFull = makeInterest(fullName);
105 shared_ptr<pit::Entry> pitFull = pit.insert(*interestFull).first;
Junxiao Shi8c0500f2015-11-11 08:30:16 -0700106
Junxiao Shi80f9fcd2016-07-23 02:48:36 +0000107 Entry& entryA = measurements.get(*pitA);
108 BOOST_CHECK_EQUAL(entryA.getName(), "/A");
Junxiao Shi4370fde2016-02-24 12:20:46 -0700109
Junxiao Shi80f9fcd2016-07-23 02:48:36 +0000110 Entry& entryFull = measurements.get(*pitFull);
111 BOOST_CHECK_EQUAL(entryFull.getName(), fullName);
Junxiao Shi8c0500f2015-11-11 08:30:16 -0700112}
113
Junxiao Shib30c7b02015-01-07 15:45:54 -0700114class DummyStrategyInfo1 : public fw::StrategyInfo
115{
116public:
117 static constexpr int
118 getTypeId()
119 {
120 return 21;
121 }
122};
123
124class DummyStrategyInfo2 : public fw::StrategyInfo
125{
126public:
127 static constexpr int
128 getTypeId()
129 {
130 return 22;
131 }
132};
133
134BOOST_AUTO_TEST_CASE(FindLongestPrefixMatch)
135{
Junxiao Shib30c7b02015-01-07 15:45:54 -0700136 measurements.get("/A");
Junxiao Shi80f9fcd2016-07-23 02:48:36 +0000137 measurements.get("/A/B/C").getOrCreateStrategyInfo<DummyStrategyInfo1>();
Junxiao Shib30c7b02015-01-07 15:45:54 -0700138 measurements.get("/A/B/C/D");
139
Junxiao Shi80f9fcd2016-07-23 02:48:36 +0000140 Entry* found1 = measurements.findLongestPrefixMatch("/A/B/C/D/E");
Junxiao Shib30c7b02015-01-07 15:45:54 -0700141 BOOST_REQUIRE(found1 != nullptr);
142 BOOST_CHECK_EQUAL(found1->getName(), "/A/B/C/D");
143
Junxiao Shi80f9fcd2016-07-23 02:48:36 +0000144 Entry* found2 = measurements.findLongestPrefixMatch("/A/B/C/D/E",
145 EntryWithStrategyInfo<DummyStrategyInfo1>());
Junxiao Shib30c7b02015-01-07 15:45:54 -0700146 BOOST_REQUIRE(found2 != nullptr);
147 BOOST_CHECK_EQUAL(found2->getName(), "/A/B/C");
148
Junxiao Shi80f9fcd2016-07-23 02:48:36 +0000149 Entry* found3 = measurements.findLongestPrefixMatch("/A/B/C/D/E",
150 EntryWithStrategyInfo<DummyStrategyInfo2>());
Junxiao Shib30c7b02015-01-07 15:45:54 -0700151 BOOST_CHECK(found3 == nullptr);
152}
153
Junxiao Shi767cb332015-01-08 09:35:49 -0700154BOOST_AUTO_TEST_CASE(FindLongestPrefixMatchWithPitEntry)
155{
Junxiao Shi767cb332015-01-08 09:35:49 -0700156 Pit pit(nameTree);
157
158 measurements.get("/A");
Junxiao Shi80f9fcd2016-07-23 02:48:36 +0000159 measurements.get("/A/B/C").getOrCreateStrategyInfo<DummyStrategyInfo1>();
Junxiao Shi767cb332015-01-08 09:35:49 -0700160 measurements.get("/A/B/C/D");
161
162 shared_ptr<Interest> interest = makeInterest("/A/B/C/D/E");
163 shared_ptr<pit::Entry> pitEntry = pit.insert(*interest).first;
164
Junxiao Shi80f9fcd2016-07-23 02:48:36 +0000165 Entry* found1 = measurements.findLongestPrefixMatch(*pitEntry);
Junxiao Shi767cb332015-01-08 09:35:49 -0700166 BOOST_REQUIRE(found1 != nullptr);
167 BOOST_CHECK_EQUAL(found1->getName(), "/A/B/C/D");
168
Junxiao Shi80f9fcd2016-07-23 02:48:36 +0000169 Entry* found2 = measurements.findLongestPrefixMatch(*pitEntry,
170 EntryWithStrategyInfo<DummyStrategyInfo1>());
Junxiao Shi767cb332015-01-08 09:35:49 -0700171 BOOST_REQUIRE(found2 != nullptr);
172 BOOST_CHECK_EQUAL(found2->getName(), "/A/B/C");
173
Junxiao Shi80f9fcd2016-07-23 02:48:36 +0000174 Entry* found3 = measurements.findLongestPrefixMatch(*pitEntry,
175 EntryWithStrategyInfo<DummyStrategyInfo2>());
Junxiao Shi767cb332015-01-08 09:35:49 -0700176 BOOST_CHECK(found3 == nullptr);
177}
178
Junxiao Shi8c0500f2015-11-11 08:30:16 -0700179BOOST_AUTO_TEST_CASE(Lifetime)
Junxiao Shi19838042014-06-21 00:34:01 -0700180{
Junxiao Shi19838042014-06-21 00:34:01 -0700181 Name nameA("ndn:/A");
182 Name nameB("ndn:/B");
183 Name nameC("ndn:/C");
184
185 BOOST_CHECK_EQUAL(measurements.size(), 0);
186
Junxiao Shi80f9fcd2016-07-23 02:48:36 +0000187 Entry& entryA = measurements.get(nameA);
188 measurements.get(nameB);
189 Entry& entryC = measurements.get(nameC);
Junxiao Shi19838042014-06-21 00:34:01 -0700190 BOOST_CHECK_EQUAL(measurements.size(), 3);
191
192 const time::nanoseconds EXTEND_A = time::seconds(2);
193 const time::nanoseconds CHECK1 = time::seconds(3);
194 const time::nanoseconds CHECK2 = time::seconds(5);
195 const time::nanoseconds EXTEND_C = time::seconds(6);
196 const time::nanoseconds CHECK3 = time::seconds(7);
Junxiao Shie368d992014-12-02 23:44:31 -0700197 BOOST_ASSERT(EXTEND_A < CHECK1);
198 BOOST_ASSERT(CHECK1 < Measurements::getInitialLifetime());
199 BOOST_ASSERT(Measurements::getInitialLifetime() < CHECK2);
200 BOOST_ASSERT(CHECK2 < EXTEND_C);
201 BOOST_ASSERT(EXTEND_C < CHECK3);
Junxiao Shi19838042014-06-21 00:34:01 -0700202
Junxiao Shi80f9fcd2016-07-23 02:48:36 +0000203 measurements.extendLifetime(entryA, EXTEND_A);
204 measurements.extendLifetime(entryC, EXTEND_C);
Junxiao Shi19838042014-06-21 00:34:01 -0700205 // remaining lifetime:
206 // A = initial lifetime, because it's extended by less duration
207 // B = initial lifetime
208 // C = EXTEND_C
Junxiao Shi19838042014-06-21 00:34:01 -0700209
Junxiao Shie368d992014-12-02 23:44:31 -0700210 this->advanceClocks(time::milliseconds(100), CHECK1);
211 BOOST_CHECK(measurements.findExactMatch(nameA) != nullptr);
212 BOOST_CHECK(measurements.findExactMatch(nameB) != nullptr);
213 BOOST_CHECK(measurements.findExactMatch(nameC) != nullptr);
Junxiao Shi19838042014-06-21 00:34:01 -0700214 BOOST_CHECK_EQUAL(measurements.size(), 3);
215
Junxiao Shie368d992014-12-02 23:44:31 -0700216 this->advanceClocks(time::milliseconds(100), CHECK2 - CHECK1);
217 BOOST_CHECK(measurements.findExactMatch(nameA) == nullptr);
218 BOOST_CHECK(measurements.findExactMatch(nameB) == nullptr);
219 BOOST_CHECK(measurements.findExactMatch(nameC) != nullptr);
Junxiao Shi19838042014-06-21 00:34:01 -0700220 BOOST_CHECK_EQUAL(measurements.size(), 1);
221
Junxiao Shie368d992014-12-02 23:44:31 -0700222 this->advanceClocks(time::milliseconds(100), CHECK3 - CHECK2);
223 BOOST_CHECK(measurements.findExactMatch(nameA) == nullptr);
224 BOOST_CHECK(measurements.findExactMatch(nameB) == nullptr);
225 BOOST_CHECK(measurements.findExactMatch(nameC) == nullptr);
Junxiao Shi19838042014-06-21 00:34:01 -0700226 BOOST_CHECK_EQUAL(measurements.size(), 0);
227}
228
Junxiao Shi8c0500f2015-11-11 08:30:16 -0700229BOOST_AUTO_TEST_CASE(EraseNameTreeEntry)
Junxiao Shiee5a4442014-07-27 17:13:43 -0700230{
Junxiao Shiee5a4442014-07-27 17:13:43 -0700231 size_t nNameTreeEntriesBefore = nameTree.size();
232
Junxiao Shi80f9fcd2016-07-23 02:48:36 +0000233 measurements.get("/A");
234 BOOST_CHECK_EQUAL(measurements.size(), 1);
235
Junxiao Shie368d992014-12-02 23:44:31 -0700236 this->advanceClocks(Measurements::getInitialLifetime() + time::milliseconds(10));
Junxiao Shiee5a4442014-07-27 17:13:43 -0700237 BOOST_CHECK_EQUAL(measurements.size(), 0);
238 BOOST_CHECK_EQUAL(nameTree.size(), nNameTreeEntriesBefore);
239}
240
Junxiao Shi8c0500f2015-11-11 08:30:16 -0700241BOOST_AUTO_TEST_SUITE_END() // TestMeasurements
242BOOST_AUTO_TEST_SUITE_END() // Table
Junxiao Shi65d00722014-02-17 10:50:20 -0700243
Junxiao Shid9ee45c2014-02-27 15:38:11 -0700244} // namespace tests
Junxiao Shi80f9fcd2016-07-23 02:48:36 +0000245} // namespace measurements
Junxiao Shi65d00722014-02-17 10:50:20 -0700246} // namespace nfd