Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Yanbiao Li | df846e5 | 2016-01-30 21:53:47 -0800 | [diff] [blame] | 3 | * Copyright (c) 2014-2016, Regents of the University of California, |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [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. |
| 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 | |
| 26 | #include "mgmt/strategy-choice-manager.hpp" |
Yanbiao Li | df846e5 | 2016-01-30 21:53:47 -0800 | [diff] [blame] | 27 | #include "nfd-manager-common-fixture.hpp" |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 28 | |
| 29 | #include "face/face.hpp" |
| 30 | #include "face/internal-face.hpp" |
| 31 | #include "table/name-tree.hpp" |
| 32 | #include "table/strategy-choice.hpp" |
| 33 | #include "fw/strategy.hpp" |
Junxiao Shi | a49a1ab | 2016-07-15 18:24:36 +0000 | [diff] [blame] | 34 | |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 35 | #include "tests/daemon/face/dummy-face.hpp" |
| 36 | #include "tests/daemon/fw/dummy-strategy.hpp" |
Junxiao Shi | a49a1ab | 2016-07-15 18:24:36 +0000 | [diff] [blame] | 37 | #include "tests/daemon/fw/install-strategy.hpp" |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 38 | |
| 39 | #include <ndn-cxx/util/random.hpp> |
Junxiao Shi | 25c6ce4 | 2016-09-09 13:49:59 +0000 | [diff] [blame^] | 40 | #include <ndn-cxx/mgmt/nfd/strategy-choice.hpp> |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 41 | |
| 42 | namespace nfd { |
| 43 | namespace tests { |
| 44 | |
Yanbiao Li | df846e5 | 2016-01-30 21:53:47 -0800 | [diff] [blame] | 45 | class StrategyChoiceManagerFixture : public NfdManagerCommonFixture |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 46 | { |
| 47 | public: |
| 48 | StrategyChoiceManagerFixture() |
| 49 | : m_strategyChoice(m_forwarder.getStrategyChoice()) |
Junxiao Shi | 9ddf1b5 | 2016-08-22 03:58:55 +0000 | [diff] [blame] | 50 | , m_manager(m_strategyChoice, m_dispatcher, *m_authenticator) |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 51 | { |
Junxiao Shi | 9ddf1b5 | 2016-08-22 03:58:55 +0000 | [diff] [blame] | 52 | setTopPrefix(); |
Yanbiao Li | df846e5 | 2016-01-30 21:53:47 -0800 | [diff] [blame] | 53 | setPrivilege("strategy-choice"); |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 54 | } |
| 55 | |
| 56 | public: |
| 57 | void |
Junxiao Shi | a49a1ab | 2016-07-15 18:24:36 +0000 | [diff] [blame] | 58 | installStrategy(const Name& strategyName) |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 59 | { |
Junxiao Shi | a49a1ab | 2016-07-15 18:24:36 +0000 | [diff] [blame] | 60 | install<DummyStrategy>(m_forwarder, strategyName); |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 61 | } |
| 62 | |
| 63 | const Name& |
| 64 | findStrategy(const Name& name) |
| 65 | { |
| 66 | return m_strategyChoice.findEffectiveStrategy(name).getName(); |
| 67 | } |
| 68 | |
| 69 | ControlParameters |
| 70 | makeParameters(const Name& name, const Name& strategy) |
| 71 | { |
| 72 | return ControlParameters().setName(name).setStrategy(strategy); |
| 73 | } |
| 74 | |
| 75 | protected: |
| 76 | StrategyChoice& m_strategyChoice; |
| 77 | StrategyChoiceManager m_manager; |
| 78 | }; |
| 79 | |
| 80 | BOOST_FIXTURE_TEST_SUITE(Mgmt, StrategyChoiceManagerFixture) |
| 81 | BOOST_AUTO_TEST_SUITE(TestStrategyChoiceManager) |
| 82 | |
| 83 | BOOST_AUTO_TEST_CASE(SetStrategy) |
| 84 | { |
| 85 | auto testSetStrategy = [this] (const ControlParameters& parameters) -> Name { |
| 86 | m_responses.clear(); |
| 87 | auto command = makeControlCommandRequest("/localhost/nfd/strategy-choice/set", parameters); |
| 88 | receiveInterest(command); |
| 89 | return command->getName(); |
| 90 | }; |
| 91 | |
| 92 | installStrategy("/localhost/nfd/strategy/test-strategy-a"); |
| 93 | installStrategy("/localhost/nfd/strategy/test-strategy-c/%FD%01"); // version 1 |
| 94 | installStrategy("/localhost/nfd/strategy/test-strategy-c/%FD%02"); // version 2 |
| 95 | |
| 96 | auto parametersA = makeParameters("test", "/localhost/nfd/strategy/test-strategy-a"); |
| 97 | auto parametersB = makeParameters("test", "/localhost/nfd/strategy/test-strategy-b"); |
| 98 | auto parametersC1 = makeParameters("test", "/localhost/nfd/strategy/test-strategy-c/%FD%01"); |
| 99 | auto parametersC = makeParameters("test", "/localhost/nfd/strategy/test-strategy-c"); |
| 100 | |
| 101 | auto commandNameA = testSetStrategy(parametersA); // succeed |
| 102 | BOOST_REQUIRE_EQUAL(m_responses.size(), 1); |
| 103 | BOOST_CHECK_EQUAL(checkResponse(0, commandNameA, makeResponse(200, "OK", parametersA)), |
| 104 | CheckResponseResult::OK); |
| 105 | BOOST_CHECK_EQUAL(findStrategy("/test"), "/localhost/nfd/strategy/test-strategy-a"); |
| 106 | |
| 107 | auto commandNameB = testSetStrategy(parametersB); // not installed |
| 108 | BOOST_REQUIRE_EQUAL(m_responses.size(), 1); |
| 109 | BOOST_CHECK_EQUAL(checkResponse(0, commandNameB, ControlResponse(504, "Unsupported strategy")), |
| 110 | CheckResponseResult::OK); |
| 111 | |
| 112 | auto commandNameC1 = testSetStrategy(parametersC1); // specified version |
| 113 | BOOST_REQUIRE_EQUAL(m_responses.size(), 1); |
| 114 | BOOST_CHECK_EQUAL(checkResponse(0, commandNameC1, makeResponse(200, "OK", parametersC1)), |
| 115 | CheckResponseResult::OK); |
| 116 | BOOST_CHECK_EQUAL(findStrategy("/test"), "/localhost/nfd/strategy/test-strategy-c/%FD%01"); |
| 117 | |
| 118 | auto commandNameC = testSetStrategy(parametersC); // latest version |
| 119 | parametersC.setStrategy("/localhost/nfd/strategy/test-strategy-c/%FD%02"); // change to latest |
| 120 | BOOST_REQUIRE_EQUAL(m_responses.size(), 1); |
| 121 | BOOST_CHECK_EQUAL(checkResponse(0, commandNameC, makeResponse(200, "OK", parametersC)), |
| 122 | CheckResponseResult::OK); |
| 123 | BOOST_CHECK_EQUAL(findStrategy("/test"), "/localhost/nfd/strategy/test-strategy-c/%FD%02"); |
| 124 | } |
| 125 | |
| 126 | BOOST_AUTO_TEST_CASE(UnsetStrategy) |
| 127 | { |
| 128 | auto testUnsetStrategy = [this] (const ControlParameters& parameters) -> Name { |
| 129 | m_responses.clear(); |
| 130 | auto command = makeControlCommandRequest("/localhost/nfd/strategy-choice/unset", parameters); |
| 131 | receiveInterest(command); |
| 132 | return command->getName(); |
| 133 | }; |
| 134 | |
| 135 | installStrategy("/localhost/nfd/strategy/test-strategy-a"); |
| 136 | installStrategy("/localhost/nfd/strategy/test-strategy-b"); |
| 137 | installStrategy("/localhost/nfd/strategy/test-strategy-c"); |
| 138 | |
| 139 | BOOST_CHECK(m_strategyChoice.insert("ndn:/", "/localhost/nfd/strategy/test-strategy-a")); // root |
| 140 | BOOST_CHECK(m_strategyChoice.insert("/test", "/localhost/nfd/strategy/test-strategy-b")); // test |
| 141 | BOOST_CHECK_EQUAL(findStrategy("/"), "/localhost/nfd/strategy/test-strategy-a"); |
| 142 | |
| 143 | auto parametersRoot = ControlParameters().setName("ndn:/"); // root prefix |
| 144 | auto parametersNone = ControlParameters().setName("/none"); // no such entry |
| 145 | auto parametersTest = ControlParameters().setName("/test"); // has such entry |
| 146 | |
| 147 | BOOST_CHECK_EQUAL(findStrategy("/"), "/localhost/nfd/strategy/test-strategy-a"); // root |
| 148 | auto commandRootName = testUnsetStrategy(parametersRoot); |
| 149 | auto expectedResponse = ControlResponse(400, "failed in validating parameters"); |
| 150 | BOOST_REQUIRE_EQUAL(m_responses.size(), 1); |
| 151 | BOOST_CHECK_EQUAL(checkResponse(0, commandRootName, expectedResponse), CheckResponseResult::OK); |
| 152 | BOOST_CHECK_EQUAL(findStrategy("/"), "/localhost/nfd/strategy/test-strategy-a"); // keep as root |
| 153 | |
| 154 | BOOST_CHECK_EQUAL(findStrategy("/none"), "/localhost/nfd/strategy/test-strategy-a"); // root |
| 155 | auto commandNoneName = testUnsetStrategy(parametersNone); |
| 156 | BOOST_REQUIRE_EQUAL(m_responses.size(), 1); |
| 157 | BOOST_CHECK_EQUAL(checkResponse(0, commandNoneName, makeResponse(200, "OK", parametersNone)), |
| 158 | CheckResponseResult::OK); |
| 159 | BOOST_CHECK_EQUAL(findStrategy("/none"), "/localhost/nfd/strategy/test-strategy-a"); // root |
| 160 | |
| 161 | BOOST_CHECK_EQUAL(findStrategy("/test"), "/localhost/nfd/strategy/test-strategy-b"); // self |
| 162 | auto commandTestName = testUnsetStrategy(parametersTest); |
| 163 | BOOST_REQUIRE_EQUAL(m_responses.size(), 1); |
| 164 | BOOST_CHECK_EQUAL(checkResponse(0, commandTestName, makeResponse(200, "OK", parametersTest)), |
| 165 | CheckResponseResult::OK); |
| 166 | BOOST_CHECK_EQUAL(findStrategy("/test"), "/localhost/nfd/strategy/test-strategy-a"); // parent |
| 167 | } |
| 168 | |
| 169 | // @todo Remove when ndn::nfd::StrategyChoice implements operator!= and operator<< |
| 170 | class StrategyChoice : public ndn::nfd::StrategyChoice |
| 171 | { |
| 172 | public: |
| 173 | StrategyChoice() = default; |
| 174 | |
| 175 | StrategyChoice(const ndn::nfd::StrategyChoice& entry) |
| 176 | : ndn::nfd::StrategyChoice(entry) |
| 177 | { |
| 178 | } |
| 179 | }; |
| 180 | |
| 181 | bool |
| 182 | operator!=(const StrategyChoice& left, const StrategyChoice& right) |
| 183 | { |
| 184 | return left.getName() != right.getName() || left.getStrategy() != right.getStrategy(); |
| 185 | } |
| 186 | |
| 187 | std::ostream& |
| 188 | operator<<(std::ostream &os, const StrategyChoice& entry) |
| 189 | { |
| 190 | os << "[ " << entry.getName() << ", " << entry.getStrategy() << " ]"; |
| 191 | return os; |
| 192 | } |
| 193 | |
| 194 | BOOST_AUTO_TEST_CASE(ListChoices) |
| 195 | { |
| 196 | size_t nPreInsertedStrategies = m_strategyChoice.size(); // the best-route strategy |
| 197 | std::set<Name> actualNames, actualStrategies; |
| 198 | for (auto&& entry : m_strategyChoice) { |
| 199 | actualNames.insert(entry.getPrefix()); |
| 200 | actualStrategies.insert(entry.getStrategyName()); |
| 201 | } |
| 202 | |
| 203 | size_t nEntries = 1024; |
| 204 | for (size_t i = 0 ; i < nEntries ; i++) { |
| 205 | auto name = Name("test-name").appendSegment(i); |
| 206 | auto strategy = Name("test-strategy").appendSegment(ndn::random::generateWord64()); |
| 207 | auto entry = ndn::nfd::StrategyChoice().setName(name).setStrategy(strategy); |
| 208 | actualNames.insert(name); |
| 209 | actualStrategies.insert(strategy); |
| 210 | installStrategy(strategy); |
| 211 | m_strategyChoice.insert(name, strategy); |
| 212 | } |
| 213 | nEntries += nPreInsertedStrategies; |
| 214 | |
| 215 | receiveInterest(makeInterest("/localhost/nfd/strategy-choice/list")); |
| 216 | |
| 217 | Block content; |
| 218 | BOOST_CHECK_NO_THROW(content = concatenateResponses()); |
| 219 | BOOST_CHECK_NO_THROW(content.parse()); |
| 220 | BOOST_CHECK_EQUAL(content.elements().size(), nEntries); |
| 221 | |
| 222 | std::vector<StrategyChoice> receivedRecords, expectedRecords; |
| 223 | for (size_t idx = 0; idx < nEntries; ++idx) { |
| 224 | BOOST_TEST_MESSAGE("processing element: " << idx); |
| 225 | |
| 226 | StrategyChoice decodedEntry; |
| 227 | BOOST_REQUIRE_NO_THROW(decodedEntry.wireDecode(content.elements()[idx])); |
| 228 | receivedRecords.push_back(decodedEntry); |
| 229 | |
| 230 | actualNames.erase(decodedEntry.getName()); |
| 231 | actualStrategies.erase(decodedEntry.getStrategy()); |
| 232 | |
| 233 | auto result = m_strategyChoice.get(decodedEntry.getName()); |
| 234 | BOOST_REQUIRE(result.first); |
| 235 | |
| 236 | auto record = StrategyChoice().setName(decodedEntry.getName()).setStrategy(result.second); |
| 237 | expectedRecords.push_back(record); |
| 238 | } |
| 239 | |
| 240 | BOOST_CHECK_EQUAL(actualNames.size(), 0); |
| 241 | BOOST_CHECK_EQUAL(actualStrategies.size(), 0); |
| 242 | |
| 243 | BOOST_CHECK_EQUAL_COLLECTIONS(receivedRecords.begin(), receivedRecords.end(), |
| 244 | expectedRecords.begin(), expectedRecords.end()); |
| 245 | } |
| 246 | |
| 247 | BOOST_AUTO_TEST_SUITE_END() // TestStrategyChoiceManager |
| 248 | BOOST_AUTO_TEST_SUITE_END() // Mgmt |
| 249 | |
| 250 | } // namespace tests |
| 251 | } // namespace nfd |