| /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| /** |
| * Copyright (c) 2014, Regents of the University of California, |
| * Arizona Board of Regents, |
| * Colorado State University, |
| * University Pierre & Marie Curie, Sorbonne University, |
| * Washington University in St. Louis, |
| * Beijing Institute of Technology, |
| * The University of Memphis |
| * |
| * This file is part of NFD (Named Data Networking Forwarding Daemon). |
| * See AUTHORS.md for complete list of NFD authors and contributors. |
| * |
| * NFD is free software: you can redistribute it and/or modify it under the terms |
| * of the GNU General Public License as published by the Free Software Foundation, |
| * either version 3 of the License, or (at your option) any later version. |
| * |
| * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| * PURPOSE. See the GNU General Public License for more details. |
| * |
| * You should have received a copy of the GNU General Public License along with |
| * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| */ |
| |
| #include "rib/rib.hpp" |
| |
| #include "tests/test-common.hpp" |
| #include "fib-updates-common.hpp" |
| |
| namespace nfd { |
| namespace rib { |
| namespace tests { |
| |
| BOOST_FIXTURE_TEST_SUITE(FibUpdates, FibUpdatesFixture) |
| |
| BOOST_AUTO_TEST_SUITE(EraseFace) |
| |
| BOOST_AUTO_TEST_CASE(WithInheritedFace_Root) |
| { |
| insertFaceEntry("/", 1, 0, 10, ndn::nfd::ROUTE_FLAG_CHILD_INHERIT); |
| insertFaceEntry("/a", 1, 0, 50, ndn::nfd::ROUTE_FLAG_CHILD_INHERIT); |
| insertFaceEntry("/a/b", 2, 0, 75, 0); |
| |
| // Clear updates generated from previous insertions |
| rib.clearFibUpdates(); |
| |
| // Should generate 1 updates: 1 to remove face 1 from / |
| eraseFaceEntry("/", 1, 0); |
| |
| Rib::FibUpdateList updates = getSortedFibUpdates(); |
| BOOST_REQUIRE_EQUAL(updates.size(), 1); |
| |
| Rib::FibUpdateList::const_iterator update = updates.begin(); |
| BOOST_CHECK_EQUAL((*update)->name, "/"); |
| BOOST_CHECK_EQUAL((*update)->faceId, 1); |
| BOOST_CHECK_EQUAL((*update)->action, FibUpdate::REMOVE_NEXTHOP); |
| } |
| |
| BOOST_AUTO_TEST_CASE(WithInheritedFace) |
| { |
| insertFaceEntry("/a", 5, 0, 10, ndn::nfd::ROUTE_FLAG_CHILD_INHERIT); |
| insertFaceEntry("/a", 5, 255, 5, ndn::nfd::ROUTE_FLAG_CHILD_INHERIT); |
| insertFaceEntry("/a", 2, 0, 20, 0); |
| insertFaceEntry("/a/b", 3, 0, 5, 0); |
| |
| // /a should have face 5 with cost 10; /a/b should have face 3 with cost 5 and |
| // face 5 with cost 10 |
| eraseFaceEntry("/a", 5, 255); |
| |
| // Clear updates generated from previous insertions |
| rib.clearFibUpdates(); |
| |
| // Should generate 2 updates: 1 to remove face 3 from /a/b and one to remove inherited face. |
| eraseFaceEntry("/a/b", 3, 0); |
| |
| Rib::FibUpdateList updates = getSortedFibUpdates(); |
| BOOST_REQUIRE_EQUAL(updates.size(), 2); |
| |
| Rib::FibUpdateList::const_iterator update = updates.begin(); |
| BOOST_CHECK_EQUAL((*update)->name, "/a/b"); |
| BOOST_CHECK_EQUAL((*update)->faceId, 3); |
| BOOST_CHECK_EQUAL((*update)->action, FibUpdate::REMOVE_NEXTHOP); |
| |
| ++update; |
| BOOST_CHECK_EQUAL((*update)->name, "/a/b"); |
| BOOST_CHECK_EQUAL((*update)->faceId, 5); |
| BOOST_CHECK_EQUAL((*update)->action, FibUpdate::REMOVE_NEXTHOP); |
| } |
| |
| BOOST_AUTO_TEST_CASE(MultipleFaces) |
| { |
| insertFaceEntry("/a", 5, 0, 10, 0); |
| insertFaceEntry("/a", 5, 255, 5, 0); |
| |
| // Clear updates generated from previous insertions |
| rib.clearFibUpdates(); |
| |
| // Should generate 1 updates: 1 to update cost to 10 for /a |
| eraseFaceEntry("/a", 5, 255); |
| |
| Rib::FibUpdateList updates = getSortedFibUpdates(); |
| BOOST_REQUIRE_EQUAL(updates.size(), 1); |
| |
| Rib::FibUpdateList::const_iterator update = updates.begin(); |
| BOOST_CHECK_EQUAL((*update)->name, "/a"); |
| BOOST_CHECK_EQUAL((*update)->faceId, 5); |
| BOOST_CHECK_EQUAL((*update)->cost, 10); |
| BOOST_CHECK_EQUAL((*update)->action, FibUpdate::ADD_NEXTHOP); |
| } |
| |
| BOOST_AUTO_TEST_CASE(NoFlags_NoCaptureChange_NoCaptureOnRoute) |
| { |
| insertFaceEntry("/", 1, 0, 5, ndn::nfd::ROUTE_FLAG_CHILD_INHERIT); |
| insertFaceEntry("/a", 2, 0, 10, 0); |
| insertFaceEntry("/a/b", 3, 0, 10, 0); |
| insertFaceEntry("/a/c", 1, 0, 100, 0); |
| insertFaceEntry("/a", 1, 128, 50, 0); |
| |
| // Clear updates generated from previous insertions |
| rib.clearFibUpdates(); |
| |
| // Should generate 1 updates: 1 to update cost for /a |
| eraseFaceEntry("/a", 1, 128); |
| |
| Rib::FibUpdateList updates = getSortedFibUpdates(); |
| BOOST_REQUIRE_EQUAL(updates.size(), 1); |
| |
| Rib::FibUpdateList::const_iterator update = updates.begin(); |
| BOOST_CHECK_EQUAL((*update)->name, "/a"); |
| BOOST_CHECK_EQUAL((*update)->faceId, 1); |
| BOOST_CHECK_EQUAL((*update)->cost, 5); |
| BOOST_CHECK_EQUAL((*update)->action, FibUpdate::ADD_NEXTHOP); |
| } |
| |
| BOOST_AUTO_TEST_CASE(MakeRibEmpty) |
| { |
| insertFaceEntry("/", 1, 0, 5, ndn::nfd::ROUTE_FLAG_CHILD_INHERIT); |
| |
| // Clear updates generated from previous insertions |
| rib.clearFibUpdates(); |
| |
| // Should generate 1 updates: 1 to remove face from / |
| eraseFaceEntry("/", 1, 0); |
| |
| Rib::FibUpdateList updates = getSortedFibUpdates(); |
| BOOST_REQUIRE_EQUAL(updates.size(), 1); |
| |
| Rib::FibUpdateList::const_iterator update = updates.begin(); |
| BOOST_CHECK_EQUAL((*update)->name, "/"); |
| BOOST_CHECK_EQUAL((*update)->faceId, 1); |
| BOOST_CHECK_EQUAL((*update)->action, FibUpdate::REMOVE_NEXTHOP); |
| } |
| |
| BOOST_AUTO_TEST_CASE(NoFlags_NoCaptureChange_CaptureOnRoute) |
| { |
| insertFaceEntry("/", 1, 0, 5, ndn::nfd::ROUTE_FLAG_CHILD_INHERIT); |
| insertFaceEntry("/a", 2, 0, 10, ndn::nfd::ROUTE_FLAG_CAPTURE); |
| insertFaceEntry("/a/b", 3, 0, 10, 0); |
| insertFaceEntry("/a/c", 1, 0, 100, 0); |
| insertFaceEntry("/a", 1, 128, 50, 0); |
| |
| // Clear updates generated from previous insertions |
| rib.clearFibUpdates(); |
| |
| // Should generate 1 updates: 1 to remove face from /a |
| eraseFaceEntry("/a", 1, 128); |
| |
| Rib::FibUpdateList updates = getSortedFibUpdates(); |
| BOOST_REQUIRE_EQUAL(updates.size(), 1); |
| |
| Rib::FibUpdateList::const_iterator update = updates.begin(); |
| BOOST_CHECK_EQUAL((*update)->name, "/a"); |
| BOOST_CHECK_EQUAL((*update)->faceId, 1); |
| BOOST_CHECK_EQUAL((*update)->action, FibUpdate::REMOVE_NEXTHOP); |
| } |
| |
| BOOST_AUTO_TEST_CASE(BothFlags_NoCaptureChange_CaptureOnRoute) |
| { |
| insertFaceEntry("/", 1, 0, 5, ndn::nfd::ROUTE_FLAG_CHILD_INHERIT); |
| insertFaceEntry("/a", 2, 0, 10, ndn::nfd::ROUTE_FLAG_CAPTURE); |
| insertFaceEntry("/a/b", 3, 0, 10, 0); |
| insertFaceEntry("/a/c", 1, 0, 100, 0); |
| insertFaceEntry("/a", 1, 128, 50, (ndn::nfd::ROUTE_FLAG_CHILD_INHERIT | |
| ndn::nfd::ROUTE_FLAG_CAPTURE)); |
| |
| // Clear updates generated from previous insertions |
| rib.clearFibUpdates(); |
| |
| // Should generate 2 updates: 1 to remove face1 from /a and |
| // 1 to remove face1 to /a/b |
| eraseFaceEntry("/a", 1, 128); |
| |
| Rib::FibUpdateList updates = getSortedFibUpdates(); |
| BOOST_REQUIRE_EQUAL(updates.size(), 2); |
| |
| Rib::FibUpdateList::const_iterator update = updates.begin(); |
| BOOST_CHECK_EQUAL((*update)->name, "/a"); |
| BOOST_CHECK_EQUAL((*update)->faceId, 1); |
| BOOST_CHECK_EQUAL((*update)->action, FibUpdate::REMOVE_NEXTHOP); |
| |
| ++update; |
| BOOST_CHECK_EQUAL((*update)->name, "/a/b"); |
| BOOST_CHECK_EQUAL((*update)->faceId, 1); |
| BOOST_CHECK_EQUAL((*update)->action, FibUpdate::REMOVE_NEXTHOP); |
| } |
| |
| BOOST_AUTO_TEST_CASE(BothFlags_CaptureChange_NoCaptureOnRoute) |
| { |
| insertFaceEntry("/", 1, 0, 5, ndn::nfd::ROUTE_FLAG_CHILD_INHERIT); |
| insertFaceEntry("/a", 2, 0, 10, 0); |
| insertFaceEntry("/a/b", 3, 0, 10, 0); |
| insertFaceEntry("/a/c", 1, 0, 100, 0); |
| insertFaceEntry("/a", 1, 128, 50, (ndn::nfd::ROUTE_FLAG_CHILD_INHERIT | |
| ndn::nfd::ROUTE_FLAG_CAPTURE)); |
| |
| // Clear updates generated from previous insertions |
| rib.clearFibUpdates(); |
| |
| // Should generate 2 updates: 1 to add face1 to /a and |
| // 1 to add face1 to /a/b |
| eraseFaceEntry("/a", 1, 128); |
| |
| Rib::FibUpdateList updates = getSortedFibUpdates(); |
| BOOST_REQUIRE_EQUAL(updates.size(), 2); |
| |
| Rib::FibUpdateList::const_iterator update = updates.begin(); |
| BOOST_CHECK_EQUAL((*update)->name, "/a"); |
| BOOST_CHECK_EQUAL((*update)->faceId, 1); |
| BOOST_CHECK_EQUAL((*update)->cost, 5); |
| BOOST_CHECK_EQUAL((*update)->action, FibUpdate::ADD_NEXTHOP); |
| |
| ++update; |
| BOOST_CHECK_EQUAL((*update)->name, "/a/b"); |
| BOOST_CHECK_EQUAL((*update)->faceId, 1); |
| BOOST_CHECK_EQUAL((*update)->cost, 5); |
| BOOST_CHECK_EQUAL((*update)->action, FibUpdate::ADD_NEXTHOP); |
| } |
| |
| BOOST_AUTO_TEST_CASE(ChildInherit_NoCaptureChange_NoCaptureOnRoute) |
| { |
| insertFaceEntry("/", 1, 0, 5, ndn::nfd::ROUTE_FLAG_CHILD_INHERIT); |
| insertFaceEntry("/a", 2, 0, 10, 0); |
| insertFaceEntry("/a/b", 3, 0, 10, 0); |
| insertFaceEntry("/a/c", 1, 0, 100, 0); |
| insertFaceEntry("/a", 1, 128, 50, ndn::nfd::ROUTE_FLAG_CHILD_INHERIT); |
| |
| // Clear updates generated from previous insertions |
| rib.clearFibUpdates(); |
| |
| // Should generate 2 updates: 2 to add face1 to /a and /a/b |
| eraseFaceEntry("/a", 1, 128); |
| |
| Rib::FibUpdateList updates = getSortedFibUpdates(); |
| BOOST_REQUIRE_EQUAL(updates.size(), 2); |
| |
| Rib::FibUpdateList::const_iterator update = updates.begin(); |
| BOOST_CHECK_EQUAL((*update)->name, "/a"); |
| BOOST_CHECK_EQUAL((*update)->faceId, 1); |
| BOOST_CHECK_EQUAL((*update)->cost, 5); |
| BOOST_CHECK_EQUAL((*update)->action, FibUpdate::ADD_NEXTHOP); |
| |
| ++update; |
| BOOST_CHECK_EQUAL((*update)->name, "/a/b"); |
| BOOST_CHECK_EQUAL((*update)->faceId, 1); |
| BOOST_CHECK_EQUAL((*update)->cost, 5); |
| BOOST_CHECK_EQUAL((*update)->action, FibUpdate::ADD_NEXTHOP); |
| } |
| |
| BOOST_AUTO_TEST_CASE(ChildInherit_NoCaptureChange_CaptureOnRoute) |
| { |
| insertFaceEntry("/", 1, 0, 5, ndn::nfd::ROUTE_FLAG_CHILD_INHERIT); |
| insertFaceEntry("/a", 2, 0, 10, ndn::nfd::ROUTE_FLAG_CAPTURE); |
| insertFaceEntry("/a/b", 3, 0, 10, 0); |
| insertFaceEntry("/a/c", 1, 0, 100, 0); |
| insertFaceEntry("/a", 1, 128, 50, ndn::nfd::ROUTE_FLAG_CHILD_INHERIT); |
| |
| // Clear updates generated from previous insertions |
| rib.clearFibUpdates(); |
| |
| // Should generate 2 updates: 2 to remove face 1 from /a and /a/b |
| eraseFaceEntry("/a", 1, 128); |
| |
| Rib::FibUpdateList updates = getSortedFibUpdates(); |
| BOOST_REQUIRE_EQUAL(updates.size(), 2); |
| |
| Rib::FibUpdateList::const_iterator update = updates.begin(); |
| BOOST_CHECK_EQUAL((*update)->name, "/a"); |
| BOOST_CHECK_EQUAL((*update)->faceId, 1); |
| BOOST_CHECK_EQUAL((*update)->action, FibUpdate::REMOVE_NEXTHOP); |
| |
| ++update; |
| BOOST_CHECK_EQUAL((*update)->name, "/a/b"); |
| BOOST_CHECK_EQUAL((*update)->faceId, 1); |
| BOOST_CHECK_EQUAL((*update)->action, FibUpdate::REMOVE_NEXTHOP); |
| } |
| |
| BOOST_AUTO_TEST_CASE(Capture_CaptureChange_NoCaptureOnRoute) |
| { |
| insertFaceEntry("/", 1, 0, 5, ndn::nfd::ROUTE_FLAG_CHILD_INHERIT); |
| insertFaceEntry("/a", 2, 0, 10, 0); |
| insertFaceEntry("/a/b", 3, 0, 10, 0); |
| insertFaceEntry("/a/c", 1, 0, 100, 0); |
| insertFaceEntry("/a", 1, 128, 50, ndn::nfd::ROUTE_FLAG_CAPTURE); |
| |
| // Clear updates generated from previous insertions |
| rib.clearFibUpdates(); |
| |
| // Should generate 2 updates: 1 to update cost on /a and |
| // 1 to add face1 to /a/b |
| eraseFaceEntry("/a", 1 ,128); |
| |
| Rib::FibUpdateList updates = getSortedFibUpdates(); |
| BOOST_REQUIRE_EQUAL(updates.size(), 2); |
| |
| Rib::FibUpdateList::const_iterator update = updates.begin(); |
| BOOST_CHECK_EQUAL((*update)->name, "/a"); |
| BOOST_CHECK_EQUAL((*update)->faceId, 1); |
| BOOST_CHECK_EQUAL((*update)->cost, 5); |
| BOOST_CHECK_EQUAL((*update)->action, FibUpdate::ADD_NEXTHOP); |
| |
| ++update; |
| BOOST_CHECK_EQUAL((*update)->name, "/a/b"); |
| BOOST_CHECK_EQUAL((*update)->faceId, 1); |
| BOOST_CHECK_EQUAL((*update)->cost, 5); |
| BOOST_CHECK_EQUAL((*update)->action, FibUpdate::ADD_NEXTHOP); |
| } |
| |
| BOOST_AUTO_TEST_CASE(Capture_NoCaptureChange_CaptureOnRoute) |
| { |
| insertFaceEntry("/", 1, 0, 5, ndn::nfd::ROUTE_FLAG_CHILD_INHERIT); |
| insertFaceEntry("/a", 2, 0, 10, ndn::nfd::ROUTE_FLAG_CAPTURE); |
| insertFaceEntry("/a/b", 3, 0, 10, 0); |
| insertFaceEntry("/a/c", 1, 0, 100, 0); |
| insertFaceEntry("/a", 1, 128, 50, ndn::nfd::ROUTE_FLAG_CAPTURE); |
| |
| // Clear updates generated from previous insertions |
| rib.clearFibUpdates(); |
| |
| // Should generate 1 updates: 1 to remove face from /a |
| eraseFaceEntry("/a", 1, 128); |
| |
| Rib::FibUpdateList updates = getSortedFibUpdates(); |
| BOOST_REQUIRE_EQUAL(updates.size(), 1); |
| |
| Rib::FibUpdateList::const_iterator update = updates.begin(); |
| BOOST_CHECK_EQUAL((*update)->name, "/a"); |
| BOOST_CHECK_EQUAL((*update)->faceId, 1); |
| BOOST_CHECK_EQUAL((*update)->action, FibUpdate::REMOVE_NEXTHOP); |
| } |
| |
| BOOST_AUTO_TEST_CASE(EraseFaceById) |
| { |
| insertFaceEntry("/", 1, 0, 5, ndn::nfd::ROUTE_FLAG_CHILD_INHERIT); |
| insertFaceEntry("/a", 2, 0, 10, 0); |
| insertFaceEntry("/a/b", 3, 0, 10, 0); |
| insertFaceEntry("/a/c", 4, 0, 100, 0); |
| insertFaceEntry("/a", 1, 128, 50, ndn::nfd::ROUTE_FLAG_CHILD_INHERIT); |
| |
| // Clear updates generated from previous insertions |
| rib.clearFibUpdates(); |
| |
| // Should generate 4 updates: 4 to remove face ID 1 from /, /a, /a/b, and /a/c |
| rib.erase(1); |
| |
| Rib::FibUpdateList updates = getSortedFibUpdates(); |
| BOOST_REQUIRE_EQUAL(updates.size(), 4); |
| |
| Rib::FibUpdateList::const_iterator update = updates.begin(); |
| BOOST_CHECK_EQUAL((*update)->name, "/"); |
| BOOST_CHECK_EQUAL((*update)->faceId, 1); |
| BOOST_CHECK_EQUAL((*update)->action, FibUpdate::REMOVE_NEXTHOP); |
| |
| ++update; |
| BOOST_CHECK_EQUAL((*update)->name, "/a"); |
| BOOST_CHECK_EQUAL((*update)->faceId, 1); |
| BOOST_CHECK_EQUAL((*update)->action, FibUpdate::REMOVE_NEXTHOP); |
| |
| ++update; |
| BOOST_CHECK_EQUAL((*update)->name, "/a/b"); |
| BOOST_CHECK_EQUAL((*update)->faceId, 1); |
| BOOST_CHECK_EQUAL((*update)->action, FibUpdate::REMOVE_NEXTHOP); |
| |
| ++update; |
| BOOST_CHECK_EQUAL((*update)->name, "/a/c"); |
| BOOST_CHECK_EQUAL((*update)->faceId, 1); |
| BOOST_CHECK_EQUAL((*update)->action, FibUpdate::REMOVE_NEXTHOP); |
| } |
| |
| BOOST_AUTO_TEST_SUITE_END() // EraseFace |
| |
| BOOST_AUTO_TEST_SUITE_END() // FibUpdates |
| |
| } // namespace tests |
| } // namespace rib |
| } // namespace nfd |