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 | 1705744 | 2018-04-20 15:21:31 -0400 | [diff] [blame] | 2 | /* |
Davide Pesavento | deb5427 | 2022-03-11 18:51:05 -0500 | [diff] [blame] | 3 | * Copyright (c) 2014-2022, 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 | |
| 26 | #include "manager-common-fixture.hpp" |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 27 | |
Davide Pesavento | e422f9e | 2022-06-03 01:30:23 -0400 | [diff] [blame] | 28 | namespace nfd::tests { |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 29 | |
Junxiao Shi | 8a1f170 | 2017-07-03 00:05:08 +0000 | [diff] [blame] | 30 | CommandInterestSignerFixture::CommandInterestSignerFixture() |
Davide Pesavento | 6a699be | 2021-05-17 02:13:37 -0400 | [diff] [blame] | 31 | : m_signer(m_keyChain) |
Junxiao Shi | 8a1f170 | 2017-07-03 00:05:08 +0000 | [diff] [blame] | 32 | { |
Davide Pesavento | 2135375 | 2020-11-20 00:43:44 -0500 | [diff] [blame] | 33 | BOOST_REQUIRE(m_keyChain.createIdentity(DEFAULT_COMMAND_SIGNER_IDENTITY)); |
Junxiao Shi | 8a1f170 | 2017-07-03 00:05:08 +0000 | [diff] [blame] | 34 | } |
| 35 | |
| 36 | Interest |
| 37 | CommandInterestSignerFixture::makeCommandInterest(const Name& name, const Name& identity) |
| 38 | { |
Davide Pesavento | 6a699be | 2021-05-17 02:13:37 -0400 | [diff] [blame] | 39 | return m_signer.makeCommandInterest(name, ndn::security::signingByIdentity(identity)); |
Junxiao Shi | 8a1f170 | 2017-07-03 00:05:08 +0000 | [diff] [blame] | 40 | } |
| 41 | |
| 42 | Interest |
| 43 | CommandInterestSignerFixture::makeControlCommandRequest(Name commandName, |
| 44 | const ControlParameters& params, |
| 45 | const Name& identity) |
| 46 | { |
Davide Pesavento | deb5427 | 2022-03-11 18:51:05 -0500 | [diff] [blame] | 47 | commandName.append(tlv::GenericNameComponent, params.wireEncode()); |
Junxiao Shi | 8a1f170 | 2017-07-03 00:05:08 +0000 | [diff] [blame] | 48 | return this->makeCommandInterest(commandName, identity); |
| 49 | } |
| 50 | |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 51 | ManagerCommonFixture::ManagerCommonFixture() |
Davide Pesavento | 3dade00 | 2019-03-19 11:29:56 -0600 | [diff] [blame] | 52 | : m_face(g_io, m_keyChain, {true, true}) |
Junxiao Shi | 221b6fe | 2016-07-14 18:21:56 +0000 | [diff] [blame] | 53 | , m_dispatcher(m_face, m_keyChain, ndn::security::SigningInfo()) |
| 54 | , m_responses(m_face.sentData) |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 55 | { |
| 56 | } |
| 57 | |
| 58 | void |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 59 | ManagerCommonFixture::setTopPrefix() |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 60 | { |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 61 | m_dispatcher.addTopPrefix("/localhost/nfd"); |
| 62 | advanceClocks(1_ms); // so that all filters are added |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 63 | } |
| 64 | |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 65 | void |
Junxiao Shi | 8a1f170 | 2017-07-03 00:05:08 +0000 | [diff] [blame] | 66 | ManagerCommonFixture::receiveInterest(const Interest& interest) |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 67 | { |
Junxiao Shi | 8a1f170 | 2017-07-03 00:05:08 +0000 | [diff] [blame] | 68 | m_face.receive(interest); |
Davide Pesavento | 1705744 | 2018-04-20 15:21:31 -0400 | [diff] [blame] | 69 | advanceClocks(1_ms); |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 70 | } |
| 71 | |
| 72 | ControlResponse |
| 73 | ManagerCommonFixture::makeResponse(uint32_t code, const std::string& text, |
| 74 | const ControlParameters& parameters) |
| 75 | { |
| 76 | return ControlResponse(code, text).setBody(parameters.wireEncode()); |
| 77 | } |
| 78 | |
| 79 | ManagerCommonFixture::CheckResponseResult |
| 80 | ManagerCommonFixture::checkResponse(size_t idx, |
| 81 | const Name& expectedName, |
| 82 | const ControlResponse& expectedResponse, |
| 83 | int expectedContentType /*= -1*/) |
| 84 | { |
| 85 | Data data; |
| 86 | try { |
| 87 | data = m_responses.at(idx); |
| 88 | } |
| 89 | catch (const std::out_of_range&) { |
Junxiao Shi | 7d30d85 | 2017-01-22 03:29:26 +0000 | [diff] [blame] | 90 | BOOST_TEST_MESSAGE("response[" << idx << "] does not exist"); |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 91 | return CheckResponseResult::OUT_OF_BOUNDARY; |
| 92 | } |
| 93 | |
| 94 | if (data.getName() != expectedName) { |
Junxiao Shi | 7d30d85 | 2017-01-22 03:29:26 +0000 | [diff] [blame] | 95 | BOOST_TEST_MESSAGE("response[" << idx << "] has wrong name " << data.getName()); |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 96 | return CheckResponseResult::WRONG_NAME; |
| 97 | } |
| 98 | |
| 99 | if (expectedContentType != -1 && |
| 100 | data.getContentType() != static_cast<uint32_t>(expectedContentType)) { |
Junxiao Shi | 7d30d85 | 2017-01-22 03:29:26 +0000 | [diff] [blame] | 101 | BOOST_TEST_MESSAGE("response[" << idx << "] has wrong ContentType " << data.getContentType()); |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 102 | return CheckResponseResult::WRONG_CONTENT_TYPE; |
| 103 | } |
| 104 | |
| 105 | ControlResponse response; |
| 106 | try { |
| 107 | response.wireDecode(data.getContent().blockFromValue()); |
| 108 | } |
| 109 | catch (const tlv::Error&) { |
Junxiao Shi | 7d30d85 | 2017-01-22 03:29:26 +0000 | [diff] [blame] | 110 | BOOST_TEST_MESSAGE("response[" << idx << "] cannot be decoded"); |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 111 | return CheckResponseResult::INVALID_RESPONSE; |
| 112 | } |
| 113 | |
| 114 | if (response.getCode() != expectedResponse.getCode()) { |
Junxiao Shi | 7d30d85 | 2017-01-22 03:29:26 +0000 | [diff] [blame] | 115 | BOOST_TEST_MESSAGE("response[" << idx << "] has wrong StatusCode " << response.getCode()); |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 116 | return CheckResponseResult::WRONG_CODE; |
| 117 | } |
| 118 | |
| 119 | if (response.getText() != expectedResponse.getText()) { |
Junxiao Shi | 7d30d85 | 2017-01-22 03:29:26 +0000 | [diff] [blame] | 120 | BOOST_TEST_MESSAGE("response[" << idx << "] has wrong StatusText " << response.getText()); |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 121 | return CheckResponseResult::WRONG_TEXT; |
| 122 | } |
| 123 | |
| 124 | const Block& body = response.getBody(); |
| 125 | const Block& expectedBody = expectedResponse.getBody(); |
| 126 | if (body.value_size() != expectedBody.value_size()) { |
Junxiao Shi | 7d30d85 | 2017-01-22 03:29:26 +0000 | [diff] [blame] | 127 | BOOST_TEST_MESSAGE("response[" << idx << "] has wrong body size " << body.value_size()); |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 128 | return CheckResponseResult::WRONG_BODY_SIZE; |
| 129 | } |
| 130 | if (body.value_size() > 0 && memcmp(body.value(), expectedBody.value(), body.value_size()) != 0) { |
Junxiao Shi | 7d30d85 | 2017-01-22 03:29:26 +0000 | [diff] [blame] | 131 | BOOST_TEST_MESSAGE("response[" << idx << "] has wrong body value"); |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 132 | return CheckResponseResult::WRONG_BODY_VALUE; |
| 133 | } |
| 134 | |
| 135 | return CheckResponseResult::OK; |
| 136 | } |
| 137 | |
| 138 | Block |
| 139 | ManagerCommonFixture::concatenateResponses(size_t startIndex, size_t nResponses) |
| 140 | { |
Davide Pesavento | 1705744 | 2018-04-20 15:21:31 -0400 | [diff] [blame] | 141 | while (m_responses.back().getName().at(-1) != m_responses.back().getFinalBlock()) { |
Yanbiao Li | df846e5 | 2016-01-30 21:53:47 -0800 | [diff] [blame] | 142 | const Name& name = m_responses.back().getName(); |
| 143 | Name prefix = name.getPrefix(-1); |
| 144 | uint64_t segmentNo = name.at(-1).toSegment() + 1; |
Yanbiao Li | 150b80d | 2016-03-18 15:30:10 +0800 | [diff] [blame] | 145 | // request for the next segment |
Junxiao Shi | 9d72785 | 2019-05-14 13:44:22 -0600 | [diff] [blame] | 146 | receiveInterest(*makeInterest(prefix.appendSegment(segmentNo))); |
Yanbiao Li | 150b80d | 2016-03-18 15:30:10 +0800 | [diff] [blame] | 147 | } |
| 148 | |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 149 | size_t endIndex = startIndex + nResponses; // not included |
| 150 | if (nResponses == startIndex || endIndex > m_responses.size()) { |
| 151 | endIndex = m_responses.size(); |
| 152 | } |
| 153 | |
| 154 | ndn::EncodingBuffer encoder; |
Davide Pesavento | deb5427 | 2022-03-11 18:51:05 -0500 | [diff] [blame] | 155 | size_t length = 0; |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 156 | for (size_t i = startIndex; i < endIndex ; i ++) { |
Davide Pesavento | deb5427 | 2022-03-11 18:51:05 -0500 | [diff] [blame] | 157 | length += encoder.appendBytes(m_responses[i].getContent().value_bytes()); |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 158 | } |
Davide Pesavento | deb5427 | 2022-03-11 18:51:05 -0500 | [diff] [blame] | 159 | encoder.prependVarNumber(length); |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 160 | encoder.prependVarNumber(tlv::Content); |
| 161 | return encoder.block(); |
| 162 | } |
| 163 | |
| 164 | std::ostream& |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 165 | operator<<(std::ostream& os, ManagerCommonFixture::CheckResponseResult result) |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 166 | { |
| 167 | switch (result) { |
Junxiao Shi | 8a1f170 | 2017-07-03 00:05:08 +0000 | [diff] [blame] | 168 | case ManagerCommonFixture::CheckResponseResult::OK: |
| 169 | return os << "OK"; |
| 170 | case ManagerCommonFixture::CheckResponseResult::OUT_OF_BOUNDARY: |
| 171 | return os << "OUT_OF_BOUNDARY"; |
| 172 | case ManagerCommonFixture::CheckResponseResult::WRONG_NAME: |
| 173 | return os << "WRONG_NAME"; |
| 174 | case ManagerCommonFixture::CheckResponseResult::WRONG_CONTENT_TYPE: |
| 175 | return os << "WRONG_CONTENT_TYPE"; |
| 176 | case ManagerCommonFixture::CheckResponseResult::INVALID_RESPONSE: |
| 177 | return os << "INVALID_RESPONSE"; |
| 178 | case ManagerCommonFixture::CheckResponseResult::WRONG_CODE: |
| 179 | return os << "WRONG_CODE"; |
| 180 | case ManagerCommonFixture::CheckResponseResult::WRONG_TEXT: |
| 181 | return os << "WRONG_TEXT"; |
| 182 | case ManagerCommonFixture::CheckResponseResult::WRONG_BODY_SIZE: |
| 183 | return os << "WRONG_BODY_SIZE"; |
| 184 | case ManagerCommonFixture::CheckResponseResult::WRONG_BODY_VALUE: |
| 185 | return os << "WRONG_BODY_VALUE"; |
| 186 | } |
| 187 | return os << static_cast<int>(result); |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 188 | } |
| 189 | |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 190 | void |
| 191 | ManagerFixtureWithAuthenticator::setPrivilege(const std::string& privilege) |
| 192 | { |
Davide Pesavento | 2135375 | 2020-11-20 00:43:44 -0500 | [diff] [blame] | 193 | saveIdentityCert(DEFAULT_COMMAND_SIGNER_IDENTITY, "ManagerCommonFixture.ndncert"); |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 194 | |
| 195 | const std::string& config = R"CONFIG( |
| 196 | authorizations |
| 197 | { |
| 198 | authorize |
| 199 | { |
| 200 | certfile "ManagerCommonFixture.ndncert" |
| 201 | privileges |
| 202 | { |
| 203 | )CONFIG" + privilege + R"CONFIG( |
| 204 | } |
| 205 | } |
| 206 | } |
| 207 | )CONFIG"; |
| 208 | |
| 209 | ConfigFile cf; |
| 210 | m_authenticator->setConfigFile(cf); |
| 211 | cf.parse(config, false, "ManagerCommonFixture.authenticator.conf"); |
| 212 | } |
| 213 | |
Davide Pesavento | e422f9e | 2022-06-03 01:30:23 -0400 | [diff] [blame] | 214 | } // namespace nfd::tests |