Klaus Schneider | cf1d0c0 | 2019-08-31 19:05:40 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /* |
| 3 | * Copyright (c) 2014-2019, Regents of the University of California, |
| 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. |
| 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/random-strategy.hpp" |
| 27 | #include "common/global.hpp" |
| 28 | |
| 29 | #include "tests/test-common.hpp" |
| 30 | #include "tests/daemon/face/dummy-face.hpp" |
| 31 | #include "strategy-tester.hpp" |
| 32 | |
| 33 | namespace nfd { |
| 34 | namespace fw { |
| 35 | namespace tests { |
| 36 | |
| 37 | using RandomStrategyTester = StrategyTester<RandomStrategy>; |
| 38 | NFD_REGISTER_STRATEGY(RandomStrategyTester); |
| 39 | |
| 40 | BOOST_AUTO_TEST_SUITE(Fw) |
| 41 | |
| 42 | class RandomStrategyFixture : public GlobalIoTimeFixture |
| 43 | { |
| 44 | protected: |
| 45 | RandomStrategyFixture() |
Davide Pesavento | a4abfb0 | 2019-10-06 16:02:56 -0400 | [diff] [blame^] | 46 | : face1(make_shared<DummyFace>()) |
Klaus Schneider | cf1d0c0 | 2019-08-31 19:05:40 -0700 | [diff] [blame] | 47 | , face2(make_shared<DummyFace>()) |
| 48 | , face3(make_shared<DummyFace>()) |
| 49 | , face4(make_shared<DummyFace>()) |
| 50 | { |
Davide Pesavento | a4abfb0 | 2019-10-06 16:02:56 -0400 | [diff] [blame^] | 51 | faceTable.add(face1); |
| 52 | faceTable.add(face2); |
| 53 | faceTable.add(face3); |
| 54 | faceTable.add(face4); |
Klaus Schneider | cf1d0c0 | 2019-08-31 19:05:40 -0700 | [diff] [blame] | 55 | } |
| 56 | |
Davide Pesavento | a4abfb0 | 2019-10-06 16:02:56 -0400 | [diff] [blame^] | 57 | protected: |
| 58 | FaceTable faceTable; |
| 59 | Forwarder forwarder{faceTable}; |
| 60 | RandomStrategyTester strategy{forwarder}; |
| 61 | Fib& fib{forwarder.getFib()}; |
| 62 | Pit& pit{forwarder.getPit()}; |
Klaus Schneider | cf1d0c0 | 2019-08-31 19:05:40 -0700 | [diff] [blame] | 63 | |
| 64 | shared_ptr<DummyFace> face1; |
| 65 | shared_ptr<DummyFace> face2; |
| 66 | shared_ptr<DummyFace> face3; |
| 67 | shared_ptr<DummyFace> face4; |
| 68 | }; |
| 69 | |
| 70 | BOOST_FIXTURE_TEST_SUITE(TestRandomStrategy, RandomStrategyFixture) |
| 71 | |
| 72 | BOOST_AUTO_TEST_CASE(Forward) |
| 73 | { |
| 74 | fib::Entry& fibEntry = *fib.insert(Name()).first; |
| 75 | fib.addOrUpdateNextHop(fibEntry, *face2, 10); |
| 76 | fib.addOrUpdateNextHop(fibEntry, *face3, 20); |
| 77 | fib.addOrUpdateNextHop(fibEntry, *face4, 30); |
| 78 | |
| 79 | // Send 1000 Interests |
| 80 | for (int i = 0; i < 1000; ++i) { |
| 81 | shared_ptr<Interest> interest = makeInterest("ndn:/BzgFBchqA" + std::to_string(i)); |
| 82 | shared_ptr<pit::Entry> pitEntry = pit.insert(*interest).first; |
| 83 | |
Md Ashiqur Rahman | c88d2d4 | 2019-08-28 20:19:47 +0000 | [diff] [blame] | 84 | pitEntry->insertOrUpdateInRecord(*face1, *interest); |
Klaus Schneider | cf1d0c0 | 2019-08-31 19:05:40 -0700 | [diff] [blame] | 85 | strategy.afterReceiveInterest(FaceEndpoint(*face1, 0), *interest, pitEntry); |
| 86 | } |
| 87 | |
| 88 | // Map outFaceId -> SentInterests. |
| 89 | std::unordered_map<int, int> faceInterestMap; |
| 90 | for (const auto& i : strategy.sendInterestHistory) { |
| 91 | faceInterestMap[i.outFaceId]++; |
| 92 | } |
| 93 | |
| 94 | // Check that all faces received at least 10 Interest |
| 95 | for (const auto& x : faceInterestMap) { |
| 96 | BOOST_CHECK_GE(x.second, 10); |
| 97 | } |
| 98 | } |
| 99 | |
| 100 | BOOST_AUTO_TEST_SUITE_END() // TestRandomStrategy |
| 101 | BOOST_AUTO_TEST_SUITE_END() // Fw |
| 102 | |
| 103 | } // namespace tests |
| 104 | } // namespace fw |
| 105 | } // namespace nfd |