blob: f5aee2b7ac17033075c4d895d57683efc98b8d80 [file] [log] [blame]
Ashlesh Gawande214032e2020-12-22 17:20:14 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/*
Ashlesh Gawande5d93aa52020-06-13 18:57:45 -07003 * Copyright (c) 2014-2021, The University of Memphis,
Ashlesh Gawande214032e2020-12-22 17:20:14 -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/>.
20 */
21
22#include "hello-protocol.hpp"
23#include "nlsr.hpp"
24#include "test-common.hpp"
25
26namespace nlsr {
27namespace test {
28
29class HelloProtocolFixture : public UnitTestTimeFixture
30{
31public:
32 HelloProtocolFixture()
33 : face(m_ioService, m_keyChain, {true, true})
34 , conf(face, m_keyChain)
35 , confProcessor(conf)
36 , adjList(conf.getAdjacencyList())
37 , nlsr(face, m_keyChain, conf)
38 , helloProtocol(nlsr.m_helloProtocol)
39 {
40 ndn::FaceUri faceUri("udp4://10.0.0.1:6363");
41 Adjacent adj1(ACTIVE_NEIGHBOR, faceUri, 10, Adjacent::STATUS_ACTIVE, 0, 300);
42 adjList.insert(adj1);
43 }
44
45 int
46 checkHelloInterests(ndn::Name name)
47 {
48 int sent = 0;
49 for (const auto& i : face.sentInterests) {
50 if (name == i.getName().getPrefix(4)) {
51 sent++;
52 }
53 }
54 return sent;
55 }
56
57 void
58 checkHelloInterestTimeout()
59 {
60 helloProtocol.sendHelloInterest(ndn::Name(ACTIVE_NEIGHBOR));
61 this->advanceClocks(10_ms);
62 BOOST_CHECK_EQUAL(checkHelloInterests(ACTIVE_NEIGHBOR), 1);
63 this->advanceClocks(4_s);
64 BOOST_CHECK_EQUAL(checkHelloInterests(ACTIVE_NEIGHBOR), 2);
65 this->advanceClocks(4_s);
66 BOOST_CHECK_EQUAL(checkHelloInterests(ACTIVE_NEIGHBOR), 3);
67 if (conf.getHyperbolicState() == HYPERBOLIC_STATE_ON) {
68 BOOST_CHECK_EQUAL(nlsr.m_routingTable.m_isRouteCalculationScheduled, false);
69 }
70 else {
Ashlesh Gawande5d93aa52020-06-13 18:57:45 -070071 BOOST_CHECK_EQUAL(nlsr.m_lsdb.m_isBuildAdjLsaScheduled, false);
Ashlesh Gawande214032e2020-12-22 17:20:14 -050072 }
73 BOOST_CHECK_EQUAL(adjList.findAdjacent(ndn::Name(ACTIVE_NEIGHBOR))->getStatus(),
74 Adjacent::STATUS_ACTIVE);
75
76 this->advanceClocks(4_s);
77 BOOST_CHECK_EQUAL(checkHelloInterests(ACTIVE_NEIGHBOR), 3);
78 if (conf.getHyperbolicState() == HYPERBOLIC_STATE_ON) {
79 BOOST_CHECK_EQUAL(nlsr.m_routingTable.m_isRouteCalculationScheduled, true);
80 }
81 else {
Ashlesh Gawande5d93aa52020-06-13 18:57:45 -070082 BOOST_CHECK_EQUAL(nlsr.m_lsdb.m_isBuildAdjLsaScheduled, true);
Ashlesh Gawande214032e2020-12-22 17:20:14 -050083 }
84 BOOST_CHECK_EQUAL(adjList.findAdjacent(ndn::Name(ACTIVE_NEIGHBOR))->getStatus(),
85 Adjacent::STATUS_INACTIVE);
86 }
87
88public:
89 ndn::util::DummyClientFace face;
90 ConfParameter conf;
91 DummyConfFileProcessor confProcessor;
92 AdjacencyList& adjList;
93 Nlsr nlsr;
94 HelloProtocol& helloProtocol;
95 const std::string ACTIVE_NEIGHBOR = "/ndn/site/%C1.Router/router-active";
96};
97
98BOOST_FIXTURE_TEST_SUITE(HelloProtocol, HelloProtocolFixture)
99
100BOOST_AUTO_TEST_CASE(Basic)
101{
102 this->advanceClocks(10_s);
103 checkPrefixRegistered(face, "/ndn/site/%C1.Router/this-router/nlsr/INFO");
104 face.sentInterests.clear();
105}
106
107BOOST_AUTO_TEST_CASE(HelloInterestTimeoutLS) // #5139
108{
109 checkHelloInterestTimeout();
110}
111
112BOOST_AUTO_TEST_CASE(HelloInterestTimeoutHR) // #5139
113{
114 conf.setHyperbolicState(HYPERBOLIC_STATE_ON);
115 checkHelloInterestTimeout();
116}
117
118BOOST_AUTO_TEST_SUITE_END()
119
120} // namespace test
121} // namespace nlsr