blob: 96bed318178b8716e5ff3730d90f26e746ad0aac [file] [log] [blame]
Junxiao Shi3b081542017-07-04 18:37:34 +00001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento00335782018-02-10 22:31:33 -05002/*
Davide Pesavento1b22a8c2022-03-07 21:23:23 -05003 * Copyright (c) 2014-2022, Regents of the University of California,
Junxiao Shi3b081542017-07-04 18:37:34 +00004 * 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 Pesaventocf7db2f2019-03-24 23:17:28 -040028#include "tests/test-common.hpp"
Davide Pesavento1d12d2f2019-03-22 12:44:14 -040029#include "tests/key-chain-fixture.hpp"
Davide Pesavento00335782018-02-10 22:31:33 -050030
Junxiao Shi47c343b2019-05-25 07:53:01 +000031#include <ndn-cxx/security/validator-null.hpp>
Junxiao Shi3b081542017-07-04 18:37:34 +000032#include <ndn-cxx/util/dummy-client-face.hpp>
Junxiao Shi47c343b2019-05-25 07:53:01 +000033#include <ndn-cxx/util/segment-fetcher.hpp>
Junxiao Shi3b081542017-07-04 18:37:34 +000034
35namespace ndn {
36namespace tools {
37namespace autoconfig_server {
38namespace tests {
39
Davide Pesavento1d12d2f2019-03-22 12:44:14 -040040class AutoconfigServerFixture : public ::nfd::tests::KeyChainFixture
Junxiao Shi3b081542017-07-04 18:37:34 +000041{
Davide Pesaventob93fb6c2020-04-12 14:10:45 -040042protected:
Junxiao Shi3b081542017-07-04 18:37:34 +000043 void
44 initialize(const Options& options)
45 {
46 program = make_unique<Program>(options, face, m_keyChain);
Davide Pesaventob93fb6c2020-04-12 14:10:45 -040047 face.processEvents(1_s);
Junxiao Shi3b081542017-07-04 18:37:34 +000048 face.sentInterests.clear();
49 }
50
Davide Pesavento00335782018-02-10 22:31:33 -050051protected:
Davide Pesaventob93fb6c2020-04-12 14:10:45 -040052 util::DummyClientFace face{{true, true}};
Junxiao Shi3b081542017-07-04 18:37:34 +000053 unique_ptr<Program> program;
54};
55
56BOOST_AUTO_TEST_SUITE(NdnAutoconfigServer)
57BOOST_FIXTURE_TEST_SUITE(TestProgram, AutoconfigServerFixture)
58
59BOOST_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 Shi47c343b2019-05-25 07:53:01 +000066 interest.setCanBePrefix(true);
Junxiao Shi73b49802019-05-25 07:52:26 +000067 interest.setMustBeFresh(true);
Junxiao Shi3b081542017-07-04 18:37:34 +000068 face.receive(interest);
Davide Pesaventob93fb6c2020-04-12 14:10:45 -040069 face.processEvents(1_s);
Junxiao Shi3b081542017-07-04 18:37:34 +000070
Davide Pesavento00335782018-02-10 22:31:33 -050071 BOOST_REQUIRE_EQUAL(face.sentData.size(), 1);
72 const Name& dataName = face.sentData[0].getName();
Junxiao Shi3b081542017-07-04 18:37:34 +000073 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));
79 face.receive(interest2);
Davide Pesaventob93fb6c2020-04-12 14:10:45 -040080 face.processEvents(1_s);
Junxiao Shi3b081542017-07-04 18:37:34 +000081 BOOST_CHECK_EQUAL(face.sentData.size(), 1);
82}
83
84BOOST_AUTO_TEST_CASE(RoutablePrefixesDataset)
85{
86 Options options;
87 options.hubFaceUri = FaceUri("udp4://192.0.2.1:6363");
Davide Pesavento00335782018-02-10 22:31:33 -050088 const size_t nRoutablePrefixes = 2000;
89 for (size_t i = 0; i < nRoutablePrefixes; ++i) {
Junxiao Shi3b081542017-07-04 18:37:34 +000090 options.routablePrefixes.push_back(Name("/PREFIX").appendNumber(i));
91 }
92 this->initialize(options);
93
Junxiao Shi47c343b2019-05-25 07:53:01 +000094 util::DummyClientFace clientFace(face.getIoService());
95 clientFace.linkTo(face);
Junxiao Shi3b081542017-07-04 18:37:34 +000096
Junxiao Shi47c343b2019-05-25 07:53:01 +000097 Name baseName("/localhop/nfd/rib/routable-prefixes");
98 auto fetcher = util::SegmentFetcher::start(clientFace, Interest(baseName),
Alexander Afanasyeva1583702020-06-03 13:55:45 -040099 security::getAcceptAllValidator());
Junxiao Shi47c343b2019-05-25 07:53:01 +0000100 fetcher->afterSegmentReceived.connect([baseName] (const Data& data) {
101 const Name& dataName = data.getName();
102 BOOST_CHECK_EQUAL(dataName.size(), baseName.size() + 2);
103 BOOST_CHECK(dataName.at(-2).isVersion());
104 BOOST_CHECK(dataName.at(-1).isSegment());
105 });
Davide Pesaventob93fb6c2020-04-12 14:10:45 -0400106 fetcher->onError.connect([] (auto, const auto& msg) { BOOST_FAIL(msg); });
107
Junxiao Shi47c343b2019-05-25 07:53:01 +0000108 bool isComplete = false;
Davide Pesaventob93fb6c2020-04-12 14:10:45 -0400109 fetcher->onComplete.connect([&] (auto buffer) {
110 Block payload(tlv::Content, std::move(buffer));
Junxiao Shi47c343b2019-05-25 07:53:01 +0000111 payload.parse();
112 BOOST_REQUIRE_EQUAL(payload.elements_size(), nRoutablePrefixes);
113 for (size_t i = 0; i < nRoutablePrefixes; ++i) {
114 BOOST_CHECK_EQUAL(Name(payload.elements()[i]), options.routablePrefixes[i]);
115 }
116 isComplete = true;
117 });
Junxiao Shi3b081542017-07-04 18:37:34 +0000118
Davide Pesaventob93fb6c2020-04-12 14:10:45 -0400119 face.processEvents(1_s);
Junxiao Shi47c343b2019-05-25 07:53:01 +0000120 BOOST_CHECK(isComplete);
Junxiao Shi3b081542017-07-04 18:37:34 +0000121}
122
123BOOST_AUTO_TEST_CASE(RoutablePrefixesDisabled)
124{
125 Options options;
126 options.hubFaceUri = FaceUri("udp4://192.0.2.1:6363");
127 this->initialize(options);
128
129 Interest interest("/localhop/nfd/rib/routable-prefixes");
Junxiao Shi47c343b2019-05-25 07:53:01 +0000130 interest.setCanBePrefix(true);
Junxiao Shi3b081542017-07-04 18:37:34 +0000131 face.receive(interest);
Davide Pesaventob93fb6c2020-04-12 14:10:45 -0400132 face.processEvents(1_s);
Junxiao Shi3b081542017-07-04 18:37:34 +0000133 BOOST_CHECK_EQUAL(face.sentData.size(), 0);
134}
135
136BOOST_AUTO_TEST_SUITE_END() // TestProgram
137BOOST_AUTO_TEST_SUITE_END() // NdnAutoconfigServer
138
139} // namespace tests
140} // namespace autoconfig_server
141} // namespace tools
142} // namespace ndn