Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Junxiao Shi | 5200904 | 2018-09-10 12:33:56 +0000 | [diff] [blame] | 2 | /* |
Davide Pesavento | 1b077f6 | 2019-02-19 19:19:44 -0500 | [diff] [blame] | 3 | * Copyright (c) 2014-2019, Regents of the University of California, |
Alexander Afanasyev | 7c10b3b | 2015-01-20 12:24:27 -0800 | [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. |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [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/>. |
| 24 | */ |
| 25 | |
Davide Pesavento | 1b077f6 | 2019-02-19 19:19:44 -0500 | [diff] [blame] | 26 | #ifndef NFD_TESTS_DAEMON_RIB_FIB_UPDATES_COMMON_HPP |
| 27 | #define NFD_TESTS_DAEMON_RIB_FIB_UPDATES_COMMON_HPP |
Davide Pesavento | 22db539 | 2017-04-14 00:56:43 -0400 | [diff] [blame] | 28 | |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 29 | #include "rib/fib-updater.hpp" |
Junxiao Shi | df1dc65 | 2019-08-30 19:03:19 +0000 | [diff] [blame^] | 30 | #include "common/global.hpp" |
Davide Pesavento | e1bdc08 | 2018-10-11 21:20:23 -0400 | [diff] [blame] | 31 | |
Davide Pesavento | 1d12d2f | 2019-03-22 12:44:14 -0400 | [diff] [blame] | 32 | #include "tests/key-chain-fixture.hpp" |
Davide Pesavento | cf7db2f | 2019-03-24 23:17:28 -0400 | [diff] [blame] | 33 | #include "tests/daemon/global-io-fixture.hpp" |
Davide Pesavento | 1b077f6 | 2019-02-19 19:19:44 -0500 | [diff] [blame] | 34 | #include "tests/daemon/rib/create-route.hpp" |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 35 | |
| 36 | #include <ndn-cxx/util/dummy-client-face.hpp> |
| 37 | |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 38 | namespace nfd { |
| 39 | namespace rib { |
| 40 | namespace tests { |
| 41 | |
Davide Pesavento | 14e71f0 | 2019-03-28 17:35:25 -0400 | [diff] [blame] | 42 | using namespace nfd::tests; |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 43 | |
Junxiao Shi | df1dc65 | 2019-08-30 19:03:19 +0000 | [diff] [blame^] | 44 | class MockFibUpdater : public FibUpdater |
| 45 | { |
| 46 | public: |
| 47 | using FibUpdater::FibUpdater; |
| 48 | |
| 49 | void |
| 50 | sortUpdates() |
| 51 | { |
| 52 | updates.sort([] (const auto& lhs, const auto& rhs) { |
| 53 | return std::tie(lhs.name, lhs.faceId, lhs.cost, lhs.action) < |
| 54 | std::tie(rhs.name, rhs.faceId, rhs.cost, rhs.action); |
| 55 | }); |
| 56 | } |
| 57 | |
| 58 | private: |
| 59 | void |
| 60 | sendAddNextHopUpdate(const FibUpdate& update, |
| 61 | const FibUpdateSuccessCallback& onSuccess, |
| 62 | const FibUpdateFailureCallback& onFailure, |
| 63 | uint32_t nTimeouts) override |
| 64 | { |
| 65 | mockUpdate(update, onSuccess, onFailure, nTimeouts); |
| 66 | } |
| 67 | |
| 68 | void |
| 69 | sendRemoveNextHopUpdate(const FibUpdate& update, |
| 70 | const FibUpdateSuccessCallback& onSuccess, |
| 71 | const FibUpdateFailureCallback& onFailure, |
| 72 | uint32_t nTimeouts) override |
| 73 | { |
| 74 | mockUpdate(update, onSuccess, onFailure, nTimeouts); |
| 75 | } |
| 76 | |
| 77 | void |
| 78 | mockUpdate(const FibUpdate& update, |
| 79 | const FibUpdateSuccessCallback& onSuccess, |
| 80 | const FibUpdateFailureCallback& onFailure, |
| 81 | uint32_t nTimeouts) |
| 82 | { |
| 83 | updates.push_back(update); |
| 84 | getGlobalIoService().post([=] { |
| 85 | if (mockSuccess) { |
| 86 | onUpdateSuccess(update, onSuccess, onFailure); |
| 87 | } |
| 88 | else { |
| 89 | ndn::mgmt::ControlResponse resp(504, "mocked failure"); |
| 90 | onUpdateError(update, onSuccess, onFailure, resp, nTimeouts); |
| 91 | } |
| 92 | }); |
| 93 | } |
| 94 | |
| 95 | public: |
| 96 | FibUpdateList updates; |
| 97 | bool mockSuccess = true; |
| 98 | }; |
| 99 | |
Davide Pesavento | 14e71f0 | 2019-03-28 17:35:25 -0400 | [diff] [blame] | 100 | class FibUpdatesFixture : public GlobalIoFixture, public KeyChainFixture |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 101 | { |
| 102 | public: |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 103 | FibUpdatesFixture() |
Davide Pesavento | e1bdc08 | 2018-10-11 21:20:23 -0400 | [diff] [blame] | 104 | : face(g_io, m_keyChain) |
Junxiao Shi | 221b6fe | 2016-07-14 18:21:56 +0000 | [diff] [blame] | 105 | , controller(face, m_keyChain) |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 106 | , fibUpdater(rib, controller) |
| 107 | { |
| 108 | } |
| 109 | |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 110 | void |
Davide Pesavento | 22db539 | 2017-04-14 00:56:43 -0400 | [diff] [blame] | 111 | insertRoute(const Name& name, uint64_t faceId, |
Davide Pesavento | 1b077f6 | 2019-02-19 19:19:44 -0500 | [diff] [blame] | 112 | std::underlying_type_t<ndn::nfd::RouteOrigin> origin, |
| 113 | uint64_t cost, |
| 114 | std::underlying_type_t<ndn::nfd::RouteFlags> flags) |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 115 | { |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 116 | Route route = createRoute(faceId, origin, cost, flags); |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 117 | |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 118 | RibUpdate update; |
| 119 | update.setAction(RibUpdate::REGISTER) |
| 120 | .setName(name) |
| 121 | .setRoute(route); |
| 122 | |
Junxiao Shi | 5200904 | 2018-09-10 12:33:56 +0000 | [diff] [blame] | 123 | rib.beginApplyUpdate(update, nullptr, nullptr); |
Junxiao Shi | df1dc65 | 2019-08-30 19:03:19 +0000 | [diff] [blame^] | 124 | pollIo(); |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 125 | } |
| 126 | |
| 127 | void |
Davide Pesavento | 22db539 | 2017-04-14 00:56:43 -0400 | [diff] [blame] | 128 | eraseRoute(const Name& name, uint64_t faceId, |
Davide Pesavento | 1b077f6 | 2019-02-19 19:19:44 -0500 | [diff] [blame] | 129 | std::underlying_type_t<ndn::nfd::RouteOrigin> origin) |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 130 | { |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 131 | Route route = createRoute(faceId, origin, 0, 0); |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 132 | |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 133 | RibUpdate update; |
| 134 | update.setAction(RibUpdate::UNREGISTER) |
| 135 | .setName(name) |
| 136 | .setRoute(route); |
| 137 | |
Junxiao Shi | 5200904 | 2018-09-10 12:33:56 +0000 | [diff] [blame] | 138 | rib.beginApplyUpdate(update, nullptr, nullptr); |
Junxiao Shi | df1dc65 | 2019-08-30 19:03:19 +0000 | [diff] [blame^] | 139 | pollIo(); |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 140 | } |
| 141 | |
| 142 | void |
| 143 | destroyFace(uint64_t faceId) |
| 144 | { |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 145 | rib.beginRemoveFace(faceId); |
Junxiao Shi | df1dc65 | 2019-08-30 19:03:19 +0000 | [diff] [blame^] | 146 | pollIo(); |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 147 | } |
| 148 | |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 149 | const FibUpdater::FibUpdateList& |
Junxiao Shi | df1dc65 | 2019-08-30 19:03:19 +0000 | [diff] [blame^] | 150 | getFibUpdates() const |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 151 | { |
Junxiao Shi | df1dc65 | 2019-08-30 19:03:19 +0000 | [diff] [blame^] | 152 | return fibUpdater.updates; |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 153 | } |
| 154 | |
Junxiao Shi | df1dc65 | 2019-08-30 19:03:19 +0000 | [diff] [blame^] | 155 | const FibUpdater::FibUpdateList& |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 156 | getSortedFibUpdates() |
| 157 | { |
Junxiao Shi | df1dc65 | 2019-08-30 19:03:19 +0000 | [diff] [blame^] | 158 | fibUpdater.sortUpdates(); |
| 159 | return fibUpdater.updates; |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 160 | } |
| 161 | |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 162 | void |
| 163 | clearFibUpdates() |
| 164 | { |
Junxiao Shi | df1dc65 | 2019-08-30 19:03:19 +0000 | [diff] [blame^] | 165 | fibUpdater.updates.clear(); |
Junxiao Shi | 5200904 | 2018-09-10 12:33:56 +0000 | [diff] [blame] | 166 | } |
| 167 | |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 168 | public: |
Junxiao Shi | 221b6fe | 2016-07-14 18:21:56 +0000 | [diff] [blame] | 169 | ndn::util::DummyClientFace face; |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 170 | ndn::nfd::Controller controller; |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 171 | |
Davide Pesavento | 97210d5 | 2016-10-14 15:45:48 +0200 | [diff] [blame] | 172 | Rib rib; |
Junxiao Shi | df1dc65 | 2019-08-30 19:03:19 +0000 | [diff] [blame^] | 173 | MockFibUpdater fibUpdater; |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 174 | }; |
| 175 | |
| 176 | } // namespace tests |
| 177 | } // namespace rib |
| 178 | } // namespace nfd |
Davide Pesavento | 22db539 | 2017-04-14 00:56:43 -0400 | [diff] [blame] | 179 | |
Davide Pesavento | 1b077f6 | 2019-02-19 19:19:44 -0500 | [diff] [blame] | 180 | #endif // NFD_TESTS_DAEMON_RIB_FIB_UPDATES_COMMON_HPP |