| /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| /** |
| * Copyright (c) 2014-2016, Regents of the University of California, |
| * Arizona Board of Regents, |
| * Colorado State University, |
| * University Pierre & Marie Curie, Sorbonne University, |
| * Washington University in St. Louis, |
| * Beijing Institute of Technology, |
| * The University of Memphis. |
| * |
| * This file is part of NFD (Named Data Networking Forwarding Daemon). |
| * See AUTHORS.md for complete list of NFD authors and contributors. |
| * |
| * NFD is free software: you can redistribute it and/or modify it under the terms |
| * of the GNU General Public License as published by the Free Software Foundation, |
| * either version 3 of the License, or (at your option) any later version. |
| * |
| * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| * PURPOSE. See the GNU General Public License for more details. |
| * |
| * You should have received a copy of the GNU General Public License along with |
| * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| */ |
| |
| #include "fw/multicast-strategy.hpp" |
| #include "strategy-tester.hpp" |
| #include "tests/daemon/face/dummy-face.hpp" |
| |
| #include "tests/test-common.hpp" |
| |
| namespace nfd { |
| namespace fw { |
| namespace tests { |
| |
| using namespace nfd::tests; |
| |
| typedef StrategyTester<MulticastStrategy> MulticastStrategyTester; |
| NFD_REGISTER_STRATEGY(MulticastStrategyTester); |
| |
| class MulticastStrategyFixture : public BaseFixture |
| { |
| protected: |
| MulticastStrategyFixture() |
| : strategy(forwarder) |
| , fib(forwarder.getFib()) |
| , pit(forwarder.getPit()) |
| , face1(make_shared<DummyFace>()) |
| , face2(make_shared<DummyFace>()) |
| , face3(make_shared<DummyFace>()) |
| { |
| forwarder.addFace(face1); |
| forwarder.addFace(face2); |
| forwarder.addFace(face3); |
| } |
| |
| protected: |
| Forwarder forwarder; |
| MulticastStrategyTester strategy; |
| Fib& fib; |
| Pit& pit; |
| shared_ptr<DummyFace> face1; |
| shared_ptr<DummyFace> face2; |
| shared_ptr<DummyFace> face3; |
| }; |
| |
| BOOST_AUTO_TEST_SUITE(Fw) |
| BOOST_FIXTURE_TEST_SUITE(TestMulticastStrategy, MulticastStrategyFixture) |
| |
| BOOST_AUTO_TEST_CASE(Registration) |
| { |
| BOOST_CHECK_EQUAL(Strategy::listRegistered().count(MulticastStrategy::getStrategyName()), 1); |
| } |
| |
| BOOST_AUTO_TEST_CASE(InstanceName) |
| { |
| Forwarder forwarder; |
| BOOST_REQUIRE(MulticastStrategy::getStrategyName().at(-1).isVersion()); |
| BOOST_CHECK_EQUAL( |
| MulticastStrategy(forwarder, MulticastStrategy::getStrategyName().getPrefix(-1)).getInstanceName(), |
| MulticastStrategy::getStrategyName()); |
| BOOST_CHECK_THROW( |
| MulticastStrategy(forwarder, Name(MulticastStrategy::getStrategyName()).append("param")), |
| std::invalid_argument); |
| } |
| |
| BOOST_AUTO_TEST_CASE(Forward2) |
| { |
| fib::Entry& fibEntry = *fib.insert(Name()).first; |
| fibEntry.addNextHop(*face1, 0); |
| fibEntry.addNextHop(*face2, 0); |
| fibEntry.addNextHop(*face3, 0); |
| |
| shared_ptr<Interest> interest = makeInterest("ndn:/H0D6i5fc"); |
| shared_ptr<pit::Entry> pitEntry = pit.insert(*interest).first; |
| pitEntry->insertOrUpdateInRecord(*face3, *interest); |
| |
| strategy.afterReceiveInterest(*face3, *interest, pitEntry); |
| BOOST_CHECK_EQUAL(strategy.rejectPendingInterestHistory.size(), 0); |
| BOOST_CHECK_EQUAL(strategy.sendInterestHistory.size(), 2); |
| std::set<FaceId> sentInterestFaceIds; |
| std::transform(strategy.sendInterestHistory.begin(), strategy.sendInterestHistory.end(), |
| std::inserter(sentInterestFaceIds, sentInterestFaceIds.end()), |
| [] (const MulticastStrategyTester::SendInterestArgs& args) { |
| return args.outFaceId; |
| }); |
| std::set<FaceId> expectedInterestFaceIds{face1->getId(), face2->getId()}; |
| BOOST_CHECK_EQUAL_COLLECTIONS(sentInterestFaceIds.begin(), sentInterestFaceIds.end(), |
| expectedInterestFaceIds.begin(), expectedInterestFaceIds.end()); |
| } |
| |
| BOOST_AUTO_TEST_CASE(RejectScope) |
| { |
| fib::Entry& fibEntry = *fib.insert("ndn:/localhop/uS09bub6tm").first; |
| fibEntry.addNextHop(*face2, 0); |
| |
| shared_ptr<Interest> interest = makeInterest("ndn:/localhop/uS09bub6tm/eG3MMoP6z"); |
| shared_ptr<pit::Entry> pitEntry = pit.insert(*interest).first; |
| pitEntry->insertOrUpdateInRecord(*face1, *interest); |
| |
| strategy.afterReceiveInterest(*face1, *interest, pitEntry); |
| BOOST_CHECK_EQUAL(strategy.rejectPendingInterestHistory.size(), 1); |
| BOOST_CHECK_EQUAL(strategy.sendInterestHistory.size(), 0); |
| } |
| |
| BOOST_AUTO_TEST_CASE(RejectLoopback) |
| { |
| fib::Entry& fibEntry = *fib.insert(Name()).first; |
| fibEntry.addNextHop(*face1, 0); |
| |
| shared_ptr<Interest> interest = makeInterest("ndn:/H0D6i5fc"); |
| shared_ptr<pit::Entry> pitEntry = pit.insert(*interest).first; |
| pitEntry->insertOrUpdateInRecord(*face1, *interest); |
| |
| strategy.afterReceiveInterest(*face1, *interest, pitEntry); |
| BOOST_CHECK_EQUAL(strategy.rejectPendingInterestHistory.size(), 1); |
| BOOST_CHECK_EQUAL(strategy.sendInterestHistory.size(), 0); |
| } |
| |
| BOOST_AUTO_TEST_SUITE_END() // TestMulticastStrategy |
| BOOST_AUTO_TEST_SUITE_END() // Fw |
| |
| } // namespace tests |
| } // namespace fw |
| } // namespace nfd |