Junxiao Shi | 65d0072 | 2014-02-17 10:50:20 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Junxiao Shi | 3f9234b | 2017-12-07 17:41:50 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2014-2017, Regents of the University of California, |
Junxiao Shi | 767cb33 | 2015-01-08 09:35:49 -0700 | [diff] [blame] | 4 | * Arizona Board of Regents, |
| 5 | * Colorado State University, |
Junxiao Shi | 3535396 | 2015-01-08 09:13:47 -0700 | [diff] [blame] | 6 | * University Pierre & Marie Curie, Sorbonne University, |
Junxiao Shi | 767cb33 | 2015-01-08 09:35:49 -0700 | [diff] [blame] | 7 | * Washington University in St. Louis, |
| 8 | * Beijing Institute of Technology, |
| 9 | * The University of Memphis. |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 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/>. |
Junxiao Shi | 1983804 | 2014-06-21 00:34:01 -0700 | [diff] [blame] | 24 | */ |
Junxiao Shi | 65d0072 | 2014-02-17 10:50:20 -0700 | [diff] [blame] | 25 | |
| 26 | #include "table/measurements.hpp" |
Junxiao Shi | 8c0500f | 2015-11-11 08:30:16 -0700 | [diff] [blame] | 27 | #include "table/fib.hpp" |
Junxiao Shi | 767cb33 | 2015-01-08 09:35:49 -0700 | [diff] [blame] | 28 | #include "table/pit.hpp" |
Junxiao Shi | 65d0072 | 2014-02-17 10:50:20 -0700 | [diff] [blame] | 29 | |
Junxiao Shi | d9ee45c | 2014-02-27 15:38:11 -0700 | [diff] [blame] | 30 | #include "tests/test-common.hpp" |
Junxiao Shi | 65d0072 | 2014-02-17 10:50:20 -0700 | [diff] [blame] | 31 | |
| 32 | namespace nfd { |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 33 | namespace measurements { |
Junxiao Shi | d9ee45c | 2014-02-27 15:38:11 -0700 | [diff] [blame] | 34 | namespace tests { |
Junxiao Shi | 65d0072 | 2014-02-17 10:50:20 -0700 | [diff] [blame] | 35 | |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 36 | using namespace nfd::tests; |
| 37 | |
Junxiao Shi | 8c0500f | 2015-11-11 08:30:16 -0700 | [diff] [blame] | 38 | BOOST_AUTO_TEST_SUITE(Table) |
| 39 | |
| 40 | class MeasurementsFixture : public UnitTestTimeFixture |
| 41 | { |
| 42 | public: |
| 43 | MeasurementsFixture() |
| 44 | : measurements(nameTree) |
| 45 | { |
| 46 | } |
| 47 | |
| 48 | public: |
| 49 | NameTree nameTree; |
| 50 | Measurements measurements; |
| 51 | }; |
| 52 | |
| 53 | BOOST_FIXTURE_TEST_SUITE(TestMeasurements, MeasurementsFixture) |
Junxiao Shi | 65d0072 | 2014-02-17 10:50:20 -0700 | [diff] [blame] | 54 | |
| 55 | BOOST_AUTO_TEST_CASE(Get_Parent) |
| 56 | { |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 57 | Entry& entryAB = measurements.get("/A/B"); |
| 58 | BOOST_CHECK_EQUAL(entryAB.getName(), "/A/B"); |
Junxiao Shi | 65d0072 | 2014-02-17 10:50:20 -0700 | [diff] [blame] | 59 | |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 60 | Entry& entry0 = measurements.get("/"); |
| 61 | BOOST_CHECK_EQUAL(entry0.getName(), "/"); |
Junxiao Shi | 65d0072 | 2014-02-17 10:50:20 -0700 | [diff] [blame] | 62 | |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 63 | Entry* entryA = measurements.getParent(entryAB); |
Junxiao Shi | e368d99 | 2014-12-02 23:44:31 -0700 | [diff] [blame] | 64 | BOOST_REQUIRE(entryA != nullptr); |
Junxiao Shi | 8c0500f | 2015-11-11 08:30:16 -0700 | [diff] [blame] | 65 | BOOST_CHECK_EQUAL(entryA->getName(), "/A"); |
Junxiao Shi | 65d0072 | 2014-02-17 10:50:20 -0700 | [diff] [blame] | 66 | |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 67 | Entry* entry0c = measurements.getParent(*entryA); |
| 68 | BOOST_REQUIRE(entry0c != nullptr); |
| 69 | BOOST_CHECK_EQUAL(&entry0, entry0c); |
Junxiao Shi | 65d0072 | 2014-02-17 10:50:20 -0700 | [diff] [blame] | 70 | } |
| 71 | |
Junxiao Shi | 3f9234b | 2017-12-07 17:41:50 +0000 | [diff] [blame] | 72 | BOOST_AUTO_TEST_CASE(GetLongName) |
| 73 | { |
| 74 | Name n; |
| 75 | while (n.size() < NameTree::getMaxDepth() - 1) { |
| 76 | n.append("A"); |
| 77 | } |
| 78 | Entry& entry1 = measurements.get(n); |
| 79 | BOOST_CHECK_EQUAL(entry1.getName().size(), NameTree::getMaxDepth() - 1); |
| 80 | |
| 81 | n.append("B"); |
| 82 | Entry& entry2 = measurements.get(n); |
| 83 | BOOST_CHECK_EQUAL(entry2.getName().size(), NameTree::getMaxDepth()); |
| 84 | |
| 85 | n.append("C"); |
| 86 | Entry& entry3 = measurements.get(n); |
| 87 | BOOST_CHECK_EQUAL(entry3.getName().size(), NameTree::getMaxDepth()); |
| 88 | } |
| 89 | |
Junxiao Shi | 8c0500f | 2015-11-11 08:30:16 -0700 | [diff] [blame] | 90 | BOOST_AUTO_TEST_CASE(GetWithFibEntry) |
| 91 | { |
| 92 | Fib fib(nameTree); |
| 93 | |
Junxiao Shi | a6de429 | 2016-07-12 02:08:10 +0000 | [diff] [blame] | 94 | const fib::Entry* fibA = fib.insert("/A").first; |
| 95 | const fib::Entry* fibAB = fib.insert("/A/B").first; |
Junxiao Shi | 8c0500f | 2015-11-11 08:30:16 -0700 | [diff] [blame] | 96 | |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 97 | Entry& entryA = measurements.get(*fibA); |
| 98 | BOOST_CHECK_EQUAL(entryA.getName(), "/A"); |
Junxiao Shi | 8c0500f | 2015-11-11 08:30:16 -0700 | [diff] [blame] | 99 | |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 100 | Entry& entryAB = measurements.get(*fibAB); |
| 101 | BOOST_CHECK_EQUAL(entryAB.getName(), "/A/B"); |
Junxiao Shi | 8c0500f | 2015-11-11 08:30:16 -0700 | [diff] [blame] | 102 | } |
| 103 | |
| 104 | BOOST_AUTO_TEST_CASE(GetWithEmptyFibEntry) // Bug 3275 |
| 105 | { |
| 106 | Fib fib(nameTree); |
| 107 | |
Junxiao Shi | a6de429 | 2016-07-12 02:08:10 +0000 | [diff] [blame] | 108 | const fib::Entry& fib0 = fib.findLongestPrefixMatch("/"); |
Junxiao Shi | 8c0500f | 2015-11-11 08:30:16 -0700 | [diff] [blame] | 109 | |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 110 | Entry& entry0 = measurements.get(fib0); |
| 111 | BOOST_CHECK_EQUAL(entry0.getName(), "/"); |
Junxiao Shi | 8c0500f | 2015-11-11 08:30:16 -0700 | [diff] [blame] | 112 | } |
| 113 | |
| 114 | BOOST_AUTO_TEST_CASE(GetWithPitEntry) |
| 115 | { |
| 116 | Pit pit(nameTree); |
| 117 | |
| 118 | shared_ptr<Interest> interestA = makeInterest("/A"); |
| 119 | shared_ptr<pit::Entry> pitA = pit.insert(*interestA).first; |
Junxiao Shi | 4370fde | 2016-02-24 12:20:46 -0700 | [diff] [blame] | 120 | shared_ptr<Data> dataABC = makeData("/A/B/C"); |
| 121 | Name fullName = dataABC->getFullName(); |
| 122 | shared_ptr<Interest> interestFull = makeInterest(fullName); |
| 123 | shared_ptr<pit::Entry> pitFull = pit.insert(*interestFull).first; |
Junxiao Shi | 8c0500f | 2015-11-11 08:30:16 -0700 | [diff] [blame] | 124 | |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 125 | Entry& entryA = measurements.get(*pitA); |
| 126 | BOOST_CHECK_EQUAL(entryA.getName(), "/A"); |
Junxiao Shi | 4370fde | 2016-02-24 12:20:46 -0700 | [diff] [blame] | 127 | |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 128 | Entry& entryFull = measurements.get(*pitFull); |
| 129 | BOOST_CHECK_EQUAL(entryFull.getName(), fullName); |
Junxiao Shi | 8c0500f | 2015-11-11 08:30:16 -0700 | [diff] [blame] | 130 | } |
| 131 | |
Junxiao Shi | b30c7b0 | 2015-01-07 15:45:54 -0700 | [diff] [blame] | 132 | class DummyStrategyInfo1 : public fw::StrategyInfo |
| 133 | { |
| 134 | public: |
| 135 | static constexpr int |
| 136 | getTypeId() |
| 137 | { |
| 138 | return 21; |
| 139 | } |
| 140 | }; |
| 141 | |
| 142 | class DummyStrategyInfo2 : public fw::StrategyInfo |
| 143 | { |
| 144 | public: |
| 145 | static constexpr int |
| 146 | getTypeId() |
| 147 | { |
| 148 | return 22; |
| 149 | } |
| 150 | }; |
| 151 | |
| 152 | BOOST_AUTO_TEST_CASE(FindLongestPrefixMatch) |
| 153 | { |
Junxiao Shi | b30c7b0 | 2015-01-07 15:45:54 -0700 | [diff] [blame] | 154 | measurements.get("/A"); |
Junxiao Shi | 5b3feb6 | 2016-08-19 01:51:41 +0000 | [diff] [blame] | 155 | measurements.get("/A/B/C").insertStrategyInfo<DummyStrategyInfo1>(); |
Junxiao Shi | b30c7b0 | 2015-01-07 15:45:54 -0700 | [diff] [blame] | 156 | measurements.get("/A/B/C/D"); |
| 157 | |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 158 | Entry* found1 = measurements.findLongestPrefixMatch("/A/B/C/D/E"); |
Junxiao Shi | b30c7b0 | 2015-01-07 15:45:54 -0700 | [diff] [blame] | 159 | BOOST_REQUIRE(found1 != nullptr); |
| 160 | BOOST_CHECK_EQUAL(found1->getName(), "/A/B/C/D"); |
| 161 | |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 162 | Entry* found2 = measurements.findLongestPrefixMatch("/A/B/C/D/E", |
| 163 | EntryWithStrategyInfo<DummyStrategyInfo1>()); |
Junxiao Shi | b30c7b0 | 2015-01-07 15:45:54 -0700 | [diff] [blame] | 164 | BOOST_REQUIRE(found2 != nullptr); |
| 165 | BOOST_CHECK_EQUAL(found2->getName(), "/A/B/C"); |
| 166 | |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 167 | Entry* found3 = measurements.findLongestPrefixMatch("/A/B/C/D/E", |
| 168 | EntryWithStrategyInfo<DummyStrategyInfo2>()); |
Junxiao Shi | b30c7b0 | 2015-01-07 15:45:54 -0700 | [diff] [blame] | 169 | BOOST_CHECK(found3 == nullptr); |
| 170 | } |
| 171 | |
Junxiao Shi | 767cb33 | 2015-01-08 09:35:49 -0700 | [diff] [blame] | 172 | BOOST_AUTO_TEST_CASE(FindLongestPrefixMatchWithPitEntry) |
| 173 | { |
Junxiao Shi | 767cb33 | 2015-01-08 09:35:49 -0700 | [diff] [blame] | 174 | Pit pit(nameTree); |
| 175 | |
| 176 | measurements.get("/A"); |
Junxiao Shi | 5b3feb6 | 2016-08-19 01:51:41 +0000 | [diff] [blame] | 177 | measurements.get("/A/B/C").insertStrategyInfo<DummyStrategyInfo1>(); |
Junxiao Shi | 767cb33 | 2015-01-08 09:35:49 -0700 | [diff] [blame] | 178 | measurements.get("/A/B/C/D"); |
| 179 | |
| 180 | shared_ptr<Interest> interest = makeInterest("/A/B/C/D/E"); |
| 181 | shared_ptr<pit::Entry> pitEntry = pit.insert(*interest).first; |
| 182 | |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 183 | Entry* found1 = measurements.findLongestPrefixMatch(*pitEntry); |
Junxiao Shi | 767cb33 | 2015-01-08 09:35:49 -0700 | [diff] [blame] | 184 | BOOST_REQUIRE(found1 != nullptr); |
| 185 | BOOST_CHECK_EQUAL(found1->getName(), "/A/B/C/D"); |
| 186 | |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 187 | Entry* found2 = measurements.findLongestPrefixMatch(*pitEntry, |
| 188 | EntryWithStrategyInfo<DummyStrategyInfo1>()); |
Junxiao Shi | 767cb33 | 2015-01-08 09:35:49 -0700 | [diff] [blame] | 189 | BOOST_REQUIRE(found2 != nullptr); |
| 190 | BOOST_CHECK_EQUAL(found2->getName(), "/A/B/C"); |
| 191 | |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 192 | Entry* found3 = measurements.findLongestPrefixMatch(*pitEntry, |
| 193 | EntryWithStrategyInfo<DummyStrategyInfo2>()); |
Junxiao Shi | 767cb33 | 2015-01-08 09:35:49 -0700 | [diff] [blame] | 194 | BOOST_CHECK(found3 == nullptr); |
| 195 | } |
| 196 | |
Junxiao Shi | 8c0500f | 2015-11-11 08:30:16 -0700 | [diff] [blame] | 197 | BOOST_AUTO_TEST_CASE(Lifetime) |
Junxiao Shi | 1983804 | 2014-06-21 00:34:01 -0700 | [diff] [blame] | 198 | { |
Junxiao Shi | 1983804 | 2014-06-21 00:34:01 -0700 | [diff] [blame] | 199 | Name nameA("ndn:/A"); |
| 200 | Name nameB("ndn:/B"); |
| 201 | Name nameC("ndn:/C"); |
| 202 | |
| 203 | BOOST_CHECK_EQUAL(measurements.size(), 0); |
| 204 | |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 205 | Entry& entryA = measurements.get(nameA); |
| 206 | measurements.get(nameB); |
| 207 | Entry& entryC = measurements.get(nameC); |
Junxiao Shi | 1983804 | 2014-06-21 00:34:01 -0700 | [diff] [blame] | 208 | BOOST_CHECK_EQUAL(measurements.size(), 3); |
| 209 | |
| 210 | const time::nanoseconds EXTEND_A = time::seconds(2); |
| 211 | const time::nanoseconds CHECK1 = time::seconds(3); |
| 212 | const time::nanoseconds CHECK2 = time::seconds(5); |
| 213 | const time::nanoseconds EXTEND_C = time::seconds(6); |
| 214 | const time::nanoseconds CHECK3 = time::seconds(7); |
Junxiao Shi | e368d99 | 2014-12-02 23:44:31 -0700 | [diff] [blame] | 215 | BOOST_ASSERT(EXTEND_A < CHECK1); |
| 216 | BOOST_ASSERT(CHECK1 < Measurements::getInitialLifetime()); |
| 217 | BOOST_ASSERT(Measurements::getInitialLifetime() < CHECK2); |
| 218 | BOOST_ASSERT(CHECK2 < EXTEND_C); |
| 219 | BOOST_ASSERT(EXTEND_C < CHECK3); |
Junxiao Shi | 1983804 | 2014-06-21 00:34:01 -0700 | [diff] [blame] | 220 | |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 221 | measurements.extendLifetime(entryA, EXTEND_A); |
| 222 | measurements.extendLifetime(entryC, EXTEND_C); |
Junxiao Shi | 1983804 | 2014-06-21 00:34:01 -0700 | [diff] [blame] | 223 | // remaining lifetime: |
| 224 | // A = initial lifetime, because it's extended by less duration |
| 225 | // B = initial lifetime |
| 226 | // C = EXTEND_C |
Junxiao Shi | 1983804 | 2014-06-21 00:34:01 -0700 | [diff] [blame] | 227 | |
Junxiao Shi | e368d99 | 2014-12-02 23:44:31 -0700 | [diff] [blame] | 228 | this->advanceClocks(time::milliseconds(100), CHECK1); |
| 229 | BOOST_CHECK(measurements.findExactMatch(nameA) != nullptr); |
| 230 | BOOST_CHECK(measurements.findExactMatch(nameB) != nullptr); |
| 231 | BOOST_CHECK(measurements.findExactMatch(nameC) != nullptr); |
Junxiao Shi | 1983804 | 2014-06-21 00:34:01 -0700 | [diff] [blame] | 232 | BOOST_CHECK_EQUAL(measurements.size(), 3); |
| 233 | |
Junxiao Shi | e368d99 | 2014-12-02 23:44:31 -0700 | [diff] [blame] | 234 | this->advanceClocks(time::milliseconds(100), CHECK2 - CHECK1); |
| 235 | BOOST_CHECK(measurements.findExactMatch(nameA) == nullptr); |
| 236 | BOOST_CHECK(measurements.findExactMatch(nameB) == nullptr); |
| 237 | BOOST_CHECK(measurements.findExactMatch(nameC) != nullptr); |
Junxiao Shi | 1983804 | 2014-06-21 00:34:01 -0700 | [diff] [blame] | 238 | BOOST_CHECK_EQUAL(measurements.size(), 1); |
| 239 | |
Junxiao Shi | e368d99 | 2014-12-02 23:44:31 -0700 | [diff] [blame] | 240 | this->advanceClocks(time::milliseconds(100), CHECK3 - CHECK2); |
| 241 | BOOST_CHECK(measurements.findExactMatch(nameA) == nullptr); |
| 242 | BOOST_CHECK(measurements.findExactMatch(nameB) == nullptr); |
| 243 | BOOST_CHECK(measurements.findExactMatch(nameC) == nullptr); |
Junxiao Shi | 1983804 | 2014-06-21 00:34:01 -0700 | [diff] [blame] | 244 | BOOST_CHECK_EQUAL(measurements.size(), 0); |
| 245 | } |
| 246 | |
Junxiao Shi | 8c0500f | 2015-11-11 08:30:16 -0700 | [diff] [blame] | 247 | BOOST_AUTO_TEST_CASE(EraseNameTreeEntry) |
Junxiao Shi | ee5a444 | 2014-07-27 17:13:43 -0700 | [diff] [blame] | 248 | { |
Junxiao Shi | ee5a444 | 2014-07-27 17:13:43 -0700 | [diff] [blame] | 249 | size_t nNameTreeEntriesBefore = nameTree.size(); |
| 250 | |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 251 | measurements.get("/A"); |
| 252 | BOOST_CHECK_EQUAL(measurements.size(), 1); |
| 253 | |
Junxiao Shi | e368d99 | 2014-12-02 23:44:31 -0700 | [diff] [blame] | 254 | this->advanceClocks(Measurements::getInitialLifetime() + time::milliseconds(10)); |
Junxiao Shi | ee5a444 | 2014-07-27 17:13:43 -0700 | [diff] [blame] | 255 | BOOST_CHECK_EQUAL(measurements.size(), 0); |
| 256 | BOOST_CHECK_EQUAL(nameTree.size(), nNameTreeEntriesBefore); |
| 257 | } |
| 258 | |
Junxiao Shi | 8c0500f | 2015-11-11 08:30:16 -0700 | [diff] [blame] | 259 | BOOST_AUTO_TEST_SUITE_END() // TestMeasurements |
| 260 | BOOST_AUTO_TEST_SUITE_END() // Table |
Junxiao Shi | 65d0072 | 2014-02-17 10:50:20 -0700 | [diff] [blame] | 261 | |
Junxiao Shi | d9ee45c | 2014-02-27 15:38:11 -0700 | [diff] [blame] | 262 | } // namespace tests |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 263 | } // namespace measurements |
Junxiao Shi | 65d0072 | 2014-02-17 10:50:20 -0700 | [diff] [blame] | 264 | } // namespace nfd |