blob: 947727cb3da0629aab351667d71f6def96cf419a [file] [log] [blame]
Yanbiao Li698f4fe2015-08-19 16:30:16 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesaventoac238f22017-09-12 15:19:40 -04002/*
Davide Pesavento0064c1d2018-03-03 18:43:53 -05003 * Copyright (c) 2014-2018, Regents of the University of California,
Yanbiao Li698f4fe2015-08-19 16:30:16 -07004 * 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
Yanbiao Lidf846e52016-01-30 21:53:47 -080026#include "core/manager-base.hpp"
Davide Pesavento0064c1d2018-03-03 18:43:53 -050027#include "tests/manager-common-fixture.hpp"
Yanbiao Li698f4fe2015-08-19 16:30:16 -070028
Davide Pesavento0064c1d2018-03-03 18:43:53 -050029#include <ndn-cxx/mgmt/nfd/control-command.hpp>
Yanbiao Li698f4fe2015-08-19 16:30:16 -070030#include <ndn-cxx/security/key-chain.hpp>
Junxiao Shi16a3adf2017-05-26 17:38:51 +000031#include <ndn-cxx/security/pib/identity.hpp>
32#include <ndn-cxx/security/pib/key.hpp>
33#include <ndn-cxx/security/pib/pib.hpp>
Yanbiao Li698f4fe2015-08-19 16:30:16 -070034
35namespace nfd {
36namespace tests {
37
Yanbiao Li698f4fe2015-08-19 16:30:16 -070038class TestCommandVoidParameters : public ndn::nfd::ControlCommand
39{
40public:
41 TestCommandVoidParameters()
42 : ndn::nfd::ControlCommand("test-module", "test-void-parameters")
43 {
44 }
45};
46
47class TestCommandRequireName : public ndn::nfd::ControlCommand
48{
49public:
50 TestCommandRequireName()
51 : ndn::nfd::ControlCommand("test-module", "test-require-name")
52 {
53 m_requestValidator.required(ndn::nfd::CONTROL_PARAMETER_NAME);
54 }
55};
56
Yanbiao Lidf846e52016-01-30 21:53:47 -080057class ManagerTester : public ManagerBase
58{
59public:
Davide Pesavento0804f5d2017-09-22 21:18:14 -040060 using ManagerBase::ManagerBase;
Yanbiao Lidf846e52016-01-30 21:53:47 -080061
Junxiao Shi16a3adf2017-05-26 17:38:51 +000062 ndn::mgmt::Authorization
Junxiao Shi21738402016-08-19 19:48:00 +000063 makeAuthorization(const std::string& verb) override
64 {
Davide Pesaventoac238f22017-09-12 15:19:40 -040065 return [] (const Name& prefix, const Interest& interest,
66 const ndn::mgmt::ControlParameters* params,
67 ndn::mgmt::AcceptContinuation accept,
68 ndn::mgmt::RejectContinuation reject) {
Junxiao Shi21738402016-08-19 19:48:00 +000069 accept("requester");
70 };
Yanbiao Lidf846e52016-01-30 21:53:47 -080071 }
72};
73
Yanbiao Li698f4fe2015-08-19 16:30:16 -070074class ManagerBaseFixture : public ManagerCommonFixture
75{
76public:
77 ManagerBaseFixture()
Yanbiao Lidf846e52016-01-30 21:53:47 -080078 : m_manager(m_dispatcher, "test-module")
Yanbiao Li698f4fe2015-08-19 16:30:16 -070079 {
80 }
81
82protected:
Yanbiao Lidf846e52016-01-30 21:53:47 -080083 ManagerTester m_manager;
Yanbiao Li698f4fe2015-08-19 16:30:16 -070084};
85
Yanbiao Lidf846e52016-01-30 21:53:47 -080086BOOST_FIXTURE_TEST_SUITE(TestManagerBase, ManagerBaseFixture)
Yanbiao Li698f4fe2015-08-19 16:30:16 -070087
88BOOST_AUTO_TEST_CASE(RegisterCommandHandler)
89{
90 bool wasCommandHandlerCalled = false;
91 auto handler = bind([&] { wasCommandHandlerCalled = true; });
92
93 m_manager.registerCommandHandler<TestCommandVoidParameters>("test-void", handler);
94 m_manager.registerCommandHandler<TestCommandRequireName>("test-require-name", handler);
Yanbiao Lidf846e52016-01-30 21:53:47 -080095 setTopPrefix("/localhost/nfd");
Yanbiao Li698f4fe2015-08-19 16:30:16 -070096
97 auto testRegisterCommandHandler = [&wasCommandHandlerCalled, this] (const Name& commandName) {
98 wasCommandHandlerCalled = false;
99 receiveInterest(makeControlCommandRequest(commandName, ControlParameters()));
100 };
101
102 testRegisterCommandHandler("/localhost/nfd/test-module/test-void");
103 BOOST_CHECK(wasCommandHandlerCalled);
104
105 testRegisterCommandHandler("/localhost/nfd/test-module/test-require-name");
106 BOOST_CHECK(!wasCommandHandlerCalled);
107}
108
109BOOST_AUTO_TEST_CASE(RegisterStatusDataset)
110{
111 bool isStatusDatasetCalled = false;
112 auto handler = bind([&] { isStatusDatasetCalled = true; });
113
114 m_manager.registerStatusDatasetHandler("test-status", handler);
Yanbiao Lidf846e52016-01-30 21:53:47 -0800115 setTopPrefix("/localhost/nfd");
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700116
Junxiao Shi8a1f1702017-07-03 00:05:08 +0000117 receiveInterest(Interest("/localhost/nfd/test-module/test-status"));
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700118 BOOST_CHECK(isStatusDatasetCalled);
119}
120
121BOOST_AUTO_TEST_CASE(RegisterNotificationStream)
122{
123 auto post = m_manager.registerNotificationStream("test-notification");
Yanbiao Lidf846e52016-01-30 21:53:47 -0800124 setTopPrefix("/localhost/nfd");
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700125
Davide Pesavento0804f5d2017-09-22 21:18:14 -0400126 const uint8_t buf[] = {0x82, 0x01, 0x02};
127 post(Block(buf, sizeof(buf)));
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700128 advanceClocks(time::milliseconds(1));
129
130 BOOST_REQUIRE_EQUAL(m_responses.size(), 1);
131 BOOST_CHECK_EQUAL(m_responses[0].getName(),
132 Name("/localhost/nfd/test-module/test-notification/%FE%00"));
133}
134
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700135BOOST_AUTO_TEST_CASE(ExtractRequester)
136{
137 std::string requesterName;
138 auto testAccept = [&] (const std::string& requester) { requesterName = requester; };
139
Junxiao Shi8a1f1702017-07-03 00:05:08 +0000140 m_manager.extractRequester(Interest("/test/interest/unsigned"), testAccept);
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700141 BOOST_CHECK(requesterName.empty());
142
143 requesterName = "";
Junxiao Shi8a1f1702017-07-03 00:05:08 +0000144 m_manager.extractRequester(makeControlCommandRequest("/test/interest/signed", ControlParameters()), testAccept);
145 auto keyLocator = m_keyChain.getPib().getIdentity(DEFAULT_COMMAND_SIGNER_IDENTITY).getDefaultKey().getName();
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700146 BOOST_CHECK_EQUAL(requesterName, keyLocator.toUri());
147}
148
149BOOST_AUTO_TEST_CASE(ValidateParameters)
150{
151 ControlParameters params;
152 TestCommandVoidParameters commandVoidParams;
153 TestCommandRequireName commandRequireName;
154
155 BOOST_CHECK_EQUAL(ManagerBase::validateParameters(commandVoidParams, params), true); // succeeds
156 BOOST_CHECK_EQUAL(ManagerBase::validateParameters(commandRequireName, params), false); // fails
157
158 params.setName("test-name");
159 BOOST_CHECK_EQUAL(ManagerBase::validateParameters(commandRequireName, params), true); // succeeds
160}
161
162BOOST_AUTO_TEST_CASE(MakeRelPrefix)
163{
164 auto generatedRelPrefix = m_manager.makeRelPrefix("test-verb");
165 BOOST_CHECK_EQUAL(generatedRelPrefix, PartialName("/test-module/test-verb"));
166}
167
Yanbiao Lidf846e52016-01-30 21:53:47 -0800168BOOST_AUTO_TEST_SUITE_END() // TestManagerBase
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700169
170} // namespace tests
171} // namespace nfd