blob: 0a4c5222fd1ac6aeb89d6c4a77535e7b985fa050 [file] [log] [blame]
Vince Lehman41b173e2015-05-07 14:13:26 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Ashlesh Gawande0421bc62020-05-08 20:42:19 -07002/*
Davide Pesavento658fd852023-05-10 22:15:03 -04003 * Copyright (c) 2014-2023, The University of Memphis,
Vince Lehman41b173e2015-05-07 14:13:26 -05004 * 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 Gawande0421bc62020-05-08 20:42:19 -070020 */
Vince Lehman41b173e2015-05-07 14:13:26 -050021
22#include "route/routing-table-calculator.hpp"
23
24#include "adjacency-list.hpp"
Davide Pesavento8de8a8b2022-05-12 01:26:43 -040025#include "adjacent.hpp"
Vince Lehman41b173e2015-05-07 14:13:26 -050026#include "lsdb.hpp"
27#include "nlsr.hpp"
Vince Lehman41b173e2015-05-07 14:13:26 -050028#include "route/map.hpp"
29#include "route/routing-table.hpp"
30
Davide Pesavento8de8a8b2022-05-12 01:26:43 -040031#include "tests/io-key-chain-fixture.hpp"
32#include "tests/test-common.hpp"
Vince Lehman41b173e2015-05-07 14:13:26 -050033
34namespace nlsr {
35namespace test {
36
Davide Pesavento658fd852023-05-10 22:15:03 -040037constexpr ndn::time::system_clock::time_point MAX_TIME = ndn::time::system_clock::time_point::max();
Vince Lehman41b173e2015-05-07 14:13:26 -050038
Davide Pesavento8de8a8b2022-05-12 01:26:43 -040039class LinkStateCalculatorFixture : public IoKeyChainFixture
Vince Lehman41b173e2015-05-07 14:13:26 -050040{
41public:
42 LinkStateCalculatorFixture()
Davide Pesavento8de8a8b2022-05-12 01:26:43 -040043 : face(m_io, m_keyChain)
Saurab Dulal427e0122019-11-28 11:58:02 -060044 , conf(face, m_keyChain)
Ashlesh Gawande85998a12017-12-07 22:22:13 -060045 , confProcessor(conf)
46 , nlsr(face, m_keyChain, conf)
47 , routingTable(nlsr.m_routingTable)
48 , lsdb(nlsr.m_lsdb)
Vince Lehman41b173e2015-05-07 14:13:26 -050049 {
50 setUpTopology();
51 }
52
53 // Triangle topology with routers A, B, C connected
54 void setUpTopology()
55 {
Muktadir Chowdhuryf04f9892017-08-20 20:42:56 -050056 Adjacent a(ROUTER_A_NAME, ndn::FaceUri(ROUTER_A_FACE), 0, Adjacent::STATUS_ACTIVE, 0, 0);
57 Adjacent b(ROUTER_B_NAME, ndn::FaceUri(ROUTER_B_FACE), 0, Adjacent::STATUS_ACTIVE, 0, 0);
58 Adjacent c(ROUTER_C_NAME, ndn::FaceUri(ROUTER_C_FACE), 0, Adjacent::STATUS_ACTIVE, 0, 0);
Vince Lehman41b173e2015-05-07 14:13:26 -050059
60 // Router A
61 b.setLinkCost(LINK_AB_COST);
62 c.setLinkCost(LINK_AC_COST);
63
Ashlesh Gawande85998a12017-12-07 22:22:13 -060064 AdjacencyList& adjacencyListA = conf.getAdjacencyList();
Vince Lehman41b173e2015-05-07 14:13:26 -050065 adjacencyListA.insert(b);
66 adjacencyListA.insert(c);
67
Ashlesh Gawanded02c3882015-12-29 16:02:51 -060068 AdjLsa adjA(a.getName(), 1, MAX_TIME, 2, adjacencyListA);
Ashlesh Gawande57a87172020-05-09 19:47:06 -070069 lsdb.installLsa(std::make_shared<AdjLsa>(adjA));
Vince Lehman41b173e2015-05-07 14:13:26 -050070
71 // Router B
72 a.setLinkCost(LINK_AB_COST);
73 c.setLinkCost(LINK_BC_COST);
74
75 AdjacencyList adjacencyListB;
76 adjacencyListB.insert(a);
77 adjacencyListB.insert(c);
78
Ashlesh Gawanded02c3882015-12-29 16:02:51 -060079 AdjLsa adjB(b.getName(), 1, MAX_TIME, 2, adjacencyListB);
Ashlesh Gawande57a87172020-05-09 19:47:06 -070080 lsdb.installLsa(std::make_shared<AdjLsa>(adjB));
Vince Lehman41b173e2015-05-07 14:13:26 -050081
82 // Router C
83 a.setLinkCost(LINK_AC_COST);
84 b.setLinkCost(LINK_BC_COST);
85
86 AdjacencyList adjacencyListC;
87 adjacencyListC.insert(a);
88 adjacencyListC.insert(b);
89
Ashlesh Gawanded02c3882015-12-29 16:02:51 -060090 AdjLsa adjC(c.getName(), 1, MAX_TIME, 2, adjacencyListC);
Ashlesh Gawande57a87172020-05-09 19:47:06 -070091 lsdb.installLsa(std::make_shared<AdjLsa>(adjC));
Vince Lehman41b173e2015-05-07 14:13:26 -050092
Ashlesh Gawande57a87172020-05-09 19:47:06 -070093 auto lsaRange = lsdb.getLsdbIterator<AdjLsa>();
94 map.createFromAdjLsdb(lsaRange.first, lsaRange.second);
Vince Lehman41b173e2015-05-07 14:13:26 -050095 }
96
97public:
Junxiao Shi43f37a02023-08-09 00:09:00 +000098 ndn::DummyClientFace face;
Ashlesh Gawande85998a12017-12-07 22:22:13 -060099 ConfParameter conf;
100 DummyConfFileProcessor confProcessor;
Vince Lehman41b173e2015-05-07 14:13:26 -0500101 Nlsr nlsr;
102 Map map;
103
104 RoutingTable& routingTable;
105 Lsdb& lsdb;
106
107 static const ndn::Name ROUTER_A_NAME;
108 static const ndn::Name ROUTER_B_NAME;
109 static const ndn::Name ROUTER_C_NAME;
110
111 static const std::string ROUTER_A_FACE;
112 static const std::string ROUTER_B_FACE;
113 static const std::string ROUTER_C_FACE;
114
115 static const double LINK_AB_COST;
116 static const double LINK_AC_COST;
117 static const double LINK_BC_COST;
118};
119
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600120const ndn::Name LinkStateCalculatorFixture::ROUTER_A_NAME = "/ndn/site/%C1.Router/this-router";
121const ndn::Name LinkStateCalculatorFixture::ROUTER_B_NAME = "/ndn/site/%C1.Router/b";
122const ndn::Name LinkStateCalculatorFixture::ROUTER_C_NAME = "/ndn/site/%C1.Router/c";
Vince Lehman41b173e2015-05-07 14:13:26 -0500123
Nick Gordone9733ed2017-04-26 10:48:39 -0500124const std::string LinkStateCalculatorFixture::ROUTER_A_FACE = "udp4://10.0.0.1";
125const std::string LinkStateCalculatorFixture::ROUTER_B_FACE = "udp4://10.0.0.2";
126const std::string LinkStateCalculatorFixture::ROUTER_C_FACE = "udp4://10.0.0.3";
Vince Lehman41b173e2015-05-07 14:13:26 -0500127
128const double LinkStateCalculatorFixture::LINK_AB_COST = 5;
129const double LinkStateCalculatorFixture::LINK_AC_COST = 10;
130const double LinkStateCalculatorFixture::LINK_BC_COST = 17;
131
132BOOST_FIXTURE_TEST_SUITE(TestLinkStateRoutingCalculator, LinkStateCalculatorFixture)
133
134BOOST_AUTO_TEST_CASE(Basic)
135{
136 LinkStateRoutingTableCalculator calculator(map.getMapSize());
Ashlesh Gawande57a87172020-05-09 19:47:06 -0700137 calculator.calculatePath(map, routingTable, conf, lsdb);
Vince Lehman41b173e2015-05-07 14:13:26 -0500138
139 RoutingTableEntry* entryB = routingTable.findRoutingTableEntry(ROUTER_B_NAME);
140 BOOST_REQUIRE(entryB != nullptr);
141
142 // Router A should be able to get to B through B and to B through C
143 NexthopList& bHopList = entryB->getNexthopList();
144 BOOST_REQUIRE_EQUAL(bHopList.getNextHops().size(), 2);
145
146 for (const NextHop& hop : bHopList) {
147 std::string faceUri = hop.getConnectingFaceUri();
148 uint64_t cost = hop.getRouteCostAsAdjustedInteger();
149
150 BOOST_CHECK((faceUri == ROUTER_B_FACE && cost == LINK_AB_COST) ||
151 (faceUri == ROUTER_C_FACE && cost == LINK_AC_COST + LINK_BC_COST));
152
153 }
154
155 RoutingTableEntry* entryC = routingTable.findRoutingTableEntry(ROUTER_C_NAME);
156 BOOST_REQUIRE(entryC != nullptr);
157
158 // Router A should be able to get to C through C and to C through B
159 NexthopList& cHopList = entryC->getNexthopList();
160 BOOST_REQUIRE_EQUAL(cHopList.getNextHops().size(), 2);
161
162 for (const NextHop& hop : cHopList) {
163 std::string faceUri = hop.getConnectingFaceUri();
164 uint64_t cost = hop.getRouteCostAsAdjustedInteger();
165
166 BOOST_CHECK((faceUri == ROUTER_C_FACE && cost == LINK_AC_COST) ||
167 (faceUri == ROUTER_B_FACE && cost == LINK_AB_COST + LINK_BC_COST));
168 }
169}
170
171BOOST_AUTO_TEST_CASE(Asymmetric)
172{
173 // Asymmetric link cost between B and C
Ashlesh Gawande57a87172020-05-09 19:47:06 -0700174 auto lsa = nlsr.m_lsdb.findLsa<AdjLsa>(ndn::Name(ROUTER_B_NAME));
Vince Lehman41b173e2015-05-07 14:13:26 -0500175 BOOST_REQUIRE(lsa != nullptr);
176
Ashlesh Gawande0db4d4d2020-02-05 20:30:02 -0800177 auto c = lsa->m_adl.findAdjacent(ROUTER_C_NAME);
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600178 BOOST_REQUIRE(c != conf.getAdjacencyList().end());
Vince Lehman41b173e2015-05-07 14:13:26 -0500179
180 double higherLinkCost = LINK_BC_COST + 1;
181 c->setLinkCost(higherLinkCost);
182
183 // Calculation should consider the link between B and C as having cost = higherLinkCost
184 LinkStateRoutingTableCalculator calculator(map.getMapSize());
Ashlesh Gawande57a87172020-05-09 19:47:06 -0700185 calculator.calculatePath(map, routingTable, conf, lsdb);
Vince Lehman41b173e2015-05-07 14:13:26 -0500186
187 RoutingTableEntry* entryB = routingTable.findRoutingTableEntry(ROUTER_B_NAME);
188 BOOST_REQUIRE(entryB != nullptr);
189
190 // Router A should be able to get to B through B and to B through C
191 NexthopList& bHopList = entryB->getNexthopList();
192 BOOST_REQUIRE_EQUAL(bHopList.getNextHops().size(), 2);
193
194 for (const NextHop& hop : bHopList) {
195 std::string faceUri = hop.getConnectingFaceUri();
196 uint64_t cost = hop.getRouteCostAsAdjustedInteger();
197
198 BOOST_CHECK((faceUri == ROUTER_B_FACE && cost == LINK_AB_COST) ||
199 (faceUri == ROUTER_C_FACE && cost == LINK_AC_COST + higherLinkCost));
200
201 }
202
203 RoutingTableEntry* entryC = routingTable.findRoutingTableEntry(ROUTER_C_NAME);
204 BOOST_REQUIRE(entryC != nullptr);
205
206 // Router A should be able to get to C through C and to C through B
207 NexthopList& cHopList = entryC->getNexthopList();
208 BOOST_REQUIRE_EQUAL(cHopList.getNextHops().size(), 2);
209
210 for (const NextHop& hop : cHopList) {
211 std::string faceUri = hop.getConnectingFaceUri();
212 uint64_t cost = hop.getRouteCostAsAdjustedInteger();
213
214 BOOST_CHECK((faceUri == ROUTER_C_FACE && cost == LINK_AC_COST) ||
215 (faceUri == ROUTER_B_FACE && cost == LINK_AB_COST + higherLinkCost));
216 }
217}
218
dulalsaurabd0816a32019-07-26 13:11:24 +0000219BOOST_AUTO_TEST_CASE(NonAdjacentCost)
Vince Lehman41b173e2015-05-07 14:13:26 -0500220{
221 // Asymmetric link cost between B and C
Ashlesh Gawande57a87172020-05-09 19:47:06 -0700222 auto lsa = nlsr.m_lsdb.findLsa<AdjLsa>(ROUTER_B_NAME);
Vince Lehman41b173e2015-05-07 14:13:26 -0500223 BOOST_REQUIRE(lsa != nullptr);
224
Ashlesh Gawande0db4d4d2020-02-05 20:30:02 -0800225 auto c = lsa->m_adl.findAdjacent(ROUTER_C_NAME);
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600226 BOOST_REQUIRE(c != conf.getAdjacencyList().end());
Vince Lehman41b173e2015-05-07 14:13:26 -0500227
dulalsaurabd0816a32019-07-26 13:11:24 +0000228 // Break the link between B - C by setting it to a NON_ADJACENT_COST.
229 c->setLinkCost(Adjacent::NON_ADJACENT_COST);
Vince Lehman41b173e2015-05-07 14:13:26 -0500230
231 // Calculation should consider the link between B and C as down
232 LinkStateRoutingTableCalculator calculator(map.getMapSize());
Ashlesh Gawande57a87172020-05-09 19:47:06 -0700233 calculator.calculatePath(map, routingTable, conf, lsdb);
Vince Lehman41b173e2015-05-07 14:13:26 -0500234
235 // Router A should be able to get to B through B but not through C
236 RoutingTableEntry* entryB = routingTable.findRoutingTableEntry(ROUTER_B_NAME);
237 BOOST_REQUIRE(entryB != nullptr);
238
dulalsaurabd0816a32019-07-26 13:11:24 +0000239 auto bHopList = entryB->getNexthopList();
Vince Lehman41b173e2015-05-07 14:13:26 -0500240 BOOST_REQUIRE_EQUAL(bHopList.getNextHops().size(), 1);
241
dulalsaurabd0816a32019-07-26 13:11:24 +0000242 const auto nextHopForB = bHopList.getNextHops().begin();
Vince Lehman41b173e2015-05-07 14:13:26 -0500243
dulalsaurabd0816a32019-07-26 13:11:24 +0000244 BOOST_CHECK(nextHopForB->getConnectingFaceUri() == ROUTER_B_FACE &&
245 nextHopForB->getRouteCostAsAdjustedInteger() == LINK_AB_COST);
Vince Lehman41b173e2015-05-07 14:13:26 -0500246
247 // Router A should be able to get to C through C but not through B
dulalsaurabd0816a32019-07-26 13:11:24 +0000248 auto entryC = routingTable.findRoutingTableEntry(ROUTER_C_NAME);
Vince Lehman41b173e2015-05-07 14:13:26 -0500249 BOOST_REQUIRE(entryC != nullptr);
250
251 NexthopList& cHopList = entryC->getNexthopList();
252 BOOST_REQUIRE_EQUAL(cHopList.getNextHops().size(), 1);
253
dulalsaurabd0816a32019-07-26 13:11:24 +0000254 const auto nextHopForC = cHopList.getNextHops().begin();
Vince Lehman41b173e2015-05-07 14:13:26 -0500255
dulalsaurabd0816a32019-07-26 13:11:24 +0000256 BOOST_CHECK(nextHopForC->getConnectingFaceUri() == ROUTER_C_FACE &&
257 nextHopForC->getRouteCostAsAdjustedInteger() == LINK_AC_COST);
258}
259
260BOOST_AUTO_TEST_CASE(AsymmetricZeroCostLink)
261{
262 // Asymmetric and zero link cost between B - C, and B - A.
Ashlesh Gawande57a87172020-05-09 19:47:06 -0700263 auto lsaB = nlsr.m_lsdb.findLsa<AdjLsa>(ROUTER_B_NAME);
dulalsaurabd0816a32019-07-26 13:11:24 +0000264 BOOST_REQUIRE(lsaB != nullptr);
265
Ashlesh Gawande0db4d4d2020-02-05 20:30:02 -0800266 auto c = lsaB->m_adl.findAdjacent(ROUTER_C_NAME);
dulalsaurabd0816a32019-07-26 13:11:24 +0000267 BOOST_REQUIRE(c != conf.getAdjacencyList().end());
268 // Re-adjust link cost to 0 from B-C. However, this should not set B-C cost 0 because C-B
269 // cost is greater that 0 i.e. 17
270 c->setLinkCost(0);
271
Ashlesh Gawande0db4d4d2020-02-05 20:30:02 -0800272 auto a = lsaB->m_adl.findAdjacent(ROUTER_A_NAME);
dulalsaurabd0816a32019-07-26 13:11:24 +0000273 BOOST_REQUIRE(a != conf.getAdjacencyList().end());
274
Ashlesh Gawande57a87172020-05-09 19:47:06 -0700275 auto lsaA = nlsr.m_lsdb.findLsa<AdjLsa>(ROUTER_A_NAME);
dulalsaurabd0816a32019-07-26 13:11:24 +0000276 BOOST_REQUIRE(lsaA != nullptr);
277
Ashlesh Gawande0db4d4d2020-02-05 20:30:02 -0800278 auto b = lsaA->m_adl.findAdjacent(ROUTER_B_NAME);
dulalsaurabd0816a32019-07-26 13:11:24 +0000279 BOOST_REQUIRE(b != conf.getAdjacencyList().end());
280
281 // Re-adjust link cost to 0 from both the direction i.e B-A and A-B
282 a->setLinkCost(0);
283 b->setLinkCost(0);
284
285 // Calculation should consider 0 link-cost between B and C
286 LinkStateRoutingTableCalculator calculator(map.getMapSize());
Ashlesh Gawande57a87172020-05-09 19:47:06 -0700287 calculator.calculatePath(map, routingTable, conf, lsdb);
dulalsaurabd0816a32019-07-26 13:11:24 +0000288
289 // Router A should be able to get to B through B and C
290 RoutingTableEntry* entryB = routingTable.findRoutingTableEntry(ROUTER_B_NAME);
291 BOOST_REQUIRE(entryB != nullptr);
292
293 // Node can have neighbors with zero cost, so the nexthop count should be 2
294 NexthopList& bHopList = entryB->getNexthopList();
295 BOOST_REQUIRE_EQUAL(bHopList.getNextHops().size(), 2);
296
297 const auto nextHopForB = bHopList.getNextHops().begin();
298 // Check if the next hop via B is through A or not after the cost adjustment
299 BOOST_CHECK(nextHopForB->getConnectingFaceUri() == ROUTER_B_FACE &&
300 nextHopForB->getRouteCostAsAdjustedInteger() == 0);
301
302 // Router A should be able to get to C through C and B
303 auto entryC = routingTable.findRoutingTableEntry(ROUTER_C_NAME);
304 BOOST_REQUIRE(entryC != nullptr);
305
306 NexthopList& cHopList = entryC->getNexthopList();
307 BOOST_REQUIRE_EQUAL(cHopList.getNextHops().size(), 2);
308
309 const auto nextHopForC = cHopList.getNextHops().begin();
310 // Check if the nextHop from C is via A or not
311 BOOST_CHECK(nextHopForC->getConnectingFaceUri() == ROUTER_C_FACE &&
312 nextHopForC->getRouteCostAsAdjustedInteger() == LINK_AC_COST);
313
Vince Lehman41b173e2015-05-07 14:13:26 -0500314}
315
316BOOST_AUTO_TEST_SUITE_END()
317
Nick Gordonfad8e252016-08-11 14:21:38 -0500318} // namespace test
319} // namespace nlsr