Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
ashiqopu | 3ad49db | 2018-10-20 22:38:47 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2014-2019, Regents of the University of California, |
Junxiao Shi | 6316220 | 2015-01-14 22:27:33 -0700 | [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. |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -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/>. |
Junxiao Shi | 82e7f58 | 2014-09-07 15:15:40 -0700 | [diff] [blame] | 24 | */ |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 25 | |
| 26 | #include "fw/ncc-strategy.hpp" |
Davide Pesavento | 3dade00 | 2019-03-19 11:29:56 -0600 | [diff] [blame] | 27 | |
| 28 | #include "tests/daemon/face/dummy-face.hpp" |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 29 | #include "strategy-tester.hpp" |
Hila Ben Abraham | 39a79be | 2016-03-30 22:00:55 -0700 | [diff] [blame] | 30 | #include "topology-tester.hpp" |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 31 | |
| 32 | namespace nfd { |
Spyridon Mastorakis | d0381c0 | 2015-02-19 10:29:41 -0800 | [diff] [blame] | 33 | namespace fw { |
Junxiao Shi | d9ee45c | 2014-02-27 15:38:11 -0700 | [diff] [blame] | 34 | namespace tests { |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 35 | |
Spyridon Mastorakis | d0381c0 | 2015-02-19 10:29:41 -0800 | [diff] [blame] | 36 | using namespace nfd::tests; |
| 37 | |
Junxiao Shi | 890afe9 | 2016-12-15 14:34:34 +0000 | [diff] [blame] | 38 | typedef StrategyTester<NccStrategy> NccStrategyTester; |
| 39 | NFD_REGISTER_STRATEGY(NccStrategyTester); |
| 40 | |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 41 | BOOST_AUTO_TEST_SUITE(Fw) |
Davide Pesavento | cf7db2f | 2019-03-24 23:17:28 -0400 | [diff] [blame] | 42 | BOOST_FIXTURE_TEST_SUITE(TestNccStrategy, GlobalIoTimeFixture) |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 43 | |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 44 | BOOST_AUTO_TEST_CASE(FavorRespondingUpstream) |
| 45 | { |
Junxiao Shi | 18739c4 | 2016-12-22 08:03:00 +0000 | [diff] [blame] | 46 | // NccStrategy is fairly complex. |
| 47 | // The most important property is: it remembers which upstream is the fastest to return Data, |
| 48 | // and favors this upstream in subsequent Interests. |
| 49 | |
Junxiao Shi | 3cb4fc6 | 2014-12-25 22:17:39 -0700 | [diff] [blame] | 50 | LimitedIo limitedIo(this); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 51 | Forwarder forwarder; |
Junxiao Shi | 890afe9 | 2016-12-15 14:34:34 +0000 | [diff] [blame] | 52 | NccStrategyTester& strategy = choose<NccStrategyTester>(forwarder); |
Junxiao Shi | a49a1ab | 2016-07-15 18:24:36 +0000 | [diff] [blame] | 53 | strategy.afterAction.connect(bind(&LimitedIo::afterOp, &limitedIo)); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 54 | |
| 55 | shared_ptr<DummyFace> face1 = make_shared<DummyFace>(); |
| 56 | shared_ptr<DummyFace> face2 = make_shared<DummyFace>(); |
| 57 | shared_ptr<DummyFace> face3 = make_shared<DummyFace>(); |
| 58 | forwarder.addFace(face1); |
| 59 | forwarder.addFace(face2); |
| 60 | forwarder.addFace(face3); |
| 61 | |
| 62 | Fib& fib = forwarder.getFib(); |
Junxiao Shi | a6de429 | 2016-07-12 02:08:10 +0000 | [diff] [blame] | 63 | fib::Entry& fibEntry = *fib.insert(Name()).first; |
ashiqopu | 3ad49db | 2018-10-20 22:38:47 +0000 | [diff] [blame] | 64 | fibEntry.addOrUpdateNextHop(*face1, 0, 10); |
| 65 | fibEntry.addOrUpdateNextHop(*face2, 0, 20); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 66 | |
| 67 | Pit& pit = forwarder.getPit(); |
| 68 | |
| 69 | // first Interest: strategy knows nothing and follows routing |
Junxiao Shi | f3c0781 | 2014-03-11 21:48:49 -0700 | [diff] [blame] | 70 | shared_ptr<Interest> interest1p = makeInterest("ndn:/0Jm1ajrW/%00"); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 71 | Interest& interest1 = *interest1p; |
Alexander Afanasyev | eb3197f | 2014-03-17 19:28:18 -0700 | [diff] [blame] | 72 | interest1.setInterestLifetime(time::milliseconds(8000)); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 73 | shared_ptr<pit::Entry> pitEntry1 = pit.insert(interest1).first; |
| 74 | |
ashiqopu | d3ae85d | 2019-02-17 02:29:55 +0000 | [diff] [blame] | 75 | pitEntry1->insertOrUpdateInRecord(*face3, 0, interest1); |
ashiqopu | c707948 | 2019-02-20 05:34:37 +0000 | [diff] [blame] | 76 | strategy.afterReceiveInterest(FaceEndpoint(*face3, 0), interest1, pitEntry1); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 77 | |
| 78 | // forwards to face1 because routing says it's best |
Junxiao Shi | 1553910 | 2014-10-08 22:39:51 -0700 | [diff] [blame] | 79 | // (no io run here: afterReceiveInterest has already sent the Interest) |
Junxiao Shi | a49a1ab | 2016-07-15 18:24:36 +0000 | [diff] [blame] | 80 | BOOST_REQUIRE_EQUAL(strategy.sendInterestHistory.size(), 1); |
| 81 | BOOST_CHECK_EQUAL(strategy.sendInterestHistory[0].outFaceId, face1->getId()); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 82 | |
| 83 | // forwards to face2 because face1 doesn't respond |
Junxiao Shi | 3cb4fc6 | 2014-12-25 22:17:39 -0700 | [diff] [blame] | 84 | limitedIo.run(1, time::milliseconds(500), time::milliseconds(10)); |
Junxiao Shi | a49a1ab | 2016-07-15 18:24:36 +0000 | [diff] [blame] | 85 | BOOST_REQUIRE_EQUAL(strategy.sendInterestHistory.size(), 2); |
| 86 | BOOST_CHECK_EQUAL(strategy.sendInterestHistory[1].outFaceId, face2->getId()); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 87 | |
| 88 | // face2 responds |
Junxiao Shi | f3c0781 | 2014-03-11 21:48:49 -0700 | [diff] [blame] | 89 | shared_ptr<Data> data1p = makeData("ndn:/0Jm1ajrW/%00"); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 90 | Data& data1 = *data1p; |
ashiqopu | c707948 | 2019-02-20 05:34:37 +0000 | [diff] [blame] | 91 | strategy.beforeSatisfyInterest(pitEntry1, FaceEndpoint(*face2, 0), data1); |
Junxiao Shi | 3cb4fc6 | 2014-12-25 22:17:39 -0700 | [diff] [blame] | 92 | this->advanceClocks(time::milliseconds(10), time::milliseconds(500)); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 93 | |
| 94 | // second Interest: strategy knows face2 is best |
Junxiao Shi | f3c0781 | 2014-03-11 21:48:49 -0700 | [diff] [blame] | 95 | shared_ptr<Interest> interest2p = makeInterest("ndn:/0Jm1ajrW/%00%01"); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 96 | Interest& interest2 = *interest2p; |
Alexander Afanasyev | eb3197f | 2014-03-17 19:28:18 -0700 | [diff] [blame] | 97 | interest2.setInterestLifetime(time::milliseconds(8000)); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 98 | shared_ptr<pit::Entry> pitEntry2 = pit.insert(interest2).first; |
| 99 | |
ashiqopu | d3ae85d | 2019-02-17 02:29:55 +0000 | [diff] [blame] | 100 | pitEntry2->insertOrUpdateInRecord(*face3, 0, interest2); |
ashiqopu | c707948 | 2019-02-20 05:34:37 +0000 | [diff] [blame] | 101 | strategy.afterReceiveInterest(FaceEndpoint(*face3, 0), interest2, pitEntry2); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 102 | |
| 103 | // forwards to face2 because it responds previously |
Junxiao Shi | 3cb4fc6 | 2014-12-25 22:17:39 -0700 | [diff] [blame] | 104 | this->advanceClocks(time::milliseconds(1)); |
Junxiao Shi | a49a1ab | 2016-07-15 18:24:36 +0000 | [diff] [blame] | 105 | BOOST_REQUIRE_GE(strategy.sendInterestHistory.size(), 3); |
| 106 | BOOST_CHECK_EQUAL(strategy.sendInterestHistory[2].outFaceId, face2->getId()); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 107 | } |
| 108 | |
Junxiao Shi | cbb490a | 2014-08-13 12:24:24 -0700 | [diff] [blame] | 109 | BOOST_AUTO_TEST_CASE(Bug1853) |
| 110 | { |
Junxiao Shi | cbb490a | 2014-08-13 12:24:24 -0700 | [diff] [blame] | 111 | Forwarder forwarder; |
Junxiao Shi | 890afe9 | 2016-12-15 14:34:34 +0000 | [diff] [blame] | 112 | NccStrategyTester& strategy = choose<NccStrategyTester>(forwarder); |
Junxiao Shi | cbb490a | 2014-08-13 12:24:24 -0700 | [diff] [blame] | 113 | |
| 114 | shared_ptr<DummyFace> face1 = make_shared<DummyFace>(); |
| 115 | shared_ptr<DummyFace> face2 = make_shared<DummyFace>(); |
| 116 | shared_ptr<DummyFace> face3 = make_shared<DummyFace>(); |
| 117 | forwarder.addFace(face1); |
| 118 | forwarder.addFace(face2); |
| 119 | forwarder.addFace(face3); |
| 120 | |
| 121 | Fib& fib = forwarder.getFib(); |
Junxiao Shi | a6de429 | 2016-07-12 02:08:10 +0000 | [diff] [blame] | 122 | fib::Entry& fibEntry = *fib.insert(Name()).first; |
ashiqopu | 3ad49db | 2018-10-20 22:38:47 +0000 | [diff] [blame] | 123 | fibEntry.addOrUpdateNextHop(*face1, 0, 10); |
Junxiao Shi | cbb490a | 2014-08-13 12:24:24 -0700 | [diff] [blame] | 124 | |
Junxiao Shi | cbb490a | 2014-08-13 12:24:24 -0700 | [diff] [blame] | 125 | Pit& pit = forwarder.getPit(); |
| 126 | |
| 127 | // first Interest: strategy follows routing and forwards to face1 |
| 128 | shared_ptr<Interest> interest1 = makeInterest("ndn:/nztwIvHX/%00"); |
| 129 | interest1->setInterestLifetime(time::milliseconds(8000)); |
| 130 | shared_ptr<pit::Entry> pitEntry1 = pit.insert(*interest1).first; |
| 131 | |
ashiqopu | d3ae85d | 2019-02-17 02:29:55 +0000 | [diff] [blame] | 132 | pitEntry1->insertOrUpdateInRecord(*face3, 0, *interest1); |
ashiqopu | c707948 | 2019-02-20 05:34:37 +0000 | [diff] [blame] | 133 | strategy.afterReceiveInterest(FaceEndpoint(*face3, 0), *interest1, pitEntry1); |
Junxiao Shi | cbb490a | 2014-08-13 12:24:24 -0700 | [diff] [blame] | 134 | |
Junxiao Shi | 3cb4fc6 | 2014-12-25 22:17:39 -0700 | [diff] [blame] | 135 | this->advanceClocks(time::milliseconds(1)); |
Junxiao Shi | a49a1ab | 2016-07-15 18:24:36 +0000 | [diff] [blame] | 136 | BOOST_REQUIRE_EQUAL(strategy.sendInterestHistory.size(), 1); |
| 137 | BOOST_CHECK_EQUAL(strategy.sendInterestHistory[0].outFaceId, face1->getId()); |
Junxiao Shi | cbb490a | 2014-08-13 12:24:24 -0700 | [diff] [blame] | 138 | |
| 139 | // face1 responds |
| 140 | shared_ptr<Data> data1 = makeData("ndn:/nztwIvHX/%00"); |
ashiqopu | c707948 | 2019-02-20 05:34:37 +0000 | [diff] [blame] | 141 | strategy.beforeSatisfyInterest(pitEntry1, FaceEndpoint(*face1, 0), *data1); |
Junxiao Shi | 3cb4fc6 | 2014-12-25 22:17:39 -0700 | [diff] [blame] | 142 | this->advanceClocks(time::milliseconds(10), time::milliseconds(500)); |
Junxiao Shi | cbb490a | 2014-08-13 12:24:24 -0700 | [diff] [blame] | 143 | |
| 144 | // second Interest: bestFace is face1, nUpstreams becomes 0, |
| 145 | // therefore pitEntryInfo->maxInterval cannot be calculated from deferRange and nUpstreams |
| 146 | shared_ptr<Interest> interest2 = makeInterest("ndn:/nztwIvHX/%01"); |
| 147 | interest2->setInterestLifetime(time::milliseconds(8000)); |
| 148 | shared_ptr<pit::Entry> pitEntry2 = pit.insert(*interest2).first; |
| 149 | |
ashiqopu | d3ae85d | 2019-02-17 02:29:55 +0000 | [diff] [blame] | 150 | pitEntry2->insertOrUpdateInRecord(*face3, 0, *interest2); |
ashiqopu | c707948 | 2019-02-20 05:34:37 +0000 | [diff] [blame] | 151 | strategy.afterReceiveInterest(FaceEndpoint(*face3, 0), *interest2, pitEntry2); |
Junxiao Shi | cbb490a | 2014-08-13 12:24:24 -0700 | [diff] [blame] | 152 | |
| 153 | // FIB entry is changed before doPropagate executes |
ashiqopu | 3ad49db | 2018-10-20 22:38:47 +0000 | [diff] [blame] | 154 | fibEntry.addOrUpdateNextHop(*face2, 0, 20); |
Junxiao Shi | 3cb4fc6 | 2014-12-25 22:17:39 -0700 | [diff] [blame] | 155 | this->advanceClocks(time::milliseconds(10), time::milliseconds(1000));// should not crash |
Junxiao Shi | cbb490a | 2014-08-13 12:24:24 -0700 | [diff] [blame] | 156 | } |
| 157 | |
Junxiao Shi | 82e7f58 | 2014-09-07 15:15:40 -0700 | [diff] [blame] | 158 | BOOST_AUTO_TEST_CASE(Bug1961) |
| 159 | { |
Junxiao Shi | 3cb4fc6 | 2014-12-25 22:17:39 -0700 | [diff] [blame] | 160 | LimitedIo limitedIo(this); |
Junxiao Shi | 82e7f58 | 2014-09-07 15:15:40 -0700 | [diff] [blame] | 161 | Forwarder forwarder; |
Junxiao Shi | 890afe9 | 2016-12-15 14:34:34 +0000 | [diff] [blame] | 162 | NccStrategyTester& strategy = choose<NccStrategyTester>(forwarder); |
Junxiao Shi | a49a1ab | 2016-07-15 18:24:36 +0000 | [diff] [blame] | 163 | strategy.afterAction.connect(bind(&LimitedIo::afterOp, &limitedIo)); |
Junxiao Shi | 82e7f58 | 2014-09-07 15:15:40 -0700 | [diff] [blame] | 164 | |
| 165 | shared_ptr<DummyFace> face1 = make_shared<DummyFace>(); |
| 166 | shared_ptr<DummyFace> face2 = make_shared<DummyFace>(); |
| 167 | shared_ptr<DummyFace> face3 = make_shared<DummyFace>(); |
| 168 | forwarder.addFace(face1); |
| 169 | forwarder.addFace(face2); |
| 170 | forwarder.addFace(face3); |
| 171 | |
| 172 | Fib& fib = forwarder.getFib(); |
Junxiao Shi | a6de429 | 2016-07-12 02:08:10 +0000 | [diff] [blame] | 173 | fib::Entry& fibEntry = *fib.insert(Name()).first; |
ashiqopu | 3ad49db | 2018-10-20 22:38:47 +0000 | [diff] [blame] | 174 | fibEntry.addOrUpdateNextHop(*face1, 0, 10); |
| 175 | fibEntry.addOrUpdateNextHop(*face2, 0, 20); |
Junxiao Shi | 82e7f58 | 2014-09-07 15:15:40 -0700 | [diff] [blame] | 176 | |
Junxiao Shi | 82e7f58 | 2014-09-07 15:15:40 -0700 | [diff] [blame] | 177 | Pit& pit = forwarder.getPit(); |
| 178 | |
| 179 | // first Interest: strategy forwards to face1 and face2 |
| 180 | shared_ptr<Interest> interest1 = makeInterest("ndn:/seRMz5a6/%00"); |
| 181 | interest1->setInterestLifetime(time::milliseconds(2000)); |
| 182 | shared_ptr<pit::Entry> pitEntry1 = pit.insert(*interest1).first; |
| 183 | |
ashiqopu | d3ae85d | 2019-02-17 02:29:55 +0000 | [diff] [blame] | 184 | pitEntry1->insertOrUpdateInRecord(*face3, 0, *interest1); |
ashiqopu | c707948 | 2019-02-20 05:34:37 +0000 | [diff] [blame] | 185 | strategy.afterReceiveInterest(FaceEndpoint(*face3, 0), *interest1, pitEntry1); |
Junxiao Shi | a49a1ab | 2016-07-15 18:24:36 +0000 | [diff] [blame] | 186 | limitedIo.run(2 - strategy.sendInterestHistory.size(), |
Junxiao Shi | 3cb4fc6 | 2014-12-25 22:17:39 -0700 | [diff] [blame] | 187 | time::milliseconds(2000), time::milliseconds(10)); |
Junxiao Shi | a49a1ab | 2016-07-15 18:24:36 +0000 | [diff] [blame] | 188 | BOOST_REQUIRE_EQUAL(strategy.sendInterestHistory.size(), 2); |
| 189 | BOOST_CHECK_EQUAL(strategy.sendInterestHistory[0].outFaceId, face1->getId()); |
| 190 | BOOST_CHECK_EQUAL(strategy.sendInterestHistory[1].outFaceId, face2->getId()); |
Junxiao Shi | 82e7f58 | 2014-09-07 15:15:40 -0700 | [diff] [blame] | 191 | |
| 192 | // face1 responds |
| 193 | shared_ptr<Data> data1 = makeData("ndn:/seRMz5a6/%00"); |
ashiqopu | c707948 | 2019-02-20 05:34:37 +0000 | [diff] [blame] | 194 | strategy.beforeSatisfyInterest(pitEntry1, FaceEndpoint(*face1, 0), *data1); |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 195 | pitEntry1->clearInRecords(); |
Junxiao Shi | 3cb4fc6 | 2014-12-25 22:17:39 -0700 | [diff] [blame] | 196 | this->advanceClocks(time::milliseconds(10)); |
Junxiao Shi | 82e7f58 | 2014-09-07 15:15:40 -0700 | [diff] [blame] | 197 | // face2 also responds |
ashiqopu | c707948 | 2019-02-20 05:34:37 +0000 | [diff] [blame] | 198 | strategy.beforeSatisfyInterest(pitEntry1, FaceEndpoint(*face2, 0), *data1); |
Junxiao Shi | 3cb4fc6 | 2014-12-25 22:17:39 -0700 | [diff] [blame] | 199 | this->advanceClocks(time::milliseconds(10)); |
Junxiao Shi | 82e7f58 | 2014-09-07 15:15:40 -0700 | [diff] [blame] | 200 | |
| 201 | // second Interest: bestFace should be face 1 |
| 202 | shared_ptr<Interest> interest2 = makeInterest("ndn:/seRMz5a6/%01"); |
| 203 | interest2->setInterestLifetime(time::milliseconds(2000)); |
| 204 | shared_ptr<pit::Entry> pitEntry2 = pit.insert(*interest2).first; |
| 205 | |
ashiqopu | d3ae85d | 2019-02-17 02:29:55 +0000 | [diff] [blame] | 206 | pitEntry2->insertOrUpdateInRecord(*face3, 0, *interest2); |
ashiqopu | c707948 | 2019-02-20 05:34:37 +0000 | [diff] [blame] | 207 | strategy.afterReceiveInterest(FaceEndpoint(*face3, 0), *interest2, pitEntry2); |
Junxiao Shi | a49a1ab | 2016-07-15 18:24:36 +0000 | [diff] [blame] | 208 | limitedIo.run(3 - strategy.sendInterestHistory.size(), |
Junxiao Shi | 3cb4fc6 | 2014-12-25 22:17:39 -0700 | [diff] [blame] | 209 | time::milliseconds(2000), time::milliseconds(10)); |
Junxiao Shi | 82e7f58 | 2014-09-07 15:15:40 -0700 | [diff] [blame] | 210 | |
Junxiao Shi | a49a1ab | 2016-07-15 18:24:36 +0000 | [diff] [blame] | 211 | BOOST_REQUIRE_GE(strategy.sendInterestHistory.size(), 3); |
| 212 | BOOST_CHECK_EQUAL(strategy.sendInterestHistory[2].outFaceId, face1->getId()); |
Junxiao Shi | 82e7f58 | 2014-09-07 15:15:40 -0700 | [diff] [blame] | 213 | } |
Junxiao Shi | cbb490a | 2014-08-13 12:24:24 -0700 | [diff] [blame] | 214 | |
Junxiao Shi | 8bfd56d | 2014-10-08 10:06:00 -0700 | [diff] [blame] | 215 | BOOST_AUTO_TEST_CASE(Bug1971) |
| 216 | { |
Junxiao Shi | 3cb4fc6 | 2014-12-25 22:17:39 -0700 | [diff] [blame] | 217 | LimitedIo limitedIo(this); |
Junxiao Shi | 8bfd56d | 2014-10-08 10:06:00 -0700 | [diff] [blame] | 218 | Forwarder forwarder; |
Junxiao Shi | 890afe9 | 2016-12-15 14:34:34 +0000 | [diff] [blame] | 219 | NccStrategyTester& strategy = choose<NccStrategyTester>(forwarder); |
Junxiao Shi | a49a1ab | 2016-07-15 18:24:36 +0000 | [diff] [blame] | 220 | strategy.afterAction.connect(bind(&LimitedIo::afterOp, &limitedIo)); |
Junxiao Shi | 8bfd56d | 2014-10-08 10:06:00 -0700 | [diff] [blame] | 221 | |
| 222 | shared_ptr<DummyFace> face1 = make_shared<DummyFace>(); |
| 223 | shared_ptr<DummyFace> face2 = make_shared<DummyFace>(); |
| 224 | forwarder.addFace(face1); |
| 225 | forwarder.addFace(face2); |
| 226 | |
| 227 | Fib& fib = forwarder.getFib(); |
Junxiao Shi | a6de429 | 2016-07-12 02:08:10 +0000 | [diff] [blame] | 228 | fib::Entry& fibEntry = *fib.insert(Name()).first; |
ashiqopu | 3ad49db | 2018-10-20 22:38:47 +0000 | [diff] [blame] | 229 | fibEntry.addOrUpdateNextHop(*face2, 0, 10); |
Junxiao Shi | 8bfd56d | 2014-10-08 10:06:00 -0700 | [diff] [blame] | 230 | |
Junxiao Shi | 8bfd56d | 2014-10-08 10:06:00 -0700 | [diff] [blame] | 231 | Pit& pit = forwarder.getPit(); |
| 232 | |
| 233 | // first Interest: strategy forwards to face2 |
| 234 | shared_ptr<Interest> interest1 = makeInterest("ndn:/M4mBXCsd"); |
| 235 | interest1->setInterestLifetime(time::milliseconds(2000)); |
| 236 | shared_ptr<pit::Entry> pitEntry1 = pit.insert(*interest1).first; |
| 237 | |
ashiqopu | d3ae85d | 2019-02-17 02:29:55 +0000 | [diff] [blame] | 238 | pitEntry1->insertOrUpdateInRecord(*face1, 0, *interest1); |
ashiqopu | c707948 | 2019-02-20 05:34:37 +0000 | [diff] [blame] | 239 | strategy.afterReceiveInterest(FaceEndpoint(*face1, 0), *interest1, pitEntry1); |
Junxiao Shi | a49a1ab | 2016-07-15 18:24:36 +0000 | [diff] [blame] | 240 | limitedIo.run(1 - strategy.sendInterestHistory.size(), |
Junxiao Shi | 3cb4fc6 | 2014-12-25 22:17:39 -0700 | [diff] [blame] | 241 | time::milliseconds(2000), time::milliseconds(10)); |
Junxiao Shi | a49a1ab | 2016-07-15 18:24:36 +0000 | [diff] [blame] | 242 | BOOST_REQUIRE_EQUAL(strategy.sendInterestHistory.size(), 1); |
| 243 | BOOST_CHECK_EQUAL(strategy.sendInterestHistory[0].outFaceId, face2->getId()); |
Junxiao Shi | 8bfd56d | 2014-10-08 10:06:00 -0700 | [diff] [blame] | 244 | |
| 245 | // face2 responds |
| 246 | shared_ptr<Data> data1 = makeData("ndn:/M4mBXCsd"); |
| 247 | data1->setFreshnessPeriod(time::milliseconds(5)); |
ashiqopu | c707948 | 2019-02-20 05:34:37 +0000 | [diff] [blame] | 248 | strategy.beforeSatisfyInterest(pitEntry1, FaceEndpoint(*face2, 0), *data1); |
ashiqopu | d3ae85d | 2019-02-17 02:29:55 +0000 | [diff] [blame] | 249 | pitEntry1->deleteOutRecord(*face2, 0); |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 250 | pitEntry1->clearInRecords(); |
Junxiao Shi | 3cb4fc6 | 2014-12-25 22:17:39 -0700 | [diff] [blame] | 251 | this->advanceClocks(time::milliseconds(10)); |
Junxiao Shi | 8bfd56d | 2014-10-08 10:06:00 -0700 | [diff] [blame] | 252 | |
| 253 | // similar Interest: strategy should still forward it |
ashiqopu | d3ae85d | 2019-02-17 02:29:55 +0000 | [diff] [blame] | 254 | pitEntry1->insertOrUpdateInRecord(*face1, 0, *interest1); |
ashiqopu | c707948 | 2019-02-20 05:34:37 +0000 | [diff] [blame] | 255 | strategy.afterReceiveInterest(FaceEndpoint(*face1, 0), *interest1, pitEntry1); |
Junxiao Shi | a49a1ab | 2016-07-15 18:24:36 +0000 | [diff] [blame] | 256 | limitedIo.run(2 - strategy.sendInterestHistory.size(), |
Junxiao Shi | 3cb4fc6 | 2014-12-25 22:17:39 -0700 | [diff] [blame] | 257 | time::milliseconds(2000), time::milliseconds(10)); |
Junxiao Shi | a49a1ab | 2016-07-15 18:24:36 +0000 | [diff] [blame] | 258 | BOOST_REQUIRE_EQUAL(strategy.sendInterestHistory.size(), 2); |
| 259 | BOOST_CHECK_EQUAL(strategy.sendInterestHistory[1].outFaceId, face2->getId()); |
Junxiao Shi | 8bfd56d | 2014-10-08 10:06:00 -0700 | [diff] [blame] | 260 | } |
| 261 | |
Junxiao Shi | 6316220 | 2015-01-14 22:27:33 -0700 | [diff] [blame] | 262 | BOOST_AUTO_TEST_CASE(Bug1998) |
| 263 | { |
| 264 | Forwarder forwarder; |
Junxiao Shi | 890afe9 | 2016-12-15 14:34:34 +0000 | [diff] [blame] | 265 | NccStrategyTester& strategy = choose<NccStrategyTester>(forwarder); |
Junxiao Shi | 6316220 | 2015-01-14 22:27:33 -0700 | [diff] [blame] | 266 | |
| 267 | shared_ptr<DummyFace> face1 = make_shared<DummyFace>(); |
| 268 | shared_ptr<DummyFace> face2 = make_shared<DummyFace>(); |
| 269 | forwarder.addFace(face1); |
| 270 | forwarder.addFace(face2); |
| 271 | |
| 272 | Fib& fib = forwarder.getFib(); |
Junxiao Shi | a6de429 | 2016-07-12 02:08:10 +0000 | [diff] [blame] | 273 | fib::Entry& fibEntry = *fib.insert(Name()).first; |
ashiqopu | 3ad49db | 2018-10-20 22:38:47 +0000 | [diff] [blame] | 274 | fibEntry.addOrUpdateNextHop(*face1, 0, 10); // face1 is top-ranked nexthop |
| 275 | fibEntry.addOrUpdateNextHop(*face2, 0, 20); |
Junxiao Shi | 6316220 | 2015-01-14 22:27:33 -0700 | [diff] [blame] | 276 | |
Junxiao Shi | 6316220 | 2015-01-14 22:27:33 -0700 | [diff] [blame] | 277 | Pit& pit = forwarder.getPit(); |
| 278 | |
| 279 | // Interest comes from face1, which is sole downstream |
| 280 | shared_ptr<Interest> interest1 = makeInterest("ndn:/tFy5HzUzD4"); |
| 281 | shared_ptr<pit::Entry> pitEntry1 = pit.insert(*interest1).first; |
ashiqopu | d3ae85d | 2019-02-17 02:29:55 +0000 | [diff] [blame] | 282 | pitEntry1->insertOrUpdateInRecord(*face1, 0, *interest1); |
Junxiao Shi | 6316220 | 2015-01-14 22:27:33 -0700 | [diff] [blame] | 283 | |
ashiqopu | c707948 | 2019-02-20 05:34:37 +0000 | [diff] [blame] | 284 | strategy.afterReceiveInterest(FaceEndpoint(*face1, 0), *interest1, pitEntry1); |
Junxiao Shi | 6316220 | 2015-01-14 22:27:33 -0700 | [diff] [blame] | 285 | |
| 286 | // Interest shall go to face2, not loop back to face1 |
Junxiao Shi | a49a1ab | 2016-07-15 18:24:36 +0000 | [diff] [blame] | 287 | BOOST_REQUIRE_EQUAL(strategy.sendInterestHistory.size(), 1); |
| 288 | BOOST_CHECK_EQUAL(strategy.sendInterestHistory[0].outFaceId, face2->getId()); |
Junxiao Shi | 6316220 | 2015-01-14 22:27:33 -0700 | [diff] [blame] | 289 | } |
| 290 | |
Hila Ben Abraham | 39a79be | 2016-03-30 22:00:55 -0700 | [diff] [blame] | 291 | BOOST_AUTO_TEST_CASE_EXPECTED_FAILURES(PredictionAdjustment, 1) |
| 292 | BOOST_AUTO_TEST_CASE(PredictionAdjustment) // Bug 3411 |
| 293 | { |
| 294 | /* |
| 295 | * /----------\ |
| 296 | * | consumer | |
| 297 | * \----------/ |
| 298 | * | |
| 299 | * | |
| 300 | * +---+ 5ms +---+ |
| 301 | * | A |-------| B | |
| 302 | * +---+ +---+ |
| 303 | * | | |
| 304 | * | 5ms | 15ms/5ms |
| 305 | * | | |
| 306 | * +---+ +---+ |
| 307 | * | C |-------| D | |
| 308 | * +---+ 15ms +---+ |
| 309 | * /5ms | |
| 310 | * | |
| 311 | * /----------\ |
| 312 | * | producer | |
| 313 | * \----------/ |
| 314 | */ |
| 315 | |
| 316 | TopologyTester topo; |
| 317 | TopologyNode nodeA = topo.addForwarder("A"), |
| 318 | nodeB = topo.addForwarder("B"), |
| 319 | nodeC = topo.addForwarder("C"), |
| 320 | nodeD = topo.addForwarder("D"); |
| 321 | |
| 322 | for (TopologyNode node : {nodeA, nodeB, nodeC, nodeD}) { |
| 323 | topo.setStrategy<NccStrategy>(node); |
| 324 | } |
| 325 | |
| 326 | shared_ptr<TopologyLink> linkAB = topo.addLink("AB", time::milliseconds( 5), {nodeA, nodeB}), |
| 327 | linkAC = topo.addLink("AC", time::milliseconds( 5), {nodeA, nodeC}), |
| 328 | linkBD = topo.addLink("BD", time::milliseconds(15), {nodeB, nodeD}), |
| 329 | linkCD = topo.addLink("CD", time::milliseconds(15), {nodeC, nodeD}); |
| 330 | |
| 331 | topo.registerPrefix(nodeA, linkAB->getFace(nodeA), "ndn:/P"); |
| 332 | topo.registerPrefix(nodeA, linkAC->getFace(nodeA), "ndn:/P"); |
| 333 | topo.registerPrefix(nodeB, linkBD->getFace(nodeB), "ndn:/P"); |
| 334 | topo.registerPrefix(nodeC, linkCD->getFace(nodeC), "ndn:/P"); |
| 335 | |
| 336 | shared_ptr<TopologyAppLink> producer = topo.addAppFace("producer", nodeD, "ndn:/P"); |
| 337 | topo.addEchoProducer(producer->getClientFace()); |
| 338 | |
| 339 | shared_ptr<TopologyAppLink> consumer = topo.addAppFace("consumer", nodeA); |
| 340 | topo.addIntervalConsumer(consumer->getClientFace(), "ndn:/P", |
| 341 | time::milliseconds(100), 300); |
| 342 | |
Junxiao Shi | fc02186 | 2016-08-25 21:51:18 +0000 | [diff] [blame] | 343 | auto getMeInfo = [&] () -> NccStrategy::MeasurementsEntryInfo* { |
Hila Ben Abraham | 39a79be | 2016-03-30 22:00:55 -0700 | [diff] [blame] | 344 | Measurements& measurements = topo.getForwarder(nodeA).getMeasurements(); |
Junxiao Shi | 80f9fcd | 2016-07-23 02:48:36 +0000 | [diff] [blame] | 345 | measurements::Entry* me = measurements.findExactMatch("ndn:/P"); |
Hila Ben Abraham | 39a79be | 2016-03-30 22:00:55 -0700 | [diff] [blame] | 346 | return me == nullptr ? nullptr : me->getStrategyInfo<NccStrategy::MeasurementsEntryInfo>(); |
| 347 | }; |
| 348 | |
| 349 | // NccStrategy starts with an exploration period when the algorithm adjusts |
| 350 | // its prediction to converge near the path RTT. |
| 351 | bool isExplorationFinished = false; |
| 352 | const time::milliseconds TRUE_RTT1(40); |
| 353 | bool isLastPredictionUnder = true; |
| 354 | int nPredictionCrossings = 0; |
| 355 | for (int i = 0; i < 10000; ++i) { |
| 356 | this->advanceClocks(time::milliseconds(5)); |
| 357 | auto meInfo = getMeInfo(); |
| 358 | if (meInfo == nullptr) { |
| 359 | continue; |
| 360 | } |
| 361 | |
| 362 | if ((isLastPredictionUnder && meInfo->prediction > TRUE_RTT1) || |
| 363 | (!isLastPredictionUnder && meInfo->prediction < TRUE_RTT1)) { |
| 364 | isLastPredictionUnder = !isLastPredictionUnder; |
| 365 | if (++nPredictionCrossings > 6) { |
| 366 | isExplorationFinished = true; |
| 367 | BOOST_TEST_MESSAGE("exploration finishes after " << (i * 5) << "ms"); |
| 368 | break; |
| 369 | } |
| 370 | } |
| 371 | } |
| 372 | BOOST_REQUIRE_MESSAGE(isExplorationFinished, "exploration does not finish in 50000ms"); |
| 373 | |
| 374 | // NccStrategy has selected one path as the best. |
| 375 | // When we reduce the RTT of the other path, ideally it should be selected as the best face. |
| 376 | // However, this won't happen due to a weakness in NccStrategy. |
ashiqopu | 3ad49db | 2018-10-20 22:38:47 +0000 | [diff] [blame] | 377 | // See https://redmine.named-data.net/issues/3411#note-4 |
Hila Ben Abraham | 39a79be | 2016-03-30 22:00:55 -0700 | [diff] [blame] | 378 | shared_ptr<Face> bestFace1 = getMeInfo()->bestFace.lock(); |
| 379 | if (bestFace1.get() == &linkAB->getFace(nodeA)) { |
| 380 | linkCD->setDelay(time::milliseconds(5)); |
| 381 | } |
| 382 | else if (bestFace1.get() == &linkAC->getFace(nodeA)) { |
| 383 | linkBD->setDelay(time::milliseconds(5)); |
| 384 | } |
| 385 | else { |
| 386 | BOOST_FAIL("unexpected best face"); |
| 387 | } |
| 388 | |
| 389 | bool isNewBestChosen = false; |
| 390 | for (int i = 0; i < 10000; ++i) { |
| 391 | this->advanceClocks(time::milliseconds(5)); |
| 392 | auto meInfo = getMeInfo(); |
| 393 | if (meInfo == nullptr) { |
| 394 | continue; |
| 395 | } |
| 396 | |
| 397 | if (meInfo->bestFace.lock() != bestFace1) { |
| 398 | isNewBestChosen = true; |
| 399 | BOOST_TEST_MESSAGE("new best face is found after " << (i * 5) << "ms"); |
| 400 | break; |
| 401 | } |
| 402 | } |
| 403 | BOOST_CHECK_MESSAGE(isNewBestChosen, "new best face is not found in 50000ms"); // expected failure |
| 404 | } |
| 405 | |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 406 | BOOST_AUTO_TEST_SUITE_END() // TestNccStrategy |
| 407 | BOOST_AUTO_TEST_SUITE_END() // Fw |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 408 | |
Junxiao Shi | d9ee45c | 2014-02-27 15:38:11 -0700 | [diff] [blame] | 409 | } // namespace tests |
Spyridon Mastorakis | d0381c0 | 2015-02-19 10:29:41 -0800 | [diff] [blame] | 410 | } // namespace fw |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 411 | } // namespace nfd |