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