HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Junxiao Shi | a6de429 | 2016-07-12 02:08:10 +0000 | [diff] [blame] | 3 | * Copyright (c) 2014-2016, Regents of the University of California, |
Spyridon Mastorakis | d0381c0 | 2015-02-19 10:29:41 -0800 | [diff] [blame] | 4 | * 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. |
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/>. |
Alexander Afanasyev | 28d586a | 2014-07-10 20:10:54 -0700 | [diff] [blame] | 24 | */ |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 25 | |
| 26 | #include "table/name-tree.hpp" |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 27 | |
Junxiao Shi | d9ee45c | 2014-02-27 15:38:11 -0700 | [diff] [blame] | 28 | #include "tests/test-common.hpp" |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 29 | |
| 30 | namespace nfd { |
Junxiao Shi | 2570f3e | 2016-07-27 02:48:29 +0000 | [diff] [blame] | 31 | namespace name_tree { |
Junxiao Shi | d9ee45c | 2014-02-27 15:38:11 -0700 | [diff] [blame] | 32 | namespace tests { |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 33 | |
Junxiao Shi | 2570f3e | 2016-07-27 02:48:29 +0000 | [diff] [blame] | 34 | using namespace nfd::tests; |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 35 | |
Junxiao Shi | 2570f3e | 2016-07-27 02:48:29 +0000 | [diff] [blame] | 36 | BOOST_AUTO_TEST_SUITE(Table) |
| 37 | BOOST_FIXTURE_TEST_SUITE(TestNameTree, BaseFixture) |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 38 | |
Junxiao Shi | b660b4c | 2016-08-06 20:47:44 +0000 | [diff] [blame] | 39 | BOOST_AUTO_TEST_CASE(ComputeHash) |
Haowei Yuan | f52dac7 | 2014-03-24 23:35:03 -0500 | [diff] [blame] | 40 | { |
| 41 | Name root("/"); |
| 42 | root.wireEncode(); |
Junxiao Shi | b660b4c | 2016-08-06 20:47:44 +0000 | [diff] [blame] | 43 | HashValue hashValue = computeHash(root); |
Junxiao Shi | 2570f3e | 2016-07-27 02:48:29 +0000 | [diff] [blame] | 44 | BOOST_CHECK_EQUAL(hashValue, 0); |
Haowei Yuan | f52dac7 | 2014-03-24 23:35:03 -0500 | [diff] [blame] | 45 | |
| 46 | Name prefix("/nohello/world/ndn/research"); |
| 47 | prefix.wireEncode(); |
Junxiao Shi | b660b4c | 2016-08-06 20:47:44 +0000 | [diff] [blame] | 48 | HashSequence hashes = computeHashes(prefix); |
| 49 | BOOST_CHECK_EQUAL(hashes.size(), prefix.size() + 1); |
Haowei Yuan | f52dac7 | 2014-03-24 23:35:03 -0500 | [diff] [blame] | 50 | } |
| 51 | |
Junxiao Shi | b660b4c | 2016-08-06 20:47:44 +0000 | [diff] [blame] | 52 | BOOST_AUTO_TEST_SUITE(Hashtable) |
| 53 | using name_tree::Hashtable; |
| 54 | |
| 55 | BOOST_AUTO_TEST_CASE(Modifiers) |
| 56 | { |
| 57 | Hashtable ht(HashtableOptions(16)); |
| 58 | |
| 59 | Name name("/A/B/C/D"); |
| 60 | HashSequence hashes = computeHashes(name); |
| 61 | |
| 62 | BOOST_CHECK_EQUAL(ht.size(), 0); |
| 63 | BOOST_CHECK(ht.find(name, 2) == nullptr); |
| 64 | |
| 65 | const Node* node = nullptr; |
| 66 | bool isNew = false; |
| 67 | std::tie(node, isNew) = ht.insert(name, 2, hashes); |
| 68 | BOOST_CHECK_EQUAL(isNew, true); |
| 69 | BOOST_CHECK(node != nullptr); |
| 70 | BOOST_CHECK_EQUAL(ht.size(), 1); |
| 71 | BOOST_CHECK_EQUAL(ht.find(name, 2), node); |
| 72 | BOOST_CHECK_EQUAL(ht.find(name, 2, hashes), node); |
| 73 | |
| 74 | BOOST_CHECK(ht.find(name, 0) == nullptr); |
| 75 | BOOST_CHECK(ht.find(name, 1) == nullptr); |
| 76 | BOOST_CHECK(ht.find(name, 3) == nullptr); |
| 77 | BOOST_CHECK(ht.find(name, 4) == nullptr); |
| 78 | |
| 79 | const Node* node2 = nullptr; |
| 80 | std::tie(node2, isNew) = ht.insert(name, 2, hashes); |
| 81 | BOOST_CHECK_EQUAL(isNew, false); |
| 82 | BOOST_CHECK_EQUAL(node2, node); |
| 83 | BOOST_CHECK_EQUAL(ht.size(), 1); |
| 84 | |
| 85 | std::tie(node2, isNew) = ht.insert(name, 4, hashes); |
| 86 | BOOST_CHECK_EQUAL(isNew, true); |
| 87 | BOOST_CHECK(node2 != nullptr); |
| 88 | BOOST_CHECK_NE(node2, node); |
| 89 | BOOST_CHECK_EQUAL(ht.size(), 2); |
| 90 | |
| 91 | ht.erase(const_cast<Node*>(node2)); |
| 92 | BOOST_CHECK_EQUAL(ht.size(), 1); |
| 93 | BOOST_CHECK(ht.find(name, 4) == nullptr); |
| 94 | BOOST_CHECK_EQUAL(ht.find(name, 2), node); |
| 95 | |
| 96 | ht.erase(const_cast<Node*>(node)); |
| 97 | BOOST_CHECK_EQUAL(ht.size(), 0); |
| 98 | BOOST_CHECK(ht.find(name, 2) == nullptr); |
| 99 | BOOST_CHECK(ht.find(name, 4) == nullptr); |
| 100 | } |
| 101 | |
| 102 | BOOST_AUTO_TEST_CASE(Resize) |
| 103 | { |
| 104 | HashtableOptions options(9); |
| 105 | BOOST_CHECK_EQUAL(options.initialSize, 9); |
| 106 | BOOST_CHECK_EQUAL(options.minSize, 9); |
| 107 | options.minSize = 6; |
| 108 | options.expandLoadFactor = 0.80; |
| 109 | options.expandFactor = 5.0; |
| 110 | options.shrinkLoadFactor = 0.12; |
| 111 | options.shrinkFactor = 0.3; |
| 112 | |
| 113 | Hashtable ht(options); |
| 114 | |
| 115 | auto addNodes = [&ht] (int min, int max) { |
| 116 | for (int i = min; i <= max; ++i) { |
| 117 | Name name; |
| 118 | name.appendNumber(i); |
| 119 | HashSequence hashes = computeHashes(name); |
| 120 | ht.insert(name, name.size(), hashes); |
| 121 | } |
| 122 | }; |
| 123 | |
| 124 | auto removeNodes = [&ht] (int min, int max) { |
| 125 | for (int i = min; i <= max; ++i) { |
| 126 | Name name; |
| 127 | name.appendNumber(i); |
| 128 | const Node* node = ht.find(name, name.size()); |
| 129 | BOOST_REQUIRE(node != nullptr); |
| 130 | ht.erase(const_cast<Node*>(node)); |
| 131 | } |
| 132 | }; |
| 133 | |
| 134 | BOOST_CHECK_EQUAL(ht.size(), 0); |
| 135 | BOOST_CHECK_EQUAL(ht.getNBuckets(), 9); |
| 136 | |
| 137 | addNodes(1, 1); |
| 138 | BOOST_CHECK_EQUAL(ht.size(), 1); |
| 139 | BOOST_CHECK_EQUAL(ht.getNBuckets(), 9); |
| 140 | |
| 141 | removeNodes(1, 1); |
| 142 | BOOST_CHECK_EQUAL(ht.size(), 0); |
| 143 | BOOST_CHECK_EQUAL(ht.getNBuckets(), 6); |
| 144 | |
| 145 | addNodes(1, 4); |
| 146 | BOOST_CHECK_EQUAL(ht.size(), 4); |
| 147 | BOOST_CHECK_EQUAL(ht.getNBuckets(), 6); |
| 148 | |
| 149 | addNodes(5, 5); |
| 150 | BOOST_CHECK_EQUAL(ht.size(), 5); |
| 151 | BOOST_CHECK_EQUAL(ht.getNBuckets(), 30); |
| 152 | |
| 153 | addNodes(6, 23); |
| 154 | BOOST_CHECK_EQUAL(ht.size(), 23); |
| 155 | BOOST_CHECK_EQUAL(ht.getNBuckets(), 30); |
| 156 | |
| 157 | addNodes(24, 25); |
| 158 | BOOST_CHECK_EQUAL(ht.size(), 25); |
| 159 | BOOST_CHECK_EQUAL(ht.getNBuckets(), 150); |
| 160 | |
| 161 | removeNodes(19, 25); |
| 162 | BOOST_CHECK_EQUAL(ht.size(), 18); |
| 163 | BOOST_CHECK_EQUAL(ht.getNBuckets(), 150); |
| 164 | |
| 165 | removeNodes(17, 18); |
| 166 | BOOST_CHECK_EQUAL(ht.size(), 16); |
| 167 | BOOST_CHECK_EQUAL(ht.getNBuckets(), 45); |
| 168 | |
| 169 | removeNodes(7, 16); |
| 170 | BOOST_CHECK_EQUAL(ht.size(), 6); |
| 171 | BOOST_CHECK_EQUAL(ht.getNBuckets(), 45); |
| 172 | |
| 173 | removeNodes(5, 6); |
| 174 | BOOST_CHECK_EQUAL(ht.size(), 4); |
| 175 | BOOST_CHECK_EQUAL(ht.getNBuckets(), 13); |
| 176 | |
| 177 | removeNodes(1, 4); |
| 178 | BOOST_CHECK_EQUAL(ht.size(), 0); |
| 179 | BOOST_CHECK_EQUAL(ht.getNBuckets(), 6); |
| 180 | } |
| 181 | |
| 182 | BOOST_AUTO_TEST_SUITE_END() // Hashtable |
| 183 | |
Junxiao Shi | 2570f3e | 2016-07-27 02:48:29 +0000 | [diff] [blame] | 184 | BOOST_AUTO_TEST_CASE(NameTreeEntry) |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 185 | { |
| 186 | Name prefix("ndn:/named-data/research/abc/def/ghi"); |
| 187 | |
Junxiao Shi | b660b4c | 2016-08-06 20:47:44 +0000 | [diff] [blame] | 188 | auto node = make_unique<Node>(0, prefix); |
| 189 | shared_ptr<Entry> npe = node->entry; |
Junxiao Shi | efceadc | 2014-03-09 18:52:57 -0700 | [diff] [blame] | 190 | BOOST_CHECK_EQUAL(npe->getPrefix(), prefix); |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 191 | |
| 192 | // examine all the get methods |
| 193 | |
Junxiao Shi | b660b4c | 2016-08-06 20:47:44 +0000 | [diff] [blame] | 194 | Entry* parent = npe->getParent(); |
Junxiao Shi | 2570f3e | 2016-07-27 02:48:29 +0000 | [diff] [blame] | 195 | BOOST_CHECK(parent == nullptr); |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 196 | |
Junxiao Shi | b660b4c | 2016-08-06 20:47:44 +0000 | [diff] [blame] | 197 | const std::vector<Entry*>& children = npe->getChildren(); |
| 198 | BOOST_CHECK_EQUAL(children.size(), 0); |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 199 | |
Junxiao Shi | a6de429 | 2016-07-12 02:08:10 +0000 | [diff] [blame] | 200 | fib::Entry* fib = npe->getFibEntry(); |
| 201 | BOOST_CHECK(fib == nullptr); |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 202 | |
Junxiao Shi | 2570f3e | 2016-07-27 02:48:29 +0000 | [diff] [blame] | 203 | const std::vector<shared_ptr<pit::Entry>>& pitList = npe->getPitEntries(); |
| 204 | BOOST_CHECK_EQUAL(pitList.size(), 0); |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 205 | |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 206 | // examine all the set method |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 207 | |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 208 | Name parentName("ndn:/named-data/research/abc/def"); |
Junxiao Shi | b660b4c | 2016-08-06 20:47:44 +0000 | [diff] [blame] | 209 | auto parentNode = make_unique<Node>(1, parentName); |
| 210 | npe->setParent(*parentNode->entry); |
| 211 | BOOST_CHECK_EQUAL(npe->getParent(), parentNode->entry.get()); |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 212 | |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 213 | // Insert FIB |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 214 | |
Junxiao Shi | a6de429 | 2016-07-12 02:08:10 +0000 | [diff] [blame] | 215 | npe->setFibEntry(make_unique<fib::Entry>(prefix)); |
| 216 | BOOST_REQUIRE(npe->getFibEntry() != nullptr); |
| 217 | BOOST_CHECK_EQUAL(npe->getFibEntry()->getPrefix(), prefix); |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 218 | |
Junxiao Shi | a6de429 | 2016-07-12 02:08:10 +0000 | [diff] [blame] | 219 | npe->setFibEntry(nullptr); |
| 220 | BOOST_CHECK(npe->getFibEntry() == nullptr); |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 221 | |
| 222 | // Insert a PIT |
| 223 | |
Junxiao Shi | 2570f3e | 2016-07-27 02:48:29 +0000 | [diff] [blame] | 224 | auto pitEntry = make_shared<pit::Entry>(*makeInterest(prefix)); |
| 225 | auto pitEntry2 = make_shared<pit::Entry>(*makeInterest(parentName)); |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 226 | |
Alexander Afanasyev | 28d586a | 2014-07-10 20:10:54 -0700 | [diff] [blame] | 227 | npe->insertPitEntry(pitEntry); |
Junxiao Shi | efceadc | 2014-03-09 18:52:57 -0700 | [diff] [blame] | 228 | BOOST_CHECK_EQUAL(npe->getPitEntries().size(), 1); |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 229 | |
Alexander Afanasyev | 28d586a | 2014-07-10 20:10:54 -0700 | [diff] [blame] | 230 | npe->insertPitEntry(pitEntry2); |
Junxiao Shi | efceadc | 2014-03-09 18:52:57 -0700 | [diff] [blame] | 231 | BOOST_CHECK_EQUAL(npe->getPitEntries().size(), 2); |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 232 | |
Alexander Afanasyev | 28d586a | 2014-07-10 20:10:54 -0700 | [diff] [blame] | 233 | npe->erasePitEntry(pitEntry); |
Junxiao Shi | efceadc | 2014-03-09 18:52:57 -0700 | [diff] [blame] | 234 | BOOST_CHECK_EQUAL(npe->getPitEntries().size(), 1); |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 235 | |
Alexander Afanasyev | 28d586a | 2014-07-10 20:10:54 -0700 | [diff] [blame] | 236 | npe->erasePitEntry(pitEntry2); |
Junxiao Shi | efceadc | 2014-03-09 18:52:57 -0700 | [diff] [blame] | 237 | BOOST_CHECK_EQUAL(npe->getPitEntries().size(), 0); |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 238 | } |
| 239 | |
Alexander Afanasyev | b303324 | 2014-08-04 11:09:05 -0700 | [diff] [blame] | 240 | BOOST_AUTO_TEST_CASE(Basic) |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 241 | { |
| 242 | size_t nBuckets = 16; |
| 243 | NameTree nt(nBuckets); |
| 244 | |
| 245 | BOOST_CHECK_EQUAL(nt.size(), 0); |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 246 | BOOST_CHECK_EQUAL(nt.getNBuckets(), nBuckets); |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 247 | |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 248 | Name nameABC("ndn:/a/b/c"); |
Junxiao Shi | 2570f3e | 2016-07-27 02:48:29 +0000 | [diff] [blame] | 249 | shared_ptr<Entry> npeABC = nt.lookup(nameABC); |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 250 | BOOST_CHECK_EQUAL(nt.size(), 4); |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 251 | |
| 252 | Name nameABD("/a/b/d"); |
Junxiao Shi | 2570f3e | 2016-07-27 02:48:29 +0000 | [diff] [blame] | 253 | shared_ptr<Entry> npeABD = nt.lookup(nameABD); |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 254 | BOOST_CHECK_EQUAL(nt.size(), 5); |
| 255 | |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 256 | Name nameAE("/a/e/"); |
Junxiao Shi | 2570f3e | 2016-07-27 02:48:29 +0000 | [diff] [blame] | 257 | shared_ptr<Entry> npeAE = nt.lookup(nameAE); |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 258 | BOOST_CHECK_EQUAL(nt.size(), 6); |
| 259 | |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 260 | Name nameF("/f"); |
Junxiao Shi | 2570f3e | 2016-07-27 02:48:29 +0000 | [diff] [blame] | 261 | shared_ptr<Entry> npeF = nt.lookup(nameF); |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 262 | BOOST_CHECK_EQUAL(nt.size(), 7); |
| 263 | |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 264 | // validate lookup() and findExactMatch() |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 265 | |
| 266 | Name nameAB ("/a/b"); |
Junxiao Shi | b660b4c | 2016-08-06 20:47:44 +0000 | [diff] [blame] | 267 | BOOST_CHECK_EQUAL(npeABC->getParent(), nt.findExactMatch(nameAB).get()); |
| 268 | BOOST_CHECK_EQUAL(npeABD->getParent(), nt.findExactMatch(nameAB).get()); |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 269 | |
| 270 | Name nameA ("/a"); |
Junxiao Shi | b660b4c | 2016-08-06 20:47:44 +0000 | [diff] [blame] | 271 | BOOST_CHECK_EQUAL(npeAE->getParent(), nt.findExactMatch(nameA).get()); |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 272 | |
| 273 | Name nameRoot ("/"); |
Junxiao Shi | b660b4c | 2016-08-06 20:47:44 +0000 | [diff] [blame] | 274 | BOOST_CHECK_EQUAL(npeF->getParent(), nt.findExactMatch(nameRoot).get()); |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 275 | BOOST_CHECK_EQUAL(nt.size(), 7); |
| 276 | |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 277 | Name name0("/does/not/exist"); |
Junxiao Shi | 2570f3e | 2016-07-27 02:48:29 +0000 | [diff] [blame] | 278 | shared_ptr<Entry> npe0 = nt.findExactMatch(name0); |
| 279 | BOOST_CHECK(npe0 == nullptr); |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 280 | |
| 281 | |
| 282 | // Longest Prefix Matching |
Junxiao Shi | 2570f3e | 2016-07-27 02:48:29 +0000 | [diff] [blame] | 283 | shared_ptr<Entry> temp; |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 284 | Name nameABCLPM("/a/b/c/def/asdf/nlf"); |
| 285 | temp = nt.findLongestPrefixMatch(nameABCLPM); |
| 286 | BOOST_CHECK_EQUAL(temp, nt.findExactMatch(nameABC)); |
| 287 | |
| 288 | Name nameABDLPM("/a/b/d/def/asdf/nlf"); |
| 289 | temp = nt.findLongestPrefixMatch(nameABDLPM); |
| 290 | BOOST_CHECK_EQUAL(temp, nt.findExactMatch(nameABD)); |
| 291 | |
| 292 | Name nameABLPM("/a/b/hello/world"); |
| 293 | temp = nt.findLongestPrefixMatch(nameABLPM); |
| 294 | BOOST_CHECK_EQUAL(temp, nt.findExactMatch(nameAB)); |
| 295 | |
| 296 | Name nameAELPM("/a/e/hello/world"); |
| 297 | temp = nt.findLongestPrefixMatch(nameAELPM); |
| 298 | BOOST_CHECK_EQUAL(temp, nt.findExactMatch(nameAE)); |
| 299 | |
| 300 | Name nameALPM("/a/hello/world"); |
| 301 | temp = nt.findLongestPrefixMatch(nameALPM); |
| 302 | BOOST_CHECK_EQUAL(temp, nt.findExactMatch(nameA)); |
| 303 | |
| 304 | Name nameFLPM("/f/hello/world"); |
| 305 | temp = nt.findLongestPrefixMatch(nameFLPM); |
| 306 | BOOST_CHECK_EQUAL(temp, nt.findExactMatch(nameF)); |
| 307 | |
| 308 | Name nameRootLPM("/does_not_exist"); |
| 309 | temp = nt.findLongestPrefixMatch(nameRootLPM); |
| 310 | BOOST_CHECK_EQUAL(temp, nt.findExactMatch(nameRoot)); |
| 311 | |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 312 | bool eraseResult = false; |
| 313 | temp = nt.findExactMatch(nameABC); |
Junxiao Shi | 2570f3e | 2016-07-27 02:48:29 +0000 | [diff] [blame] | 314 | if (temp != nullptr) |
| 315 | eraseResult = nt.eraseEntryIfEmpty(temp); |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 316 | BOOST_CHECK_EQUAL(nt.size(), 6); |
Junxiao Shi | 2570f3e | 2016-07-27 02:48:29 +0000 | [diff] [blame] | 317 | BOOST_CHECK(nt.findExactMatch(nameABC) == nullptr); |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 318 | BOOST_CHECK_EQUAL(eraseResult, true); |
| 319 | |
| 320 | eraseResult = false; |
| 321 | temp = nt.findExactMatch(nameABCLPM); |
Junxiao Shi | 2570f3e | 2016-07-27 02:48:29 +0000 | [diff] [blame] | 322 | if (temp != nullptr) |
| 323 | eraseResult = nt.eraseEntryIfEmpty(temp); |
| 324 | BOOST_CHECK(temp == nullptr); |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 325 | BOOST_CHECK_EQUAL(nt.size(), 6); |
| 326 | BOOST_CHECK_EQUAL(eraseResult, false); |
| 327 | |
| 328 | // nt.dump(std::cout); |
| 329 | |
| 330 | nt.lookup(nameABC); |
| 331 | BOOST_CHECK_EQUAL(nt.size(), 7); |
| 332 | |
| 333 | eraseResult = false; |
| 334 | temp = nt.findExactMatch(nameABC); |
Junxiao Shi | 2570f3e | 2016-07-27 02:48:29 +0000 | [diff] [blame] | 335 | if (temp != nullptr) |
| 336 | eraseResult = nt.eraseEntryIfEmpty(temp); |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 337 | BOOST_CHECK_EQUAL(nt.size(), 6); |
| 338 | BOOST_CHECK_EQUAL(eraseResult, true); |
Junxiao Shi | 2570f3e | 2016-07-27 02:48:29 +0000 | [diff] [blame] | 339 | BOOST_CHECK(nt.findExactMatch(nameABC) == nullptr); |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 340 | |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 341 | BOOST_CHECK_EQUAL(nt.getNBuckets(), 16); |
| 342 | |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 343 | // should resize now |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 344 | Name nameABCD("a/b/c/d"); |
| 345 | nt.lookup(nameABCD); |
| 346 | Name nameABCDE("a/b/c/d/e"); |
| 347 | nt.lookup(nameABCDE); |
| 348 | BOOST_CHECK_EQUAL(nt.size(), 9); |
| 349 | BOOST_CHECK_EQUAL(nt.getNBuckets(), 32); |
| 350 | |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 351 | // try to erase /a/b/c, should return false |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 352 | temp = nt.findExactMatch(nameABC); |
| 353 | BOOST_CHECK_EQUAL(temp->getPrefix(), nameABC); |
Junxiao Shi | 2570f3e | 2016-07-27 02:48:29 +0000 | [diff] [blame] | 354 | eraseResult = nt.eraseEntryIfEmpty(temp); |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 355 | BOOST_CHECK_EQUAL(eraseResult, false); |
| 356 | temp = nt.findExactMatch(nameABC); |
| 357 | BOOST_CHECK_EQUAL(temp->getPrefix(), nameABC); |
| 358 | |
| 359 | temp = nt.findExactMatch(nameABD); |
Junxiao Shi | 2570f3e | 2016-07-27 02:48:29 +0000 | [diff] [blame] | 360 | if (temp != nullptr) |
| 361 | nt.eraseEntryIfEmpty(temp); |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 362 | BOOST_CHECK_EQUAL(nt.size(), 8); |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 363 | } |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 364 | |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 365 | /** \brief verify a NameTree enumeration contains expected entries |
| 366 | * |
| 367 | * Example: |
| 368 | * \code{.cpp} |
| 369 | * auto& enumerable = ...; |
| 370 | * EnumerationVerifier(enumerable) |
| 371 | * .expect("/A") |
| 372 | * .expect("/B") |
| 373 | * .end(); |
| 374 | * // enumerable must have /A /B and nothing else to pass the test. |
| 375 | * \endcode |
| 376 | */ |
| 377 | class EnumerationVerifier : noncopyable |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 378 | { |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 379 | public: |
| 380 | template<typename Enumerable> |
| 381 | EnumerationVerifier(Enumerable&& enumerable) |
| 382 | { |
Junxiao Shi | 2570f3e | 2016-07-27 02:48:29 +0000 | [diff] [blame] | 383 | for (const Entry& entry : enumerable) { |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 384 | const Name& name = entry.getPrefix(); |
| 385 | BOOST_CHECK_MESSAGE(m_names.insert(name).second, "duplicate Name " << name); |
| 386 | } |
| 387 | } |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 388 | |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 389 | EnumerationVerifier& |
| 390 | expect(const Name& name) |
| 391 | { |
| 392 | BOOST_CHECK_MESSAGE(m_names.erase(name) == 1, "missing Name " << name); |
| 393 | return *this; |
| 394 | } |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 395 | |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 396 | void |
| 397 | end() |
| 398 | { |
Alexander Afanasyev | e84044e | 2015-02-26 21:52:18 -0800 | [diff] [blame] | 399 | BOOST_CHECK(m_names.empty()); |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 400 | } |
| 401 | |
| 402 | private: |
| 403 | std::unordered_set<Name> m_names; |
| 404 | }; |
| 405 | |
| 406 | class EnumerationFixture : public BaseFixture |
| 407 | { |
| 408 | protected: |
| 409 | EnumerationFixture() |
| 410 | : nt(N_BUCKETS) |
| 411 | { |
| 412 | BOOST_CHECK_EQUAL(nt.size(), 0); |
| 413 | BOOST_CHECK_EQUAL(nt.getNBuckets(), N_BUCKETS); |
| 414 | } |
| 415 | |
| 416 | void |
| 417 | insertAbAc() |
| 418 | { |
| 419 | nt.lookup("/a/b"); |
| 420 | nt.lookup("/a/c"); |
| 421 | BOOST_CHECK_EQUAL(nt.size(), 4); |
| 422 | // /, /a, /a/b, /a/c |
| 423 | } |
| 424 | |
| 425 | void |
| 426 | insertAb1Ab2Ac1Ac2() |
| 427 | { |
| 428 | nt.lookup("/a/b/1"); |
| 429 | nt.lookup("/a/b/2"); |
| 430 | nt.lookup("/a/c/1"); |
| 431 | nt.lookup("/a/c/2"); |
| 432 | BOOST_CHECK_EQUAL(nt.size(), 8); |
| 433 | // /, /a, /a/b, /a/b/1, /a/b/2, /a/c, /a/c/1, /a/c/2 |
| 434 | } |
| 435 | |
| 436 | protected: |
| 437 | static const size_t N_BUCKETS = 16; |
| 438 | NameTree nt; |
| 439 | }; |
Junxiao Shi | 2570f3e | 2016-07-27 02:48:29 +0000 | [diff] [blame] | 440 | |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 441 | const size_t EnumerationFixture::N_BUCKETS; |
| 442 | |
| 443 | BOOST_FIXTURE_TEST_CASE(IteratorFullEnumerate, EnumerationFixture) |
| 444 | { |
| 445 | nt.lookup("/a/b/c"); |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 446 | BOOST_CHECK_EQUAL(nt.size(), 4); |
| 447 | |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 448 | nt.lookup("/a/b/d"); |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 449 | BOOST_CHECK_EQUAL(nt.size(), 5); |
| 450 | |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 451 | nt.lookup("/a/e"); |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 452 | BOOST_CHECK_EQUAL(nt.size(), 6); |
| 453 | |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 454 | nt.lookup("/f"); |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 455 | BOOST_CHECK_EQUAL(nt.size(), 7); |
| 456 | |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 457 | nt.lookup("/"); |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 458 | BOOST_CHECK_EQUAL(nt.size(), 7); |
| 459 | |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 460 | auto&& enumerable = nt.fullEnumerate(); |
| 461 | EnumerationVerifier(enumerable) |
| 462 | .expect("/") |
| 463 | .expect("/a") |
| 464 | .expect("/a/b") |
| 465 | .expect("/a/b/c") |
| 466 | .expect("/a/b/d") |
| 467 | .expect("/a/e") |
| 468 | .expect("/f") |
| 469 | .end(); |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 470 | } |
| 471 | |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 472 | BOOST_FIXTURE_TEST_SUITE(IteratorPartialEnumerate, EnumerationFixture) |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 473 | |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 474 | BOOST_AUTO_TEST_CASE(Empty) |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 475 | { |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 476 | auto&& enumerable = nt.partialEnumerate("/a"); |
| 477 | |
| 478 | EnumerationVerifier(enumerable) |
| 479 | .end(); |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 480 | } |
| 481 | |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 482 | BOOST_AUTO_TEST_CASE(NotIn) |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 483 | { |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 484 | this->insertAbAc(); |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 485 | |
| 486 | // Enumerate on some name that is not in nameTree |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 487 | Name name0("/0"); |
| 488 | auto&& enumerable = nt.partialEnumerate("/0"); |
| 489 | |
| 490 | EnumerationVerifier(enumerable) |
| 491 | .end(); |
| 492 | } |
| 493 | |
| 494 | BOOST_AUTO_TEST_CASE(OnlyA) |
| 495 | { |
| 496 | this->insertAbAc(); |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 497 | |
| 498 | // Accept "root" nameA only |
Junxiao Shi | 2570f3e | 2016-07-27 02:48:29 +0000 | [diff] [blame] | 499 | auto&& enumerable = nt.partialEnumerate("/a", [] (const Entry& entry) { |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 500 | return std::make_pair(entry.getPrefix() == "/a", true); |
| 501 | }); |
| 502 | |
| 503 | EnumerationVerifier(enumerable) |
| 504 | .expect("/a") |
| 505 | .end(); |
| 506 | } |
| 507 | |
| 508 | BOOST_AUTO_TEST_CASE(ExceptA) |
| 509 | { |
| 510 | this->insertAbAc(); |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 511 | |
| 512 | // Accept anything except "root" nameA |
Junxiao Shi | 2570f3e | 2016-07-27 02:48:29 +0000 | [diff] [blame] | 513 | auto&& enumerable = nt.partialEnumerate("/a", [] (const Entry& entry) { |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 514 | return std::make_pair(entry.getPrefix() != "/a", true); |
| 515 | }); |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 516 | |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 517 | EnumerationVerifier(enumerable) |
| 518 | .expect("/a/b") |
| 519 | .expect("/a/c") |
| 520 | .end(); |
| 521 | } |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 522 | |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 523 | BOOST_AUTO_TEST_CASE(NoNameANoSubTreeAB) |
| 524 | { |
| 525 | this->insertAb1Ab2Ac1Ac2(); |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 526 | |
| 527 | // No NameA |
| 528 | // No SubTree from NameAB |
Junxiao Shi | 2570f3e | 2016-07-27 02:48:29 +0000 | [diff] [blame] | 529 | auto&& enumerable = nt.partialEnumerate("/a", [] (const Entry& entry) { |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 530 | return std::make_pair(entry.getPrefix() != "/a", entry.getPrefix() != "/a/b"); |
| 531 | }); |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 532 | |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 533 | EnumerationVerifier(enumerable) |
| 534 | .expect("/a/b") |
| 535 | .expect("/a/c") |
| 536 | .expect("/a/c/1") |
| 537 | .expect("/a/c/2") |
| 538 | .end(); |
| 539 | } |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 540 | |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 541 | BOOST_AUTO_TEST_CASE(NoNameANoSubTreeAC) |
| 542 | { |
| 543 | this->insertAb1Ab2Ac1Ac2(); |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 544 | |
| 545 | // No NameA |
| 546 | // No SubTree from NameAC |
Junxiao Shi | 2570f3e | 2016-07-27 02:48:29 +0000 | [diff] [blame] | 547 | auto&& enumerable = nt.partialEnumerate("/a", [] (const Entry& entry) { |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 548 | return std::make_pair(entry.getPrefix() != "/a", entry.getPrefix() != "/a/c"); |
| 549 | }); |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 550 | |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 551 | EnumerationVerifier(enumerable) |
| 552 | .expect("/a/b") |
| 553 | .expect("/a/b/1") |
| 554 | .expect("/a/b/2") |
| 555 | .expect("/a/c") |
| 556 | .end(); |
| 557 | } |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 558 | |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 559 | BOOST_AUTO_TEST_CASE(NoSubTreeA) |
| 560 | { |
| 561 | this->insertAb1Ab2Ac1Ac2(); |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 562 | |
| 563 | // No Subtree from NameA |
Junxiao Shi | 2570f3e | 2016-07-27 02:48:29 +0000 | [diff] [blame] | 564 | auto&& enumerable = nt.partialEnumerate("/a", [] (const Entry& entry) { |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 565 | return std::make_pair(true, entry.getPrefix() != "/a"); |
| 566 | }); |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 567 | |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 568 | EnumerationVerifier(enumerable) |
| 569 | .expect("/a") |
| 570 | .end(); |
| 571 | } |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 572 | |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 573 | BOOST_AUTO_TEST_CASE(Example) |
| 574 | { |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 575 | // Example |
| 576 | // / |
| 577 | // /A |
| 578 | // /A/B x |
| 579 | // /A/B/C |
| 580 | // /A/D x |
| 581 | // /E |
| 582 | // /F |
| 583 | |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 584 | nt.lookup("/A"); |
| 585 | nt.lookup("/A/B"); |
| 586 | nt.lookup("/A/B/C"); |
| 587 | nt.lookup("/A/D"); |
| 588 | nt.lookup("/E"); |
| 589 | nt.lookup("/F"); |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 590 | |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 591 | auto&& enumerable = nt.partialEnumerate("/A", |
Junxiao Shi | 2570f3e | 2016-07-27 02:48:29 +0000 | [diff] [blame] | 592 | [] (const Entry& entry) -> std::pair<bool, bool> { |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 593 | bool visitEntry = false; |
| 594 | bool visitChildren = false; |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 595 | |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 596 | Name name = entry.getPrefix(); |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 597 | |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 598 | if (name == "/" || name == "/A/B" || name == "/A/B/C" || name == "/A/D") { |
| 599 | visitEntry = true; |
| 600 | } |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 601 | |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 602 | if (name == "/" || name == "/A" || name == "/F") { |
| 603 | visitChildren = true; |
| 604 | } |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 605 | |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 606 | return {visitEntry, visitChildren}; |
| 607 | }); |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 608 | |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 609 | EnumerationVerifier(enumerable) |
| 610 | .expect("/A/B") |
| 611 | .expect("/A/D") |
| 612 | .end(); |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 613 | } |
| 614 | |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 615 | BOOST_AUTO_TEST_SUITE_END() |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 616 | |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 617 | BOOST_FIXTURE_TEST_CASE(IteratorFindAllMatches, EnumerationFixture) |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 618 | { |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 619 | nt.lookup("/a/b/c/d/e/f"); |
| 620 | nt.lookup("/a/a/c"); |
| 621 | nt.lookup("/a/a/d/1"); |
| 622 | nt.lookup("/a/a/d/2"); |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 623 | BOOST_CHECK_EQUAL(nt.size(), 12); |
| 624 | |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 625 | auto&& allMatches = nt.findAllMatches("/a/b/c/d/e"); |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 626 | |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 627 | EnumerationVerifier(allMatches) |
| 628 | .expect("/") |
| 629 | .expect("/a") |
| 630 | .expect("/a/b") |
| 631 | .expect("/a/b/c") |
| 632 | .expect("/a/b/c/d") |
| 633 | .expect("/a/b/c/d/e") |
| 634 | .end(); |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 635 | } |
| 636 | |
Alexander Afanasyev | b303324 | 2014-08-04 11:09:05 -0700 | [diff] [blame] | 637 | BOOST_AUTO_TEST_CASE(HashTableResizeShrink) |
Haowei Yuan | f52dac7 | 2014-03-24 23:35:03 -0500 | [diff] [blame] | 638 | { |
| 639 | size_t nBuckets = 16; |
| 640 | NameTree nameTree(nBuckets); |
| 641 | |
| 642 | Name prefix("/a/b/c/d/e/f/g/h"); // requires 9 buckets |
| 643 | |
Junxiao Shi | 2570f3e | 2016-07-27 02:48:29 +0000 | [diff] [blame] | 644 | shared_ptr<Entry> entry = nameTree.lookup(prefix); |
Haowei Yuan | f52dac7 | 2014-03-24 23:35:03 -0500 | [diff] [blame] | 645 | BOOST_CHECK_EQUAL(nameTree.size(), 9); |
| 646 | BOOST_CHECK_EQUAL(nameTree.getNBuckets(), 32); |
| 647 | |
| 648 | nameTree.eraseEntryIfEmpty(entry); |
| 649 | BOOST_CHECK_EQUAL(nameTree.size(), 0); |
| 650 | BOOST_CHECK_EQUAL(nameTree.getNBuckets(), 16); |
| 651 | } |
| 652 | |
Alexander Afanasyev | b303324 | 2014-08-04 11:09:05 -0700 | [diff] [blame] | 653 | // .lookup should not invalidate iterator |
| 654 | BOOST_AUTO_TEST_CASE(SurvivedIteratorAfterLookup) |
| 655 | { |
| 656 | NameTree nt; |
| 657 | nt.lookup("/A/B/C"); |
| 658 | nt.lookup("/E"); |
| 659 | |
| 660 | Name nameB("/A/B"); |
| 661 | std::set<Name> seenNames; |
| 662 | for (NameTree::const_iterator it = nt.begin(); it != nt.end(); ++it) { |
| 663 | BOOST_CHECK(seenNames.insert(it->getPrefix()).second); |
| 664 | if (it->getPrefix() == nameB) { |
| 665 | nt.lookup("/D"); |
| 666 | } |
| 667 | } |
| 668 | |
| 669 | BOOST_CHECK_EQUAL(seenNames.count("/"), 1); |
| 670 | BOOST_CHECK_EQUAL(seenNames.count("/A"), 1); |
| 671 | BOOST_CHECK_EQUAL(seenNames.count("/A/B"), 1); |
| 672 | BOOST_CHECK_EQUAL(seenNames.count("/A/B/C"), 1); |
| 673 | BOOST_CHECK_EQUAL(seenNames.count("/E"), 1); |
| 674 | |
| 675 | seenNames.erase("/D"); // /D may or may not appear |
| 676 | BOOST_CHECK(seenNames.size() == 5); |
| 677 | } |
| 678 | |
| 679 | // .eraseEntryIfEmpty should not invalidate iterator |
| 680 | BOOST_AUTO_TEST_CASE(SurvivedIteratorAfterErase) |
| 681 | { |
| 682 | NameTree nt; |
| 683 | nt.lookup("/A/B/C"); |
| 684 | nt.lookup("/A/D/E"); |
| 685 | nt.lookup("/A/F/G"); |
| 686 | nt.lookup("/H"); |
| 687 | |
| 688 | Name nameD("/A/D"); |
| 689 | std::set<Name> seenNames; |
| 690 | for (NameTree::const_iterator it = nt.begin(); it != nt.end(); ++it) { |
| 691 | BOOST_CHECK(seenNames.insert(it->getPrefix()).second); |
| 692 | if (it->getPrefix() == nameD) { |
| 693 | nt.eraseEntryIfEmpty(nt.findExactMatch("/A/F/G")); // /A/F/G and /A/F are erased |
| 694 | } |
| 695 | } |
| 696 | |
| 697 | BOOST_CHECK_EQUAL(seenNames.count("/"), 1); |
| 698 | BOOST_CHECK_EQUAL(seenNames.count("/A"), 1); |
| 699 | BOOST_CHECK_EQUAL(seenNames.count("/A/B"), 1); |
| 700 | BOOST_CHECK_EQUAL(seenNames.count("/A/B/C"), 1); |
| 701 | BOOST_CHECK_EQUAL(seenNames.count("/A/D"), 1); |
| 702 | BOOST_CHECK_EQUAL(seenNames.count("/A/D/E"), 1); |
| 703 | BOOST_CHECK_EQUAL(seenNames.count("/H"), 1); |
| 704 | |
| 705 | seenNames.erase("/A/F"); // /A/F may or may not appear |
| 706 | seenNames.erase("/A/F/G"); // /A/F/G may or may not appear |
| 707 | BOOST_CHECK(seenNames.size() == 7); |
| 708 | } |
| 709 | |
Junxiao Shi | 2570f3e | 2016-07-27 02:48:29 +0000 | [diff] [blame] | 710 | BOOST_AUTO_TEST_SUITE_END() // TestNameTree |
| 711 | BOOST_AUTO_TEST_SUITE_END() // Table |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 712 | |
Junxiao Shi | d9ee45c | 2014-02-27 15:38:11 -0700 | [diff] [blame] | 713 | } // namespace tests |
Junxiao Shi | 2570f3e | 2016-07-27 02:48:29 +0000 | [diff] [blame] | 714 | } // namespace name_tree |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 715 | } // namespace nfd |