blob: 705b3aa958e31ca4c60020c85f85257fa6bfa8f4 [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/*
Junxiao Shi00e32fe2019-01-14 23:34:32 +00003 * Copyright (c) 2014-2019, 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"
33#include "fw/best-route-strategy.hpp"
34#include "fw/best-route-strategy2.hpp"
Junxiao Shi91f6ee02016-12-29 21:44:44 +000035#include "fw/multicast-strategy.hpp"
36#include "fw/ncc-strategy.hpp"
Teng Liang39465c22018-11-12 19:43:04 -070037#include "fw/self-learning-strategy.hpp"
Klaus Schneidercf1d0c02019-08-31 19:05:40 -070038#include "fw/random-strategy.hpp"
Junxiao Shi91f6ee02016-12-29 21:44:44 +000039
40#include "tests/test-common.hpp"
41#include <boost/mpl/vector.hpp>
42
43namespace nfd {
44namespace fw {
45namespace tests {
46
47using namespace nfd::tests;
48
49BOOST_AUTO_TEST_SUITE(Fw)
50BOOST_AUTO_TEST_SUITE(TestStrategyInstantiation)
51
52template<typename S, bool CanAcceptParameters, uint64_t MinVersion>
53class Test
54{
55public:
56 using Strategy = S;
57
58 static bool
59 canAcceptParameters()
60 {
61 return CanAcceptParameters;
62 }
63
64 static uint64_t
65 getMinVersion()
66 {
67 return MinVersion;
68 }
69
70 static Name
71 getVersionedStrategyName(uint64_t version)
72 {
73 return S::getStrategyName().getPrefix(-1).appendVersion(version);
74 }
75};
76
77using Tests = boost::mpl::vector<
78 Test<AccessStrategy, false, 1>,
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -050079 Test<AsfStrategy, true, 3>,
Junxiao Shi91f6ee02016-12-29 21:44:44 +000080 Test<BestRouteStrategy, false, 1>,
Teng Liangf995f382017-04-04 22:09:39 +000081 Test<BestRouteStrategy2, false, 5>,
Teng Liangf995f382017-04-04 22:09:39 +000082 Test<MulticastStrategy, false, 3>,
Teng Liang39465c22018-11-12 19:43:04 -070083 Test<NccStrategy, false, 1>,
Klaus Schneidercf1d0c02019-08-31 19:05:40 -070084 Test<SelfLearningStrategy, false, 1>,
85 Test<RandomStrategy, false, 1>
Junxiao Shi91f6ee02016-12-29 21:44:44 +000086>;
87
88BOOST_AUTO_TEST_CASE_TEMPLATE(Registration, T, Tests)
89{
90 BOOST_CHECK_EQUAL(Strategy::listRegistered().count(T::Strategy::getStrategyName()), 1);
91}
92
93BOOST_AUTO_TEST_CASE_TEMPLATE(InstanceName, T, Tests)
94{
95 BOOST_REQUIRE(T::Strategy::getStrategyName().at(-1).isVersion());
96 uint64_t maxVersion = T::Strategy::getStrategyName().at(-1).toVersion();
97 BOOST_REQUIRE_LE(T::getMinVersion(), maxVersion);
98
99 Forwarder forwarder;
100 for (uint64_t version = T::getMinVersion(); version <= maxVersion; ++version) {
101 Name versionedName = T::getVersionedStrategyName(version);
102 unique_ptr<typename T::Strategy> instance;
103 BOOST_CHECK_NO_THROW(instance = make_unique<typename T::Strategy>(forwarder, versionedName));
104 BOOST_CHECK_EQUAL(instance->getInstanceName(), versionedName);
105
106 if (!T::canAcceptParameters()) {
107 Name nameWithParameters = Name(versionedName).append("param");
108 BOOST_CHECK_THROW(typename T::Strategy(forwarder, nameWithParameters), std::invalid_argument);
109 }
110 }
111
112 if (T::getMinVersion() > 0) {
113 Name version0Name = T::getVersionedStrategyName(0);
114 BOOST_CHECK_THROW(typename T::Strategy(forwarder, version0Name), std::invalid_argument);
115 Name earlyVersionName = T::getVersionedStrategyName(T::getMinVersion() - 1);
116 BOOST_CHECK_THROW(typename T::Strategy(forwarder, earlyVersionName), std::invalid_argument);
117 }
118
119 if (maxVersion < std::numeric_limits<uint64_t>::max()) {
120 Name versionMaxName = T::getVersionedStrategyName(std::numeric_limits<uint64_t>::max());
121 BOOST_CHECK_THROW(typename T::Strategy(forwarder, versionMaxName), std::invalid_argument);
122 Name lateVersionName = T::getVersionedStrategyName(maxVersion + 1);
123 BOOST_CHECK_THROW(typename T::Strategy(forwarder, lateVersionName), std::invalid_argument);
124 }
125}
126
127BOOST_AUTO_TEST_SUITE_END() // TestStrategyInstantiation
128BOOST_AUTO_TEST_SUITE_END() // Fw
129
130} // namespace tests
131} // namespace fw
132} // namespace nfd