Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Junxiao Shi | 4370fde | 2016-02-24 12:20:46 -0700 | [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/>. |
Junxiao Shi | ee5a444 | 2014-07-27 17:13:43 -0700 | [diff] [blame] | 24 | */ |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 25 | |
| 26 | #include "table/strategy-choice.hpp" |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 27 | |
| 28 | #include "tests/test-common.hpp" |
Junxiao Shi | a49a1ab | 2016-07-15 18:24:36 +0000 | [diff] [blame] | 29 | #include "../fw/dummy-strategy.hpp" |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 30 | |
| 31 | namespace nfd { |
| 32 | namespace tests { |
| 33 | |
Junxiao Shi | 91f6ee0 | 2016-12-29 21:44:44 +0000 | [diff] [blame^] | 34 | using fw::Strategy; |
| 35 | |
Junxiao Shi | 18739c4 | 2016-12-22 08:03:00 +0000 | [diff] [blame] | 36 | class StrategyChoiceFixture : public BaseFixture |
| 37 | { |
| 38 | protected: |
| 39 | StrategyChoiceFixture() |
| 40 | : sc(forwarder.getStrategyChoice()) |
Junxiao Shi | 0e4a1f1 | 2016-12-24 02:39:01 +0000 | [diff] [blame] | 41 | , strategyNameP("/strategy-choice-P/%FD%00") |
| 42 | , strategyNameQ("/strategy-choice-Q/%FD%00") |
Junxiao Shi | 18739c4 | 2016-12-22 08:03:00 +0000 | [diff] [blame] | 43 | { |
Junxiao Shi | 0e4a1f1 | 2016-12-24 02:39:01 +0000 | [diff] [blame] | 44 | DummyStrategy::registerAs(strategyNameP); |
| 45 | DummyStrategy::registerAs(strategyNameQ); |
Junxiao Shi | 18739c4 | 2016-12-22 08:03:00 +0000 | [diff] [blame] | 46 | } |
| 47 | |
Junxiao Shi | 91f6ee0 | 2016-12-29 21:44:44 +0000 | [diff] [blame^] | 48 | /** \brief insert StrategyChoice entry at \p prefix for \p instanceName |
| 49 | * \return constructed instance name |
| 50 | */ |
Junxiao Shi | 18739c4 | 2016-12-22 08:03:00 +0000 | [diff] [blame] | 51 | Name |
Junxiao Shi | 91f6ee0 | 2016-12-29 21:44:44 +0000 | [diff] [blame^] | 52 | insertAndGet(const Name& prefix, const Name& instanceName) |
Junxiao Shi | 18739c4 | 2016-12-22 08:03:00 +0000 | [diff] [blame] | 53 | { |
Junxiao Shi | 91f6ee0 | 2016-12-29 21:44:44 +0000 | [diff] [blame^] | 54 | BOOST_REQUIRE(sc.insert(prefix, instanceName)); |
Junxiao Shi | 18739c4 | 2016-12-22 08:03:00 +0000 | [diff] [blame] | 55 | bool isFound; |
| 56 | Name foundName; |
| 57 | std::tie(isFound, foundName) = sc.get(prefix); |
| 58 | BOOST_REQUIRE(isFound); |
| 59 | return foundName; |
| 60 | } |
| 61 | |
Junxiao Shi | 91f6ee0 | 2016-12-29 21:44:44 +0000 | [diff] [blame^] | 62 | /** \brief determine whether the effective strategy type at \p prefix is \p S |
| 63 | * \tparam S expected strategy type |
| 64 | */ |
| 65 | template<typename S> |
| 66 | bool |
| 67 | isStrategyType(const Name& prefix) |
| 68 | { |
| 69 | Strategy& effectiveStrategy = sc.findEffectiveStrategy(prefix); |
| 70 | return dynamic_cast<S*>(&effectiveStrategy) != nullptr; |
| 71 | } |
| 72 | |
Junxiao Shi | 0e4a1f1 | 2016-12-24 02:39:01 +0000 | [diff] [blame] | 73 | template<typename Q> |
| 74 | Name |
| 75 | findInstanceName(const Q& query) |
| 76 | { |
| 77 | return sc.findEffectiveStrategy(query).getInstanceName(); |
| 78 | } |
| 79 | |
Junxiao Shi | 18739c4 | 2016-12-22 08:03:00 +0000 | [diff] [blame] | 80 | protected: |
| 81 | Forwarder forwarder; |
| 82 | StrategyChoice& sc; |
Junxiao Shi | 0e4a1f1 | 2016-12-24 02:39:01 +0000 | [diff] [blame] | 83 | |
| 84 | const Name strategyNameP; |
| 85 | const Name strategyNameQ; |
Junxiao Shi | 18739c4 | 2016-12-22 08:03:00 +0000 | [diff] [blame] | 86 | }; |
| 87 | |
Junxiao Shi | 4370fde | 2016-02-24 12:20:46 -0700 | [diff] [blame] | 88 | BOOST_AUTO_TEST_SUITE(Table) |
Junxiao Shi | 18739c4 | 2016-12-22 08:03:00 +0000 | [diff] [blame] | 89 | BOOST_FIXTURE_TEST_SUITE(TestStrategyChoice, StrategyChoiceFixture) |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 90 | |
Junxiao Shi | 7f566dd | 2016-12-27 02:28:31 +0000 | [diff] [blame] | 91 | BOOST_AUTO_TEST_CASE(Versioning) |
| 92 | { |
| 93 | const Name strategyNameV("/strategy-choice-V"); |
| 94 | const Name strategyNameV0("/strategy-choice-V/%FD%00"); |
| 95 | const Name strategyNameV1("/strategy-choice-V/%FD%01"); |
| 96 | const Name strategyNameV2("/strategy-choice-V/%FD%02"); |
| 97 | const Name strategyNameV3("/strategy-choice-V/%FD%03"); |
| 98 | const Name strategyNameV4("/strategy-choice-V/%FD%04"); |
| 99 | const Name strategyNameV5("/strategy-choice-V/%FD%05"); |
| 100 | |
| 101 | VersionedDummyStrategy<1>::registerAs(strategyNameV1); |
| 102 | VersionedDummyStrategy<3>::registerAs(strategyNameV3); |
| 103 | VersionedDummyStrategy<4>::registerAs(strategyNameV4); |
| 104 | |
| 105 | // unversioned: choose latest version |
| 106 | BOOST_CHECK_EQUAL(this->insertAndGet("/A", strategyNameV), strategyNameV4); |
Junxiao Shi | 91f6ee0 | 2016-12-29 21:44:44 +0000 | [diff] [blame^] | 107 | BOOST_CHECK(this->isStrategyType<VersionedDummyStrategy<4>>("/A")); |
Junxiao Shi | 7f566dd | 2016-12-27 02:28:31 +0000 | [diff] [blame] | 108 | |
| 109 | // exact version: choose same version |
| 110 | BOOST_CHECK_EQUAL(this->insertAndGet("/B", strategyNameV1), strategyNameV1); |
Junxiao Shi | 91f6ee0 | 2016-12-29 21:44:44 +0000 | [diff] [blame^] | 111 | BOOST_CHECK(this->isStrategyType<VersionedDummyStrategy<1>>("/B")); |
Junxiao Shi | 7f566dd | 2016-12-27 02:28:31 +0000 | [diff] [blame] | 112 | BOOST_CHECK_EQUAL(this->insertAndGet("/C", strategyNameV3), strategyNameV3); |
Junxiao Shi | 91f6ee0 | 2016-12-29 21:44:44 +0000 | [diff] [blame^] | 113 | BOOST_CHECK(this->isStrategyType<VersionedDummyStrategy<3>>("/C")); |
Junxiao Shi | 7f566dd | 2016-12-27 02:28:31 +0000 | [diff] [blame] | 114 | BOOST_CHECK_EQUAL(this->insertAndGet("/D", strategyNameV4), strategyNameV4); |
Junxiao Shi | 91f6ee0 | 2016-12-29 21:44:44 +0000 | [diff] [blame^] | 115 | BOOST_CHECK(this->isStrategyType<VersionedDummyStrategy<4>>("/D")); |
Junxiao Shi | 7f566dd | 2016-12-27 02:28:31 +0000 | [diff] [blame] | 116 | |
| 117 | // lower version: choose next higher version |
Junxiao Shi | 91f6ee0 | 2016-12-29 21:44:44 +0000 | [diff] [blame^] | 118 | BOOST_CHECK_EQUAL(this->insertAndGet("/E", strategyNameV0), strategyNameV0); |
| 119 | BOOST_CHECK(this->isStrategyType<VersionedDummyStrategy<1>>("/E")); |
| 120 | BOOST_CHECK_EQUAL(this->insertAndGet("/F", strategyNameV2), strategyNameV2); |
| 121 | BOOST_CHECK(this->isStrategyType<VersionedDummyStrategy<3>>("/F")); |
Junxiao Shi | 7f566dd | 2016-12-27 02:28:31 +0000 | [diff] [blame] | 122 | |
| 123 | // higher version: failure |
| 124 | BOOST_CHECK_EQUAL(sc.insert("/G", strategyNameV5), false); |
| 125 | } |
| 126 | |
Junxiao Shi | 18739c4 | 2016-12-22 08:03:00 +0000 | [diff] [blame] | 127 | BOOST_AUTO_TEST_CASE(Parameters) |
| 128 | { |
Junxiao Shi | 18739c4 | 2016-12-22 08:03:00 +0000 | [diff] [blame] | 129 | // no parameters |
Junxiao Shi | 0e4a1f1 | 2016-12-24 02:39:01 +0000 | [diff] [blame] | 130 | BOOST_CHECK_EQUAL(this->insertAndGet("/A", strategyNameP), strategyNameP); |
Junxiao Shi | 18739c4 | 2016-12-22 08:03:00 +0000 | [diff] [blame] | 131 | |
| 132 | // one parameter |
Junxiao Shi | 0e4a1f1 | 2016-12-24 02:39:01 +0000 | [diff] [blame] | 133 | Name oneParamName = Name(strategyNameP).append("param"); |
Junxiao Shi | 18739c4 | 2016-12-22 08:03:00 +0000 | [diff] [blame] | 134 | BOOST_CHECK_EQUAL(this->insertAndGet("/B", oneParamName), oneParamName); |
| 135 | |
| 136 | // two parameters |
Junxiao Shi | 0e4a1f1 | 2016-12-24 02:39:01 +0000 | [diff] [blame] | 137 | Name twoParamName = Name(strategyNameP).append("x").append("y"); |
Junxiao Shi | 18739c4 | 2016-12-22 08:03:00 +0000 | [diff] [blame] | 138 | BOOST_CHECK_EQUAL(this->insertAndGet("/C", twoParamName), twoParamName); |
| 139 | |
| 140 | // parameter without version is disallowed |
Junxiao Shi | 0e4a1f1 | 2016-12-24 02:39:01 +0000 | [diff] [blame] | 141 | Name oneParamUnversioned = strategyNameP.getPrefix(-1).append("param"); |
Junxiao Shi | 18739c4 | 2016-12-22 08:03:00 +0000 | [diff] [blame] | 142 | BOOST_CHECK_EQUAL(sc.insert("/D", oneParamUnversioned), false); |
| 143 | } |
| 144 | |
Steve DiBenedetto | 77c8751 | 2014-10-06 14:18:22 -0600 | [diff] [blame] | 145 | BOOST_AUTO_TEST_CASE(Get) |
| 146 | { |
Junxiao Shi | 0e4a1f1 | 2016-12-24 02:39:01 +0000 | [diff] [blame] | 147 | BOOST_CHECK(sc.insert("/", strategyNameP)); |
Steve DiBenedetto | 77c8751 | 2014-10-06 14:18:22 -0600 | [diff] [blame] | 148 | // { '/'=>P } |
| 149 | |
Junxiao Shi | 0e4a1f1 | 2016-12-24 02:39:01 +0000 | [diff] [blame] | 150 | auto getRoot = sc.get("/"); |
Junxiao Shi | 838c4f1 | 2014-11-03 18:55:24 -0700 | [diff] [blame] | 151 | BOOST_CHECK_EQUAL(getRoot.first, true); |
Junxiao Shi | 0e4a1f1 | 2016-12-24 02:39:01 +0000 | [diff] [blame] | 152 | BOOST_CHECK_EQUAL(getRoot.second, strategyNameP); |
Junxiao Shi | 838c4f1 | 2014-11-03 18:55:24 -0700 | [diff] [blame] | 153 | |
Junxiao Shi | 0e4a1f1 | 2016-12-24 02:39:01 +0000 | [diff] [blame] | 154 | auto getA = sc.get("/A"); |
Junxiao Shi | 838c4f1 | 2014-11-03 18:55:24 -0700 | [diff] [blame] | 155 | BOOST_CHECK_EQUAL(getA.first, false); |
Steve DiBenedetto | 77c8751 | 2014-10-06 14:18:22 -0600 | [diff] [blame] | 156 | } |
| 157 | |
Junxiao Shi | 4370fde | 2016-02-24 12:20:46 -0700 | [diff] [blame] | 158 | BOOST_AUTO_TEST_CASE(FindEffectiveStrategy) |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 159 | { |
Junxiao Shi | 0e4a1f1 | 2016-12-24 02:39:01 +0000 | [diff] [blame] | 160 | const Name strategyNameZ("/strategy-choice-Z/%FD%00"); // unregistered strategyName |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 161 | |
Junxiao Shi | 0e4a1f1 | 2016-12-24 02:39:01 +0000 | [diff] [blame] | 162 | BOOST_CHECK(sc.insert("/", strategyNameP)); |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 163 | // { '/'=>P } |
| 164 | |
Junxiao Shi | 0e4a1f1 | 2016-12-24 02:39:01 +0000 | [diff] [blame] | 165 | BOOST_CHECK_EQUAL(this->findInstanceName("/"), strategyNameP); |
| 166 | BOOST_CHECK_EQUAL(this->findInstanceName("/A"), strategyNameP); |
| 167 | BOOST_CHECK_EQUAL(this->findInstanceName("/A/B"), strategyNameP); |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 168 | |
Junxiao Shi | 0e4a1f1 | 2016-12-24 02:39:01 +0000 | [diff] [blame] | 169 | BOOST_CHECK(sc.insert("/A/B", strategyNameP)); |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 170 | // { '/'=>P, '/A/B'=>P } |
| 171 | |
Junxiao Shi | 0e4a1f1 | 2016-12-24 02:39:01 +0000 | [diff] [blame] | 172 | BOOST_CHECK_EQUAL(this->findInstanceName("/"), strategyNameP); |
| 173 | BOOST_CHECK_EQUAL(this->findInstanceName("/A"), strategyNameP); |
| 174 | BOOST_CHECK_EQUAL(this->findInstanceName("/A/B"), strategyNameP); |
| 175 | // same entry, same instance |
| 176 | BOOST_CHECK_EQUAL(&sc.findEffectiveStrategy("/"), &sc.findEffectiveStrategy("/A")); |
| 177 | // different entries, distinct instances |
| 178 | BOOST_CHECK_NE(&sc.findEffectiveStrategy("/"), &sc.findEffectiveStrategy("/A/B")); |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 179 | |
Junxiao Shi | 0e4a1f1 | 2016-12-24 02:39:01 +0000 | [diff] [blame] | 180 | sc.erase("/A"); // no effect |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 181 | // { '/'=>P, '/A/B'=>P } |
| 182 | |
Junxiao Shi | 0e4a1f1 | 2016-12-24 02:39:01 +0000 | [diff] [blame] | 183 | BOOST_CHECK_EQUAL(this->findInstanceName("/"), strategyNameP); |
| 184 | BOOST_CHECK_EQUAL(this->findInstanceName("/A"), strategyNameP); |
| 185 | BOOST_CHECK_EQUAL(this->findInstanceName("/A/B"), strategyNameP); |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 186 | |
Junxiao Shi | 0e4a1f1 | 2016-12-24 02:39:01 +0000 | [diff] [blame] | 187 | BOOST_CHECK(sc.insert("/A", strategyNameQ)); |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 188 | // { '/'=>P, '/A/B'=>P, '/A'=>Q } |
| 189 | |
Junxiao Shi | 0e4a1f1 | 2016-12-24 02:39:01 +0000 | [diff] [blame] | 190 | BOOST_CHECK_EQUAL(this->findInstanceName("/"), strategyNameP); |
| 191 | BOOST_CHECK_EQUAL(this->findInstanceName("/A"), strategyNameQ); |
| 192 | BOOST_CHECK_EQUAL(this->findInstanceName("/A/B"), strategyNameP); |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 193 | |
Junxiao Shi | 0e4a1f1 | 2016-12-24 02:39:01 +0000 | [diff] [blame] | 194 | sc.erase("/A/B"); |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 195 | // { '/'=>P, '/A'=>Q } |
| 196 | |
Junxiao Shi | 0e4a1f1 | 2016-12-24 02:39:01 +0000 | [diff] [blame] | 197 | BOOST_CHECK_EQUAL(this->findInstanceName("/"), strategyNameP); |
| 198 | BOOST_CHECK_EQUAL(this->findInstanceName("/A"), strategyNameQ); |
| 199 | BOOST_CHECK_EQUAL(this->findInstanceName("/A/B"), strategyNameQ); |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 200 | |
Junxiao Shi | 0e4a1f1 | 2016-12-24 02:39:01 +0000 | [diff] [blame] | 201 | BOOST_CHECK(!sc.insert("/", strategyNameZ)); // non existent strategy |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 202 | |
Junxiao Shi | 0e4a1f1 | 2016-12-24 02:39:01 +0000 | [diff] [blame] | 203 | BOOST_CHECK(sc.insert("/", strategyNameQ)); |
| 204 | BOOST_CHECK(sc.insert("/A", strategyNameP)); |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 205 | // { '/'=>Q, '/A'=>P } |
| 206 | |
Junxiao Shi | 0e4a1f1 | 2016-12-24 02:39:01 +0000 | [diff] [blame] | 207 | BOOST_CHECK_EQUAL(this->findInstanceName("/"), strategyNameQ); |
| 208 | BOOST_CHECK_EQUAL(this->findInstanceName("/A"), strategyNameP); |
| 209 | BOOST_CHECK_EQUAL(this->findInstanceName("/A/B"), strategyNameP); |
| 210 | BOOST_CHECK_EQUAL(this->findInstanceName("/D"), strategyNameQ); |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 211 | } |
| 212 | |
Junxiao Shi | 4370fde | 2016-02-24 12:20:46 -0700 | [diff] [blame] | 213 | BOOST_AUTO_TEST_CASE(FindEffectiveStrategyWithPitEntry) |
| 214 | { |
Junxiao Shi | 4370fde | 2016-02-24 12:20:46 -0700 | [diff] [blame] | 215 | shared_ptr<Data> dataABC = makeData("/A/B/C"); |
| 216 | Name fullName = dataABC->getFullName(); |
| 217 | |
Junxiao Shi | 0e4a1f1 | 2016-12-24 02:39:01 +0000 | [diff] [blame] | 218 | BOOST_CHECK(sc.insert("/A", strategyNameP)); |
| 219 | BOOST_CHECK(sc.insert(fullName, strategyNameQ)); |
Junxiao Shi | 4370fde | 2016-02-24 12:20:46 -0700 | [diff] [blame] | 220 | |
| 221 | Pit& pit = forwarder.getPit(); |
| 222 | shared_ptr<Interest> interestAB = makeInterest("/A/B"); |
| 223 | shared_ptr<pit::Entry> pitAB = pit.insert(*interestAB).first; |
| 224 | shared_ptr<Interest> interestFull = makeInterest(fullName); |
| 225 | shared_ptr<pit::Entry> pitFull = pit.insert(*interestFull).first; |
| 226 | |
Junxiao Shi | 0e4a1f1 | 2016-12-24 02:39:01 +0000 | [diff] [blame] | 227 | BOOST_CHECK_EQUAL(this->findInstanceName(*pitAB), strategyNameP); |
| 228 | BOOST_CHECK_EQUAL(this->findInstanceName(*pitFull), strategyNameQ); |
Junxiao Shi | 4370fde | 2016-02-24 12:20:46 -0700 | [diff] [blame] | 229 | } |
| 230 | |
| 231 | BOOST_AUTO_TEST_CASE(FindEffectiveStrategyWithMeasurementsEntry) |
| 232 | { |
Junxiao Shi | 0e4a1f1 | 2016-12-24 02:39:01 +0000 | [diff] [blame] | 233 | BOOST_CHECK(sc.insert("/A", strategyNameP)); |
| 234 | BOOST_CHECK(sc.insert("/A/B/C", strategyNameQ)); |
Junxiao Shi | 4370fde | 2016-02-24 12:20:46 -0700 | [diff] [blame] | 235 | |
| 236 | Measurements& measurements = forwarder.getMeasurements(); |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 237 | measurements::Entry& mAB = measurements.get("/A/B"); |
| 238 | measurements::Entry& mABCD = measurements.get("/A/B/C/D"); |
Junxiao Shi | 4370fde | 2016-02-24 12:20:46 -0700 | [diff] [blame] | 239 | |
Junxiao Shi | 0e4a1f1 | 2016-12-24 02:39:01 +0000 | [diff] [blame] | 240 | BOOST_CHECK_EQUAL(this->findInstanceName(mAB), strategyNameP); |
| 241 | BOOST_CHECK_EQUAL(this->findInstanceName(mABCD), strategyNameQ); |
| 242 | } |
| 243 | |
| 244 | BOOST_AUTO_TEST_CASE(Erase) |
| 245 | { |
| 246 | NameTree& nameTree = forwarder.getNameTree(); |
| 247 | |
| 248 | sc.insert("/", strategyNameP); |
| 249 | |
| 250 | size_t nNameTreeEntriesBefore = nameTree.size(); |
| 251 | |
| 252 | sc.insert("/A/B", strategyNameQ); |
| 253 | sc.erase("/A/B"); |
| 254 | BOOST_CHECK_EQUAL(nameTree.size(), nNameTreeEntriesBefore); |
Junxiao Shi | 4370fde | 2016-02-24 12:20:46 -0700 | [diff] [blame] | 255 | } |
| 256 | |
Junxiao Shi | b5888d2 | 2014-05-26 07:35:22 -0700 | [diff] [blame] | 257 | BOOST_AUTO_TEST_CASE(Enumerate) |
| 258 | { |
Junxiao Shi | 0e4a1f1 | 2016-12-24 02:39:01 +0000 | [diff] [blame] | 259 | sc.insert("/", strategyNameP); |
| 260 | sc.insert("/A/B", strategyNameQ); |
| 261 | sc.insert("/A/B/C", strategyNameP); |
| 262 | sc.insert("/D", strategyNameP); |
| 263 | sc.insert("/E", strategyNameQ); |
Junxiao Shi | b5888d2 | 2014-05-26 07:35:22 -0700 | [diff] [blame] | 264 | |
Junxiao Shi | 18739c4 | 2016-12-22 08:03:00 +0000 | [diff] [blame] | 265 | BOOST_CHECK_EQUAL(sc.size(), 5); |
Junxiao Shi | b5888d2 | 2014-05-26 07:35:22 -0700 | [diff] [blame] | 266 | |
| 267 | std::map<Name, Name> map; // namespace=>strategyName |
Junxiao Shi | 18739c4 | 2016-12-22 08:03:00 +0000 | [diff] [blame] | 268 | for (StrategyChoice::const_iterator it = sc.begin(); it != sc.end(); ++it) { |
Junxiao Shi | 4cb7431 | 2016-12-25 20:48:47 +0000 | [diff] [blame] | 269 | map[it->getPrefix()] = it->getStrategyInstanceName(); |
Junxiao Shi | b5888d2 | 2014-05-26 07:35:22 -0700 | [diff] [blame] | 270 | } |
Junxiao Shi | 0e4a1f1 | 2016-12-24 02:39:01 +0000 | [diff] [blame] | 271 | |
| 272 | BOOST_CHECK_EQUAL(map.at("/"), strategyNameP); |
| 273 | BOOST_CHECK_EQUAL(map.at("/A/B"), strategyNameQ); |
| 274 | BOOST_CHECK_EQUAL(map.at("/A/B/C"), strategyNameP); |
| 275 | BOOST_CHECK_EQUAL(map.at("/D"), strategyNameP); |
| 276 | BOOST_CHECK_EQUAL(map.at("/E"), strategyNameQ); |
Junxiao Shi | b5888d2 | 2014-05-26 07:35:22 -0700 | [diff] [blame] | 277 | BOOST_CHECK_EQUAL(map.size(), 5); |
| 278 | } |
| 279 | |
Junxiao Shi | e349ea1 | 2014-03-12 01:32:42 -0700 | [diff] [blame] | 280 | class PStrategyInfo : public fw::StrategyInfo |
| 281 | { |
Junxiao Shi | 39ef261 | 2014-11-29 20:35:19 -0700 | [diff] [blame] | 282 | public: |
| 283 | static constexpr int |
| 284 | getTypeId() |
| 285 | { |
| 286 | return 10; |
| 287 | } |
Junxiao Shi | e349ea1 | 2014-03-12 01:32:42 -0700 | [diff] [blame] | 288 | }; |
| 289 | |
Junxiao Shi | 0e4a1f1 | 2016-12-24 02:39:01 +0000 | [diff] [blame] | 290 | BOOST_AUTO_TEST_CASE_EXPECTED_FAILURES(ClearStrategyInfo, 2) |
Junxiao Shi | e349ea1 | 2014-03-12 01:32:42 -0700 | [diff] [blame] | 291 | BOOST_AUTO_TEST_CASE(ClearStrategyInfo) |
| 292 | { |
Junxiao Shi | e349ea1 | 2014-03-12 01:32:42 -0700 | [diff] [blame] | 293 | Measurements& measurements = forwarder.getMeasurements(); |
| 294 | |
Junxiao Shi | 0e4a1f1 | 2016-12-24 02:39:01 +0000 | [diff] [blame] | 295 | BOOST_CHECK(sc.insert("/", strategyNameP)); |
Junxiao Shi | e349ea1 | 2014-03-12 01:32:42 -0700 | [diff] [blame] | 296 | // { '/'=>P } |
Junxiao Shi | 0e4a1f1 | 2016-12-24 02:39:01 +0000 | [diff] [blame] | 297 | measurements.get("/").insertStrategyInfo<PStrategyInfo>(); |
| 298 | measurements.get("/A").insertStrategyInfo<PStrategyInfo>(); |
| 299 | measurements.get("/A/B").insertStrategyInfo<PStrategyInfo>(); |
| 300 | measurements.get("/A/C").insertStrategyInfo<PStrategyInfo>(); |
Junxiao Shi | e349ea1 | 2014-03-12 01:32:42 -0700 | [diff] [blame] | 301 | |
Junxiao Shi | 0e4a1f1 | 2016-12-24 02:39:01 +0000 | [diff] [blame] | 302 | BOOST_CHECK(sc.insert("/A/B", strategyNameP)); |
Junxiao Shi | e349ea1 | 2014-03-12 01:32:42 -0700 | [diff] [blame] | 303 | // { '/'=>P, '/A/B'=>P } |
Junxiao Shi | 0e4a1f1 | 2016-12-24 02:39:01 +0000 | [diff] [blame] | 304 | BOOST_CHECK(measurements.get("/").getStrategyInfo<PStrategyInfo>() != nullptr); |
| 305 | BOOST_CHECK(measurements.get("/A").getStrategyInfo<PStrategyInfo>() != nullptr); |
| 306 | BOOST_CHECK(measurements.get("/A/B").getStrategyInfo<PStrategyInfo>() != nullptr); // expected failure |
| 307 | BOOST_CHECK(measurements.get("/A/C").getStrategyInfo<PStrategyInfo>() != nullptr); |
Junxiao Shi | e349ea1 | 2014-03-12 01:32:42 -0700 | [diff] [blame] | 308 | |
Junxiao Shi | 0e4a1f1 | 2016-12-24 02:39:01 +0000 | [diff] [blame] | 309 | BOOST_CHECK(sc.insert("/A", strategyNameQ)); |
Junxiao Shi | e349ea1 | 2014-03-12 01:32:42 -0700 | [diff] [blame] | 310 | // { '/'=>P, '/A/B'=>P, '/A'=>Q } |
Junxiao Shi | 0e4a1f1 | 2016-12-24 02:39:01 +0000 | [diff] [blame] | 311 | BOOST_CHECK(measurements.get("/").getStrategyInfo<PStrategyInfo>() != nullptr); |
| 312 | BOOST_CHECK(measurements.get("/A").getStrategyInfo<PStrategyInfo>() == nullptr); |
| 313 | BOOST_CHECK(measurements.get("/A/B").getStrategyInfo<PStrategyInfo>() != nullptr); // expected failure |
| 314 | BOOST_CHECK(measurements.get("/A/C").getStrategyInfo<PStrategyInfo>() == nullptr); |
Junxiao Shi | e349ea1 | 2014-03-12 01:32:42 -0700 | [diff] [blame] | 315 | |
Junxiao Shi | 0e4a1f1 | 2016-12-24 02:39:01 +0000 | [diff] [blame] | 316 | sc.erase("/A/B"); |
Junxiao Shi | e349ea1 | 2014-03-12 01:32:42 -0700 | [diff] [blame] | 317 | // { '/'=>P, '/A'=>Q } |
Junxiao Shi | 0e4a1f1 | 2016-12-24 02:39:01 +0000 | [diff] [blame] | 318 | BOOST_CHECK(measurements.get("/").getStrategyInfo<PStrategyInfo>() != nullptr); |
| 319 | BOOST_CHECK(measurements.get("/A").getStrategyInfo<PStrategyInfo>() == nullptr); |
| 320 | BOOST_CHECK(measurements.get("/A/B").getStrategyInfo<PStrategyInfo>() == nullptr); |
| 321 | BOOST_CHECK(measurements.get("/A/C").getStrategyInfo<PStrategyInfo>() == nullptr); |
Junxiao Shi | e93d6a3 | 2014-09-07 16:13:22 -0700 | [diff] [blame] | 322 | } |
| 323 | |
Junxiao Shi | 4370fde | 2016-02-24 12:20:46 -0700 | [diff] [blame] | 324 | BOOST_AUTO_TEST_SUITE_END() // TestStrategyChoice |
| 325 | BOOST_AUTO_TEST_SUITE_END() // Table |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 326 | |
| 327 | } // namespace tests |
| 328 | } // namespace nfd |