blob: efaf90c564fafb222a751159fc10bd2f676b52d9 [file] [log] [blame]
Junxiao Shi986b8492014-08-20 12:07:14 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento87fc0f82018-04-11 23:43:51 -04002/*
Ashlesh Gawande1ef93d02022-04-08 00:25:06 -04003 * Copyright (c) 2014-2022, Regents of the University of California,
Junxiao Shi192af1f2015-01-13 23:19:39 -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.
Junxiao Shi986b8492014-08-20 12:07:14 -070010 *
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
Davide Pesavento7922d122021-03-05 22:41:23 -050026#include "fw/best-route-strategy.hpp"
Davide Pesavento2cae8ca2019-04-18 20:48:05 -040027#include "common/global.hpp"
Junxiao Shi986b8492014-08-20 12:07:14 -070028
29#include "tests/test-common.hpp"
Junxiao Shi986b8492014-08-20 12:07:14 -070030#include "tests/daemon/face/dummy-face.hpp"
Junxiao Shi5e5e4452015-09-24 16:56:52 -070031#include "strategy-tester.hpp"
Junxiao Shi986b8492014-08-20 12:07:14 -070032
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040033namespace nfd::tests {
Junxiao Shi986b8492014-08-20 12:07:14 -070034
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040035using BestRouteStrategyTester = StrategyTester<fw::BestRouteStrategy>;
Davide Pesavento7922d122021-03-05 22:41:23 -050036NFD_REGISTER_STRATEGY(BestRouteStrategyTester);
Junxiao Shi890afe92016-12-15 14:34:34 +000037
Junxiao Shi5e5e4452015-09-24 16:56:52 -070038BOOST_AUTO_TEST_SUITE(Fw)
39
Davide Pesavento7922d122021-03-05 22:41:23 -050040class BestRouteStrategyFixture : public GlobalIoTimeFixture
Junxiao Shi5e5e4452015-09-24 16:56:52 -070041{
42protected:
Davide Pesavento7922d122021-03-05 22:41:23 -050043 BestRouteStrategyFixture()
Davide Pesaventoa4abfb02019-10-06 16:02:56 -040044 : face1(make_shared<DummyFace>())
Junxiao Shi5e5e4452015-09-24 16:56:52 -070045 , face2(make_shared<DummyFace>())
46 , face3(make_shared<DummyFace>())
47 , face4(make_shared<DummyFace>())
48 , face5(make_shared<DummyFace>())
49 {
Davide Pesaventoa4abfb02019-10-06 16:02:56 -040050 faceTable.add(face1);
51 faceTable.add(face2);
52 faceTable.add(face3);
53 faceTable.add(face4);
54 faceTable.add(face5);
Junxiao Shi5e5e4452015-09-24 16:56:52 -070055 }
56
Davide Pesaventoa4abfb02019-10-06 16:02:56 -040057protected:
58 FaceTable faceTable;
59 Forwarder forwarder{faceTable};
Davide Pesavento7922d122021-03-05 22:41:23 -050060 BestRouteStrategyTester strategy{forwarder};
Davide Pesaventoa4abfb02019-10-06 16:02:56 -040061 Fib& fib{forwarder.getFib()};
62 Pit& pit{forwarder.getPit()};
Junxiao Shi5e5e4452015-09-24 16:56:52 -070063
64 shared_ptr<DummyFace> face1;
65 shared_ptr<DummyFace> face2;
66 shared_ptr<DummyFace> face3;
67 shared_ptr<DummyFace> face4;
68 shared_ptr<DummyFace> face5;
69};
70
Davide Pesavento7922d122021-03-05 22:41:23 -050071BOOST_FIXTURE_TEST_SUITE(TestBestRouteStrategy, BestRouteStrategyFixture)
Junxiao Shi986b8492014-08-20 12:07:14 -070072
73BOOST_AUTO_TEST_CASE(Forward)
74{
Junxiao Shia6de4292016-07-12 02:08:10 +000075 fib::Entry& fibEntry = *fib.insert(Name()).first;
Ju Pand8315bf2019-07-31 06:59:07 +000076 fib.addOrUpdateNextHop(fibEntry, *face1, 10);
77 fib.addOrUpdateNextHop(fibEntry, *face2, 20);
78 fib.addOrUpdateNextHop(fibEntry, *face3, 30);
Junxiao Shi986b8492014-08-20 12:07:14 -070079
80 shared_ptr<Interest> interest = makeInterest("ndn:/BzgFBchqA");
Junxiao Shi986b8492014-08-20 12:07:14 -070081 shared_ptr<pit::Entry> pitEntry = pit.insert(*interest).first;
82
Davide Pesavento7922d122021-03-05 22:41:23 -050083 const auto TICK = time::duration_cast<time::nanoseconds>(
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040084 fw::RetxSuppressionExponential::DEFAULT_INITIAL_INTERVAL * 0.1);
Junxiao Shi986b8492014-08-20 12:07:14 -070085
Junxiao Shi1f30aac2014-11-04 18:45:56 -070086 // first Interest goes to nexthop with lowest FIB cost,
87 // however face1 is downstream so it cannot be used
Md Ashiqur Rahmanc88d2d42019-08-28 20:19:47 +000088 pitEntry->insertOrUpdateInRecord(*face1, *interest);
Davide Pesavento0498ce82021-06-14 02:02:21 -040089 strategy.afterReceiveInterest(*interest, FaceEndpoint(*face1, 0), pitEntry);
Junxiao Shi5e5e4452015-09-24 16:56:52 -070090 BOOST_REQUIRE_EQUAL(strategy.sendInterestHistory.size(), 1);
91 BOOST_CHECK_EQUAL(strategy.sendInterestHistory.back().outFaceId, face2->getId());
Junxiao Shi986b8492014-08-20 12:07:14 -070092
Junxiao Shi1f30aac2014-11-04 18:45:56 -070093 // downstream retransmits frequently, but the strategy should not send Interests
Junxiao Shia788e252015-01-28 17:06:25 -070094 // more often than DEFAULT_MIN_RETX_INTERVAL
Junxiao Shi1f30aac2014-11-04 18:45:56 -070095 scheduler::EventId retxFrom4Evt;
Junxiao Shi5e5e4452015-09-24 16:56:52 -070096 size_t nSentLast = strategy.sendInterestHistory.size();
Davide Pesavento412c9822021-07-02 00:21:05 -040097 auto timeSentLast = time::steady_clock::now();
Davide Pesavento87fc0f82018-04-11 23:43:51 -040098 std::function<void()> periodicalRetxFrom4; // let periodicalRetxFrom4 lambda capture itself
Junxiao Shi913806d2014-11-14 11:43:52 -070099 periodicalRetxFrom4 = [&] {
Md Ashiqur Rahmanc88d2d42019-08-28 20:19:47 +0000100 pitEntry->insertOrUpdateInRecord(*face4, *interest);
Davide Pesavento0498ce82021-06-14 02:02:21 -0400101 strategy.afterReceiveInterest(*interest, FaceEndpoint(*face4, 0), pitEntry);
Junxiao Shi986b8492014-08-20 12:07:14 -0700102
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700103 size_t nSent = strategy.sendInterestHistory.size();
Junxiao Shi1f30aac2014-11-04 18:45:56 -0700104 if (nSent > nSentLast) {
105 BOOST_CHECK_EQUAL(nSent - nSentLast, 1);
Davide Pesavento3dade002019-03-19 11:29:56 -0600106 auto timeSent = time::steady_clock::now();
Junxiao Shi684fa0f2015-02-23 21:39:57 -0700107 BOOST_CHECK_GE(timeSent - timeSentLast, TICK * 8);
Junxiao Shi1f30aac2014-11-04 18:45:56 -0700108 nSentLast = nSent;
109 timeSentLast = timeSent;
110 }
Junxiao Shi986b8492014-08-20 12:07:14 -0700111
Davide Pesavento3dade002019-03-19 11:29:56 -0600112 retxFrom4Evt = getScheduler().schedule(TICK * 5, periodicalRetxFrom4);
Junxiao Shi1f30aac2014-11-04 18:45:56 -0700113 };
114 periodicalRetxFrom4();
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400115 this->advanceClocks(TICK, fw::RetxSuppressionExponential::DEFAULT_MAX_INTERVAL * 16);
Davide Pesavento3dade002019-03-19 11:29:56 -0600116 retxFrom4Evt.cancel();
Junxiao Shi986b8492014-08-20 12:07:14 -0700117
Junxiao Shi1f30aac2014-11-04 18:45:56 -0700118 // nexthops for accepted retransmissions: follow FIB cost,
Junxiao Shi4846f372016-04-05 13:39:30 -0700119 // later forward to an eligible upstream with earliest out-record
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700120 BOOST_REQUIRE_GE(strategy.sendInterestHistory.size(), 6);
121 BOOST_CHECK_EQUAL(strategy.sendInterestHistory[1].outFaceId, face1->getId());
122 BOOST_CHECK_EQUAL(strategy.sendInterestHistory[2].outFaceId, face3->getId());
123 BOOST_CHECK_EQUAL(strategy.sendInterestHistory[3].outFaceId, face2->getId());
124 BOOST_CHECK_EQUAL(strategy.sendInterestHistory[4].outFaceId, face1->getId());
125 BOOST_CHECK_EQUAL(strategy.sendInterestHistory[5].outFaceId, face3->getId());
Junxiao Shi986b8492014-08-20 12:07:14 -0700126
Ju Pand8315bf2019-07-31 06:59:07 +0000127 fib.removeNextHop(fibEntry, *face1);
Junxiao Shi986b8492014-08-20 12:07:14 -0700128
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700129 strategy.sendInterestHistory.clear();
Junxiao Shi1f30aac2014-11-04 18:45:56 -0700130 for (int i = 0; i < 3; ++i) {
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400131 this->advanceClocks(TICK, fw::RetxSuppressionExponential::DEFAULT_MAX_INTERVAL * 2);
Md Ashiqur Rahmanc88d2d42019-08-28 20:19:47 +0000132 pitEntry->insertOrUpdateInRecord(*face5, *interest);
Davide Pesavento0498ce82021-06-14 02:02:21 -0400133 strategy.afterReceiveInterest(*interest, FaceEndpoint(*face5, 0), pitEntry);
Junxiao Shi1f30aac2014-11-04 18:45:56 -0700134 }
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700135 BOOST_REQUIRE_EQUAL(strategy.sendInterestHistory.size(), 3);
136 BOOST_CHECK_NE(strategy.sendInterestHistory[0].outFaceId, face1->getId());
137 BOOST_CHECK_NE(strategy.sendInterestHistory[1].outFaceId, face1->getId());
138 BOOST_CHECK_NE(strategy.sendInterestHistory[2].outFaceId, face1->getId());
Junxiao Shi986b8492014-08-20 12:07:14 -0700139 // face1 cannot be used because it's gone from FIB entry
140}
141
Davide Pesavento7922d122021-03-05 22:41:23 -0500142BOOST_AUTO_TEST_SUITE_END() // TestBestRouteStrategy
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700143BOOST_AUTO_TEST_SUITE_END() // Fw
Junxiao Shi986b8492014-08-20 12:07:14 -0700144
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400145} // namespace nfd::tests