blob: 12c13a1783db86f4c8f6b7251d6b9d40551ea3b4 [file] [log] [blame]
Junxiao Shi91f6ee02016-12-29 21:44:44 +00001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -05002/*
Ashlesh Gawande1ef93d02022-04-08 00:25:06 -04003 * Copyright (c) 2014-2022, Regents of the University of California,
Junxiao Shi91f6ee02016-12-29 21:44:44 +00004 * 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/** \file
27 * This test suite tests instantiation logic in strategies.
28 */
29
30// All strategies, sorted alphabetically.
31#include "fw/access-strategy.hpp"
32#include "fw/asf-strategy.hpp"
Davide Pesavento7922d122021-03-05 22:41:23 -050033#include "fw/best-route-strategy.hpp"
Junxiao Shi91f6ee02016-12-29 21:44:44 +000034#include "fw/multicast-strategy.hpp"
Teng Liang39465c22018-11-12 19:43:04 -070035#include "fw/self-learning-strategy.hpp"
Klaus Schneidercf1d0c02019-08-31 19:05:40 -070036#include "fw/random-strategy.hpp"
Junxiao Shi91f6ee02016-12-29 21:44:44 +000037
38#include "tests/test-common.hpp"
Davide Pesavento29abf4c2021-03-05 18:40:01 -050039
Junxiao Shi91f6ee02016-12-29 21:44:44 +000040#include <boost/mpl/vector.hpp>
41
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040042namespace nfd::tests {
43
44using namespace nfd::fw;
Junxiao Shi91f6ee02016-12-29 21:44:44 +000045
Junxiao Shi91f6ee02016-12-29 21:44:44 +000046BOOST_AUTO_TEST_SUITE(Fw)
47BOOST_AUTO_TEST_SUITE(TestStrategyInstantiation)
48
49template<typename S, bool CanAcceptParameters, uint64_t MinVersion>
50class Test
51{
52public:
53 using Strategy = S;
54
55 static bool
56 canAcceptParameters()
57 {
58 return CanAcceptParameters;
59 }
60
61 static uint64_t
62 getMinVersion()
63 {
64 return MinVersion;
65 }
66
67 static Name
68 getVersionedStrategyName(uint64_t version)
69 {
70 return S::getStrategyName().getPrefix(-1).appendVersion(version);
71 }
72};
73
74using Tests = boost::mpl::vector<
75 Test<AccessStrategy, false, 1>,
Saurab Dulal432be572021-01-26 12:09:29 -060076 Test<AsfStrategy, true, 4>,
Ashlesh Gawande1ef93d02022-04-08 00:25:06 -040077 Test<BestRouteStrategy, true, 5>,
78 Test<MulticastStrategy, true, 4>,
Klaus Schneidercf1d0c02019-08-31 19:05:40 -070079 Test<SelfLearningStrategy, false, 1>,
80 Test<RandomStrategy, false, 1>
Junxiao Shi91f6ee02016-12-29 21:44:44 +000081>;
82
83BOOST_AUTO_TEST_CASE_TEMPLATE(Registration, T, Tests)
84{
85 BOOST_CHECK_EQUAL(Strategy::listRegistered().count(T::Strategy::getStrategyName()), 1);
86}
87
88BOOST_AUTO_TEST_CASE_TEMPLATE(InstanceName, T, Tests)
89{
90 BOOST_REQUIRE(T::Strategy::getStrategyName().at(-1).isVersion());
91 uint64_t maxVersion = T::Strategy::getStrategyName().at(-1).toVersion();
92 BOOST_REQUIRE_LE(T::getMinVersion(), maxVersion);
93
Davide Pesaventoa4abfb02019-10-06 16:02:56 -040094 FaceTable faceTable;
95 Forwarder forwarder(faceTable);
Junxiao Shi91f6ee02016-12-29 21:44:44 +000096 for (uint64_t version = T::getMinVersion(); version <= maxVersion; ++version) {
97 Name versionedName = T::getVersionedStrategyName(version);
98 unique_ptr<typename T::Strategy> instance;
99 BOOST_CHECK_NO_THROW(instance = make_unique<typename T::Strategy>(forwarder, versionedName));
100 BOOST_CHECK_EQUAL(instance->getInstanceName(), versionedName);
101
102 if (!T::canAcceptParameters()) {
103 Name nameWithParameters = Name(versionedName).append("param");
104 BOOST_CHECK_THROW(typename T::Strategy(forwarder, nameWithParameters), std::invalid_argument);
105 }
106 }
107
108 if (T::getMinVersion() > 0) {
109 Name version0Name = T::getVersionedStrategyName(0);
110 BOOST_CHECK_THROW(typename T::Strategy(forwarder, version0Name), std::invalid_argument);
111 Name earlyVersionName = T::getVersionedStrategyName(T::getMinVersion() - 1);
112 BOOST_CHECK_THROW(typename T::Strategy(forwarder, earlyVersionName), std::invalid_argument);
113 }
114
115 if (maxVersion < std::numeric_limits<uint64_t>::max()) {
116 Name versionMaxName = T::getVersionedStrategyName(std::numeric_limits<uint64_t>::max());
117 BOOST_CHECK_THROW(typename T::Strategy(forwarder, versionMaxName), std::invalid_argument);
118 Name lateVersionName = T::getVersionedStrategyName(maxVersion + 1);
119 BOOST_CHECK_THROW(typename T::Strategy(forwarder, lateVersionName), std::invalid_argument);
120 }
121}
122
Ashlesh Gawande1ef93d02022-04-08 00:25:06 -0400123template<typename S>
124class SuppressionParametersFixture
125{
126public:
127 std::unique_ptr<S>
128 checkValidity(const std::string& parameters, bool isCorrect)
129 {
130 Name strategyName(Name(S::getStrategyName()).append(parameters));
131 std::unique_ptr<S> strategy;
132 BOOST_TEST_CONTEXT(parameters) {
133 if (isCorrect) {
134 strategy = make_unique<S>(m_forwarder, strategyName);
135 BOOST_CHECK(strategy->m_retxSuppression != nullptr);
136 }
137 else {
138 BOOST_CHECK_THROW(make_unique<S>(m_forwarder, strategyName), std::invalid_argument);
139 }
140 }
141 return strategy;
142 }
143
144private:
145 FaceTable m_faceTable;
146 Forwarder m_forwarder{m_faceTable};
147};
148
149using StrategiesWithRetxSuppressionExponential = boost::mpl::vector<
150 AsfStrategy,
151 BestRouteStrategy,
152 MulticastStrategy
153>;
154
155BOOST_FIXTURE_TEST_CASE_TEMPLATE(SuppressionParameters, S, StrategiesWithRetxSuppressionExponential,
156 SuppressionParametersFixture<S>)
157{
158 auto strategy = this->checkValidity("", true);
159 BOOST_TEST(strategy->m_retxSuppression->m_initialInterval == RetxSuppressionExponential::DEFAULT_INITIAL_INTERVAL);
160 BOOST_TEST(strategy->m_retxSuppression->m_maxInterval == RetxSuppressionExponential::DEFAULT_MAX_INTERVAL);
161 BOOST_TEST(strategy->m_retxSuppression->m_multiplier == RetxSuppressionExponential::DEFAULT_MULTIPLIER);
162
163 strategy = this->checkValidity("/retx-suppression-initial~20", true);
164 BOOST_TEST(strategy->m_retxSuppression->m_initialInterval == 20_ms);
165 BOOST_TEST(strategy->m_retxSuppression->m_maxInterval == RetxSuppressionExponential::DEFAULT_MAX_INTERVAL);
166 BOOST_TEST(strategy->m_retxSuppression->m_multiplier == RetxSuppressionExponential::DEFAULT_MULTIPLIER);
167 this->checkValidity("/retx-suppression-initial~0", false);
168 this->checkValidity("/retx-suppression-initial~20.5", false);
169 this->checkValidity("/retx-suppression-initial~-10", false);
170 this->checkValidity("/retx-suppression-initial~ -5", false);
171 this->checkValidity("/retx-suppression-initial~NaN", false);
172
173 strategy = this->checkValidity("/retx-suppression-max~1000", true);
174 BOOST_TEST(strategy->m_retxSuppression->m_initialInterval == RetxSuppressionExponential::DEFAULT_INITIAL_INTERVAL);
175 BOOST_TEST(strategy->m_retxSuppression->m_maxInterval == 1_s);
176 BOOST_TEST(strategy->m_retxSuppression->m_multiplier == RetxSuppressionExponential::DEFAULT_MULTIPLIER);
177 strategy = this->checkValidity("/retx-suppression-initial~40/retx-suppression-max~500", true);
178 BOOST_TEST(strategy->m_retxSuppression->m_initialInterval == 40_ms);
179 BOOST_TEST(strategy->m_retxSuppression->m_maxInterval == 500_ms);
180 this->checkValidity("/retx-suppression-initial~20/retx-suppression-max~10", false);
181 this->checkValidity("/retx-suppression-max~ 500", false);
182 this->checkValidity("/retx-suppression-max~521.5", false);
183
184 strategy = this->checkValidity("/retx-suppression-multiplier~2.25", true);
185 BOOST_TEST(strategy->m_retxSuppression->m_initialInterval == RetxSuppressionExponential::DEFAULT_INITIAL_INTERVAL);
186 BOOST_TEST(strategy->m_retxSuppression->m_maxInterval == RetxSuppressionExponential::DEFAULT_MAX_INTERVAL);
187 BOOST_TEST(strategy->m_retxSuppression->m_multiplier == 2.25);
188 this->checkValidity("/retx-suppression-multiplier~0", false);
189 this->checkValidity("/retx-suppression-multiplier~0.9", false);
190 this->checkValidity("/retx-suppression-multiplier~-2.1", false);
191 this->checkValidity("/retx-suppression-multiplier~foo", false);
192
193 strategy = this->checkValidity("/retx-suppression-initial~20/retx-suppression-max~500/retx-suppression-multiplier~3",
194 true);
195 BOOST_TEST(strategy->m_retxSuppression->m_initialInterval == 20_ms);
196 BOOST_TEST(strategy->m_retxSuppression->m_maxInterval == 500_ms);
197 BOOST_TEST(strategy->m_retxSuppression->m_multiplier == 3);
198
199 this->checkValidity("/foo~42", true); // unknown parameters are ignored
200}
201
Junxiao Shi91f6ee02016-12-29 21:44:44 +0000202BOOST_AUTO_TEST_SUITE_END() // TestStrategyInstantiation
203BOOST_AUTO_TEST_SUITE_END() // Fw
204
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400205} // namespace nfd::tests