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 | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2014-2019, 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 | |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 26 | #ifndef NFD_TESTS_DAEMON_MGMT_MANAGER_COMMON_FIXTURE_HPP |
| 27 | #define NFD_TESTS_DAEMON_MGMT_MANAGER_COMMON_FIXTURE_HPP |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 28 | |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 29 | #include "mgmt/manager-base.hpp" |
| 30 | #include "fw/forwarder.hpp" |
| 31 | |
Davide Pesavento | cf7db2f | 2019-03-24 23:17:28 -0400 | [diff] [blame^] | 32 | #include "tests/test-common.hpp" |
Davide Pesavento | 1d12d2f | 2019-03-22 12:44:14 -0400 | [diff] [blame] | 33 | #include "tests/key-chain-fixture.hpp" |
Davide Pesavento | cf7db2f | 2019-03-24 23:17:28 -0400 | [diff] [blame^] | 34 | #include "tests/daemon/global-io-fixture.hpp" |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 35 | |
Junxiao Shi | 8a1f170 | 2017-07-03 00:05:08 +0000 | [diff] [blame] | 36 | #include <ndn-cxx/security/command-interest-signer.hpp> |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 37 | #include <ndn-cxx/util/dummy-client-face.hpp> |
| 38 | |
| 39 | namespace nfd { |
| 40 | namespace tests { |
| 41 | |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 42 | /** \brief A fixture that provides a CommandInterestSigner. |
Junxiao Shi | 8a1f170 | 2017-07-03 00:05:08 +0000 | [diff] [blame] | 43 | */ |
Davide Pesavento | cf7db2f | 2019-03-24 23:17:28 -0400 | [diff] [blame^] | 44 | class CommandInterestSignerFixture : public GlobalIoTimeFixture, public KeyChainFixture |
Junxiao Shi | 8a1f170 | 2017-07-03 00:05:08 +0000 | [diff] [blame] | 45 | { |
| 46 | protected: |
| 47 | CommandInterestSignerFixture(); |
| 48 | |
| 49 | /** \brief sign a command Interest |
| 50 | * \param name command name include prefix and parameters |
| 51 | * \param identity signing identity |
| 52 | * \return a command Interest |
| 53 | */ |
| 54 | Interest |
| 55 | makeCommandInterest(const Name& name, const Name& identity = DEFAULT_COMMAND_SIGNER_IDENTITY); |
| 56 | |
| 57 | /** \brief create a ControlCommand request |
| 58 | * \param commandName command name including prefix, such as "/localhost/nfd/fib/add-nexthop" |
| 59 | * \param params command parameters |
| 60 | * \param identity signing identity |
| 61 | * \return a command Interest |
| 62 | */ |
| 63 | Interest |
| 64 | makeControlCommandRequest(Name commandName, const ControlParameters& params, |
| 65 | const Name& identity = DEFAULT_COMMAND_SIGNER_IDENTITY); |
| 66 | |
| 67 | protected: |
| 68 | static const Name DEFAULT_COMMAND_SIGNER_IDENTITY; |
| 69 | |
| 70 | private: |
| 71 | ndn::security::CommandInterestSigner m_commandInterestSigner; |
| 72 | }; |
| 73 | |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 74 | /** |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 75 | * @brief A collection of common functions shared by all manager's test fixtures. |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 76 | */ |
Junxiao Shi | 8a1f170 | 2017-07-03 00:05:08 +0000 | [diff] [blame] | 77 | class ManagerCommonFixture : public CommandInterestSignerFixture |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 78 | { |
| 79 | public: // initialize |
| 80 | ManagerCommonFixture(); |
| 81 | |
| 82 | /** |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 83 | * @brief Add `/localhost/nfd` as a top prefix to the dispatcher. |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 84 | * |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 85 | * Afterwards, advanceClocks() is called to ensure all added filters take effect. |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 86 | */ |
| 87 | void |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 88 | setTopPrefix(); |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 89 | |
| 90 | public: // test |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 91 | /** |
| 92 | * @brief cause management to receive an Interest |
| 93 | * |
| 94 | * call DummyClientFace::receive to receive Interest and then call advanceClocks to ensure |
| 95 | * the Interest dispatched |
| 96 | * |
| 97 | * @param interest the Interest to receive |
| 98 | */ |
| 99 | void |
Junxiao Shi | 8a1f170 | 2017-07-03 00:05:08 +0000 | [diff] [blame] | 100 | receiveInterest(const Interest& interest); |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 101 | |
| 102 | public: // verify |
| 103 | ControlResponse |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 104 | makeResponse(uint32_t code, const std::string& text, const ControlParameters& parameters); |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 105 | |
| 106 | enum class CheckResponseResult |
| 107 | { |
| 108 | OK, |
| 109 | OUT_OF_BOUNDARY, |
| 110 | WRONG_NAME, |
| 111 | WRONG_CONTENT_TYPE, |
| 112 | INVALID_RESPONSE, |
| 113 | WRONG_CODE, |
| 114 | WRONG_TEXT, |
| 115 | WRONG_BODY_SIZE, |
| 116 | WRONG_BODY_VALUE |
Davide Pesavento | 35120ea | 2015-11-17 21:13:18 +0100 | [diff] [blame] | 117 | }; |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 118 | |
| 119 | /** |
| 120 | * @brief check a specified response data with the expected ControlResponse |
| 121 | * |
| 122 | * @param idx the index of the specified Data in m_responses |
| 123 | * @param expectedDataName the expected name of this Data |
| 124 | * @param expectedResponse the expected ControlResponse |
| 125 | * @param expectedContentType the expected content type of this Data, use -1 to skip this check |
| 126 | * |
| 127 | * @retval OK the response at the specified index can be decoded from the response data, |
| 128 | * and its code, text and response body are all matched with the expected response |
| 129 | * @retval OUT_OF_BOUNDARY the specified index out of boundary |
| 130 | * @retval WRONG_NAME the name of the specified response data does not match |
| 131 | * @retval WRONG_CONTENT_TYPE the content type of the specified response data does not match |
| 132 | * @retval INVALID_RESPONSE the data name matches but it fails in decoding a ControlResponse from |
| 133 | * the content of the specified response data |
| 134 | * @retval WRONG_CODE a valid ControlResponse can be decoded but has a wrong code |
| 135 | * @retval WRONG_TEXT a valid ControlResponse can be decoded but has a wrong text |
| 136 | * @retval WRONG_BODY_SIZE the body size of decoded ControlResponse does not match |
| 137 | * @retval WRONT_BODY_VALUE the body value of decoded ControlResponse does not match |
| 138 | */ |
| 139 | CheckResponseResult |
| 140 | checkResponse(size_t idx, |
| 141 | const Name& expectedName, |
| 142 | const ControlResponse& expectedResponse, |
| 143 | int expectedContentType = -1); |
| 144 | |
| 145 | /** |
| 146 | * @brief concatenate specified response Data into a single block |
| 147 | * |
| 148 | * @param startIndex the start index in m_responses |
| 149 | * @param nResponses the number of response to concatenate |
| 150 | * |
| 151 | * @return the generated block |
| 152 | */ |
| 153 | Block |
| 154 | concatenateResponses(size_t startIndex = 0, size_t nResponses = 0); |
| 155 | |
| 156 | protected: |
Junxiao Shi | 221b6fe | 2016-07-14 18:21:56 +0000 | [diff] [blame] | 157 | ndn::util::DummyClientFace m_face; |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 158 | Dispatcher m_dispatcher; |
| 159 | std::vector<Data>& m_responses; ///< a reference to m_face.sentData |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 160 | }; |
| 161 | |
| 162 | std::ostream& |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 163 | operator<<(std::ostream& os, ManagerCommonFixture::CheckResponseResult result); |
| 164 | |
| 165 | class ManagerFixtureWithAuthenticator : public ManagerCommonFixture |
| 166 | { |
| 167 | public: |
| 168 | /** \brief grant m_identityName privilege to sign commands for the management module |
| 169 | */ |
| 170 | void |
| 171 | setPrivilege(const std::string& privilege); |
| 172 | |
| 173 | protected: |
| 174 | Forwarder m_forwarder; |
| 175 | shared_ptr<CommandAuthenticator> m_authenticator = CommandAuthenticator::create(); |
| 176 | }; |
| 177 | |
| 178 | class CommandSuccess |
| 179 | { |
| 180 | public: |
| 181 | static ControlResponse |
| 182 | getExpected() |
| 183 | { |
| 184 | return ControlResponse() |
| 185 | .setCode(200) |
| 186 | .setText("OK"); |
| 187 | } |
| 188 | }; |
| 189 | |
| 190 | template<int CODE> |
| 191 | class CommandFailure |
| 192 | { |
| 193 | public: |
| 194 | static ControlResponse |
| 195 | getExpected() |
| 196 | { |
| 197 | return ControlResponse() |
| 198 | .setCode(CODE); |
| 199 | // error description should not be checked |
| 200 | } |
| 201 | }; |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 202 | |
| 203 | } // namespace tests |
| 204 | } // namespace nfd |
| 205 | |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 206 | #endif // NFD_TESTS_DAEMON_MGMT_MANAGER_COMMON_FIXTURE_HPP |