Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Davide Pesavento | 1586aff | 2017-02-19 23:17:51 -0500 | [diff] [blame^] | 3 | * Copyright (c) 2014-2017, Regents of the University of California, |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -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. |
| 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 | */ |
Davide Pesavento | 97210d5 | 2016-10-14 15:45:48 +0200 | [diff] [blame] | 25 | |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 26 | #include "mgmt/fib-manager.hpp" |
Davide Pesavento | 97210d5 | 2016-10-14 15:45:48 +0200 | [diff] [blame] | 27 | #include "table/fib-nexthop.hpp" |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 28 | |
Yanbiao Li | df846e5 | 2016-01-30 21:53:47 -0800 | [diff] [blame] | 29 | #include "nfd-manager-common-fixture.hpp" |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 30 | #include "../face/dummy-face.hpp" |
Davide Pesavento | 97210d5 | 2016-10-14 15:45:48 +0200 | [diff] [blame] | 31 | |
Junxiao Shi | cbc8e94 | 2016-09-06 03:17:45 +0000 | [diff] [blame] | 32 | #include <ndn-cxx/lp/tags.hpp> |
Junxiao Shi | 25c6ce4 | 2016-09-09 13:49:59 +0000 | [diff] [blame] | 33 | #include <ndn-cxx/mgmt/nfd/fib-entry.hpp> |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 34 | |
| 35 | namespace nfd { |
| 36 | namespace tests { |
| 37 | |
Davide Pesavento | 1586aff | 2017-02-19 23:17:51 -0500 | [diff] [blame^] | 38 | using ndn::nullopt; |
| 39 | |
Yanbiao Li | df846e5 | 2016-01-30 21:53:47 -0800 | [diff] [blame] | 40 | class FibManagerFixture : public NfdManagerCommonFixture |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 41 | { |
| 42 | public: |
| 43 | FibManagerFixture() |
| 44 | : m_fib(m_forwarder.getFib()) |
| 45 | , m_faceTable(m_forwarder.getFaceTable()) |
Junxiao Shi | 9ddf1b5 | 2016-08-22 03:58:55 +0000 | [diff] [blame] | 46 | , m_manager(m_fib, m_faceTable, m_dispatcher, *m_authenticator) |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 47 | { |
Junxiao Shi | 9ddf1b5 | 2016-08-22 03:58:55 +0000 | [diff] [blame] | 48 | setTopPrefix(); |
Yanbiao Li | df846e5 | 2016-01-30 21:53:47 -0800 | [diff] [blame] | 49 | setPrivilege("fib"); |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 50 | } |
| 51 | |
| 52 | public: // for test |
Davide Pesavento | 1586aff | 2017-02-19 23:17:51 -0500 | [diff] [blame^] | 53 | static ControlParameters |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 54 | makeParameters(const Name& name, const FaceId& id) |
| 55 | { |
| 56 | return ControlParameters().setName(name).setFaceId(id); |
| 57 | } |
| 58 | |
Davide Pesavento | 1586aff | 2017-02-19 23:17:51 -0500 | [diff] [blame^] | 59 | static ControlParameters |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 60 | makeParameters(const Name& name, const FaceId& id, const uint32_t& cost) |
| 61 | { |
| 62 | return ControlParameters().setName(name).setFaceId(id).setCost(cost); |
| 63 | } |
| 64 | |
| 65 | FaceId |
| 66 | addFace() |
| 67 | { |
| 68 | auto face = make_shared<DummyFace>(); |
| 69 | m_faceTable.add(face); |
| 70 | advanceClocks(time::milliseconds(1), 10); |
| 71 | m_responses.clear(); // clear all event notifications, if any |
| 72 | return face->getId(); |
| 73 | } |
| 74 | |
| 75 | public: // for check |
| 76 | enum class CheckNextHopResult |
| 77 | { |
| 78 | OK, |
| 79 | NO_FIB_ENTRY, |
| 80 | WRONG_N_NEXTHOPS, |
| 81 | NO_NEXTHOP, |
| 82 | WRONG_COST |
Davide Pesavento | 1586aff | 2017-02-19 23:17:51 -0500 | [diff] [blame^] | 83 | }; |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 84 | |
| 85 | /** |
| 86 | * @brief check whether the nexthop record is added / removed properly |
| 87 | * |
Davide Pesavento | 1586aff | 2017-02-19 23:17:51 -0500 | [diff] [blame^] | 88 | * @param expectedNNextHops use nullopt to skip this check |
| 89 | * @param faceId use nullopt to skip NextHopRecord checks |
| 90 | * @param expectedCost use nullopt to skip this check |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 91 | * |
| 92 | * @retval OK FIB entry is found by exact match and has the expected number of nexthops; |
| 93 | * NextHopRe record for faceId is found and has the expected cost |
| 94 | * @retval NO_FIB_ENTRY FIB entry is not found |
| 95 | * @retval WRONG_N_NEXTHOPS FIB entry is found but has wrong number of nexthops |
| 96 | * @retval NO_NEXTHOP NextHopRecord for faceId is not found |
| 97 | * @retval WRONG_COST NextHopRecord for faceId has wrong cost |
| 98 | */ |
| 99 | CheckNextHopResult |
Davide Pesavento | 1586aff | 2017-02-19 23:17:51 -0500 | [diff] [blame^] | 100 | checkNextHop(const Name& prefix, |
| 101 | ndn::optional<size_t> expectedNNextHops = nullopt, |
| 102 | ndn::optional<FaceId> faceId = nullopt, |
| 103 | ndn::optional<uint64_t> expectedCost = nullopt) const |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 104 | { |
Junxiao Shi | a6de429 | 2016-07-12 02:08:10 +0000 | [diff] [blame] | 105 | const fib::Entry* entry = m_fib.findExactMatch(prefix); |
| 106 | if (entry == nullptr) { |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 107 | return CheckNextHopResult::NO_FIB_ENTRY; |
| 108 | } |
| 109 | |
Davide Pesavento | 1586aff | 2017-02-19 23:17:51 -0500 | [diff] [blame^] | 110 | const auto& nextHops = entry->getNextHops(); |
| 111 | if (expectedNNextHops && nextHops.size() != *expectedNNextHops) { |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 112 | return CheckNextHopResult::WRONG_N_NEXTHOPS; |
| 113 | } |
| 114 | |
Davide Pesavento | 1586aff | 2017-02-19 23:17:51 -0500 | [diff] [blame^] | 115 | if (faceId) { |
Davide Pesavento | 97210d5 | 2016-10-14 15:45:48 +0200 | [diff] [blame] | 116 | for (const auto& record : nextHops) { |
Davide Pesavento | 1586aff | 2017-02-19 23:17:51 -0500 | [diff] [blame^] | 117 | if (record.getFace().getId() == *faceId) { |
| 118 | if (expectedCost && record.getCost() != *expectedCost) |
Davide Pesavento | 97210d5 | 2016-10-14 15:45:48 +0200 | [diff] [blame] | 119 | return CheckNextHopResult::WRONG_COST; |
| 120 | else |
| 121 | return CheckNextHopResult::OK; |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 122 | } |
| 123 | } |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 124 | return CheckNextHopResult::NO_NEXTHOP; |
| 125 | } |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 126 | return CheckNextHopResult::OK; |
| 127 | } |
| 128 | |
| 129 | protected: |
| 130 | Fib& m_fib; |
| 131 | FaceTable& m_faceTable; |
| 132 | FibManager m_manager; |
| 133 | }; |
| 134 | |
| 135 | std::ostream& |
Davide Pesavento | 1586aff | 2017-02-19 23:17:51 -0500 | [diff] [blame^] | 136 | operator<<(std::ostream& os, FibManagerFixture::CheckNextHopResult result) |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 137 | { |
| 138 | switch (result) { |
| 139 | case FibManagerFixture::CheckNextHopResult::OK: |
Davide Pesavento | 1586aff | 2017-02-19 23:17:51 -0500 | [diff] [blame^] | 140 | return os << "OK"; |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 141 | case FibManagerFixture::CheckNextHopResult::NO_FIB_ENTRY: |
Davide Pesavento | 1586aff | 2017-02-19 23:17:51 -0500 | [diff] [blame^] | 142 | return os << "NO_FIB_ENTRY"; |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 143 | case FibManagerFixture::CheckNextHopResult::WRONG_N_NEXTHOPS: |
Davide Pesavento | 1586aff | 2017-02-19 23:17:51 -0500 | [diff] [blame^] | 144 | return os << "WRONG_N_NEXTHOPS"; |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 145 | case FibManagerFixture::CheckNextHopResult::NO_NEXTHOP: |
Davide Pesavento | 1586aff | 2017-02-19 23:17:51 -0500 | [diff] [blame^] | 146 | return os << "NO_NEXTHOP"; |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 147 | case FibManagerFixture::CheckNextHopResult::WRONG_COST: |
Davide Pesavento | 1586aff | 2017-02-19 23:17:51 -0500 | [diff] [blame^] | 148 | return os << "WRONG_COST"; |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 149 | }; |
| 150 | |
Davide Pesavento | 1586aff | 2017-02-19 23:17:51 -0500 | [diff] [blame^] | 151 | return os << static_cast<int>(result); |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 152 | } |
| 153 | |
Davide Pesavento | 97210d5 | 2016-10-14 15:45:48 +0200 | [diff] [blame] | 154 | BOOST_AUTO_TEST_SUITE(Mgmt) |
| 155 | BOOST_FIXTURE_TEST_SUITE(TestFibManager, FibManagerFixture) |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 156 | |
| 157 | BOOST_AUTO_TEST_SUITE(AddNextHop) |
| 158 | |
| 159 | BOOST_AUTO_TEST_CASE(UnknownFaceId) |
| 160 | { |
| 161 | auto command = makeControlCommandRequest("/localhost/nfd/fib/add-nexthop", |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 162 | makeParameters("hello", face::FACEID_NULL, 101)); |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 163 | receiveInterest(command); |
| 164 | BOOST_REQUIRE_EQUAL(m_responses.size(), 1); |
| 165 | |
| 166 | // check response |
| 167 | BOOST_CHECK_EQUAL(checkResponse(0, command->getName(), ControlResponse(410, "Face not found")), |
| 168 | CheckResponseResult::OK); |
| 169 | |
| 170 | // double check that the next hop was not added |
Davide Pesavento | 1586aff | 2017-02-19 23:17:51 -0500 | [diff] [blame^] | 171 | BOOST_CHECK_EQUAL(checkNextHop("/hello", nullopt, nullopt, 101), CheckNextHopResult::NO_FIB_ENTRY); |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 172 | } |
| 173 | |
| 174 | BOOST_AUTO_TEST_CASE(ImplicitFaceId) |
| 175 | { |
| 176 | auto face1 = addFace(); |
| 177 | auto face2 = addFace(); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 178 | BOOST_REQUIRE_NE(face1, face::INVALID_FACEID); |
| 179 | BOOST_REQUIRE_NE(face2, face::INVALID_FACEID); |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 180 | |
| 181 | Name expectedName; |
| 182 | ControlResponse expectedResponse; |
| 183 | auto testAddNextHop = [&] (ControlParameters parameters, const FaceId& faceId) { |
| 184 | auto command = makeControlCommandRequest("/localhost/nfd/fib/add-nexthop", parameters, |
Junxiao Shi | 0de23a2 | 2015-12-03 20:07:02 +0000 | [diff] [blame] | 185 | [&faceId] (shared_ptr<Interest> interest) { |
| 186 | interest->setTag(make_shared<lp::IncomingFaceIdTag>(faceId)); |
| 187 | }); |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 188 | m_responses.clear(); |
| 189 | expectedName = command->getName(); |
| 190 | expectedResponse = makeResponse(200, "Success", parameters.setFaceId(faceId)); |
| 191 | receiveInterest(command); |
| 192 | }; |
| 193 | |
| 194 | testAddNextHop(ControlParameters().setName("/hello").setCost(100).setFaceId(0), face1); |
| 195 | BOOST_REQUIRE_EQUAL(m_responses.size(), 1); |
| 196 | BOOST_CHECK_EQUAL(checkResponse(0, expectedName, expectedResponse), CheckResponseResult::OK); |
| 197 | BOOST_CHECK_EQUAL(checkNextHop("/hello", 1, face1, 100), CheckNextHopResult::OK); |
| 198 | |
| 199 | testAddNextHop(ControlParameters().setName("/hello").setCost(100), face2); |
| 200 | BOOST_REQUIRE_EQUAL(m_responses.size(), 1); |
| 201 | BOOST_CHECK_EQUAL(checkResponse(0, expectedName, expectedResponse), CheckResponseResult::OK); |
| 202 | BOOST_CHECK_EQUAL(checkNextHop("/hello", 2, face2, 100), CheckNextHopResult::OK); |
| 203 | } |
| 204 | |
| 205 | BOOST_AUTO_TEST_CASE(InitialAdd) |
| 206 | { |
| 207 | FaceId addedFaceId = addFace(); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 208 | BOOST_REQUIRE_NE(addedFaceId, face::INVALID_FACEID); |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 209 | |
| 210 | auto parameters = makeParameters("hello", addedFaceId, 101); |
| 211 | auto command = makeControlCommandRequest("/localhost/nfd/fib/add-nexthop", parameters); |
| 212 | |
| 213 | receiveInterest(command); |
| 214 | BOOST_REQUIRE_EQUAL(m_responses.size(), 1); |
| 215 | BOOST_CHECK_EQUAL(checkResponse(0, command->getName(), makeResponse(200, "Success", parameters)), |
| 216 | CheckResponseResult::OK); |
| 217 | BOOST_CHECK_EQUAL(checkNextHop("/hello", 1, addedFaceId, 101), CheckNextHopResult::OK); |
| 218 | } |
| 219 | |
| 220 | BOOST_AUTO_TEST_CASE(ImplicitCost) |
| 221 | { |
| 222 | FaceId addedFaceId = addFace(); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 223 | BOOST_REQUIRE_NE(addedFaceId, face::INVALID_FACEID); |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 224 | |
| 225 | auto originalParameters = ControlParameters().setName("/hello").setFaceId(addedFaceId); |
| 226 | auto parameters = makeParameters("/hello", addedFaceId, 0); |
| 227 | auto command = makeControlCommandRequest("/localhost/nfd/fib/add-nexthop", originalParameters); |
| 228 | |
| 229 | receiveInterest(command); |
| 230 | BOOST_REQUIRE_EQUAL(m_responses.size(), 1); |
| 231 | BOOST_CHECK_EQUAL(checkResponse(0, command->getName(), makeResponse(200, "Success", parameters)), |
| 232 | CheckResponseResult::OK); |
| 233 | BOOST_CHECK_EQUAL(checkNextHop("/hello", 1, addedFaceId, 0), CheckNextHopResult::OK); |
| 234 | } |
| 235 | |
| 236 | BOOST_AUTO_TEST_CASE(AddToExisting) |
| 237 | { |
| 238 | FaceId face = addFace(); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 239 | BOOST_REQUIRE_NE(face, face::INVALID_FACEID); |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 240 | |
| 241 | Name expectedName; |
| 242 | ControlResponse expectedResponse; |
| 243 | auto testAddNextHop = [&] (const ControlParameters& parameters) { |
| 244 | m_responses.clear(); |
| 245 | auto command = makeControlCommandRequest("/localhost/nfd/fib/add-nexthop", parameters); |
| 246 | expectedName = command->getName(); |
| 247 | expectedResponse = makeResponse(200, "Success", parameters); |
| 248 | receiveInterest(command); |
| 249 | }; |
| 250 | |
| 251 | // add initial, succeeds |
| 252 | testAddNextHop(makeParameters("/hello", face, 101)); |
| 253 | BOOST_REQUIRE_EQUAL(m_responses.size(), 1); |
| 254 | BOOST_CHECK_EQUAL(checkResponse(0, expectedName, expectedResponse), CheckResponseResult::OK); |
| 255 | |
| 256 | // add to existing --> update cost, succeeds |
| 257 | testAddNextHop(makeParameters("/hello", face, 102)); |
| 258 | BOOST_REQUIRE_EQUAL(m_responses.size(), 1); |
| 259 | BOOST_CHECK_EQUAL(checkResponse(0, expectedName, expectedResponse), CheckResponseResult::OK); |
| 260 | |
| 261 | BOOST_CHECK_EQUAL(checkNextHop("/hello", 2, face, 102), CheckNextHopResult::WRONG_N_NEXTHOPS); |
| 262 | BOOST_CHECK_EQUAL(checkNextHop("/hello", 1, face, 101), CheckNextHopResult::WRONG_COST); |
| 263 | BOOST_CHECK_EQUAL(checkNextHop("/hello", 1, face, 102), CheckNextHopResult::OK); |
| 264 | } |
| 265 | |
| 266 | BOOST_AUTO_TEST_SUITE_END() // AddNextHop |
| 267 | |
| 268 | BOOST_AUTO_TEST_SUITE(RemoveNextHop) |
| 269 | |
| 270 | BOOST_AUTO_TEST_CASE(Basic) |
| 271 | { |
| 272 | Name expectedName; |
| 273 | ControlResponse expectedResponse; |
| 274 | auto testRemoveNextHop = [&] (const ControlParameters& parameters) { |
| 275 | m_responses.clear(); |
| 276 | auto command = makeControlCommandRequest("/localhost/nfd/fib/remove-nexthop", parameters); |
| 277 | expectedName = command->getName(); |
| 278 | expectedResponse = makeResponse(200, "Success", parameters); |
| 279 | receiveInterest(command); |
| 280 | }; |
| 281 | |
| 282 | FaceId face1 = addFace(); |
| 283 | FaceId face2 = addFace(); |
| 284 | FaceId face3 = addFace(); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 285 | BOOST_REQUIRE_NE(face1, face::INVALID_FACEID); |
| 286 | BOOST_REQUIRE_NE(face2, face::INVALID_FACEID); |
| 287 | BOOST_REQUIRE_NE(face3, face::INVALID_FACEID); |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 288 | |
Junxiao Shi | a6de429 | 2016-07-12 02:08:10 +0000 | [diff] [blame] | 289 | fib::Entry* entry = m_fib.insert("/hello").first; |
| 290 | entry->addNextHop(*m_faceTable.get(face1), 101); |
| 291 | entry->addNextHop(*m_faceTable.get(face2), 202); |
| 292 | entry->addNextHop(*m_faceTable.get(face3), 303); |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 293 | |
| 294 | testRemoveNextHop(makeParameters("/hello", face1)); |
| 295 | BOOST_REQUIRE_EQUAL(m_responses.size(), 1); |
| 296 | BOOST_CHECK_EQUAL(checkResponse(0, expectedName, expectedResponse), CheckResponseResult::OK); |
| 297 | BOOST_CHECK_EQUAL(checkNextHop("/hello", 2, face1, 101), CheckNextHopResult::NO_NEXTHOP); |
| 298 | |
| 299 | testRemoveNextHop(makeParameters("/hello", face2)); |
| 300 | BOOST_REQUIRE_EQUAL(m_responses.size(), 1); |
| 301 | BOOST_CHECK_EQUAL(checkResponse(0, expectedName, expectedResponse), CheckResponseResult::OK); |
| 302 | BOOST_CHECK_EQUAL(checkNextHop("/hello", 1, face2, 202), CheckNextHopResult::NO_NEXTHOP); |
| 303 | |
| 304 | testRemoveNextHop(makeParameters("/hello", face3)); |
| 305 | BOOST_REQUIRE_EQUAL(m_responses.size(), 1); |
| 306 | BOOST_CHECK_EQUAL(checkResponse(0, expectedName, expectedResponse), CheckResponseResult::OK); |
| 307 | BOOST_CHECK_EQUAL(checkNextHop("/hello", 0, face3, 303), CheckNextHopResult::NO_FIB_ENTRY); |
| 308 | } |
| 309 | |
| 310 | BOOST_AUTO_TEST_CASE(PrefixNotFound) |
| 311 | { |
| 312 | FaceId addedFaceId = addFace(); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 313 | BOOST_REQUIRE_NE(addedFaceId, face::INVALID_FACEID); |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 314 | |
| 315 | auto parameters = makeParameters("hello", addedFaceId); |
| 316 | auto command = makeControlCommandRequest("/localhost/nfd/fib/remove-nexthop", parameters); |
| 317 | auto response = makeResponse(200, "Success", parameters); |
| 318 | |
| 319 | receiveInterest(command); |
| 320 | BOOST_REQUIRE_EQUAL(m_responses.size(), 1); |
| 321 | BOOST_CHECK_EQUAL(checkResponse(0, command->getName(), response), CheckResponseResult::OK); |
| 322 | } |
| 323 | |
| 324 | BOOST_AUTO_TEST_CASE(ImplicitFaceId) |
| 325 | { |
| 326 | auto face1 = addFace(); |
| 327 | auto face2 = addFace(); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 328 | BOOST_REQUIRE_NE(face1, face::INVALID_FACEID); |
| 329 | BOOST_REQUIRE_NE(face2, face::INVALID_FACEID); |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 330 | |
| 331 | Name expectedName; |
| 332 | ControlResponse expectedResponse; |
| 333 | auto testWithImplicitFaceId = [&] (ControlParameters parameters, FaceId face) { |
| 334 | m_responses.clear(); |
| 335 | auto command = makeControlCommandRequest("/localhost/nfd/fib/remove-nexthop", parameters, |
Junxiao Shi | 0de23a2 | 2015-12-03 20:07:02 +0000 | [diff] [blame] | 336 | [face] (shared_ptr<Interest> interest) { |
| 337 | interest->setTag(make_shared<lp::IncomingFaceIdTag>(face)); |
| 338 | }); |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 339 | expectedName = command->getName(); |
| 340 | expectedResponse = makeResponse(200, "Success", parameters.setFaceId(face)); |
| 341 | receiveInterest(command); |
| 342 | }; |
| 343 | |
Junxiao Shi | a6de429 | 2016-07-12 02:08:10 +0000 | [diff] [blame] | 344 | fib::Entry* entry = m_fib.insert("/hello").first; |
| 345 | entry->addNextHop(*m_faceTable.get(face1), 101); |
| 346 | entry->addNextHop(*m_faceTable.get(face2), 202); |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 347 | |
| 348 | testWithImplicitFaceId(ControlParameters().setName("/hello").setFaceId(0), face1); |
| 349 | BOOST_REQUIRE_EQUAL(m_responses.size(), 1); |
| 350 | BOOST_CHECK_EQUAL(checkResponse(0, expectedName, expectedResponse), CheckResponseResult::OK); |
| 351 | BOOST_CHECK_EQUAL(checkNextHop("/hello", 1, face1, 101), CheckNextHopResult::NO_NEXTHOP); |
| 352 | |
| 353 | testWithImplicitFaceId(ControlParameters().setName("/hello"), face2); |
| 354 | BOOST_REQUIRE_EQUAL(m_responses.size(), 1); |
| 355 | BOOST_CHECK_EQUAL(checkResponse(0, expectedName, expectedResponse), CheckResponseResult::OK); |
| 356 | BOOST_CHECK_EQUAL(checkNextHop("/hello", 0, face2, 202), CheckNextHopResult::NO_FIB_ENTRY); |
| 357 | } |
| 358 | |
| 359 | BOOST_AUTO_TEST_CASE(RecordNotExist) |
| 360 | { |
| 361 | auto face1 = addFace(); |
| 362 | auto face2 = addFace(); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 363 | BOOST_REQUIRE_NE(face1, face::INVALID_FACEID); |
| 364 | BOOST_REQUIRE_NE(face2, face::INVALID_FACEID); |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 365 | |
| 366 | Name expectedName; |
| 367 | ControlResponse expectedResponse; |
| 368 | auto testRemoveNextHop = [&] (ControlParameters parameters) { |
| 369 | m_responses.clear(); |
| 370 | auto command = makeControlCommandRequest("/localhost/nfd/fib/remove-nexthop", parameters); |
| 371 | expectedName = command->getName(); |
| 372 | expectedResponse = makeResponse(200, "Success", parameters); |
| 373 | receiveInterest(command); |
| 374 | }; |
| 375 | |
Junxiao Shi | a6de429 | 2016-07-12 02:08:10 +0000 | [diff] [blame] | 376 | m_fib.insert("/hello").first->addNextHop(*m_faceTable.get(face1), 101); |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 377 | |
| 378 | testRemoveNextHop(makeParameters("/hello", face2 + 100)); |
| 379 | BOOST_REQUIRE_EQUAL(m_responses.size(), 1); // face does not exist |
| 380 | BOOST_CHECK_EQUAL(checkResponse(0, expectedName, expectedResponse), CheckResponseResult::OK); |
Davide Pesavento | 1586aff | 2017-02-19 23:17:51 -0500 | [diff] [blame^] | 381 | BOOST_CHECK_EQUAL(checkNextHop("/hello", nullopt, face2 + 100), CheckNextHopResult::NO_NEXTHOP); |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 382 | |
| 383 | testRemoveNextHop(makeParameters("/hello", face2)); |
| 384 | BOOST_REQUIRE_EQUAL(m_responses.size(), 1); // record does not exist |
| 385 | BOOST_CHECK_EQUAL(checkResponse(0, expectedName, expectedResponse), CheckResponseResult::OK); |
Davide Pesavento | 1586aff | 2017-02-19 23:17:51 -0500 | [diff] [blame^] | 386 | BOOST_CHECK_EQUAL(checkNextHop("/hello", nullopt, face2), CheckNextHopResult::NO_NEXTHOP); |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 387 | } |
| 388 | |
| 389 | BOOST_AUTO_TEST_SUITE_END() // RemoveNextHop |
| 390 | |
Davide Pesavento | 97210d5 | 2016-10-14 15:45:48 +0200 | [diff] [blame] | 391 | BOOST_AUTO_TEST_SUITE(List) |
| 392 | |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 393 | BOOST_AUTO_TEST_CASE(FibDataset) |
| 394 | { |
| 395 | const size_t nEntries = 108; |
| 396 | std::set<Name> actualPrefixes; |
| 397 | for (size_t i = 0 ; i < nEntries ; i ++) { |
| 398 | Name prefix = Name("test").appendSegment(i); |
| 399 | actualPrefixes.insert(prefix); |
Junxiao Shi | a6de429 | 2016-07-12 02:08:10 +0000 | [diff] [blame] | 400 | fib::Entry* fibEntry = m_fib.insert(prefix).first; |
| 401 | fibEntry->addNextHop(*m_faceTable.get(addFace()), std::numeric_limits<uint8_t>::max() - 1); |
| 402 | fibEntry->addNextHop(*m_faceTable.get(addFace()), std::numeric_limits<uint8_t>::max() - 2); |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 403 | } |
| 404 | |
| 405 | receiveInterest(makeInterest("/localhost/nfd/fib/list")); |
| 406 | |
Davide Pesavento | 1586aff | 2017-02-19 23:17:51 -0500 | [diff] [blame^] | 407 | Block content = concatenateResponses(); |
| 408 | content.parse(); |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 409 | BOOST_REQUIRE_EQUAL(content.elements().size(), nEntries); |
| 410 | |
Davide Pesavento | 1586aff | 2017-02-19 23:17:51 -0500 | [diff] [blame^] | 411 | std::vector<ndn::nfd::FibEntry> receivedRecords, expectedRecords; |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 412 | for (size_t idx = 0; idx < nEntries; ++idx) { |
Davide Pesavento | 1586aff | 2017-02-19 23:17:51 -0500 | [diff] [blame^] | 413 | ndn::nfd::FibEntry decodedEntry(content.elements()[idx]); |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 414 | receivedRecords.push_back(decodedEntry); |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 415 | actualPrefixes.erase(decodedEntry.getPrefix()); |
| 416 | |
| 417 | auto matchedEntry = m_fib.findExactMatch(decodedEntry.getPrefix()); |
| 418 | BOOST_REQUIRE(matchedEntry != nullptr); |
| 419 | |
Davide Pesavento | 1586aff | 2017-02-19 23:17:51 -0500 | [diff] [blame^] | 420 | expectedRecords.emplace_back(); |
| 421 | expectedRecords.back().setPrefix(matchedEntry->getPrefix()); |
| 422 | for (const auto& nh : matchedEntry->getNextHops()) { |
| 423 | expectedRecords.back().addNextHopRecord(ndn::nfd::NextHopRecord() |
| 424 | .setFaceId(nh.getFace().getId()) |
| 425 | .setCost(nh.getCost())); |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 426 | } |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 427 | } |
| 428 | |
| 429 | BOOST_CHECK_EQUAL(actualPrefixes.size(), 0); |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 430 | BOOST_CHECK_EQUAL_COLLECTIONS(receivedRecords.begin(), receivedRecords.end(), |
| 431 | expectedRecords.begin(), expectedRecords.end()); |
| 432 | } |
| 433 | |
Davide Pesavento | 97210d5 | 2016-10-14 15:45:48 +0200 | [diff] [blame] | 434 | BOOST_AUTO_TEST_SUITE_END() // List |
| 435 | |
Yanbiao Li | 711c793 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 436 | BOOST_AUTO_TEST_SUITE_END() // TestFibManager |
| 437 | BOOST_AUTO_TEST_SUITE_END() // Mgmt |
| 438 | |
| 439 | } // namespace tests |
| 440 | } // namespace nfd |