blob: 6cd2e70cf7c0bb05569c1d3fd54ab8763604e7bb [file] [log] [blame]
Yanbiao Li6704a4a2015-08-19 16:30:16 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Junxiao Shi332783b2018-02-04 23:52:46 +00002/*
Davide Pesavento1d2d3372025-01-14 12:04:12 -05003 * Copyright (c) 2014-2025, Regents of the University of California,
Yanbiao Li6704a4a2015-08-19 16:30:16 -07004 * 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 Li6704a4a2015-08-19 16:30:16 -070027#include "table/strategy-choice.hpp"
Junxiao Shia49a1ab2016-07-15 18:24:36 +000028
Davide Pesavento78ddcab2019-02-28 22:00:03 -050029#include "manager-common-fixture.hpp"
30#include "tests/daemon/fw/dummy-strategy.hpp"
Davide Pesavento28181322018-11-08 16:44:50 -050031
Junxiao Shi25c6ce42016-09-09 13:49:59 +000032#include <ndn-cxx/mgmt/nfd/strategy-choice.hpp>
Yanbiao Li6704a4a2015-08-19 16:30:16 -070033
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040034namespace nfd::tests {
Yanbiao Li6704a4a2015-08-19 16:30:16 -070035
Davide Pesavento78ddcab2019-02-28 22:00:03 -050036class StrategyChoiceManagerFixture : public ManagerFixtureWithAuthenticator
Yanbiao Li6704a4a2015-08-19 16:30:16 -070037{
38public:
39 StrategyChoiceManagerFixture()
Junxiao Shi7d30d852017-01-22 03:29:26 +000040 : sc(m_forwarder.getStrategyChoice())
41 , manager(sc, m_dispatcher, *m_authenticator)
Eric Newberry358414d2021-03-21 20:56:42 -070042 , strategyNameP(Name("/strategy-choice-manager-P").appendVersion(2))
Yanbiao Li6704a4a2015-08-19 16:30:16 -070043 {
Junxiao Shi7d30d852017-01-22 03:29:26 +000044 VersionedDummyStrategy<2>::registerAs(strategyNameP);
45
Junxiao Shi9ddf1b52016-08-22 03:58:55 +000046 setTopPrefix();
Yanbiao Lidf846e52016-01-30 21:53:47 -080047 setPrivilege("strategy-choice");
Yanbiao Li6704a4a2015-08-19 16:30:16 -070048 }
49
50public:
Junxiao Shi7d30d852017-01-22 03:29:26 +000051 /** \return whether exact-match StrategyChoice entry exists
52 */
53 bool
54 hasEntry(const Name& name) const
Yanbiao Li6704a4a2015-08-19 16:30:16 -070055 {
Junxiao Shi7d30d852017-01-22 03:29:26 +000056 return sc.get(name).first;
Yanbiao Li6704a4a2015-08-19 16:30:16 -070057 }
58
Junxiao Shi7d30d852017-01-22 03:29:26 +000059 /** \return strategy instance name from an exact-match StrategyChoice entry
60 */
61 Name
62 getInstanceName(const Name& name) const
Yanbiao Li6704a4a2015-08-19 16:30:16 -070063 {
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -040064 auto [hasEntry, instanceName] = sc.get(name);
65 return hasEntry ? instanceName : Name("/no-StrategyChoice-entry-at").append(name);
Yanbiao Li6704a4a2015-08-19 16:30:16 -070066 }
67
68protected:
Davide Pesavento1d2d3372025-01-14 12:04:12 -050069 static inline const Name SET_SC_REQUEST = Name("/localhost/nfd")
70 .append(ndn::nfd::StrategyChoiceSetCommand::getName());
71 static inline const Name UNSET_SC_REQUEST = Name("/localhost/nfd")
72 .append(ndn::nfd::StrategyChoiceUnsetCommand::getName());
73
Junxiao Shi7d30d852017-01-22 03:29:26 +000074 StrategyChoice& sc;
75 StrategyChoiceManager manager;
76
77 const Name strategyNameP;
Yanbiao Li6704a4a2015-08-19 16:30:16 -070078};
79
Davide Pesavento97210d52016-10-14 15:45:48 +020080BOOST_AUTO_TEST_SUITE(Mgmt)
81BOOST_FIXTURE_TEST_SUITE(TestStrategyChoiceManager, StrategyChoiceManagerFixture)
Yanbiao Li6704a4a2015-08-19 16:30:16 -070082
Junxiao Shi7d30d852017-01-22 03:29:26 +000083BOOST_AUTO_TEST_CASE(SetSuccess)
Yanbiao Li6704a4a2015-08-19 16:30:16 -070084{
Junxiao Shi7d30d852017-01-22 03:29:26 +000085 ControlParameters reqParams;
86 reqParams.setName("/A")
87 .setStrategy(strategyNameP.getPrefix(-1)); // use unversioned strategy name in request
Davide Pesavento1d2d3372025-01-14 12:04:12 -050088 auto req = makeControlCommandRequest(SET_SC_REQUEST, reqParams);
Junxiao Shi7d30d852017-01-22 03:29:26 +000089 receiveInterest(req);
Yanbiao Li6704a4a2015-08-19 16:30:16 -070090
Junxiao Shi7d30d852017-01-22 03:29:26 +000091 ControlParameters expectedParams;
92 expectedParams.setName("/A")
93 .setStrategy(strategyNameP); // response should have versioned strategy name
94 ControlResponse expectedResp;
95 expectedResp.setCode(200)
96 .setText("OK")
97 .setBody(expectedParams.wireEncode());
Junxiao Shi8a1f1702017-07-03 00:05:08 +000098 BOOST_CHECK_EQUAL(checkResponse(0, req.getName(), expectedResp),
Yanbiao Li6704a4a2015-08-19 16:30:16 -070099 CheckResponseResult::OK);
100
Junxiao Shi7d30d852017-01-22 03:29:26 +0000101 BOOST_CHECK_EQUAL(getInstanceName("/A"), strategyNameP);
Yanbiao Li6704a4a2015-08-19 16:30:16 -0700102
Junxiao Shi7d30d852017-01-22 03:29:26 +0000103 // Strategy versioning and parameters are not tested here because they are covered by
104 // Table/TestStrategyChoice test suite.
Yanbiao Li6704a4a2015-08-19 16:30:16 -0700105}
106
Junxiao Shi7d30d852017-01-22 03:29:26 +0000107BOOST_AUTO_TEST_CASE(SetUnknownStrategy)
Yanbiao Li6704a4a2015-08-19 16:30:16 -0700108{
Junxiao Shi7d30d852017-01-22 03:29:26 +0000109 ControlParameters reqParams;
110 reqParams.setName("/A")
111 .setStrategy("/strategy-choice-manager-unknown");
Davide Pesavento1d2d3372025-01-14 12:04:12 -0500112 auto req = makeControlCommandRequest(SET_SC_REQUEST, reqParams);
Junxiao Shi7d30d852017-01-22 03:29:26 +0000113 receiveInterest(req);
Yanbiao Li6704a4a2015-08-19 16:30:16 -0700114
Junxiao Shi7d30d852017-01-22 03:29:26 +0000115 ControlResponse expectedResp;
116 expectedResp.setCode(404)
117 .setText("Strategy not registered");
Junxiao Shi8a1f1702017-07-03 00:05:08 +0000118 BOOST_CHECK_EQUAL(checkResponse(0, req.getName(), expectedResp),
Yanbiao Li6704a4a2015-08-19 16:30:16 -0700119 CheckResponseResult::OK);
Yanbiao Li6704a4a2015-08-19 16:30:16 -0700120
Junxiao Shi7d30d852017-01-22 03:29:26 +0000121 BOOST_CHECK_EQUAL(hasEntry("/A"), false);
122}
123
Junxiao Shi332783b2018-02-04 23:52:46 +0000124BOOST_AUTO_TEST_CASE(SetNameTooLong)
125{
126 Name prefix;
Davide Pesavento2cae8ca2019-04-18 20:48:05 -0400127 while (prefix.size() <= NameTree::getMaxDepth()) {
Junxiao Shi332783b2018-02-04 23:52:46 +0000128 prefix.append("A");
129 }
130 ControlParameters reqParams;
131 reqParams.setName(prefix)
132 .setStrategy(strategyNameP);
Davide Pesavento1d2d3372025-01-14 12:04:12 -0500133 auto req = makeControlCommandRequest(SET_SC_REQUEST, reqParams);
Junxiao Shi332783b2018-02-04 23:52:46 +0000134 receiveInterest(req);
135
136 ControlResponse expectedResp;
137 expectedResp.setCode(414)
138 .setText("Prefix has too many components (limit is " +
Davide Pesavento2c9d2ca2024-01-27 16:36:51 -0500139 std::to_string(NameTree::getMaxDepth()) + ")");
Junxiao Shi332783b2018-02-04 23:52:46 +0000140 BOOST_CHECK_EQUAL(checkResponse(0, req.getName(), expectedResp),
141 CheckResponseResult::OK);
142
143 BOOST_CHECK_EQUAL(hasEntry(prefix), false);
144}
145
Junxiao Shi7d30d852017-01-22 03:29:26 +0000146BOOST_AUTO_TEST_CASE(UnsetSuccess)
147{
148 auto insertRes = sc.insert("/A", strategyNameP);
149 BOOST_REQUIRE(insertRes);
150
151 ControlParameters reqParams;
152 reqParams.setName("/A");
Davide Pesavento1d2d3372025-01-14 12:04:12 -0500153 auto req = makeControlCommandRequest(UNSET_SC_REQUEST, reqParams);
Junxiao Shi7d30d852017-01-22 03:29:26 +0000154 receiveInterest(req);
155
156 ControlParameters expectedParams(reqParams);
157 ControlResponse expectedResp;
158 expectedResp.setCode(200)
159 .setText("OK")
160 .setBody(expectedParams.wireEncode());
Junxiao Shi8a1f1702017-07-03 00:05:08 +0000161 BOOST_CHECK_EQUAL(checkResponse(0, req.getName(), expectedResp),
Yanbiao Li6704a4a2015-08-19 16:30:16 -0700162 CheckResponseResult::OK);
Junxiao Shi7d30d852017-01-22 03:29:26 +0000163
164 BOOST_CHECK_EQUAL(hasEntry("/A"), false);
Yanbiao Li6704a4a2015-08-19 16:30:16 -0700165}
166
Junxiao Shi7d30d852017-01-22 03:29:26 +0000167BOOST_AUTO_TEST_CASE(UnsetNoop)
Yanbiao Li6704a4a2015-08-19 16:30:16 -0700168{
Junxiao Shi7d30d852017-01-22 03:29:26 +0000169 ControlParameters reqParams;
170 reqParams.setName("/A");
Davide Pesavento1d2d3372025-01-14 12:04:12 -0500171 auto req = makeControlCommandRequest(UNSET_SC_REQUEST, reqParams);
Junxiao Shi7d30d852017-01-22 03:29:26 +0000172 receiveInterest(req);
Yanbiao Li6704a4a2015-08-19 16:30:16 -0700173
Junxiao Shi7d30d852017-01-22 03:29:26 +0000174 ControlParameters expectedParams(reqParams);
175 ControlResponse expectedResp;
176 expectedResp.setCode(200)
177 .setText("OK")
178 .setBody(expectedParams.wireEncode());
Junxiao Shi8a1f1702017-07-03 00:05:08 +0000179 BOOST_CHECK_EQUAL(checkResponse(0, req.getName(), expectedResp),
Junxiao Shi7d30d852017-01-22 03:29:26 +0000180 CheckResponseResult::OK);
Yanbiao Li6704a4a2015-08-19 16:30:16 -0700181
Junxiao Shi7d30d852017-01-22 03:29:26 +0000182 BOOST_CHECK_EQUAL(hasEntry("/A"), false);
Yanbiao Li6704a4a2015-08-19 16:30:16 -0700183}
184
Junxiao Shi7d30d852017-01-22 03:29:26 +0000185BOOST_AUTO_TEST_CASE(UnsetRootForbidden)
Yanbiao Li6704a4a2015-08-19 16:30:16 -0700186{
Junxiao Shi7d30d852017-01-22 03:29:26 +0000187 ControlParameters reqParams;
188 reqParams.setName("/");
Davide Pesavento1d2d3372025-01-14 12:04:12 -0500189 auto req = makeControlCommandRequest(UNSET_SC_REQUEST, reqParams);
Junxiao Shi7d30d852017-01-22 03:29:26 +0000190 receiveInterest(req);
191
192 ControlResponse expectedResp;
193 expectedResp.setCode(400)
194 .setText("failed in validating parameters");
Junxiao Shi8a1f1702017-07-03 00:05:08 +0000195 BOOST_CHECK_EQUAL(checkResponse(0, req.getName(), expectedResp),
Junxiao Shi7d30d852017-01-22 03:29:26 +0000196 CheckResponseResult::OK);
197
198 BOOST_CHECK_EQUAL(hasEntry("/"), true);
Yanbiao Li6704a4a2015-08-19 16:30:16 -0700199}
200
Davide Pesavento97210d52016-10-14 15:45:48 +0200201BOOST_AUTO_TEST_CASE(StrategyChoiceDataset)
Yanbiao Li6704a4a2015-08-19 16:30:16 -0700202{
Junxiao Shi7d30d852017-01-22 03:29:26 +0000203 std::map<Name, Name> expected; // namespace => strategy instance name
204 for (const strategy_choice::Entry& entry : sc) {
205 expected[entry.getPrefix()] = entry.getStrategyInstanceName();
Yanbiao Li6704a4a2015-08-19 16:30:16 -0700206 }
207
Davide Pesavento28181322018-11-08 16:44:50 -0500208 for (size_t i = expected.size(); i < 1024; ++i) {
Junxiao Shi7d30d852017-01-22 03:29:26 +0000209 Name name("/SC");
210 name.appendNumber(i);
211 Name strategy = DummyStrategy::getStrategyName(i);
212
213 auto insertRes = sc.insert(name, strategy);
214 BOOST_CHECK(insertRes);
215 expected[name] = strategy;
Yanbiao Li6704a4a2015-08-19 16:30:16 -0700216 }
Yanbiao Li6704a4a2015-08-19 16:30:16 -0700217
Davide Pesavento28181322018-11-08 16:44:50 -0500218 receiveInterest(Interest("/localhost/nfd/strategy-choice/list").setCanBePrefix(true));
219
Junxiao Shi7d30d852017-01-22 03:29:26 +0000220 Block dataset = concatenateResponses();
221 dataset.parse();
222 BOOST_CHECK_EQUAL(dataset.elements_size(), expected.size());
Yanbiao Li6704a4a2015-08-19 16:30:16 -0700223
Junxiao Shi7d30d852017-01-22 03:29:26 +0000224 for (auto i = dataset.elements_begin(); i != dataset.elements_end(); ++i) {
225 ndn::nfd::StrategyChoice record(*i);
Davide Pesaventod7083a52023-10-19 17:51:16 -0400226 BOOST_TEST_INFO_SCOPE(record);
Junxiao Shi7d30d852017-01-22 03:29:26 +0000227 auto found = expected.find(record.getName());
228 if (found == expected.end()) {
229 BOOST_ERROR("record has unexpected namespace " << record.getName());
230 }
231 else {
Davide Pesaventod7083a52023-10-19 17:51:16 -0400232 BOOST_TEST(record.getStrategy() == found->second);
Junxiao Shi7d30d852017-01-22 03:29:26 +0000233 expected.erase(found);
234 }
Yanbiao Li6704a4a2015-08-19 16:30:16 -0700235 }
236
Junxiao Shi7d30d852017-01-22 03:29:26 +0000237 for (const auto& pair : expected) {
238 BOOST_ERROR("record for " << pair.first << " is missing");
239 }
Yanbiao Li6704a4a2015-08-19 16:30:16 -0700240}
241
242BOOST_AUTO_TEST_SUITE_END() // TestStrategyChoiceManager
243BOOST_AUTO_TEST_SUITE_END() // Mgmt
244
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400245} // namespace nfd::tests