Junxiao Shi | 91f6ee0 | 2016-12-29 21:44:44 +0000 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Ashlesh Gawande | 92e4ea5 | 2017-07-19 11:38:12 -0500 | [diff] [blame] | 2 | /* |
Davide Pesavento | f56cf63 | 2024-01-27 22:22:06 -0500 | [diff] [blame] | 3 | * Copyright (c) 2014-2024, Regents of the University of California, |
Junxiao Shi | 91f6ee0 | 2016-12-29 21:44:44 +0000 | [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 | /** \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 Pesavento | 7922d12 | 2021-03-05 22:41:23 -0500 | [diff] [blame] | 33 | #include "fw/best-route-strategy.hpp" |
Junxiao Shi | 91f6ee0 | 2016-12-29 21:44:44 +0000 | [diff] [blame] | 34 | #include "fw/multicast-strategy.hpp" |
Teng Liang | 39465c2 | 2018-11-12 19:43:04 -0700 | [diff] [blame] | 35 | #include "fw/self-learning-strategy.hpp" |
Klaus Schneider | cf1d0c0 | 2019-08-31 19:05:40 -0700 | [diff] [blame] | 36 | #include "fw/random-strategy.hpp" |
Junxiao Shi | 91f6ee0 | 2016-12-29 21:44:44 +0000 | [diff] [blame] | 37 | |
| 38 | #include "tests/test-common.hpp" |
Davide Pesavento | 29abf4c | 2021-03-05 18:40:01 -0500 | [diff] [blame] | 39 | |
Davide Pesavento | f56cf63 | 2024-01-27 22:22:06 -0500 | [diff] [blame] | 40 | #include <boost/mp11/list.hpp> |
Junxiao Shi | 91f6ee0 | 2016-12-29 21:44:44 +0000 | [diff] [blame] | 41 | |
Davide Pesavento | e422f9e | 2022-06-03 01:30:23 -0400 | [diff] [blame] | 42 | namespace nfd::tests { |
| 43 | |
| 44 | using namespace nfd::fw; |
Junxiao Shi | 91f6ee0 | 2016-12-29 21:44:44 +0000 | [diff] [blame] | 45 | |
Junxiao Shi | 91f6ee0 | 2016-12-29 21:44:44 +0000 | [diff] [blame] | 46 | BOOST_AUTO_TEST_SUITE(Fw) |
| 47 | BOOST_AUTO_TEST_SUITE(TestStrategyInstantiation) |
| 48 | |
Davide Pesavento | f56cf63 | 2024-01-27 22:22:06 -0500 | [diff] [blame] | 49 | template<typename S, bool CanAcceptParams, uint64_t MinVer> |
| 50 | struct Test |
Junxiao Shi | 91f6ee0 | 2016-12-29 21:44:44 +0000 | [diff] [blame] | 51 | { |
Junxiao Shi | 91f6ee0 | 2016-12-29 21:44:44 +0000 | [diff] [blame] | 52 | using Strategy = S; |
Davide Pesavento | f56cf63 | 2024-01-27 22:22:06 -0500 | [diff] [blame] | 53 | static constexpr bool canAcceptParameters = CanAcceptParams; |
| 54 | static constexpr uint64_t minVersion = MinVer; |
Junxiao Shi | 91f6ee0 | 2016-12-29 21:44:44 +0000 | [diff] [blame] | 55 | |
| 56 | static Name |
| 57 | getVersionedStrategyName(uint64_t version) |
| 58 | { |
| 59 | return S::getStrategyName().getPrefix(-1).appendVersion(version); |
| 60 | } |
| 61 | }; |
| 62 | |
Davide Pesavento | f56cf63 | 2024-01-27 22:22:06 -0500 | [diff] [blame] | 63 | using Tests = boost::mp11::mp_list< |
Junxiao Shi | 91f6ee0 | 2016-12-29 21:44:44 +0000 | [diff] [blame] | 64 | Test<AccessStrategy, false, 1>, |
Davide Pesavento | 8e0dfcf | 2024-02-14 20:38:04 -0500 | [diff] [blame] | 65 | Test<AsfStrategy, true, 5>, |
Ashlesh Gawande | 1ef93d0 | 2022-04-08 00:25:06 -0400 | [diff] [blame] | 66 | Test<BestRouteStrategy, true, 5>, |
Mark Theeranantachai | 195b78a | 2024-02-14 20:54:44 -0500 | [diff] [blame] | 67 | Test<MulticastStrategy, true, 5>, |
Klaus Schneider | cf1d0c0 | 2019-08-31 19:05:40 -0700 | [diff] [blame] | 68 | Test<SelfLearningStrategy, false, 1>, |
| 69 | Test<RandomStrategy, false, 1> |
Junxiao Shi | 91f6ee0 | 2016-12-29 21:44:44 +0000 | [diff] [blame] | 70 | >; |
| 71 | |
| 72 | BOOST_AUTO_TEST_CASE_TEMPLATE(Registration, T, Tests) |
| 73 | { |
Davide Pesavento | 8e0dfcf | 2024-02-14 20:38:04 -0500 | [diff] [blame] | 74 | BOOST_TEST(Strategy::listRegistered().count(T::Strategy::getStrategyName()) == 1); |
Junxiao Shi | 91f6ee0 | 2016-12-29 21:44:44 +0000 | [diff] [blame] | 75 | } |
| 76 | |
| 77 | BOOST_AUTO_TEST_CASE_TEMPLATE(InstanceName, T, Tests) |
| 78 | { |
Davide Pesavento | 8e0dfcf | 2024-02-14 20:38:04 -0500 | [diff] [blame] | 79 | BOOST_TEST_REQUIRE(T::Strategy::getStrategyName().at(-1).isVersion()); |
Junxiao Shi | 91f6ee0 | 2016-12-29 21:44:44 +0000 | [diff] [blame] | 80 | uint64_t maxVersion = T::Strategy::getStrategyName().at(-1).toVersion(); |
Davide Pesavento | 8e0dfcf | 2024-02-14 20:38:04 -0500 | [diff] [blame] | 81 | BOOST_TEST_REQUIRE(T::minVersion <= maxVersion); |
Junxiao Shi | 91f6ee0 | 2016-12-29 21:44:44 +0000 | [diff] [blame] | 82 | |
Davide Pesavento | a4abfb0 | 2019-10-06 16:02:56 -0400 | [diff] [blame] | 83 | FaceTable faceTable; |
| 84 | Forwarder forwarder(faceTable); |
Davide Pesavento | f56cf63 | 2024-01-27 22:22:06 -0500 | [diff] [blame] | 85 | for (auto version = T::minVersion; version <= maxVersion; ++version) { |
Junxiao Shi | 91f6ee0 | 2016-12-29 21:44:44 +0000 | [diff] [blame] | 86 | Name versionedName = T::getVersionedStrategyName(version); |
Davide Pesavento | f56cf63 | 2024-01-27 22:22:06 -0500 | [diff] [blame] | 87 | auto instance = make_unique<typename T::Strategy>(forwarder, versionedName); |
Davide Pesavento | 8e0dfcf | 2024-02-14 20:38:04 -0500 | [diff] [blame] | 88 | BOOST_TEST(instance->getInstanceName() == versionedName); |
Junxiao Shi | 91f6ee0 | 2016-12-29 21:44:44 +0000 | [diff] [blame] | 89 | |
Davide Pesavento | 8e0dfcf | 2024-02-14 20:38:04 -0500 | [diff] [blame] | 90 | if constexpr (!T::canAcceptParameters) { |
Junxiao Shi | 91f6ee0 | 2016-12-29 21:44:44 +0000 | [diff] [blame] | 91 | Name nameWithParameters = Name(versionedName).append("param"); |
| 92 | BOOST_CHECK_THROW(typename T::Strategy(forwarder, nameWithParameters), std::invalid_argument); |
| 93 | } |
| 94 | } |
| 95 | |
Davide Pesavento | 8e0dfcf | 2024-02-14 20:38:04 -0500 | [diff] [blame] | 96 | if constexpr (T::minVersion > 0) { |
Junxiao Shi | 91f6ee0 | 2016-12-29 21:44:44 +0000 | [diff] [blame] | 97 | Name version0Name = T::getVersionedStrategyName(0); |
| 98 | BOOST_CHECK_THROW(typename T::Strategy(forwarder, version0Name), std::invalid_argument); |
Davide Pesavento | f56cf63 | 2024-01-27 22:22:06 -0500 | [diff] [blame] | 99 | Name earlyVersionName = T::getVersionedStrategyName(T::minVersion - 1); |
Junxiao Shi | 91f6ee0 | 2016-12-29 21:44:44 +0000 | [diff] [blame] | 100 | BOOST_CHECK_THROW(typename T::Strategy(forwarder, earlyVersionName), std::invalid_argument); |
| 101 | } |
| 102 | |
| 103 | if (maxVersion < std::numeric_limits<uint64_t>::max()) { |
| 104 | Name versionMaxName = T::getVersionedStrategyName(std::numeric_limits<uint64_t>::max()); |
| 105 | BOOST_CHECK_THROW(typename T::Strategy(forwarder, versionMaxName), std::invalid_argument); |
| 106 | Name lateVersionName = T::getVersionedStrategyName(maxVersion + 1); |
| 107 | BOOST_CHECK_THROW(typename T::Strategy(forwarder, lateVersionName), std::invalid_argument); |
| 108 | } |
| 109 | } |
| 110 | |
Ashlesh Gawande | 1ef93d0 | 2022-04-08 00:25:06 -0400 | [diff] [blame] | 111 | template<typename S> |
| 112 | class SuppressionParametersFixture |
| 113 | { |
| 114 | public: |
| 115 | std::unique_ptr<S> |
Davide Pesavento | d7083a5 | 2023-10-19 17:51:16 -0400 | [diff] [blame] | 116 | checkValidity(std::string_view parameters, bool isCorrect) |
Ashlesh Gawande | 1ef93d0 | 2022-04-08 00:25:06 -0400 | [diff] [blame] | 117 | { |
Davide Pesavento | d7083a5 | 2023-10-19 17:51:16 -0400 | [diff] [blame] | 118 | BOOST_TEST_INFO_SCOPE(parameters); |
| 119 | Name strategyName(Name(S::getStrategyName()).append(Name(parameters))); |
Ashlesh Gawande | 1ef93d0 | 2022-04-08 00:25:06 -0400 | [diff] [blame] | 120 | std::unique_ptr<S> strategy; |
Davide Pesavento | d7083a5 | 2023-10-19 17:51:16 -0400 | [diff] [blame] | 121 | if (isCorrect) { |
| 122 | strategy = make_unique<S>(m_forwarder, strategyName); |
| 123 | BOOST_CHECK(strategy->m_retxSuppression != nullptr); |
| 124 | } |
| 125 | else { |
| 126 | BOOST_CHECK_THROW(make_unique<S>(m_forwarder, strategyName), std::invalid_argument); |
Ashlesh Gawande | 1ef93d0 | 2022-04-08 00:25:06 -0400 | [diff] [blame] | 127 | } |
| 128 | return strategy; |
| 129 | } |
| 130 | |
| 131 | private: |
| 132 | FaceTable m_faceTable; |
| 133 | Forwarder m_forwarder{m_faceTable}; |
| 134 | }; |
| 135 | |
Davide Pesavento | f56cf63 | 2024-01-27 22:22:06 -0500 | [diff] [blame] | 136 | using StrategiesWithRetxSuppressionExponential = boost::mp11::mp_list< |
Ashlesh Gawande | 1ef93d0 | 2022-04-08 00:25:06 -0400 | [diff] [blame] | 137 | AsfStrategy, |
| 138 | BestRouteStrategy, |
| 139 | MulticastStrategy |
| 140 | >; |
| 141 | |
| 142 | BOOST_FIXTURE_TEST_CASE_TEMPLATE(SuppressionParameters, S, StrategiesWithRetxSuppressionExponential, |
| 143 | SuppressionParametersFixture<S>) |
| 144 | { |
| 145 | auto strategy = this->checkValidity("", true); |
| 146 | BOOST_TEST(strategy->m_retxSuppression->m_initialInterval == RetxSuppressionExponential::DEFAULT_INITIAL_INTERVAL); |
| 147 | BOOST_TEST(strategy->m_retxSuppression->m_maxInterval == RetxSuppressionExponential::DEFAULT_MAX_INTERVAL); |
| 148 | BOOST_TEST(strategy->m_retxSuppression->m_multiplier == RetxSuppressionExponential::DEFAULT_MULTIPLIER); |
| 149 | |
| 150 | strategy = this->checkValidity("/retx-suppression-initial~20", true); |
| 151 | BOOST_TEST(strategy->m_retxSuppression->m_initialInterval == 20_ms); |
| 152 | BOOST_TEST(strategy->m_retxSuppression->m_maxInterval == RetxSuppressionExponential::DEFAULT_MAX_INTERVAL); |
| 153 | BOOST_TEST(strategy->m_retxSuppression->m_multiplier == RetxSuppressionExponential::DEFAULT_MULTIPLIER); |
| 154 | this->checkValidity("/retx-suppression-initial~0", false); |
| 155 | this->checkValidity("/retx-suppression-initial~20.5", false); |
| 156 | this->checkValidity("/retx-suppression-initial~-10", false); |
| 157 | this->checkValidity("/retx-suppression-initial~ -5", false); |
| 158 | this->checkValidity("/retx-suppression-initial~NaN", false); |
| 159 | |
| 160 | strategy = this->checkValidity("/retx-suppression-max~1000", true); |
| 161 | BOOST_TEST(strategy->m_retxSuppression->m_initialInterval == RetxSuppressionExponential::DEFAULT_INITIAL_INTERVAL); |
| 162 | BOOST_TEST(strategy->m_retxSuppression->m_maxInterval == 1_s); |
| 163 | BOOST_TEST(strategy->m_retxSuppression->m_multiplier == RetxSuppressionExponential::DEFAULT_MULTIPLIER); |
| 164 | strategy = this->checkValidity("/retx-suppression-initial~40/retx-suppression-max~500", true); |
| 165 | BOOST_TEST(strategy->m_retxSuppression->m_initialInterval == 40_ms); |
| 166 | BOOST_TEST(strategy->m_retxSuppression->m_maxInterval == 500_ms); |
| 167 | this->checkValidity("/retx-suppression-initial~20/retx-suppression-max~10", false); |
| 168 | this->checkValidity("/retx-suppression-max~ 500", false); |
| 169 | this->checkValidity("/retx-suppression-max~521.5", false); |
| 170 | |
| 171 | strategy = this->checkValidity("/retx-suppression-multiplier~2.25", true); |
| 172 | BOOST_TEST(strategy->m_retxSuppression->m_initialInterval == RetxSuppressionExponential::DEFAULT_INITIAL_INTERVAL); |
| 173 | BOOST_TEST(strategy->m_retxSuppression->m_maxInterval == RetxSuppressionExponential::DEFAULT_MAX_INTERVAL); |
| 174 | BOOST_TEST(strategy->m_retxSuppression->m_multiplier == 2.25); |
| 175 | this->checkValidity("/retx-suppression-multiplier~0", false); |
| 176 | this->checkValidity("/retx-suppression-multiplier~0.9", false); |
| 177 | this->checkValidity("/retx-suppression-multiplier~-2.1", false); |
| 178 | this->checkValidity("/retx-suppression-multiplier~foo", false); |
| 179 | |
| 180 | strategy = this->checkValidity("/retx-suppression-initial~20/retx-suppression-max~500/retx-suppression-multiplier~3", |
| 181 | true); |
| 182 | BOOST_TEST(strategy->m_retxSuppression->m_initialInterval == 20_ms); |
| 183 | BOOST_TEST(strategy->m_retxSuppression->m_maxInterval == 500_ms); |
| 184 | BOOST_TEST(strategy->m_retxSuppression->m_multiplier == 3); |
| 185 | |
| 186 | this->checkValidity("/foo~42", true); // unknown parameters are ignored |
| 187 | } |
| 188 | |
Junxiao Shi | 91f6ee0 | 2016-12-29 21:44:44 +0000 | [diff] [blame] | 189 | BOOST_AUTO_TEST_SUITE_END() // TestStrategyInstantiation |
| 190 | BOOST_AUTO_TEST_SUITE_END() // Fw |
| 191 | |
Davide Pesavento | e422f9e | 2022-06-03 01:30:23 -0400 | [diff] [blame] | 192 | } // namespace nfd::tests |