Junxiao Shi | 49e11e7 | 2014-12-14 19:46:05 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | cf7db2f | 2019-03-24 23:17:28 -0400 | [diff] [blame] | 2 | /* |
Ashlesh Gawande | 1ef93d0 | 2022-04-08 00:25:06 -0400 | [diff] [blame] | 3 | * Copyright (c) 2014-2022, Regents of the University of California, |
Spyridon Mastorakis | d0381c0 | 2015-02-19 10:29:41 -0800 | [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. |
Junxiao Shi | 49e11e7 | 2014-12-14 19:46:05 -0700 | [diff] [blame] | 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 "fw/strategy.hpp" |
Davide Pesavento | cf7db2f | 2019-03-24 23:17:28 -0400 | [diff] [blame] | 27 | |
| 28 | #include "tests/test-common.hpp" |
| 29 | #include "tests/daemon/global-io-fixture.hpp" |
Junxiao Shi | 49e11e7 | 2014-12-14 19:46:05 -0700 | [diff] [blame] | 30 | #include "tests/daemon/face/dummy-face.hpp" |
Davide Pesavento | cf7db2f | 2019-03-24 23:17:28 -0400 | [diff] [blame] | 31 | #include "dummy-strategy.hpp" |
| 32 | |
Junxiao Shi | 49e11e7 | 2014-12-14 19:46:05 -0700 | [diff] [blame] | 33 | #include <boost/range/adaptor/filtered.hpp> |
Junxiao Shi | b84e674 | 2016-07-19 13:16:22 +0000 | [diff] [blame] | 34 | #include <boost/range/adaptor/transformed.hpp> |
| 35 | #include <boost/range/algorithm/copy.hpp> |
Junxiao Shi | 49e11e7 | 2014-12-14 19:46:05 -0700 | [diff] [blame] | 36 | |
Davide Pesavento | e422f9e | 2022-06-03 01:30:23 -0400 | [diff] [blame] | 37 | namespace nfd::tests { |
Junxiao Shi | 49e11e7 | 2014-12-14 19:46:05 -0700 | [diff] [blame] | 38 | |
Davide Pesavento | e422f9e | 2022-06-03 01:30:23 -0400 | [diff] [blame] | 39 | using namespace nfd::fw; |
Spyridon Mastorakis | d0381c0 | 2015-02-19 10:29:41 -0800 | [diff] [blame] | 40 | |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 41 | BOOST_AUTO_TEST_SUITE(Fw) |
Davide Pesavento | cf7db2f | 2019-03-24 23:17:28 -0400 | [diff] [blame] | 42 | BOOST_FIXTURE_TEST_SUITE(TestStrategy, GlobalIoFixture) |
Junxiao Shi | 49e11e7 | 2014-12-14 19:46:05 -0700 | [diff] [blame] | 43 | |
Eric Newberry | 2377ada | 2020-09-28 22:40:14 -0700 | [diff] [blame] | 44 | // Strategy registry is tested in strategy-choice.t.cpp and strategy-instantiation.t.cpp |
Junxiao Shi | 91f6ee0 | 2016-12-29 21:44:44 +0000 | [diff] [blame] | 45 | |
Junxiao Shi | 49e11e7 | 2014-12-14 19:46:05 -0700 | [diff] [blame] | 46 | class FaceTableAccessTestStrategy : public DummyStrategy |
| 47 | { |
| 48 | public: |
| 49 | explicit |
| 50 | FaceTableAccessTestStrategy(Forwarder& forwarder) |
Junxiao Shi | 0e4a1f1 | 2016-12-24 02:39:01 +0000 | [diff] [blame] | 51 | : DummyStrategy(forwarder) |
Junxiao Shi | 49e11e7 | 2014-12-14 19:46:05 -0700 | [diff] [blame] | 52 | { |
Junxiao Shi | ae04d34 | 2016-07-19 13:20:22 +0000 | [diff] [blame] | 53 | this->afterAddFace.connect([this] (const Face& face) { |
| 54 | this->addedFaces.push_back(face.getId()); |
Junxiao Shi | 49e11e7 | 2014-12-14 19:46:05 -0700 | [diff] [blame] | 55 | }); |
Junxiao Shi | ae04d34 | 2016-07-19 13:20:22 +0000 | [diff] [blame] | 56 | this->beforeRemoveFace.connect([this] (const Face& face) { |
| 57 | this->removedFaces.push_back(face.getId()); |
Junxiao Shi | 49e11e7 | 2014-12-14 19:46:05 -0700 | [diff] [blame] | 58 | }); |
| 59 | } |
| 60 | |
| 61 | std::vector<FaceId> |
| 62 | getLocalFaces() |
| 63 | { |
| 64 | auto enumerable = this->getFaceTable() | |
Junxiao Shi | b84e674 | 2016-07-19 13:16:22 +0000 | [diff] [blame] | 65 | boost::adaptors::filtered([] (Face& face) { |
| 66 | return face.getScope() == ndn::nfd::FACE_SCOPE_LOCAL; |
| 67 | }) | |
| 68 | boost::adaptors::transformed([] (Face& face) { |
| 69 | return face.getId(); |
Junxiao Shi | 49e11e7 | 2014-12-14 19:46:05 -0700 | [diff] [blame] | 70 | }); |
| 71 | |
| 72 | std::vector<FaceId> results; |
Junxiao Shi | b84e674 | 2016-07-19 13:16:22 +0000 | [diff] [blame] | 73 | boost::copy(enumerable, std::back_inserter(results)); |
Junxiao Shi | 49e11e7 | 2014-12-14 19:46:05 -0700 | [diff] [blame] | 74 | return results; |
| 75 | } |
| 76 | |
| 77 | public: |
| 78 | std::vector<FaceId> addedFaces; |
| 79 | std::vector<FaceId> removedFaces; |
| 80 | }; |
| 81 | |
| 82 | BOOST_AUTO_TEST_CASE(FaceTableAccess) |
| 83 | { |
Davide Pesavento | a4abfb0 | 2019-10-06 16:02:56 -0400 | [diff] [blame] | 84 | FaceTable faceTable; |
| 85 | Forwarder forwarder(faceTable); |
Junxiao Shi | 49e11e7 | 2014-12-14 19:46:05 -0700 | [diff] [blame] | 86 | FaceTableAccessTestStrategy strategy(forwarder); |
| 87 | |
| 88 | auto face1 = make_shared<DummyFace>(); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 89 | auto face2 = make_shared<DummyFace>("dummy://", "dummy://", ndn::nfd::FACE_SCOPE_LOCAL); |
Davide Pesavento | a4abfb0 | 2019-10-06 16:02:56 -0400 | [diff] [blame] | 90 | faceTable.add(face1); |
| 91 | faceTable.add(face2); |
Junxiao Shi | 49e11e7 | 2014-12-14 19:46:05 -0700 | [diff] [blame] | 92 | FaceId id1 = face1->getId(); |
| 93 | FaceId id2 = face2->getId(); |
| 94 | |
Ashlesh Gawande | 1ef93d0 | 2022-04-08 00:25:06 -0400 | [diff] [blame] | 95 | BOOST_TEST(strategy.getLocalFaces() == std::vector<FaceId>{id2}, boost::test_tools::per_element()); |
Junxiao Shi | 49e11e7 | 2014-12-14 19:46:05 -0700 | [diff] [blame] | 96 | |
| 97 | face2->close(); |
| 98 | face1->close(); |
| 99 | |
Ashlesh Gawande | 1ef93d0 | 2022-04-08 00:25:06 -0400 | [diff] [blame] | 100 | BOOST_TEST((strategy.addedFaces == std::vector<FaceId>{id1, id2}), boost::test_tools::per_element()); |
| 101 | BOOST_TEST((strategy.removedFaces == std::vector<FaceId>{id2, id1}), boost::test_tools::per_element()); |
| 102 | } |
| 103 | |
| 104 | BOOST_AUTO_TEST_CASE(ParseParameters) |
| 105 | { |
| 106 | BOOST_TEST(Strategy::parseParameters("").empty()); |
| 107 | BOOST_TEST(Strategy::parseParameters("/").empty()); |
| 108 | BOOST_CHECK_THROW(Strategy::parseParameters("/foo"), std::invalid_argument); |
| 109 | BOOST_CHECK_THROW(Strategy::parseParameters("/foo~"), std::invalid_argument); |
| 110 | BOOST_CHECK_THROW(Strategy::parseParameters("/~bar"), std::invalid_argument); |
| 111 | BOOST_CHECK_THROW(Strategy::parseParameters("/~"), std::invalid_argument); |
| 112 | BOOST_CHECK_THROW(Strategy::parseParameters("/~~"), std::invalid_argument); |
| 113 | |
| 114 | StrategyParameters expected; |
| 115 | expected["foo"] = "bar"; |
| 116 | BOOST_TEST(Strategy::parseParameters("/foo~bar") == expected); |
| 117 | BOOST_CHECK_THROW(Strategy::parseParameters("/foo~bar/42"), std::invalid_argument); |
| 118 | expected["the-answer"] = "42"; |
| 119 | BOOST_TEST(Strategy::parseParameters("/foo~bar/the-answer~42") == expected); |
| 120 | expected["foo"] = "foo2"; |
| 121 | BOOST_TEST(Strategy::parseParameters("/foo~bar/the-answer~42/foo~foo2") == expected); |
Junxiao Shi | 49e11e7 | 2014-12-14 19:46:05 -0700 | [diff] [blame] | 122 | } |
| 123 | |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 124 | BOOST_AUTO_TEST_SUITE_END() // TestStrategy |
| 125 | BOOST_AUTO_TEST_SUITE_END() // Fw |
Junxiao Shi | 49e11e7 | 2014-12-14 19:46:05 -0700 | [diff] [blame] | 126 | |
Davide Pesavento | e422f9e | 2022-06-03 01:30:23 -0400 | [diff] [blame] | 127 | } // namespace nfd::tests |