Junxiao Shi | 3b08154 | 2017-07-04 18:37:34 +0000 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | 0033578 | 2018-02-10 22:31:33 -0500 | [diff] [blame] | 2 | /* |
Davide Pesavento | b93fb6c | 2020-04-12 14:10:45 -0400 | [diff] [blame] | 3 | * Copyright (c) 2014-2020, Regents of the University of California, |
Junxiao Shi | 3b08154 | 2017-07-04 18:37:34 +0000 | [diff] [blame] | 4 | * Arizona Board of Regents, |
| 5 | * Colorado State University, |
| 6 | * University Pierre & Marie Curie, Sorbonne University, |
| 7 | * Washington University in St. Louis, |
| 8 | * Beijing Institute of Technology, |
| 9 | * The University of Memphis. |
| 10 | * |
| 11 | * This file is part of NFD (Named Data Networking Forwarding Daemon). |
| 12 | * See AUTHORS.md for complete list of NFD authors and contributors. |
| 13 | * |
| 14 | * NFD is free software: you can redistribute it and/or modify it under the terms |
| 15 | * of the GNU General Public License as published by the Free Software Foundation, |
| 16 | * either version 3 of the License, or (at your option) any later version. |
| 17 | * |
| 18 | * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 19 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 20 | * PURPOSE. See the GNU General Public License for more details. |
| 21 | * |
| 22 | * You should have received a copy of the GNU General Public License along with |
| 23 | * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 24 | */ |
| 25 | |
| 26 | #include "ndn-autoconfig-server/program.hpp" |
| 27 | |
Davide Pesavento | cf7db2f | 2019-03-24 23:17:28 -0400 | [diff] [blame] | 28 | #include "tests/test-common.hpp" |
Davide Pesavento | 1d12d2f | 2019-03-22 12:44:14 -0400 | [diff] [blame] | 29 | #include "tests/key-chain-fixture.hpp" |
Davide Pesavento | 0033578 | 2018-02-10 22:31:33 -0500 | [diff] [blame] | 30 | |
Junxiao Shi | 47c343b | 2019-05-25 07:53:01 +0000 | [diff] [blame] | 31 | #include <ndn-cxx/security/validator-null.hpp> |
Junxiao Shi | 3b08154 | 2017-07-04 18:37:34 +0000 | [diff] [blame] | 32 | #include <ndn-cxx/util/dummy-client-face.hpp> |
Junxiao Shi | 47c343b | 2019-05-25 07:53:01 +0000 | [diff] [blame] | 33 | #include <ndn-cxx/util/segment-fetcher.hpp> |
Junxiao Shi | 3b08154 | 2017-07-04 18:37:34 +0000 | [diff] [blame] | 34 | |
| 35 | namespace ndn { |
| 36 | namespace tools { |
| 37 | namespace autoconfig_server { |
| 38 | namespace tests { |
| 39 | |
Davide Pesavento | 1d12d2f | 2019-03-22 12:44:14 -0400 | [diff] [blame] | 40 | class AutoconfigServerFixture : public ::nfd::tests::KeyChainFixture |
Junxiao Shi | 3b08154 | 2017-07-04 18:37:34 +0000 | [diff] [blame] | 41 | { |
Davide Pesavento | b93fb6c | 2020-04-12 14:10:45 -0400 | [diff] [blame] | 42 | protected: |
Junxiao Shi | 3b08154 | 2017-07-04 18:37:34 +0000 | [diff] [blame] | 43 | void |
| 44 | initialize(const Options& options) |
| 45 | { |
| 46 | program = make_unique<Program>(options, face, m_keyChain); |
Davide Pesavento | b93fb6c | 2020-04-12 14:10:45 -0400 | [diff] [blame] | 47 | face.processEvents(1_s); |
Junxiao Shi | 3b08154 | 2017-07-04 18:37:34 +0000 | [diff] [blame] | 48 | face.sentInterests.clear(); |
| 49 | } |
| 50 | |
Davide Pesavento | 0033578 | 2018-02-10 22:31:33 -0500 | [diff] [blame] | 51 | protected: |
Davide Pesavento | b93fb6c | 2020-04-12 14:10:45 -0400 | [diff] [blame] | 52 | util::DummyClientFace face{{true, true}}; |
Junxiao Shi | 3b08154 | 2017-07-04 18:37:34 +0000 | [diff] [blame] | 53 | unique_ptr<Program> program; |
| 54 | }; |
| 55 | |
| 56 | BOOST_AUTO_TEST_SUITE(NdnAutoconfigServer) |
| 57 | BOOST_FIXTURE_TEST_SUITE(TestProgram, AutoconfigServerFixture) |
| 58 | |
| 59 | BOOST_AUTO_TEST_CASE(HubData) |
| 60 | { |
| 61 | Options options; |
| 62 | options.hubFaceUri = FaceUri("udp4://192.0.2.1:6363"); |
| 63 | this->initialize(options); |
| 64 | |
| 65 | Interest interest("/localhop/ndn-autoconf/hub"); |
Junxiao Shi | 47c343b | 2019-05-25 07:53:01 +0000 | [diff] [blame] | 66 | interest.setCanBePrefix(true); |
Junxiao Shi | 73b4980 | 2019-05-25 07:52:26 +0000 | [diff] [blame] | 67 | interest.setMustBeFresh(true); |
Junxiao Shi | 3b08154 | 2017-07-04 18:37:34 +0000 | [diff] [blame] | 68 | face.receive(interest); |
Davide Pesavento | b93fb6c | 2020-04-12 14:10:45 -0400 | [diff] [blame] | 69 | face.processEvents(1_s); |
Junxiao Shi | 3b08154 | 2017-07-04 18:37:34 +0000 | [diff] [blame] | 70 | |
Davide Pesavento | 0033578 | 2018-02-10 22:31:33 -0500 | [diff] [blame] | 71 | BOOST_REQUIRE_EQUAL(face.sentData.size(), 1); |
| 72 | const Name& dataName = face.sentData[0].getName(); |
Junxiao Shi | 3b08154 | 2017-07-04 18:37:34 +0000 | [diff] [blame] | 73 | BOOST_CHECK_EQUAL(dataName.size(), interest.getName().size() + 1); |
| 74 | BOOST_CHECK(interest.getName().isPrefixOf(dataName)); |
| 75 | BOOST_CHECK(dataName.at(-1).isVersion()); |
| 76 | |
| 77 | // interest2 asks for a different version, and should not be responded |
| 78 | Interest interest2(Name(interest.getName()).appendVersion(dataName.at(-1).toVersion() - 1)); |
Junxiao Shi | 47c343b | 2019-05-25 07:53:01 +0000 | [diff] [blame] | 79 | interest2.setCanBePrefix(false); |
Junxiao Shi | 3b08154 | 2017-07-04 18:37:34 +0000 | [diff] [blame] | 80 | face.receive(interest2); |
Davide Pesavento | b93fb6c | 2020-04-12 14:10:45 -0400 | [diff] [blame] | 81 | face.processEvents(1_s); |
Junxiao Shi | 3b08154 | 2017-07-04 18:37:34 +0000 | [diff] [blame] | 82 | BOOST_CHECK_EQUAL(face.sentData.size(), 1); |
| 83 | } |
| 84 | |
| 85 | BOOST_AUTO_TEST_CASE(RoutablePrefixesDataset) |
| 86 | { |
| 87 | Options options; |
| 88 | options.hubFaceUri = FaceUri("udp4://192.0.2.1:6363"); |
Davide Pesavento | 0033578 | 2018-02-10 22:31:33 -0500 | [diff] [blame] | 89 | const size_t nRoutablePrefixes = 2000; |
| 90 | for (size_t i = 0; i < nRoutablePrefixes; ++i) { |
Junxiao Shi | 3b08154 | 2017-07-04 18:37:34 +0000 | [diff] [blame] | 91 | options.routablePrefixes.push_back(Name("/PREFIX").appendNumber(i)); |
| 92 | } |
| 93 | this->initialize(options); |
| 94 | |
Junxiao Shi | 47c343b | 2019-05-25 07:53:01 +0000 | [diff] [blame] | 95 | util::DummyClientFace clientFace(face.getIoService()); |
| 96 | clientFace.linkTo(face); |
Junxiao Shi | 3b08154 | 2017-07-04 18:37:34 +0000 | [diff] [blame] | 97 | |
Junxiao Shi | 47c343b | 2019-05-25 07:53:01 +0000 | [diff] [blame] | 98 | Name baseName("/localhop/nfd/rib/routable-prefixes"); |
| 99 | auto fetcher = util::SegmentFetcher::start(clientFace, Interest(baseName), |
Alexander Afanasyev | a158370 | 2020-06-03 13:55:45 -0400 | [diff] [blame] | 100 | security::getAcceptAllValidator()); |
Junxiao Shi | 47c343b | 2019-05-25 07:53:01 +0000 | [diff] [blame] | 101 | fetcher->afterSegmentReceived.connect([baseName] (const Data& data) { |
| 102 | const Name& dataName = data.getName(); |
| 103 | BOOST_CHECK_EQUAL(dataName.size(), baseName.size() + 2); |
| 104 | BOOST_CHECK(dataName.at(-2).isVersion()); |
| 105 | BOOST_CHECK(dataName.at(-1).isSegment()); |
| 106 | }); |
Davide Pesavento | b93fb6c | 2020-04-12 14:10:45 -0400 | [diff] [blame] | 107 | fetcher->onError.connect([] (auto, const auto& msg) { BOOST_FAIL(msg); }); |
| 108 | |
Junxiao Shi | 47c343b | 2019-05-25 07:53:01 +0000 | [diff] [blame] | 109 | bool isComplete = false; |
Davide Pesavento | b93fb6c | 2020-04-12 14:10:45 -0400 | [diff] [blame] | 110 | fetcher->onComplete.connect([&] (auto buffer) { |
| 111 | Block payload(tlv::Content, std::move(buffer)); |
Junxiao Shi | 47c343b | 2019-05-25 07:53:01 +0000 | [diff] [blame] | 112 | payload.parse(); |
| 113 | BOOST_REQUIRE_EQUAL(payload.elements_size(), nRoutablePrefixes); |
| 114 | for (size_t i = 0; i < nRoutablePrefixes; ++i) { |
| 115 | BOOST_CHECK_EQUAL(Name(payload.elements()[i]), options.routablePrefixes[i]); |
| 116 | } |
| 117 | isComplete = true; |
| 118 | }); |
Junxiao Shi | 3b08154 | 2017-07-04 18:37:34 +0000 | [diff] [blame] | 119 | |
Davide Pesavento | b93fb6c | 2020-04-12 14:10:45 -0400 | [diff] [blame] | 120 | face.processEvents(1_s); |
Junxiao Shi | 47c343b | 2019-05-25 07:53:01 +0000 | [diff] [blame] | 121 | BOOST_CHECK(isComplete); |
Junxiao Shi | 3b08154 | 2017-07-04 18:37:34 +0000 | [diff] [blame] | 122 | } |
| 123 | |
| 124 | BOOST_AUTO_TEST_CASE(RoutablePrefixesDisabled) |
| 125 | { |
| 126 | Options options; |
| 127 | options.hubFaceUri = FaceUri("udp4://192.0.2.1:6363"); |
| 128 | this->initialize(options); |
| 129 | |
| 130 | Interest interest("/localhop/nfd/rib/routable-prefixes"); |
Junxiao Shi | 47c343b | 2019-05-25 07:53:01 +0000 | [diff] [blame] | 131 | interest.setCanBePrefix(true); |
Junxiao Shi | 3b08154 | 2017-07-04 18:37:34 +0000 | [diff] [blame] | 132 | face.receive(interest); |
Davide Pesavento | b93fb6c | 2020-04-12 14:10:45 -0400 | [diff] [blame] | 133 | face.processEvents(1_s); |
Junxiao Shi | 3b08154 | 2017-07-04 18:37:34 +0000 | [diff] [blame] | 134 | BOOST_CHECK_EQUAL(face.sentData.size(), 0); |
| 135 | } |
| 136 | |
| 137 | BOOST_AUTO_TEST_SUITE_END() // TestProgram |
| 138 | BOOST_AUTO_TEST_SUITE_END() // NdnAutoconfigServer |
| 139 | |
| 140 | } // namespace tests |
| 141 | } // namespace autoconfig_server |
| 142 | } // namespace tools |
| 143 | } // namespace ndn |