blob: db3a8ec2df26b42c5c810c381154e2b9e43d7e19 [file] [log] [blame]
Yanbiao Li698f4fe2015-08-19 16:30:16 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shi16a3adf2017-05-26 17:38:51 +00003 * Copyright (c) 2014-2017, 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"
Yanbiao Li698f4fe2015-08-19 16:30:16 -070027#include "manager-common-fixture.hpp"
28
29#include <ndn-cxx/security/key-chain.hpp>
Junxiao Shi16a3adf2017-05-26 17:38:51 +000030#include <ndn-cxx/security/pib/identity.hpp>
31#include <ndn-cxx/security/pib/key.hpp>
32#include <ndn-cxx/security/pib/pib.hpp>
Junxiao Shi25c6ce42016-09-09 13:49:59 +000033#include <ndn-cxx/mgmt/nfd/control-command.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:
60 ManagerTester(Dispatcher& dispatcher,
61 const std::string& module)
Junxiao Shi21738402016-08-19 19:48:00 +000062 : ManagerBase(dispatcher, module)
63 {
Yanbiao Lidf846e52016-01-30 21:53:47 -080064 }
65
Junxiao Shi16a3adf2017-05-26 17:38:51 +000066 ndn::mgmt::Authorization
Junxiao Shi21738402016-08-19 19:48:00 +000067 makeAuthorization(const std::string& verb) override
68 {
69 return [this] (const Name& prefix, const Interest& interest,
70 const ndn::mgmt::ControlParameters* params,
71 ndn::mgmt::AcceptContinuation accept,
72 ndn::mgmt::RejectContinuation reject) {
73 accept("requester");
74 };
Yanbiao Lidf846e52016-01-30 21:53:47 -080075 }
76};
77
Yanbiao Li698f4fe2015-08-19 16:30:16 -070078class ManagerBaseFixture : public ManagerCommonFixture
79{
80public:
81 ManagerBaseFixture()
Yanbiao Lidf846e52016-01-30 21:53:47 -080082 : m_manager(m_dispatcher, "test-module")
Yanbiao Li698f4fe2015-08-19 16:30:16 -070083 {
84 }
85
86protected:
Yanbiao Lidf846e52016-01-30 21:53:47 -080087 ManagerTester m_manager;
Yanbiao Li698f4fe2015-08-19 16:30:16 -070088};
89
Yanbiao Lidf846e52016-01-30 21:53:47 -080090BOOST_FIXTURE_TEST_SUITE(TestManagerBase, ManagerBaseFixture)
Yanbiao Li698f4fe2015-08-19 16:30:16 -070091
92BOOST_AUTO_TEST_CASE(RegisterCommandHandler)
93{
94 bool wasCommandHandlerCalled = false;
95 auto handler = bind([&] { wasCommandHandlerCalled = true; });
96
97 m_manager.registerCommandHandler<TestCommandVoidParameters>("test-void", handler);
98 m_manager.registerCommandHandler<TestCommandRequireName>("test-require-name", handler);
Yanbiao Lidf846e52016-01-30 21:53:47 -080099 setTopPrefix("/localhost/nfd");
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700100
101 auto testRegisterCommandHandler = [&wasCommandHandlerCalled, this] (const Name& commandName) {
102 wasCommandHandlerCalled = false;
103 receiveInterest(makeControlCommandRequest(commandName, ControlParameters()));
104 };
105
106 testRegisterCommandHandler("/localhost/nfd/test-module/test-void");
107 BOOST_CHECK(wasCommandHandlerCalled);
108
109 testRegisterCommandHandler("/localhost/nfd/test-module/test-require-name");
110 BOOST_CHECK(!wasCommandHandlerCalled);
111}
112
113BOOST_AUTO_TEST_CASE(RegisterStatusDataset)
114{
115 bool isStatusDatasetCalled = false;
116 auto handler = bind([&] { isStatusDatasetCalled = true; });
117
118 m_manager.registerStatusDatasetHandler("test-status", handler);
Yanbiao Lidf846e52016-01-30 21:53:47 -0800119 setTopPrefix("/localhost/nfd");
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700120
121 receiveInterest(makeInterest("/localhost/nfd/test-module/test-status"));
122 BOOST_CHECK(isStatusDatasetCalled);
123}
124
125BOOST_AUTO_TEST_CASE(RegisterNotificationStream)
126{
127 auto post = m_manager.registerNotificationStream("test-notification");
Yanbiao Lidf846e52016-01-30 21:53:47 -0800128 setTopPrefix("/localhost/nfd");
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700129
130 post(Block("\x82\x01\x02", 3));
131 advanceClocks(time::milliseconds(1));
132
133 BOOST_REQUIRE_EQUAL(m_responses.size(), 1);
134 BOOST_CHECK_EQUAL(m_responses[0].getName(),
135 Name("/localhost/nfd/test-module/test-notification/%FE%00"));
136}
137
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700138BOOST_AUTO_TEST_CASE(ExtractRequester)
139{
140 std::string requesterName;
141 auto testAccept = [&] (const std::string& requester) { requesterName = requester; };
142
143 auto unsignedCommand = makeInterest("/test/interest/unsigned");
144 auto signedCommand = makeControlCommandRequest("/test/interest/signed", ControlParameters());
145
146 m_manager.extractRequester(*unsignedCommand, testAccept);
147 BOOST_CHECK(requesterName.empty());
148
149 requesterName = "";
150 m_manager.extractRequester(*signedCommand, testAccept);
Junxiao Shi16a3adf2017-05-26 17:38:51 +0000151 auto keyLocator = m_keyChain.getPib().getIdentity(m_identityName).getDefaultKey().getName();
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700152 BOOST_CHECK_EQUAL(requesterName, keyLocator.toUri());
153}
154
155BOOST_AUTO_TEST_CASE(ValidateParameters)
156{
157 ControlParameters params;
158 TestCommandVoidParameters commandVoidParams;
159 TestCommandRequireName commandRequireName;
160
161 BOOST_CHECK_EQUAL(ManagerBase::validateParameters(commandVoidParams, params), true); // succeeds
162 BOOST_CHECK_EQUAL(ManagerBase::validateParameters(commandRequireName, params), false); // fails
163
164 params.setName("test-name");
165 BOOST_CHECK_EQUAL(ManagerBase::validateParameters(commandRequireName, params), true); // succeeds
166}
167
168BOOST_AUTO_TEST_CASE(MakeRelPrefix)
169{
170 auto generatedRelPrefix = m_manager.makeRelPrefix("test-verb");
171 BOOST_CHECK_EQUAL(generatedRelPrefix, PartialName("/test-module/test-verb"));
172}
173
Yanbiao Lidf846e52016-01-30 21:53:47 -0800174BOOST_AUTO_TEST_SUITE_END() // TestManagerBase
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700175
176} // namespace tests
177} // namespace nfd