blob: 6e696ffa6f4ce832e432d84f8b2b26b38bf2724d [file] [log] [blame]
Yanbiao Li698f4fe2015-08-19 16:30:16 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Yanbiao Lidf846e52016-01-30 21:53:47 -08003 * Copyright (c) 2014-2016, 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>
30#include <ndn-cxx/management/nfd-control-command.hpp>
31
32namespace nfd {
33namespace tests {
34
Yanbiao Li698f4fe2015-08-19 16:30:16 -070035class TestCommandVoidParameters : public ndn::nfd::ControlCommand
36{
37public:
38 TestCommandVoidParameters()
39 : ndn::nfd::ControlCommand("test-module", "test-void-parameters")
40 {
41 }
42};
43
44class TestCommandRequireName : public ndn::nfd::ControlCommand
45{
46public:
47 TestCommandRequireName()
48 : ndn::nfd::ControlCommand("test-module", "test-require-name")
49 {
50 m_requestValidator.required(ndn::nfd::CONTROL_PARAMETER_NAME);
51 }
52};
53
Yanbiao Lidf846e52016-01-30 21:53:47 -080054class ManagerTester : public ManagerBase
55{
56public:
57 ManagerTester(Dispatcher& dispatcher,
58 const std::string& module)
Junxiao Shi21738402016-08-19 19:48:00 +000059 : ManagerBase(dispatcher, module)
60 {
Yanbiao Lidf846e52016-01-30 21:53:47 -080061 }
62
Junxiao Shi21738402016-08-19 19:48:00 +000063 virtual ndn::mgmt::Authorization
64 makeAuthorization(const std::string& verb) override
65 {
66 return [this] (const Name& prefix, const Interest& interest,
67 const ndn::mgmt::ControlParameters* params,
68 ndn::mgmt::AcceptContinuation accept,
69 ndn::mgmt::RejectContinuation reject) {
70 accept("requester");
71 };
Yanbiao Lidf846e52016-01-30 21:53:47 -080072 }
73};
74
Yanbiao Li698f4fe2015-08-19 16:30:16 -070075class ManagerBaseFixture : public ManagerCommonFixture
76{
77public:
78 ManagerBaseFixture()
Yanbiao Lidf846e52016-01-30 21:53:47 -080079 : m_manager(m_dispatcher, "test-module")
Yanbiao Li698f4fe2015-08-19 16:30:16 -070080 {
81 }
82
83protected:
Yanbiao Lidf846e52016-01-30 21:53:47 -080084 ManagerTester m_manager;
Yanbiao Li698f4fe2015-08-19 16:30:16 -070085};
86
Yanbiao Lidf846e52016-01-30 21:53:47 -080087BOOST_AUTO_TEST_SUITE(Core)
88BOOST_FIXTURE_TEST_SUITE(TestManagerBase, ManagerBaseFixture)
Yanbiao Li698f4fe2015-08-19 16:30:16 -070089
90BOOST_AUTO_TEST_CASE(RegisterCommandHandler)
91{
92 bool wasCommandHandlerCalled = false;
93 auto handler = bind([&] { wasCommandHandlerCalled = true; });
94
95 m_manager.registerCommandHandler<TestCommandVoidParameters>("test-void", handler);
96 m_manager.registerCommandHandler<TestCommandRequireName>("test-require-name", handler);
Yanbiao Lidf846e52016-01-30 21:53:47 -080097 setTopPrefix("/localhost/nfd");
Yanbiao Li698f4fe2015-08-19 16:30:16 -070098
99 auto testRegisterCommandHandler = [&wasCommandHandlerCalled, this] (const Name& commandName) {
100 wasCommandHandlerCalled = false;
101 receiveInterest(makeControlCommandRequest(commandName, ControlParameters()));
102 };
103
104 testRegisterCommandHandler("/localhost/nfd/test-module/test-void");
105 BOOST_CHECK(wasCommandHandlerCalled);
106
107 testRegisterCommandHandler("/localhost/nfd/test-module/test-require-name");
108 BOOST_CHECK(!wasCommandHandlerCalled);
109}
110
111BOOST_AUTO_TEST_CASE(RegisterStatusDataset)
112{
113 bool isStatusDatasetCalled = false;
114 auto handler = bind([&] { isStatusDatasetCalled = true; });
115
116 m_manager.registerStatusDatasetHandler("test-status", handler);
Yanbiao Lidf846e52016-01-30 21:53:47 -0800117 setTopPrefix("/localhost/nfd");
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700118
119 receiveInterest(makeInterest("/localhost/nfd/test-module/test-status"));
120 BOOST_CHECK(isStatusDatasetCalled);
121}
122
123BOOST_AUTO_TEST_CASE(RegisterNotificationStream)
124{
125 auto post = m_manager.registerNotificationStream("test-notification");
Yanbiao Lidf846e52016-01-30 21:53:47 -0800126 setTopPrefix("/localhost/nfd");
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700127
128 post(Block("\x82\x01\x02", 3));
129 advanceClocks(time::milliseconds(1));
130
131 BOOST_REQUIRE_EQUAL(m_responses.size(), 1);
132 BOOST_CHECK_EQUAL(m_responses[0].getName(),
133 Name("/localhost/nfd/test-module/test-notification/%FE%00"));
134}
135
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700136BOOST_AUTO_TEST_CASE(ExtractRequester)
137{
138 std::string requesterName;
139 auto testAccept = [&] (const std::string& requester) { requesterName = requester; };
140
141 auto unsignedCommand = makeInterest("/test/interest/unsigned");
142 auto signedCommand = makeControlCommandRequest("/test/interest/signed", ControlParameters());
143
144 m_manager.extractRequester(*unsignedCommand, testAccept);
145 BOOST_CHECK(requesterName.empty());
146
147 requesterName = "";
148 m_manager.extractRequester(*signedCommand, testAccept);
149 auto keyLocator = m_keyChain.getDefaultCertificateNameForIdentity(m_identityName).getPrefix(-1);
150 BOOST_CHECK_EQUAL(requesterName, keyLocator.toUri());
151}
152
153BOOST_AUTO_TEST_CASE(ValidateParameters)
154{
155 ControlParameters params;
156 TestCommandVoidParameters commandVoidParams;
157 TestCommandRequireName commandRequireName;
158
159 BOOST_CHECK_EQUAL(ManagerBase::validateParameters(commandVoidParams, params), true); // succeeds
160 BOOST_CHECK_EQUAL(ManagerBase::validateParameters(commandRequireName, params), false); // fails
161
162 params.setName("test-name");
163 BOOST_CHECK_EQUAL(ManagerBase::validateParameters(commandRequireName, params), true); // succeeds
164}
165
166BOOST_AUTO_TEST_CASE(MakeRelPrefix)
167{
168 auto generatedRelPrefix = m_manager.makeRelPrefix("test-verb");
169 BOOST_CHECK_EQUAL(generatedRelPrefix, PartialName("/test-module/test-verb"));
170}
171
Yanbiao Lidf846e52016-01-30 21:53:47 -0800172BOOST_AUTO_TEST_SUITE_END() // TestManagerBase
173BOOST_AUTO_TEST_SUITE_END() // Core
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700174
175} // namespace tests
176} // namespace nfd