Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Junxiao Shi | 332783b | 2018-02-04 23:52:46 +0000 | [diff] [blame] | 2 | /* |
Davide Pesavento | 2c9d2ca | 2024-01-27 16:36:51 -0500 | [diff] [blame] | 3 | * Copyright (c) 2014-2024, 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 | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 27 | #include "table/strategy-choice.hpp" |
Junxiao Shi | a49a1ab | 2016-07-15 18:24:36 +0000 | [diff] [blame] | 28 | |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 29 | #include "manager-common-fixture.hpp" |
| 30 | #include "tests/daemon/fw/dummy-strategy.hpp" |
Davide Pesavento | 2818132 | 2018-11-08 16:44:50 -0500 | [diff] [blame] | 31 | |
Junxiao Shi | 25c6ce4 | 2016-09-09 13:49:59 +0000 | [diff] [blame] | 32 | #include <ndn-cxx/mgmt/nfd/strategy-choice.hpp> |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 33 | |
Davide Pesavento | e422f9e | 2022-06-03 01:30:23 -0400 | [diff] [blame] | 34 | namespace nfd::tests { |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 35 | |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 36 | class StrategyChoiceManagerFixture : public ManagerFixtureWithAuthenticator |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 37 | { |
| 38 | public: |
| 39 | StrategyChoiceManagerFixture() |
Junxiao Shi | 7d30d85 | 2017-01-22 03:29:26 +0000 | [diff] [blame] | 40 | : sc(m_forwarder.getStrategyChoice()) |
| 41 | , manager(sc, m_dispatcher, *m_authenticator) |
Eric Newberry | 358414d | 2021-03-21 20:56:42 -0700 | [diff] [blame] | 42 | , strategyNameP(Name("/strategy-choice-manager-P").appendVersion(2)) |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 43 | { |
Junxiao Shi | 7d30d85 | 2017-01-22 03:29:26 +0000 | [diff] [blame] | 44 | VersionedDummyStrategy<2>::registerAs(strategyNameP); |
| 45 | |
Junxiao Shi | 9ddf1b5 | 2016-08-22 03:58:55 +0000 | [diff] [blame] | 46 | setTopPrefix(); |
Yanbiao Li | df846e5 | 2016-01-30 21:53:47 -0800 | [diff] [blame] | 47 | setPrivilege("strategy-choice"); |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 48 | } |
| 49 | |
| 50 | public: |
Junxiao Shi | 7d30d85 | 2017-01-22 03:29:26 +0000 | [diff] [blame] | 51 | /** \return whether exact-match StrategyChoice entry exists |
| 52 | */ |
| 53 | bool |
| 54 | hasEntry(const Name& name) const |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 55 | { |
Junxiao Shi | 7d30d85 | 2017-01-22 03:29:26 +0000 | [diff] [blame] | 56 | return sc.get(name).first; |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 57 | } |
| 58 | |
Junxiao Shi | 7d30d85 | 2017-01-22 03:29:26 +0000 | [diff] [blame] | 59 | /** \return strategy instance name from an exact-match StrategyChoice entry |
| 60 | */ |
| 61 | Name |
| 62 | getInstanceName(const Name& name) const |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 63 | { |
Davide Pesavento | a3a7a4e | 2022-05-29 16:06:22 -0400 | [diff] [blame] | 64 | auto [hasEntry, instanceName] = sc.get(name); |
| 65 | return hasEntry ? instanceName : Name("/no-StrategyChoice-entry-at").append(name); |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 66 | } |
| 67 | |
| 68 | protected: |
Junxiao Shi | 7d30d85 | 2017-01-22 03:29:26 +0000 | [diff] [blame] | 69 | StrategyChoice& sc; |
| 70 | StrategyChoiceManager manager; |
| 71 | |
| 72 | const Name strategyNameP; |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 73 | }; |
| 74 | |
Davide Pesavento | 97210d5 | 2016-10-14 15:45:48 +0200 | [diff] [blame] | 75 | BOOST_AUTO_TEST_SUITE(Mgmt) |
| 76 | BOOST_FIXTURE_TEST_SUITE(TestStrategyChoiceManager, StrategyChoiceManagerFixture) |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 77 | |
Junxiao Shi | 7d30d85 | 2017-01-22 03:29:26 +0000 | [diff] [blame] | 78 | BOOST_AUTO_TEST_CASE(SetSuccess) |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 79 | { |
Junxiao Shi | 7d30d85 | 2017-01-22 03:29:26 +0000 | [diff] [blame] | 80 | ControlParameters reqParams; |
| 81 | reqParams.setName("/A") |
| 82 | .setStrategy(strategyNameP.getPrefix(-1)); // use unversioned strategy name in request |
| 83 | auto req = makeControlCommandRequest("/localhost/nfd/strategy-choice/set", reqParams); |
| 84 | receiveInterest(req); |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 85 | |
Junxiao Shi | 7d30d85 | 2017-01-22 03:29:26 +0000 | [diff] [blame] | 86 | ControlParameters expectedParams; |
| 87 | expectedParams.setName("/A") |
| 88 | .setStrategy(strategyNameP); // response should have versioned strategy name |
| 89 | ControlResponse expectedResp; |
| 90 | expectedResp.setCode(200) |
| 91 | .setText("OK") |
| 92 | .setBody(expectedParams.wireEncode()); |
Junxiao Shi | 8a1f170 | 2017-07-03 00:05:08 +0000 | [diff] [blame] | 93 | BOOST_CHECK_EQUAL(checkResponse(0, req.getName(), expectedResp), |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 94 | CheckResponseResult::OK); |
| 95 | |
Junxiao Shi | 7d30d85 | 2017-01-22 03:29:26 +0000 | [diff] [blame] | 96 | BOOST_CHECK_EQUAL(getInstanceName("/A"), strategyNameP); |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 97 | |
Junxiao Shi | 7d30d85 | 2017-01-22 03:29:26 +0000 | [diff] [blame] | 98 | // Strategy versioning and parameters are not tested here because they are covered by |
| 99 | // Table/TestStrategyChoice test suite. |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 100 | } |
| 101 | |
Junxiao Shi | 7d30d85 | 2017-01-22 03:29:26 +0000 | [diff] [blame] | 102 | BOOST_AUTO_TEST_CASE(SetUnknownStrategy) |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 103 | { |
Junxiao Shi | 7d30d85 | 2017-01-22 03:29:26 +0000 | [diff] [blame] | 104 | ControlParameters reqParams; |
| 105 | reqParams.setName("/A") |
| 106 | .setStrategy("/strategy-choice-manager-unknown"); |
| 107 | auto req = makeControlCommandRequest("/localhost/nfd/strategy-choice/set", reqParams); |
| 108 | receiveInterest(req); |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 109 | |
Junxiao Shi | 7d30d85 | 2017-01-22 03:29:26 +0000 | [diff] [blame] | 110 | ControlResponse expectedResp; |
| 111 | expectedResp.setCode(404) |
| 112 | .setText("Strategy not registered"); |
Junxiao Shi | 8a1f170 | 2017-07-03 00:05:08 +0000 | [diff] [blame] | 113 | BOOST_CHECK_EQUAL(checkResponse(0, req.getName(), expectedResp), |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 114 | CheckResponseResult::OK); |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 115 | |
Junxiao Shi | 7d30d85 | 2017-01-22 03:29:26 +0000 | [diff] [blame] | 116 | BOOST_CHECK_EQUAL(hasEntry("/A"), false); |
| 117 | } |
| 118 | |
Junxiao Shi | 332783b | 2018-02-04 23:52:46 +0000 | [diff] [blame] | 119 | BOOST_AUTO_TEST_CASE(SetNameTooLong) |
| 120 | { |
| 121 | Name prefix; |
Davide Pesavento | 2cae8ca | 2019-04-18 20:48:05 -0400 | [diff] [blame] | 122 | while (prefix.size() <= NameTree::getMaxDepth()) { |
Junxiao Shi | 332783b | 2018-02-04 23:52:46 +0000 | [diff] [blame] | 123 | prefix.append("A"); |
| 124 | } |
| 125 | ControlParameters reqParams; |
| 126 | reqParams.setName(prefix) |
| 127 | .setStrategy(strategyNameP); |
| 128 | auto req = makeControlCommandRequest("/localhost/nfd/strategy-choice/set", reqParams); |
| 129 | receiveInterest(req); |
| 130 | |
| 131 | ControlResponse expectedResp; |
| 132 | expectedResp.setCode(414) |
| 133 | .setText("Prefix has too many components (limit is " + |
Davide Pesavento | 2c9d2ca | 2024-01-27 16:36:51 -0500 | [diff] [blame] | 134 | std::to_string(NameTree::getMaxDepth()) + ")"); |
Junxiao Shi | 332783b | 2018-02-04 23:52:46 +0000 | [diff] [blame] | 135 | BOOST_CHECK_EQUAL(checkResponse(0, req.getName(), expectedResp), |
| 136 | CheckResponseResult::OK); |
| 137 | |
| 138 | BOOST_CHECK_EQUAL(hasEntry(prefix), false); |
| 139 | } |
| 140 | |
Junxiao Shi | 7d30d85 | 2017-01-22 03:29:26 +0000 | [diff] [blame] | 141 | BOOST_AUTO_TEST_CASE(UnsetSuccess) |
| 142 | { |
| 143 | auto insertRes = sc.insert("/A", strategyNameP); |
| 144 | BOOST_REQUIRE(insertRes); |
| 145 | |
| 146 | ControlParameters reqParams; |
| 147 | reqParams.setName("/A"); |
| 148 | auto req = makeControlCommandRequest("/localhost/nfd/strategy-choice/unset", reqParams); |
| 149 | receiveInterest(req); |
| 150 | |
| 151 | ControlParameters expectedParams(reqParams); |
| 152 | ControlResponse expectedResp; |
| 153 | expectedResp.setCode(200) |
| 154 | .setText("OK") |
| 155 | .setBody(expectedParams.wireEncode()); |
Junxiao Shi | 8a1f170 | 2017-07-03 00:05:08 +0000 | [diff] [blame] | 156 | BOOST_CHECK_EQUAL(checkResponse(0, req.getName(), expectedResp), |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 157 | CheckResponseResult::OK); |
Junxiao Shi | 7d30d85 | 2017-01-22 03:29:26 +0000 | [diff] [blame] | 158 | |
| 159 | BOOST_CHECK_EQUAL(hasEntry("/A"), false); |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 160 | } |
| 161 | |
Junxiao Shi | 7d30d85 | 2017-01-22 03:29:26 +0000 | [diff] [blame] | 162 | BOOST_AUTO_TEST_CASE(UnsetNoop) |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 163 | { |
Junxiao Shi | 7d30d85 | 2017-01-22 03:29:26 +0000 | [diff] [blame] | 164 | ControlParameters reqParams; |
| 165 | reqParams.setName("/A"); |
| 166 | auto req = makeControlCommandRequest("/localhost/nfd/strategy-choice/unset", reqParams); |
| 167 | receiveInterest(req); |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 168 | |
Junxiao Shi | 7d30d85 | 2017-01-22 03:29:26 +0000 | [diff] [blame] | 169 | ControlParameters expectedParams(reqParams); |
| 170 | ControlResponse expectedResp; |
| 171 | expectedResp.setCode(200) |
| 172 | .setText("OK") |
| 173 | .setBody(expectedParams.wireEncode()); |
Junxiao Shi | 8a1f170 | 2017-07-03 00:05:08 +0000 | [diff] [blame] | 174 | BOOST_CHECK_EQUAL(checkResponse(0, req.getName(), expectedResp), |
Junxiao Shi | 7d30d85 | 2017-01-22 03:29:26 +0000 | [diff] [blame] | 175 | CheckResponseResult::OK); |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 176 | |
Junxiao Shi | 7d30d85 | 2017-01-22 03:29:26 +0000 | [diff] [blame] | 177 | BOOST_CHECK_EQUAL(hasEntry("/A"), false); |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 178 | } |
| 179 | |
Junxiao Shi | 7d30d85 | 2017-01-22 03:29:26 +0000 | [diff] [blame] | 180 | BOOST_AUTO_TEST_CASE(UnsetRootForbidden) |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 181 | { |
Junxiao Shi | 7d30d85 | 2017-01-22 03:29:26 +0000 | [diff] [blame] | 182 | ControlParameters reqParams; |
| 183 | reqParams.setName("/"); |
| 184 | auto req = makeControlCommandRequest("/localhost/nfd/strategy-choice/unset", reqParams); |
| 185 | receiveInterest(req); |
| 186 | |
| 187 | ControlResponse expectedResp; |
| 188 | expectedResp.setCode(400) |
| 189 | .setText("failed in validating parameters"); |
Junxiao Shi | 8a1f170 | 2017-07-03 00:05:08 +0000 | [diff] [blame] | 190 | BOOST_CHECK_EQUAL(checkResponse(0, req.getName(), expectedResp), |
Junxiao Shi | 7d30d85 | 2017-01-22 03:29:26 +0000 | [diff] [blame] | 191 | CheckResponseResult::OK); |
| 192 | |
| 193 | BOOST_CHECK_EQUAL(hasEntry("/"), true); |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 194 | } |
| 195 | |
Davide Pesavento | 97210d5 | 2016-10-14 15:45:48 +0200 | [diff] [blame] | 196 | BOOST_AUTO_TEST_CASE(StrategyChoiceDataset) |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 197 | { |
Junxiao Shi | 7d30d85 | 2017-01-22 03:29:26 +0000 | [diff] [blame] | 198 | std::map<Name, Name> expected; // namespace => strategy instance name |
| 199 | for (const strategy_choice::Entry& entry : sc) { |
| 200 | expected[entry.getPrefix()] = entry.getStrategyInstanceName(); |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 201 | } |
| 202 | |
Davide Pesavento | 2818132 | 2018-11-08 16:44:50 -0500 | [diff] [blame] | 203 | for (size_t i = expected.size(); i < 1024; ++i) { |
Junxiao Shi | 7d30d85 | 2017-01-22 03:29:26 +0000 | [diff] [blame] | 204 | Name name("/SC"); |
| 205 | name.appendNumber(i); |
| 206 | Name strategy = DummyStrategy::getStrategyName(i); |
| 207 | |
| 208 | auto insertRes = sc.insert(name, strategy); |
| 209 | BOOST_CHECK(insertRes); |
| 210 | expected[name] = strategy; |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 211 | } |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 212 | |
Davide Pesavento | 2818132 | 2018-11-08 16:44:50 -0500 | [diff] [blame] | 213 | receiveInterest(Interest("/localhost/nfd/strategy-choice/list").setCanBePrefix(true)); |
| 214 | |
Junxiao Shi | 7d30d85 | 2017-01-22 03:29:26 +0000 | [diff] [blame] | 215 | Block dataset = concatenateResponses(); |
| 216 | dataset.parse(); |
| 217 | BOOST_CHECK_EQUAL(dataset.elements_size(), expected.size()); |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 218 | |
Junxiao Shi | 7d30d85 | 2017-01-22 03:29:26 +0000 | [diff] [blame] | 219 | for (auto i = dataset.elements_begin(); i != dataset.elements_end(); ++i) { |
| 220 | ndn::nfd::StrategyChoice record(*i); |
Davide Pesavento | d7083a5 | 2023-10-19 17:51:16 -0400 | [diff] [blame] | 221 | BOOST_TEST_INFO_SCOPE(record); |
Junxiao Shi | 7d30d85 | 2017-01-22 03:29:26 +0000 | [diff] [blame] | 222 | auto found = expected.find(record.getName()); |
| 223 | if (found == expected.end()) { |
| 224 | BOOST_ERROR("record has unexpected namespace " << record.getName()); |
| 225 | } |
| 226 | else { |
Davide Pesavento | d7083a5 | 2023-10-19 17:51:16 -0400 | [diff] [blame] | 227 | BOOST_TEST(record.getStrategy() == found->second); |
Junxiao Shi | 7d30d85 | 2017-01-22 03:29:26 +0000 | [diff] [blame] | 228 | expected.erase(found); |
| 229 | } |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 230 | } |
| 231 | |
Junxiao Shi | 7d30d85 | 2017-01-22 03:29:26 +0000 | [diff] [blame] | 232 | for (const auto& pair : expected) { |
| 233 | BOOST_ERROR("record for " << pair.first << " is missing"); |
| 234 | } |
Yanbiao Li | 6704a4a | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 235 | } |
| 236 | |
| 237 | BOOST_AUTO_TEST_SUITE_END() // TestStrategyChoiceManager |
| 238 | BOOST_AUTO_TEST_SUITE_END() // Mgmt |
| 239 | |
Davide Pesavento | e422f9e | 2022-06-03 01:30:23 -0400 | [diff] [blame] | 240 | } // namespace nfd::tests |