blob: 24027f07668146e79ede2fde2897fff7728bbaa1 [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()
44 : strategy(forwarder)
45 , fib(forwarder.getFib())
46 , pit(forwarder.getPit())
47 , face1(make_shared<DummyFace>())
48 , face2(make_shared<DummyFace>())
49 , face3(make_shared<DummyFace>())
50 {
51 forwarder.addFace(face1);
52 forwarder.addFace(face2);
53 forwarder.addFace(face3);
54 }
55
56protected:
57 Forwarder forwarder;
58 MulticastStrategyTester strategy;
59 Fib& fib;
60 Pit& pit;
61 shared_ptr<DummyFace> face1;
62 shared_ptr<DummyFace> face2;
63 shared_ptr<DummyFace> face3;
64};
65
Junxiao Shi5e5e4452015-09-24 16:56:52 -070066BOOST_AUTO_TEST_SUITE(Fw)
Junxiao Shi890afe92016-12-15 14:34:34 +000067BOOST_FIXTURE_TEST_SUITE(TestMulticastStrategy, MulticastStrategyFixture)
Junxiao Shi67ba8d22015-08-21 21:21:28 -070068
69BOOST_AUTO_TEST_CASE(Forward2)
70{
Junxiao Shia6de4292016-07-12 02:08:10 +000071 fib::Entry& fibEntry = *fib.insert(Name()).first;
Md Ashiqur Rahman6be93872019-08-07 01:25:31 +000072 fibEntry.addOrUpdateNextHop(*face1, 0);
73 fibEntry.addOrUpdateNextHop(*face2, 0);
74 fibEntry.addOrUpdateNextHop(*face3, 0);
Junxiao Shi67ba8d22015-08-21 21:21:28 -070075
76 shared_ptr<Interest> interest = makeInterest("ndn:/H0D6i5fc");
Junxiao Shi67ba8d22015-08-21 21:21:28 -070077 shared_ptr<pit::Entry> pitEntry = pit.insert(*interest).first;
ashiqopud3ae85d2019-02-17 02:29:55 +000078 pitEntry->insertOrUpdateInRecord(*face3, 0, *interest);
Junxiao Shi67ba8d22015-08-21 21:21:28 -070079
ashiqopuc7079482019-02-20 05:34:37 +000080 strategy.afterReceiveInterest(FaceEndpoint(*face3, 0), *interest, pitEntry);
Junxiao Shi5e5e4452015-09-24 16:56:52 -070081 BOOST_CHECK_EQUAL(strategy.rejectPendingInterestHistory.size(), 0);
82 BOOST_CHECK_EQUAL(strategy.sendInterestHistory.size(), 2);
83 std::set<FaceId> sentInterestFaceIds;
84 std::transform(strategy.sendInterestHistory.begin(), strategy.sendInterestHistory.end(),
85 std::inserter(sentInterestFaceIds, sentInterestFaceIds.end()),
86 [] (const MulticastStrategyTester::SendInterestArgs& args) {
87 return args.outFaceId;
88 });
89 std::set<FaceId> expectedInterestFaceIds{face1->getId(), face2->getId()};
90 BOOST_CHECK_EQUAL_COLLECTIONS(sentInterestFaceIds.begin(), sentInterestFaceIds.end(),
91 expectedInterestFaceIds.begin(), expectedInterestFaceIds.end());
Ashlesh Gawandee38e2612017-02-25 07:23:41 +000092
Ashlesh Gawandeecdbe5f2017-03-04 03:08:24 +000093 const time::nanoseconds TICK = time::duration_cast<time::nanoseconds>(
94 MulticastStrategy::RETX_SUPPRESSION_INITIAL * 0.1);
Junxiao Shi67ba8d22015-08-21 21:21:28 -070095
Ashlesh Gawandeecdbe5f2017-03-04 03:08:24 +000096 // downstream retransmits frequently, but the strategy should not send Interests
97 // more often than DEFAULT_MIN_RETX_INTERVAL
98 scheduler::EventId retxFrom4Evt;
99 size_t nSentLast = strategy.sendInterestHistory.size();
100 time::steady_clock::TimePoint timeSentLast = time::steady_clock::now();
Davide Pesavento87fc0f82018-04-11 23:43:51 -0400101 std::function<void()> periodicalRetxFrom4; // let periodicalRetxFrom4 lambda capture itself
Ashlesh Gawandeecdbe5f2017-03-04 03:08:24 +0000102 periodicalRetxFrom4 = [&] {
ashiqopud3ae85d2019-02-17 02:29:55 +0000103 pitEntry->insertOrUpdateInRecord(*face3, 0, *interest);
ashiqopuc7079482019-02-20 05:34:37 +0000104 strategy.afterReceiveInterest(FaceEndpoint(*face3, 0), *interest, pitEntry);
Junxiao Shi67ba8d22015-08-21 21:21:28 -0700105
Ashlesh Gawandeecdbe5f2017-03-04 03:08:24 +0000106 size_t nSent = strategy.sendInterestHistory.size();
107 if (nSent > nSentLast) {
108 // Multicast strategy should multicast the interest to other two faces
109 BOOST_CHECK_EQUAL(nSent - nSentLast, 2);
Davide Pesavento3dade002019-03-19 11:29:56 -0600110 auto timeSent = time::steady_clock::now();
Ashlesh Gawandeecdbe5f2017-03-04 03:08:24 +0000111 BOOST_CHECK_GE(timeSent - timeSentLast, TICK * 8);
112 nSentLast = nSent;
113 timeSentLast = timeSent;
114 }
Junxiao Shi67ba8d22015-08-21 21:21:28 -0700115
Davide Pesavento3dade002019-03-19 11:29:56 -0600116 retxFrom4Evt = getScheduler().schedule(TICK * 5, periodicalRetxFrom4);
Ashlesh Gawandeecdbe5f2017-03-04 03:08:24 +0000117 };
118 periodicalRetxFrom4();
119 this->advanceClocks(TICK, MulticastStrategy::RETX_SUPPRESSION_MAX * 16);
Davide Pesavento3dade002019-03-19 11:29:56 -0600120 retxFrom4Evt.cancel();
Junxiao Shi67ba8d22015-08-21 21:21:28 -0700121}
122
123BOOST_AUTO_TEST_CASE(RejectLoopback)
124{
Junxiao Shia6de4292016-07-12 02:08:10 +0000125 fib::Entry& fibEntry = *fib.insert(Name()).first;
Md Ashiqur Rahman6be93872019-08-07 01:25:31 +0000126 fibEntry.addOrUpdateNextHop(*face1, 0);
Junxiao Shi67ba8d22015-08-21 21:21:28 -0700127
128 shared_ptr<Interest> interest = makeInterest("ndn:/H0D6i5fc");
Junxiao Shi67ba8d22015-08-21 21:21:28 -0700129 shared_ptr<pit::Entry> pitEntry = pit.insert(*interest).first;
ashiqopud3ae85d2019-02-17 02:29:55 +0000130 pitEntry->insertOrUpdateInRecord(*face1, 0, *interest);
Junxiao Shi67ba8d22015-08-21 21:21:28 -0700131
ashiqopuc7079482019-02-20 05:34:37 +0000132 strategy.afterReceiveInterest(FaceEndpoint(*face1, 0), *interest, pitEntry);
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700133 BOOST_CHECK_EQUAL(strategy.rejectPendingInterestHistory.size(), 1);
134 BOOST_CHECK_EQUAL(strategy.sendInterestHistory.size(), 0);
Junxiao Shi67ba8d22015-08-21 21:21:28 -0700135}
136
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700137BOOST_AUTO_TEST_SUITE_END() // TestMulticastStrategy
138BOOST_AUTO_TEST_SUITE_END() // Fw
Junxiao Shi67ba8d22015-08-21 21:21:28 -0700139
140} // namespace tests
141} // namespace fw
142} // namespace nfd