Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Nick Gordon | feae557 | 2017-01-13 12:06:26 -0600 | [diff] [blame] | 3 | * Copyright (c) 2014-2017, The University of Memphis, |
Vince Lehman | c2e51f6 | 2015-01-20 15:03:11 -0600 | [diff] [blame] | 4 | * Regents of the University of California, |
| 5 | * Arizona Board of Regents. |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 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/>. |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 20 | **/ |
| 21 | |
| 22 | #include "test-common.hpp" |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 23 | |
| 24 | #include "nlsr.hpp" |
| 25 | #include "communication/sync-logic-handler.hpp" |
| 26 | |
Muktadir R Chowdhury | c69da0a | 2015-12-18 13:24:38 -0600 | [diff] [blame] | 27 | #include <ndn-cxx/util/dummy-client-face.hpp> |
| 28 | |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 29 | namespace nlsr { |
| 30 | namespace test { |
| 31 | |
dmcoomes | 9f93666 | 2017-03-02 10:33:09 -0600 | [diff] [blame] | 32 | using std::shared_ptr; |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 33 | |
| 34 | class SyncLogicFixture : public BaseFixture |
| 35 | { |
| 36 | public: |
| 37 | SyncLogicFixture() |
dmcoomes | 9f93666 | 2017-03-02 10:33:09 -0600 | [diff] [blame] | 38 | : face(std::make_shared<ndn::util::DummyClientFace>()) |
| 39 | , nlsr(g_ioService, g_scheduler, std::ref(*face), g_keyChain) |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 40 | , sync(nlsr.getLsdb().getSyncLogicHandler()) |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 41 | , CONFIG_NETWORK("/ndn") |
| 42 | , CONFIG_SITE("/site") |
| 43 | , CONFIG_ROUTER_NAME("/%C1.Router/this-router") |
| 44 | { |
| 45 | nlsr.getConfParameter().setNetwork(CONFIG_NETWORK); |
| 46 | nlsr.getConfParameter().setSiteName(CONFIG_SITE); |
| 47 | nlsr.getConfParameter().setRouterName(CONFIG_ROUTER_NAME); |
| 48 | nlsr.getConfParameter().buildRouterPrefix(); |
| 49 | } |
| 50 | |
| 51 | void |
Nick Gordon | 5c467f0 | 2016-07-13 13:40:10 -0500 | [diff] [blame] | 52 | receiveUpdate(std::string prefix, uint64_t seqNo, SyncLogicHandler& p_sync) |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 53 | { |
Ashlesh Gawande | 415676b | 2016-12-22 00:26:23 -0600 | [diff] [blame] | 54 | chronosync::MissingDataInfo info = {ndn::Name(prefix).appendNumber(1), 0, seqNo}; |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 55 | |
Ashlesh Gawande | 415676b | 2016-12-22 00:26:23 -0600 | [diff] [blame] | 56 | std::vector<chronosync::MissingDataInfo> updates; |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 57 | updates.push_back(info); |
| 58 | |
| 59 | face->processEvents(ndn::time::milliseconds(1)); |
Muktadir R Chowdhury | c69da0a | 2015-12-18 13:24:38 -0600 | [diff] [blame] | 60 | face->sentInterests.clear(); |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 61 | |
Ashlesh Gawande | 7600c90 | 2017-06-21 13:28:35 -0500 | [diff] [blame] | 62 | p_sync.onChronoSyncUpdate(updates); |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 63 | |
| 64 | face->processEvents(ndn::time::milliseconds(1)); |
| 65 | } |
| 66 | |
| 67 | public: |
dmcoomes | 9f93666 | 2017-03-02 10:33:09 -0600 | [diff] [blame] | 68 | std::shared_ptr<ndn::util::DummyClientFace> face; |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 69 | Nlsr nlsr; |
Vince Lehman | c11cc20 | 2015-01-20 11:41:33 -0600 | [diff] [blame] | 70 | SyncLogicHandler& sync; |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 71 | |
| 72 | const std::string CONFIG_NETWORK; |
| 73 | const std::string CONFIG_SITE; |
| 74 | const std::string CONFIG_ROUTER_NAME; |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 75 | const std::vector<std::string> lsaTypes = {NameLsa::TYPE_STRING, AdjLsa::TYPE_STRING, |
| 76 | CoordinateLsa::TYPE_STRING}; |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 77 | }; |
| 78 | |
| 79 | BOOST_FIXTURE_TEST_SUITE(TestSyncLogicHandler, SyncLogicFixture) |
| 80 | |
Nick Gordon | 5c467f0 | 2016-07-13 13:40:10 -0500 | [diff] [blame] | 81 | BOOST_AUTO_TEST_CASE(UpdateForOtherLS) |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 82 | { |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 83 | std::vector<std::string> lsaTypes = {NameLsa::TYPE_STRING, AdjLsa::TYPE_STRING}; |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 84 | |
Nick Gordon | 5c467f0 | 2016-07-13 13:40:10 -0500 | [diff] [blame] | 85 | uint64_t syncSeqNo = 1; |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 86 | |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 87 | for (const std::string& lsaType : lsaTypes) { |
| 88 | std::string updateName = nlsr.getConfParameter().getLsaPrefix().toUri() + |
| 89 | CONFIG_SITE + "/%C1.Router/other-router/" + lsaType; |
Nick Gordon | e8e03ac | 2016-07-07 14:24:38 -0500 | [diff] [blame] | 90 | |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 91 | receiveUpdate(updateName, syncSeqNo, sync); |
Nick Gordon | 5c467f0 | 2016-07-13 13:40:10 -0500 | [diff] [blame] | 92 | |
Nick Gordon | 7afcab4 | 2017-08-21 14:12:22 -0500 | [diff] [blame] | 93 | const auto& it = std::find_if(face->sentInterests.begin(), face->sentInterests.end(), |
| 94 | [updateName] (const ndn::Interest& interest) { |
| 95 | return interest.getName().getPrefix(-1) == updateName + "/"; |
| 96 | }); |
| 97 | BOOST_REQUIRE(it != face->sentInterests.end()); |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 98 | } |
Nick Gordon | 5c467f0 | 2016-07-13 13:40:10 -0500 | [diff] [blame] | 99 | } |
| 100 | |
| 101 | BOOST_AUTO_TEST_CASE(UpdateForOtherHR) |
| 102 | { |
dmcoomes | 9f93666 | 2017-03-02 10:33:09 -0600 | [diff] [blame] | 103 | Nlsr nlsr_hr(g_ioService, g_scheduler, std::ref(*face), g_keyChain); |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 104 | SyncLogicHandler& sync_hr(nlsr_hr.getLsdb().getSyncLogicHandler()); |
Nick Gordon | 5c467f0 | 2016-07-13 13:40:10 -0500 | [diff] [blame] | 105 | |
| 106 | nlsr_hr.getConfParameter().setNetwork(CONFIG_NETWORK); |
| 107 | nlsr_hr.getConfParameter().setSiteName(CONFIG_SITE); |
| 108 | nlsr_hr.getConfParameter().setRouterName(CONFIG_ROUTER_NAME); |
| 109 | nlsr_hr.getConfParameter().buildRouterPrefix(); |
| 110 | |
| 111 | nlsr_hr.getConfParameter().setHyperbolicState(HYPERBOLIC_STATE_ON); |
| 112 | |
| 113 | nlsr_hr.initialize(); |
| 114 | |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 115 | uint64_t syncSeqNo = 1; |
Nick Gordon | 5c467f0 | 2016-07-13 13:40:10 -0500 | [diff] [blame] | 116 | |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 117 | std::vector<std::string> lsaTypes = {NameLsa::TYPE_STRING, CoordinateLsa::TYPE_STRING}; |
Nick Gordon | 5c467f0 | 2016-07-13 13:40:10 -0500 | [diff] [blame] | 118 | |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 119 | for (const std::string& lsaType : lsaTypes) { |
| 120 | std::string updateName = nlsr_hr.getConfParameter().getLsaPrefix().toUri() + |
| 121 | CONFIG_SITE + "/%C1.Router/other-router/" + lsaType; |
Nick Gordon | 5c467f0 | 2016-07-13 13:40:10 -0500 | [diff] [blame] | 122 | |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 123 | receiveUpdate(updateName, syncSeqNo, sync_hr); |
Nick Gordon | 5c467f0 | 2016-07-13 13:40:10 -0500 | [diff] [blame] | 124 | |
Nick Gordon | 7afcab4 | 2017-08-21 14:12:22 -0500 | [diff] [blame] | 125 | const auto& it = std::find_if(face->sentInterests.begin(), face->sentInterests.end(), |
| 126 | [updateName] (const ndn::Interest& interest) { |
| 127 | return interest.getName().getPrefix(-1) == updateName + "/"; |
| 128 | }); |
Nick Gordon | 5c467f0 | 2016-07-13 13:40:10 -0500 | [diff] [blame] | 129 | |
Nick Gordon | 7afcab4 | 2017-08-21 14:12:22 -0500 | [diff] [blame] | 130 | BOOST_REQUIRE(it != face->sentInterests.end()); |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 131 | } |
Nick Gordon | 5c467f0 | 2016-07-13 13:40:10 -0500 | [diff] [blame] | 132 | } |
| 133 | |
| 134 | BOOST_AUTO_TEST_CASE(UpdateForOtherHRDry) |
| 135 | { |
| 136 | |
dmcoomes | 9f93666 | 2017-03-02 10:33:09 -0600 | [diff] [blame] | 137 | Nlsr nlsr_hrdry(g_ioService, g_scheduler, std::ref(*face),g_keyChain); |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 138 | SyncLogicHandler& sync_hrdry(nlsr_hrdry.getLsdb().getSyncLogicHandler()); |
Nick Gordon | 5c467f0 | 2016-07-13 13:40:10 -0500 | [diff] [blame] | 139 | |
| 140 | nlsr_hrdry.getConfParameter().setNetwork(CONFIG_NETWORK); |
| 141 | nlsr_hrdry.getConfParameter().setSiteName(CONFIG_SITE); |
| 142 | nlsr_hrdry.getConfParameter().setRouterName(CONFIG_ROUTER_NAME); |
| 143 | nlsr_hrdry.getConfParameter().buildRouterPrefix(); |
| 144 | |
| 145 | nlsr_hrdry.getConfParameter().setHyperbolicState(HYPERBOLIC_STATE_DRY_RUN); |
| 146 | |
| 147 | nlsr_hrdry.initialize(); |
| 148 | |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 149 | for (const std::string& lsaType : lsaTypes) { |
| 150 | |
| 151 | std::string updateName = nlsr.getConfParameter().getLsaPrefix().toUri() + |
| 152 | CONFIG_SITE + "/%C1.Router/other-router/" + lsaType; |
Nick Gordon | 5c467f0 | 2016-07-13 13:40:10 -0500 | [diff] [blame] | 153 | |
| 154 | |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 155 | uint64_t syncSeqNo = 1; |
Nick Gordon | 5c467f0 | 2016-07-13 13:40:10 -0500 | [diff] [blame] | 156 | |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 157 | receiveUpdate(updateName, syncSeqNo, sync_hrdry); |
Nick Gordon | 5c467f0 | 2016-07-13 13:40:10 -0500 | [diff] [blame] | 158 | |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 159 | // In HR dry-state all LSA's should be published |
Davide Pesavento | c58cc7f | 2017-08-08 16:51:28 -0500 | [diff] [blame] | 160 | const auto& it = std::find_if(face->sentInterests.begin(), face->sentInterests.end(), |
| 161 | [updateName] (const ndn::Interest& interest) { |
| 162 | return interest.getName().getPrefix(-1) == updateName + "/"; |
| 163 | }); |
| 164 | BOOST_REQUIRE(it != face->sentInterests.end()); |
Nick Gordon | e8e03ac | 2016-07-07 14:24:38 -0500 | [diff] [blame] | 165 | } |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 166 | } |
| 167 | |
Nick Gordon | 0f1bf1d | 2017-06-22 15:40:27 -0500 | [diff] [blame] | 168 | BOOST_AUTO_TEST_CASE(NoUpdateForSelf) |
| 169 | { |
| 170 | for (const std::string& lsaType : lsaTypes) { |
| 171 | std::string updateName = nlsr.getConfParameter().getLsaPrefix().toUri() + |
| 172 | CONFIG_SITE + CONFIG_ROUTER_NAME + lsaType; |
| 173 | |
| 174 | receiveUpdate(updateName, 1, sync); |
| 175 | |
| 176 | std::vector<ndn::Interest>& interests = face->sentInterests; |
| 177 | BOOST_CHECK_EQUAL(interests.size(), 0); |
| 178 | } |
| 179 | } |
| 180 | |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 181 | BOOST_AUTO_TEST_CASE(MalformedUpdate) |
| 182 | { |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 183 | for (const std::string& lsaType : lsaTypes) { |
| 184 | std::string updateName = CONFIG_SITE + nlsr.getConfParameter().getLsaPrefix().toUri() + |
| 185 | CONFIG_ROUTER_NAME + lsaType; |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 186 | |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 187 | std::vector<ndn::Interest>& interests = face->sentInterests; |
| 188 | BOOST_CHECK_EQUAL(interests.size(), 0); |
| 189 | } |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 190 | } |
| 191 | |
| 192 | BOOST_AUTO_TEST_CASE(SequenceNumber) |
| 193 | { |
| 194 | std::string originRouter = CONFIG_NETWORK + CONFIG_SITE + "/%C1.Router/other-router/"; |
| 195 | |
| 196 | Lsdb& lsdb = nlsr.getLsdb(); |
| 197 | |
| 198 | // Install Name LSA |
| 199 | NamePrefixList nameList; |
Ashlesh Gawande | d02c388 | 2015-12-29 16:02:51 -0600 | [diff] [blame] | 200 | NameLsa lsa(originRouter, 999, ndn::time::system_clock::TimePoint::max(), nameList); |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 201 | lsdb.installNameLsa(lsa); |
| 202 | |
| 203 | // Install Adj LSA |
| 204 | AdjacencyList adjList; |
Ashlesh Gawande | d02c388 | 2015-12-29 16:02:51 -0600 | [diff] [blame] | 205 | AdjLsa adjLsa(originRouter, 1000, ndn::time::system_clock::TimePoint::max(), |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 206 | 3 , adjList); |
| 207 | lsdb.installAdjLsa(adjLsa); |
| 208 | |
Muktadir R Chowdhury | b00dc2a | 2016-11-05 10:48:58 -0600 | [diff] [blame] | 209 | std::vector<double> angles = {0.0}; |
| 210 | |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 211 | // Install Cor LSA |
Ashlesh Gawande | d02c388 | 2015-12-29 16:02:51 -0600 | [diff] [blame] | 212 | CoordinateLsa corLsa(originRouter, 1000, ndn::time::system_clock::TimePoint::max(), |
Muktadir R Chowdhury | b00dc2a | 2016-11-05 10:48:58 -0600 | [diff] [blame] | 213 | 0, angles); |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 214 | lsdb.installCoordinateLsa(corLsa); |
| 215 | |
| 216 | std::string updateName = nlsr.getConfParameter().getLsaPrefix().toUri() + |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 217 | CONFIG_SITE + "/%C1.Router/other-router/" + NameLsa::TYPE_STRING; |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 218 | |
| 219 | // Lower NameLSA sequence number |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 220 | uint64_t lowerSeqNo = 998; |
Nick Gordon | 5c467f0 | 2016-07-13 13:40:10 -0500 | [diff] [blame] | 221 | receiveUpdate(updateName, lowerSeqNo, sync); |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 222 | |
Muktadir R Chowdhury | c69da0a | 2015-12-18 13:24:38 -0600 | [diff] [blame] | 223 | std::vector<ndn::Interest>& interests = face->sentInterests; |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 224 | BOOST_REQUIRE_EQUAL(interests.size(), 0); |
| 225 | |
| 226 | // Same NameLSA sequence number |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 227 | uint64_t sameSeqNo = 999; |
Nick Gordon | 5c467f0 | 2016-07-13 13:40:10 -0500 | [diff] [blame] | 228 | receiveUpdate(updateName, sameSeqNo, sync); |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 229 | |
Muktadir R Chowdhury | c69da0a | 2015-12-18 13:24:38 -0600 | [diff] [blame] | 230 | interests = face->sentInterests; |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 231 | BOOST_REQUIRE_EQUAL(interests.size(), 0); |
| 232 | |
| 233 | // Higher NameLSA sequence number |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 234 | uint64_t higherSeqNo = 1000; |
Nick Gordon | 5c467f0 | 2016-07-13 13:40:10 -0500 | [diff] [blame] | 235 | receiveUpdate(updateName, higherSeqNo, sync); |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 236 | |
Muktadir R Chowdhury | c69da0a | 2015-12-18 13:24:38 -0600 | [diff] [blame] | 237 | interests = face->sentInterests; |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 238 | BOOST_REQUIRE_EQUAL(interests.size(), 1); |
| 239 | |
| 240 | std::vector<ndn::Interest>::iterator it = interests.begin(); |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 241 | BOOST_CHECK_EQUAL(it->getName().getPrefix(-1), updateName + "/"); |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 242 | } |
| 243 | |
Vince Lehman | c11cc20 | 2015-01-20 11:41:33 -0600 | [diff] [blame] | 244 | BOOST_AUTO_TEST_CASE(UpdatePrefix) |
| 245 | { |
| 246 | ndn::Name expectedPrefix = nlsr.getConfParameter().getLsaPrefix(); |
| 247 | expectedPrefix.append(CONFIG_SITE); |
| 248 | expectedPrefix.append(CONFIG_ROUTER_NAME); |
| 249 | |
| 250 | nlsr.initialize(); |
| 251 | |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 252 | BOOST_CHECK_EQUAL(sync.m_nameLsaUserPrefix, ndn::Name(expectedPrefix).append(NameLsa::TYPE_STRING)); |
| 253 | BOOST_CHECK_EQUAL(sync.m_adjLsaUserPrefix, ndn::Name(expectedPrefix).append(AdjLsa::TYPE_STRING)); |
| 254 | BOOST_CHECK_EQUAL(sync.m_coorLsaUserPrefix, ndn::Name(expectedPrefix).append(CoordinateLsa::TYPE_STRING)); |
Vince Lehman | c11cc20 | 2015-01-20 11:41:33 -0600 | [diff] [blame] | 255 | } |
| 256 | |
Vince Lehman | 9d09780 | 2015-03-16 17:55:59 -0500 | [diff] [blame] | 257 | BOOST_AUTO_TEST_CASE(CreateSyncSocketOnInitialization) // Bug #2649 |
| 258 | { |
| 259 | nlsr.initialize(); |
| 260 | |
| 261 | // Make sure an adjacency LSA has not been built yet |
| 262 | ndn::Name key = ndn::Name(nlsr.getConfParameter().getRouterPrefix()).append(AdjLsa::TYPE_STRING); |
| 263 | AdjLsa* lsa = nlsr.getLsdb().findAdjLsa(key); |
| 264 | BOOST_REQUIRE(lsa == nullptr); |
| 265 | |
| 266 | // Publish a routing update before an Adjacency LSA is built |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 267 | BOOST_CHECK_NO_THROW(sync.publishRoutingUpdate(AdjLsa::TYPE_STRING, 0)); |
Vince Lehman | 9d09780 | 2015-03-16 17:55:59 -0500 | [diff] [blame] | 268 | } |
| 269 | |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 270 | BOOST_AUTO_TEST_SUITE_END() |
| 271 | |
| 272 | } // namespace test |
| 273 | } // namespace nlsr |