Junxiao Shi | 49e11e7 | 2014-12-14 19:46:05 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Junxiao Shi | b84e674 | 2016-07-19 13:16:22 +0000 | [diff] [blame] | 3 | * Copyright (c) 2014-2016, 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" |
| 27 | #include "dummy-strategy.hpp" |
| 28 | #include "tests/daemon/face/dummy-face.hpp" |
| 29 | #include <boost/range/adaptor/filtered.hpp> |
Junxiao Shi | b84e674 | 2016-07-19 13:16:22 +0000 | [diff] [blame] | 30 | #include <boost/range/adaptor/transformed.hpp> |
| 31 | #include <boost/range/algorithm/copy.hpp> |
Junxiao Shi | 49e11e7 | 2014-12-14 19:46:05 -0700 | [diff] [blame] | 32 | |
| 33 | #include "tests/test-common.hpp" |
| 34 | |
| 35 | namespace nfd { |
Spyridon Mastorakis | d0381c0 | 2015-02-19 10:29:41 -0800 | [diff] [blame] | 36 | namespace fw { |
Junxiao Shi | 49e11e7 | 2014-12-14 19:46:05 -0700 | [diff] [blame] | 37 | namespace tests { |
| 38 | |
Spyridon Mastorakis | d0381c0 | 2015-02-19 10:29:41 -0800 | [diff] [blame] | 39 | using namespace nfd::tests; |
| 40 | |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 41 | BOOST_AUTO_TEST_SUITE(Fw) |
| 42 | BOOST_FIXTURE_TEST_SUITE(TestStrategy, BaseFixture) |
Junxiao Shi | 49e11e7 | 2014-12-14 19:46:05 -0700 | [diff] [blame] | 43 | |
| 44 | class FaceTableAccessTestStrategy : public DummyStrategy |
| 45 | { |
| 46 | public: |
| 47 | explicit |
| 48 | FaceTableAccessTestStrategy(Forwarder& forwarder) |
| 49 | : DummyStrategy(forwarder, Name("ndn:/strategy")) |
| 50 | { |
Junxiao Shi | ae04d34 | 2016-07-19 13:20:22 +0000 | [diff] [blame] | 51 | this->afterAddFace.connect([this] (const Face& face) { |
| 52 | this->addedFaces.push_back(face.getId()); |
Junxiao Shi | 49e11e7 | 2014-12-14 19:46:05 -0700 | [diff] [blame] | 53 | }); |
Junxiao Shi | ae04d34 | 2016-07-19 13:20:22 +0000 | [diff] [blame] | 54 | this->beforeRemoveFace.connect([this] (const Face& face) { |
| 55 | this->removedFaces.push_back(face.getId()); |
Junxiao Shi | 49e11e7 | 2014-12-14 19:46:05 -0700 | [diff] [blame] | 56 | }); |
| 57 | } |
| 58 | |
| 59 | std::vector<FaceId> |
| 60 | getLocalFaces() |
| 61 | { |
| 62 | auto enumerable = this->getFaceTable() | |
Junxiao Shi | b84e674 | 2016-07-19 13:16:22 +0000 | [diff] [blame] | 63 | boost::adaptors::filtered([] (Face& face) { |
| 64 | return face.getScope() == ndn::nfd::FACE_SCOPE_LOCAL; |
| 65 | }) | |
| 66 | boost::adaptors::transformed([] (Face& face) { |
| 67 | return face.getId(); |
Junxiao Shi | 49e11e7 | 2014-12-14 19:46:05 -0700 | [diff] [blame] | 68 | }); |
| 69 | |
| 70 | std::vector<FaceId> results; |
Junxiao Shi | b84e674 | 2016-07-19 13:16:22 +0000 | [diff] [blame] | 71 | boost::copy(enumerable, std::back_inserter(results)); |
Junxiao Shi | 49e11e7 | 2014-12-14 19:46:05 -0700 | [diff] [blame] | 72 | return results; |
| 73 | } |
| 74 | |
| 75 | public: |
| 76 | std::vector<FaceId> addedFaces; |
| 77 | std::vector<FaceId> removedFaces; |
| 78 | }; |
| 79 | |
| 80 | BOOST_AUTO_TEST_CASE(FaceTableAccess) |
| 81 | { |
| 82 | Forwarder forwarder; |
| 83 | FaceTableAccessTestStrategy strategy(forwarder); |
| 84 | |
| 85 | auto face1 = make_shared<DummyFace>(); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 86 | auto face2 = make_shared<DummyFace>("dummy://", "dummy://", ndn::nfd::FACE_SCOPE_LOCAL); |
Junxiao Shi | 49e11e7 | 2014-12-14 19:46:05 -0700 | [diff] [blame] | 87 | forwarder.addFace(face1); |
| 88 | forwarder.addFace(face2); |
| 89 | FaceId id1 = face1->getId(); |
| 90 | FaceId id2 = face2->getId(); |
| 91 | |
| 92 | BOOST_CHECK(strategy.getLocalFaces() == std::vector<FaceId>{id2}); |
| 93 | |
| 94 | face2->close(); |
| 95 | face1->close(); |
| 96 | |
| 97 | BOOST_CHECK((strategy.addedFaces == std::vector<FaceId>{id1, id2})); |
| 98 | BOOST_CHECK((strategy.removedFaces == std::vector<FaceId>{id2, id1})); |
| 99 | } |
| 100 | |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 101 | BOOST_AUTO_TEST_SUITE_END() // TestStrategy |
| 102 | BOOST_AUTO_TEST_SUITE_END() // Fw |
Junxiao Shi | 49e11e7 | 2014-12-14 19:46:05 -0700 | [diff] [blame] | 103 | |
| 104 | } // namespace tests |
Spyridon Mastorakis | d0381c0 | 2015-02-19 10:29:41 -0800 | [diff] [blame] | 105 | } // namespace fw |
Junxiao Shi | 49e11e7 | 2014-12-14 19:46:05 -0700 | [diff] [blame] | 106 | } // namespace nfd |