Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | ac238f2 | 2017-09-12 15:19:40 -0400 | [diff] [blame] | 2 | /* |
Junxiao Shi | 16a3adf | 2017-05-26 17:38:51 +0000 | [diff] [blame] | 3 | * Copyright (c) 2014-2017, Regents of the University of California, |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [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 | |
Yanbiao Li | df846e5 | 2016-01-30 21:53:47 -0800 | [diff] [blame] | 26 | #include "core/manager-base.hpp" |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 27 | #include "manager-common-fixture.hpp" |
| 28 | |
| 29 | #include <ndn-cxx/security/key-chain.hpp> |
Junxiao Shi | 16a3adf | 2017-05-26 17:38:51 +0000 | [diff] [blame] | 30 | #include <ndn-cxx/security/pib/identity.hpp> |
| 31 | #include <ndn-cxx/security/pib/key.hpp> |
| 32 | #include <ndn-cxx/security/pib/pib.hpp> |
Junxiao Shi | 25c6ce4 | 2016-09-09 13:49:59 +0000 | [diff] [blame] | 33 | #include <ndn-cxx/mgmt/nfd/control-command.hpp> |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 34 | |
| 35 | namespace nfd { |
| 36 | namespace tests { |
| 37 | |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 38 | class TestCommandVoidParameters : public ndn::nfd::ControlCommand |
| 39 | { |
| 40 | public: |
| 41 | TestCommandVoidParameters() |
| 42 | : ndn::nfd::ControlCommand("test-module", "test-void-parameters") |
| 43 | { |
| 44 | } |
| 45 | }; |
| 46 | |
| 47 | class TestCommandRequireName : public ndn::nfd::ControlCommand |
| 48 | { |
| 49 | public: |
| 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 Li | df846e5 | 2016-01-30 21:53:47 -0800 | [diff] [blame] | 57 | class ManagerTester : public ManagerBase |
| 58 | { |
| 59 | public: |
Davide Pesavento | 0804f5d | 2017-09-22 21:18:14 -0400 | [diff] [blame^] | 60 | using ManagerBase::ManagerBase; |
Yanbiao Li | df846e5 | 2016-01-30 21:53:47 -0800 | [diff] [blame] | 61 | |
Junxiao Shi | 16a3adf | 2017-05-26 17:38:51 +0000 | [diff] [blame] | 62 | ndn::mgmt::Authorization |
Junxiao Shi | 2173840 | 2016-08-19 19:48:00 +0000 | [diff] [blame] | 63 | makeAuthorization(const std::string& verb) override |
| 64 | { |
Davide Pesavento | ac238f2 | 2017-09-12 15:19:40 -0400 | [diff] [blame] | 65 | return [] (const Name& prefix, const Interest& interest, |
| 66 | const ndn::mgmt::ControlParameters* params, |
| 67 | ndn::mgmt::AcceptContinuation accept, |
| 68 | ndn::mgmt::RejectContinuation reject) { |
Junxiao Shi | 2173840 | 2016-08-19 19:48:00 +0000 | [diff] [blame] | 69 | accept("requester"); |
| 70 | }; |
Yanbiao Li | df846e5 | 2016-01-30 21:53:47 -0800 | [diff] [blame] | 71 | } |
| 72 | }; |
| 73 | |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 74 | class ManagerBaseFixture : public ManagerCommonFixture |
| 75 | { |
| 76 | public: |
| 77 | ManagerBaseFixture() |
Yanbiao Li | df846e5 | 2016-01-30 21:53:47 -0800 | [diff] [blame] | 78 | : m_manager(m_dispatcher, "test-module") |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 79 | { |
| 80 | } |
| 81 | |
| 82 | protected: |
Yanbiao Li | df846e5 | 2016-01-30 21:53:47 -0800 | [diff] [blame] | 83 | ManagerTester m_manager; |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 84 | }; |
| 85 | |
Yanbiao Li | df846e5 | 2016-01-30 21:53:47 -0800 | [diff] [blame] | 86 | BOOST_FIXTURE_TEST_SUITE(TestManagerBase, ManagerBaseFixture) |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 87 | |
| 88 | BOOST_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 Li | df846e5 | 2016-01-30 21:53:47 -0800 | [diff] [blame] | 95 | setTopPrefix("/localhost/nfd"); |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 96 | |
| 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 | |
| 109 | BOOST_AUTO_TEST_CASE(RegisterStatusDataset) |
| 110 | { |
| 111 | bool isStatusDatasetCalled = false; |
| 112 | auto handler = bind([&] { isStatusDatasetCalled = true; }); |
| 113 | |
| 114 | m_manager.registerStatusDatasetHandler("test-status", handler); |
Yanbiao Li | df846e5 | 2016-01-30 21:53:47 -0800 | [diff] [blame] | 115 | setTopPrefix("/localhost/nfd"); |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 116 | |
Junxiao Shi | 8a1f170 | 2017-07-03 00:05:08 +0000 | [diff] [blame] | 117 | receiveInterest(Interest("/localhost/nfd/test-module/test-status")); |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 118 | BOOST_CHECK(isStatusDatasetCalled); |
| 119 | } |
| 120 | |
| 121 | BOOST_AUTO_TEST_CASE(RegisterNotificationStream) |
| 122 | { |
| 123 | auto post = m_manager.registerNotificationStream("test-notification"); |
Yanbiao Li | df846e5 | 2016-01-30 21:53:47 -0800 | [diff] [blame] | 124 | setTopPrefix("/localhost/nfd"); |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 125 | |
Davide Pesavento | 0804f5d | 2017-09-22 21:18:14 -0400 | [diff] [blame^] | 126 | const uint8_t buf[] = {0x82, 0x01, 0x02}; |
| 127 | post(Block(buf, sizeof(buf))); |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 128 | 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 Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 135 | BOOST_AUTO_TEST_CASE(ExtractRequester) |
| 136 | { |
| 137 | std::string requesterName; |
| 138 | auto testAccept = [&] (const std::string& requester) { requesterName = requester; }; |
| 139 | |
Junxiao Shi | 8a1f170 | 2017-07-03 00:05:08 +0000 | [diff] [blame] | 140 | m_manager.extractRequester(Interest("/test/interest/unsigned"), testAccept); |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 141 | BOOST_CHECK(requesterName.empty()); |
| 142 | |
| 143 | requesterName = ""; |
Junxiao Shi | 8a1f170 | 2017-07-03 00:05:08 +0000 | [diff] [blame] | 144 | m_manager.extractRequester(makeControlCommandRequest("/test/interest/signed", ControlParameters()), testAccept); |
| 145 | auto keyLocator = m_keyChain.getPib().getIdentity(DEFAULT_COMMAND_SIGNER_IDENTITY).getDefaultKey().getName(); |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 146 | BOOST_CHECK_EQUAL(requesterName, keyLocator.toUri()); |
| 147 | } |
| 148 | |
| 149 | BOOST_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 | |
| 162 | BOOST_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 Li | df846e5 | 2016-01-30 21:53:47 -0800 | [diff] [blame] | 168 | BOOST_AUTO_TEST_SUITE_END() // TestManagerBase |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 169 | |
| 170 | } // namespace tests |
| 171 | } // namespace nfd |