Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Ashlesh Gawande | 0421bc6 | 2020-05-08 20:42:19 -0700 | [diff] [blame^] | 2 | /* |
Saurab Dulal | 427e012 | 2019-11-28 11:58:02 -0600 | [diff] [blame] | 3 | * Copyright (c) 2014-2020, The University of Memphis, |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 4 | * Regents of the University of California, |
| 5 | * Arizona Board of Regents. |
| 6 | * |
| 7 | * This file is part of NLSR (Named-data Link State Routing). |
| 8 | * See AUTHORS.md for complete list of NLSR authors and contributors. |
| 9 | * |
| 10 | * NLSR is free software: you can redistribute it and/or modify it under the terms |
| 11 | * of the GNU General Public License as published by the Free Software Foundation, |
| 12 | * either version 3 of the License, or (at your option) any later version. |
| 13 | * |
| 14 | * NLSR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 15 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 16 | * PURPOSE. See the GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License along with |
| 19 | * NLSR, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
Ashlesh Gawande | 0421bc6 | 2020-05-08 20:42:19 -0700 | [diff] [blame^] | 20 | */ |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 21 | |
laqinfan | 3573185 | 2017-08-08 06:17:39 -0500 | [diff] [blame] | 22 | #include "publisher/dataset-interest-handler.hpp" |
Ashlesh Gawande | 0421bc6 | 2020-05-08 20:42:19 -0700 | [diff] [blame^] | 23 | #include "tlv-nlsr.hpp" |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 24 | |
Davide Pesavento | cb065f1 | 2019-12-27 01:03:34 -0500 | [diff] [blame] | 25 | #include "tests/test-common.hpp" |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 26 | #include "publisher-fixture.hpp" |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 27 | |
Junxiao Shi | 3e5120c | 2016-09-10 16:58:34 +0000 | [diff] [blame] | 28 | #include <ndn-cxx/mgmt/nfd/control-response.hpp> |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 29 | |
| 30 | namespace nlsr { |
| 31 | namespace test { |
| 32 | |
Junxiao Shi | 008c9b1 | 2019-01-13 23:15:56 +0000 | [diff] [blame] | 33 | static void |
laqinfan | d22da51 | 2017-05-25 17:29:53 -0500 | [diff] [blame] | 34 | processDatasetInterest(ndn::util::DummyClientFace& face, |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 35 | std::function<bool(const ndn::Block&)> isSameType) |
| 36 | { |
Junxiao Shi | 008c9b1 | 2019-01-13 23:15:56 +0000 | [diff] [blame] | 37 | face.processEvents(30_ms); |
laqinfan | 3573185 | 2017-08-08 06:17:39 -0500 | [diff] [blame] | 38 | |
laqinfan | d22da51 | 2017-05-25 17:29:53 -0500 | [diff] [blame] | 39 | BOOST_REQUIRE_EQUAL(face.sentData.size(), 1); |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 40 | |
laqinfan | d22da51 | 2017-05-25 17:29:53 -0500 | [diff] [blame] | 41 | ndn::Block parser(face.sentData[0].getContent()); |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 42 | parser.parse(); |
| 43 | |
| 44 | ndn::Block::element_const_iterator it = parser.elements_begin(); |
Ashlesh Gawande | 6b388fc | 2019-09-30 10:14:41 -0500 | [diff] [blame] | 45 | BOOST_CHECK_EQUAL(isSameType(*it++), true); |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 46 | BOOST_CHECK(it == parser.elements_end()); |
| 47 | |
laqinfan | d22da51 | 2017-05-25 17:29:53 -0500 | [diff] [blame] | 48 | face.sentData.clear(); |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 49 | } |
| 50 | |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 51 | BOOST_FIXTURE_TEST_SUITE(PublisherTestLsdbDatasetInterestHandler, PublisherFixture) |
| 52 | |
laqinfan | d22da51 | 2017-05-25 17:29:53 -0500 | [diff] [blame] | 53 | BOOST_AUTO_TEST_CASE(Localhost) |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 54 | { |
Saurab Dulal | 427e012 | 2019-11-28 11:58:02 -0600 | [diff] [blame] | 55 | nlsr::test::checkPrefixRegistered(face, Nlsr::LOCALHOST_PREFIX); |
Ashlesh Gawande | cba0ae2 | 2018-03-27 17:57:56 -0500 | [diff] [blame] | 56 | |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 57 | // Install adjacency LSA |
| 58 | AdjLsa adjLsa; |
Ashlesh Gawande | 0db4d4d | 2020-02-05 20:30:02 -0800 | [diff] [blame] | 59 | adjLsa.m_originRouter = "/RouterA"; |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 60 | addAdjacency(adjLsa, "/RouterA/adjacency1", "udp://face-1", 10); |
| 61 | lsdb.installAdjLsa(adjLsa); |
| 62 | |
Muktadir R Chowdhury | b00dc2a | 2016-11-05 10:48:58 -0600 | [diff] [blame] | 63 | std::vector<double> angles = {20.00, 30.00}; |
| 64 | |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 65 | // Install coordinate LSA |
Muktadir R Chowdhury | b00dc2a | 2016-11-05 10:48:58 -0600 | [diff] [blame] | 66 | CoordinateLsa coordinateLsa = createCoordinateLsa("/RouterA", 10.0, angles); |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 67 | lsdb.installCoordinateLsa(coordinateLsa); |
| 68 | |
| 69 | // Install Name LSA |
| 70 | NameLsa nameLsa; |
Ashlesh Gawande | 0db4d4d | 2020-02-05 20:30:02 -0800 | [diff] [blame] | 71 | nameLsa.m_originRouter = "/RouterA"; |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 72 | nameLsa.addName("/RouterA/name1"); |
| 73 | lsdb.installNameLsa(nameLsa); |
| 74 | |
laqinfan | 3573185 | 2017-08-08 06:17:39 -0500 | [diff] [blame] | 75 | // Install routing table |
| 76 | RoutingTableEntry rte1("desrouter1"); |
| 77 | const ndn::Name& DEST_ROUTER = rte1.getDestination(); |
| 78 | |
| 79 | NextHop nh = createNextHop("udp://face-test1", 10); |
| 80 | |
| 81 | rt1.addNextHop(DEST_ROUTER, nh); |
| 82 | |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 83 | // Request adjacency LSAs |
Junxiao Shi | 008c9b1 | 2019-01-13 23:15:56 +0000 | [diff] [blame] | 84 | face.receive(ndn::Interest("/localhost/nlsr/lsdb/adjacencies").setCanBePrefix(true)); |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 85 | processDatasetInterest(face, |
| 86 | [] (const ndn::Block& block) { return block.type() == ndn::tlv::nlsr::AdjacencyLsa; }); |
| 87 | |
| 88 | // Request coordinate LSAs |
Junxiao Shi | 008c9b1 | 2019-01-13 23:15:56 +0000 | [diff] [blame] | 89 | face.receive(ndn::Interest("/localhost/nlsr/lsdb/coordinates").setCanBePrefix(true)); |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 90 | processDatasetInterest(face, |
| 91 | [] (const ndn::Block& block) { return block.type() == ndn::tlv::nlsr::CoordinateLsa; }); |
| 92 | |
| 93 | // Request Name LSAs |
Junxiao Shi | 008c9b1 | 2019-01-13 23:15:56 +0000 | [diff] [blame] | 94 | face.receive(ndn::Interest("/localhost/nlsr/lsdb/names").setCanBePrefix(true)); |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 95 | processDatasetInterest(face, |
| 96 | [] (const ndn::Block& block) { return block.type() == ndn::tlv::nlsr::NameLsa; }); |
| 97 | |
laqinfan | 3573185 | 2017-08-08 06:17:39 -0500 | [diff] [blame] | 98 | // Request Routing Table |
Junxiao Shi | 008c9b1 | 2019-01-13 23:15:56 +0000 | [diff] [blame] | 99 | face.receive(ndn::Interest("/localhost/nlsr/routing-table").setCanBePrefix(true)); |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 100 | processDatasetInterest(face, |
laqinfan | 3573185 | 2017-08-08 06:17:39 -0500 | [diff] [blame] | 101 | [] (const ndn::Block& block) { |
laqinfan | a073e2e | 2018-01-15 21:17:24 +0000 | [diff] [blame] | 102 | return block.type() == ndn::tlv::nlsr::RoutingTable; }); |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 103 | } |
| 104 | |
laqinfan | d22da51 | 2017-05-25 17:29:53 -0500 | [diff] [blame] | 105 | BOOST_AUTO_TEST_CASE(Routername) |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 106 | { |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 107 | ndn::Name regRouterPrefix(conf.getRouterPrefix()); |
Ashlesh Gawande | cba0ae2 | 2018-03-27 17:57:56 -0500 | [diff] [blame] | 108 | regRouterPrefix.append("nlsr"); |
| 109 | // Should already be added to dispatcher |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 110 | BOOST_CHECK_THROW(nlsr.m_dispatcher.addTopPrefix(regRouterPrefix), std::out_of_range); |
Ashlesh Gawande | cba0ae2 | 2018-03-27 17:57:56 -0500 | [diff] [blame] | 111 | |
Saurab Dulal | 427e012 | 2019-11-28 11:58:02 -0600 | [diff] [blame] | 112 | nlsr::test::checkPrefixRegistered(face,regRouterPrefix); |
Ashlesh Gawande | cba0ae2 | 2018-03-27 17:57:56 -0500 | [diff] [blame] | 113 | |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 114 | // Install adjacencies LSA |
laqinfan | d22da51 | 2017-05-25 17:29:53 -0500 | [diff] [blame] | 115 | AdjLsa adjLsa; |
Ashlesh Gawande | 0db4d4d | 2020-02-05 20:30:02 -0800 | [diff] [blame] | 116 | adjLsa.m_originRouter = "/RouterA"; |
laqinfan | d22da51 | 2017-05-25 17:29:53 -0500 | [diff] [blame] | 117 | addAdjacency(adjLsa, "/RouterA/adjacency1", "udp://face-1", 10); |
| 118 | lsdb.installAdjLsa(adjLsa); |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 119 | |
laqinfan | d22da51 | 2017-05-25 17:29:53 -0500 | [diff] [blame] | 120 | std::vector<double> angles = {20.00, 30.00}; |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 121 | |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 122 | // Install coordinate LSA |
laqinfan | d22da51 | 2017-05-25 17:29:53 -0500 | [diff] [blame] | 123 | CoordinateLsa coordinateLsa = createCoordinateLsa("/RouterA", 10.0, angles); |
| 124 | lsdb.installCoordinateLsa(coordinateLsa); |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 125 | |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 126 | // Install routing table |
laqinfan | 3573185 | 2017-08-08 06:17:39 -0500 | [diff] [blame] | 127 | RoutingTableEntry rte1("desrouter1"); |
| 128 | const ndn::Name& DEST_ROUTER = rte1.getDestination(); |
| 129 | |
| 130 | NextHop nh = createNextHop("udp://face-test1", 10); |
| 131 | |
| 132 | rt1.addNextHop(DEST_ROUTER, nh); |
| 133 | |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 134 | ndn::Name routerName(conf.getRouterPrefix()); |
| 135 | routerName.append("nlsr"); |
| 136 | |
laqinfan | d22da51 | 2017-05-25 17:29:53 -0500 | [diff] [blame] | 137 | // Request adjacency LSAs |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 138 | face.receive(ndn::Interest(ndn::Name(routerName).append("lsdb").append("adjacencies")).setCanBePrefix(true)); |
laqinfan | d22da51 | 2017-05-25 17:29:53 -0500 | [diff] [blame] | 139 | processDatasetInterest(face, |
| 140 | [] (const ndn::Block& block) { return block.type() == ndn::tlv::nlsr::AdjacencyLsa; }); |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 141 | |
laqinfan | d22da51 | 2017-05-25 17:29:53 -0500 | [diff] [blame] | 142 | // Request coordinate LSAs |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 143 | face.receive(ndn::Interest(ndn::Name(routerName).append("lsdb").append("coordinates")).setCanBePrefix(true)); |
laqinfan | d22da51 | 2017-05-25 17:29:53 -0500 | [diff] [blame] | 144 | processDatasetInterest(face, |
| 145 | [] (const ndn::Block& block) { return block.type() == ndn::tlv::nlsr::CoordinateLsa; }); |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 146 | |
laqinfan | d22da51 | 2017-05-25 17:29:53 -0500 | [diff] [blame] | 147 | // Request Name LSAs |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 148 | face.receive(ndn::Interest(ndn::Name(routerName).append("lsdb").append("names")).setCanBePrefix(true)); |
laqinfan | d22da51 | 2017-05-25 17:29:53 -0500 | [diff] [blame] | 149 | processDatasetInterest(face, |
| 150 | [] (const ndn::Block& block) { return block.type() == ndn::tlv::nlsr::NameLsa; }); |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 151 | |
laqinfan | 3573185 | 2017-08-08 06:17:39 -0500 | [diff] [blame] | 152 | // Request Routing Table |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 153 | face.receive(ndn::Interest(ndn::Name(routerName).append("routing-table"))); |
laqinfan | d22da51 | 2017-05-25 17:29:53 -0500 | [diff] [blame] | 154 | processDatasetInterest(face, |
laqinfan | 3573185 | 2017-08-08 06:17:39 -0500 | [diff] [blame] | 155 | [] (const ndn::Block& block) { |
laqinfan | a073e2e | 2018-01-15 21:17:24 +0000 | [diff] [blame] | 156 | return block.type() == ndn::tlv::nlsr::RoutingTable; }); |
Jiewen Tan | a0497d8 | 2015-02-02 21:59:18 -0800 | [diff] [blame] | 157 | } |
| 158 | |
| 159 | BOOST_AUTO_TEST_SUITE_END() |
| 160 | |
| 161 | } // namespace test |
| 162 | } // namespace nlsr |