blob: 526d7b0f3077cf6e1f42cd37d1dbc1b97254f780 [file] [log] [blame]
Junxiao Shi67ba8d22015-08-21 21:21:28 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento87fc0f82018-04-11 23:43:51 -04002/*
ashiqopu3ad49db2018-10-20 22:38:47 +00003 * Copyright (c) 2014-2019, Regents of the University of California,
Junxiao Shi67ba8d22015-08-21 21:21:28 -07004 * 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#include "fw/multicast-strategy.hpp"
Davide Pesavento2cae8ca2019-04-18 20:48:05 -040027#include "common/global.hpp"
Junxiao Shi67ba8d22015-08-21 21:21:28 -070028
29#include "tests/test-common.hpp"
Davide Pesaventocf7db2f2019-03-24 23:17:28 -040030#include "tests/daemon/face/dummy-face.hpp"
Davide Pesavento3dade002019-03-19 11:29:56 -060031#include "strategy-tester.hpp"
Junxiao Shi67ba8d22015-08-21 21:21:28 -070032
33namespace nfd {
34namespace fw {
35namespace tests {
36
Davide Pesavento14e71f02019-03-28 17:35:25 -040037using MulticastStrategyTester = StrategyTester<MulticastStrategy>;
Junxiao Shi890afe92016-12-15 14:34:34 +000038NFD_REGISTER_STRATEGY(MulticastStrategyTester);
39
Davide Pesaventocf7db2f2019-03-24 23:17:28 -040040class MulticastStrategyFixture : public GlobalIoTimeFixture
Junxiao Shi890afe92016-12-15 14:34:34 +000041{
42protected:
43 MulticastStrategyFixture()
Davide Pesaventoa4abfb02019-10-06 16:02:56 -040044 : face1(make_shared<DummyFace>())
Junxiao Shi890afe92016-12-15 14:34:34 +000045 , face2(make_shared<DummyFace>())
46 , face3(make_shared<DummyFace>())
47 {
Davide Pesaventoa4abfb02019-10-06 16:02:56 -040048 faceTable.add(face1);
49 faceTable.add(face2);
50 faceTable.add(face3);
Junxiao Shi890afe92016-12-15 14:34:34 +000051 }
52
53protected:
Davide Pesaventoa4abfb02019-10-06 16:02:56 -040054 FaceTable faceTable;
55 Forwarder forwarder{faceTable};
56 MulticastStrategyTester strategy{forwarder};
57 Fib& fib{forwarder.getFib()};
58 Pit& pit{forwarder.getPit()};
59
Junxiao Shi890afe92016-12-15 14:34:34 +000060 shared_ptr<DummyFace> face1;
61 shared_ptr<DummyFace> face2;
62 shared_ptr<DummyFace> face3;
63};
64
Junxiao Shi5e5e4452015-09-24 16:56:52 -070065BOOST_AUTO_TEST_SUITE(Fw)
Junxiao Shi890afe92016-12-15 14:34:34 +000066BOOST_FIXTURE_TEST_SUITE(TestMulticastStrategy, MulticastStrategyFixture)
Junxiao Shi67ba8d22015-08-21 21:21:28 -070067
68BOOST_AUTO_TEST_CASE(Forward2)
69{
Junxiao Shia6de4292016-07-12 02:08:10 +000070 fib::Entry& fibEntry = *fib.insert(Name()).first;
Ju Pand8315bf2019-07-31 06:59:07 +000071 fib.addOrUpdateNextHop(fibEntry, *face1, 0);
72 fib.addOrUpdateNextHop(fibEntry, *face2, 0);
73 fib.addOrUpdateNextHop(fibEntry, *face3, 0);
Junxiao Shi67ba8d22015-08-21 21:21:28 -070074
75 shared_ptr<Interest> interest = makeInterest("ndn:/H0D6i5fc");
Junxiao Shi67ba8d22015-08-21 21:21:28 -070076 shared_ptr<pit::Entry> pitEntry = pit.insert(*interest).first;
Md Ashiqur Rahmanc88d2d42019-08-28 20:19:47 +000077 pitEntry->insertOrUpdateInRecord(*face3, *interest);
Junxiao Shi67ba8d22015-08-21 21:21:28 -070078
ashiqopuc7079482019-02-20 05:34:37 +000079 strategy.afterReceiveInterest(FaceEndpoint(*face3, 0), *interest, pitEntry);
Junxiao Shi5e5e4452015-09-24 16:56:52 -070080 BOOST_CHECK_EQUAL(strategy.rejectPendingInterestHistory.size(), 0);
81 BOOST_CHECK_EQUAL(strategy.sendInterestHistory.size(), 2);
82 std::set<FaceId> sentInterestFaceIds;
83 std::transform(strategy.sendInterestHistory.begin(), strategy.sendInterestHistory.end(),
84 std::inserter(sentInterestFaceIds, sentInterestFaceIds.end()),
85 [] (const MulticastStrategyTester::SendInterestArgs& args) {
86 return args.outFaceId;
87 });
88 std::set<FaceId> expectedInterestFaceIds{face1->getId(), face2->getId()};
89 BOOST_CHECK_EQUAL_COLLECTIONS(sentInterestFaceIds.begin(), sentInterestFaceIds.end(),
90 expectedInterestFaceIds.begin(), expectedInterestFaceIds.end());
Ashlesh Gawandee38e2612017-02-25 07:23:41 +000091
Ashlesh Gawandeecdbe5f2017-03-04 03:08:24 +000092 const time::nanoseconds TICK = time::duration_cast<time::nanoseconds>(
93 MulticastStrategy::RETX_SUPPRESSION_INITIAL * 0.1);
Junxiao Shi67ba8d22015-08-21 21:21:28 -070094
Ashlesh Gawandeecdbe5f2017-03-04 03:08:24 +000095 // downstream retransmits frequently, but the strategy should not send Interests
96 // more often than DEFAULT_MIN_RETX_INTERVAL
97 scheduler::EventId retxFrom4Evt;
98 size_t nSentLast = strategy.sendInterestHistory.size();
99 time::steady_clock::TimePoint timeSentLast = time::steady_clock::now();
Davide Pesavento87fc0f82018-04-11 23:43:51 -0400100 std::function<void()> periodicalRetxFrom4; // let periodicalRetxFrom4 lambda capture itself
Ashlesh Gawandeecdbe5f2017-03-04 03:08:24 +0000101 periodicalRetxFrom4 = [&] {
Md Ashiqur Rahmanc88d2d42019-08-28 20:19:47 +0000102 pitEntry->insertOrUpdateInRecord(*face3, *interest);
ashiqopuc7079482019-02-20 05:34:37 +0000103 strategy.afterReceiveInterest(FaceEndpoint(*face3, 0), *interest, pitEntry);
Junxiao Shi67ba8d22015-08-21 21:21:28 -0700104
Ashlesh Gawandeecdbe5f2017-03-04 03:08:24 +0000105 size_t nSent = strategy.sendInterestHistory.size();
106 if (nSent > nSentLast) {
107 // Multicast strategy should multicast the interest to other two faces
108 BOOST_CHECK_EQUAL(nSent - nSentLast, 2);
Davide Pesavento3dade002019-03-19 11:29:56 -0600109 auto timeSent = time::steady_clock::now();
Ashlesh Gawandeecdbe5f2017-03-04 03:08:24 +0000110 BOOST_CHECK_GE(timeSent - timeSentLast, TICK * 8);
111 nSentLast = nSent;
112 timeSentLast = timeSent;
113 }
Junxiao Shi67ba8d22015-08-21 21:21:28 -0700114
Davide Pesavento3dade002019-03-19 11:29:56 -0600115 retxFrom4Evt = getScheduler().schedule(TICK * 5, periodicalRetxFrom4);
Ashlesh Gawandeecdbe5f2017-03-04 03:08:24 +0000116 };
117 periodicalRetxFrom4();
118 this->advanceClocks(TICK, MulticastStrategy::RETX_SUPPRESSION_MAX * 16);
Davide Pesavento3dade002019-03-19 11:29:56 -0600119 retxFrom4Evt.cancel();
Junxiao Shi67ba8d22015-08-21 21:21:28 -0700120}
121
122BOOST_AUTO_TEST_CASE(RejectLoopback)
123{
Junxiao Shia6de4292016-07-12 02:08:10 +0000124 fib::Entry& fibEntry = *fib.insert(Name()).first;
Ju Pand8315bf2019-07-31 06:59:07 +0000125 fib.addOrUpdateNextHop(fibEntry, *face1, 0);
Junxiao Shi67ba8d22015-08-21 21:21:28 -0700126
127 shared_ptr<Interest> interest = makeInterest("ndn:/H0D6i5fc");
Junxiao Shi67ba8d22015-08-21 21:21:28 -0700128 shared_ptr<pit::Entry> pitEntry = pit.insert(*interest).first;
Md Ashiqur Rahmanc88d2d42019-08-28 20:19:47 +0000129 pitEntry->insertOrUpdateInRecord(*face1, *interest);
Junxiao Shi67ba8d22015-08-21 21:21:28 -0700130
ashiqopuc7079482019-02-20 05:34:37 +0000131 strategy.afterReceiveInterest(FaceEndpoint(*face1, 0), *interest, pitEntry);
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700132 BOOST_CHECK_EQUAL(strategy.rejectPendingInterestHistory.size(), 1);
133 BOOST_CHECK_EQUAL(strategy.sendInterestHistory.size(), 0);
Junxiao Shi67ba8d22015-08-21 21:21:28 -0700134}
135
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700136BOOST_AUTO_TEST_SUITE_END() // TestMulticastStrategy
137BOOST_AUTO_TEST_SUITE_END() // Fw
Junxiao Shi67ba8d22015-08-21 21:21:28 -0700138
139} // namespace tests
140} // namespace fw
141} // namespace nfd