blob: d69763d997a29e5a2edcb75f1a95be40be0a173a [file] [log] [blame]
Yanbiao Li698f4fe2015-08-19 16:30:16 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento17057442018-04-20 15:21:31 -04002/*
Davide Pesaventodeb54272022-03-11 18:51:05 -05003 * Copyright (c) 2014-2022, 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
26#include "manager-common-fixture.hpp"
Davide Pesavento78ddcab2019-02-28 22:00:03 -050027
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040028namespace nfd::tests {
Yanbiao Li698f4fe2015-08-19 16:30:16 -070029
Davide Pesavento20cafa82022-07-25 01:15:03 -040030InterestSignerFixture::InterestSignerFixture()
Junxiao Shi8a1f1702017-07-03 00:05:08 +000031{
Davide Pesavento21353752020-11-20 00:43:44 -050032 BOOST_REQUIRE(m_keyChain.createIdentity(DEFAULT_COMMAND_SIGNER_IDENTITY));
Junxiao Shi8a1f1702017-07-03 00:05:08 +000033}
34
35Interest
Davide Pesavento20cafa82022-07-25 01:15:03 -040036InterestSignerFixture::makeControlCommandRequest(Name commandName,
37 const ControlParameters& params,
Davide Pesavento6d6f2072022-09-12 23:08:34 -040038 ndn::security::SignedInterestFormat format,
Davide Pesavento20cafa82022-07-25 01:15:03 -040039 const Name& identity)
Junxiao Shi8a1f1702017-07-03 00:05:08 +000040{
Davide Pesaventodeb54272022-03-11 18:51:05 -050041 commandName.append(tlv::GenericNameComponent, params.wireEncode());
Davide Pesavento6d6f2072022-09-12 23:08:34 -040042
43 switch (format) {
44 case ndn::security::SignedInterestFormat::V02:
45 return m_signer.makeCommandInterest(commandName, ndn::security::signingByIdentity(identity));
46 case ndn::security::SignedInterestFormat::V03: {
47 Interest interest(commandName);
48 m_signer.makeSignedInterest(interest, ndn::security::signingByIdentity(identity));
49 return interest;
50 }
51 }
52 NDN_CXX_UNREACHABLE;
Junxiao Shi8a1f1702017-07-03 00:05:08 +000053}
54
Yanbiao Li698f4fe2015-08-19 16:30:16 -070055void
Davide Pesavento78ddcab2019-02-28 22:00:03 -050056ManagerCommonFixture::setTopPrefix()
Yanbiao Li698f4fe2015-08-19 16:30:16 -070057{
Davide Pesavento78ddcab2019-02-28 22:00:03 -050058 m_dispatcher.addTopPrefix("/localhost/nfd");
59 advanceClocks(1_ms); // so that all filters are added
Yanbiao Li698f4fe2015-08-19 16:30:16 -070060}
61
Yanbiao Li698f4fe2015-08-19 16:30:16 -070062void
Junxiao Shi8a1f1702017-07-03 00:05:08 +000063ManagerCommonFixture::receiveInterest(const Interest& interest)
Yanbiao Li698f4fe2015-08-19 16:30:16 -070064{
Junxiao Shi8a1f1702017-07-03 00:05:08 +000065 m_face.receive(interest);
Davide Pesavento17057442018-04-20 15:21:31 -040066 advanceClocks(1_ms);
Yanbiao Li698f4fe2015-08-19 16:30:16 -070067}
68
69ControlResponse
70ManagerCommonFixture::makeResponse(uint32_t code, const std::string& text,
71 const ControlParameters& parameters)
72{
73 return ControlResponse(code, text).setBody(parameters.wireEncode());
74}
75
76ManagerCommonFixture::CheckResponseResult
77ManagerCommonFixture::checkResponse(size_t idx,
78 const Name& expectedName,
79 const ControlResponse& expectedResponse,
80 int expectedContentType /*= -1*/)
81{
82 Data data;
83 try {
84 data = m_responses.at(idx);
85 }
86 catch (const std::out_of_range&) {
Junxiao Shi7d30d852017-01-22 03:29:26 +000087 BOOST_TEST_MESSAGE("response[" << idx << "] does not exist");
Yanbiao Li698f4fe2015-08-19 16:30:16 -070088 return CheckResponseResult::OUT_OF_BOUNDARY;
89 }
90
91 if (data.getName() != expectedName) {
Junxiao Shi7d30d852017-01-22 03:29:26 +000092 BOOST_TEST_MESSAGE("response[" << idx << "] has wrong name " << data.getName());
Yanbiao Li698f4fe2015-08-19 16:30:16 -070093 return CheckResponseResult::WRONG_NAME;
94 }
95
96 if (expectedContentType != -1 &&
97 data.getContentType() != static_cast<uint32_t>(expectedContentType)) {
Junxiao Shi7d30d852017-01-22 03:29:26 +000098 BOOST_TEST_MESSAGE("response[" << idx << "] has wrong ContentType " << data.getContentType());
Yanbiao Li698f4fe2015-08-19 16:30:16 -070099 return CheckResponseResult::WRONG_CONTENT_TYPE;
100 }
101
102 ControlResponse response;
103 try {
104 response.wireDecode(data.getContent().blockFromValue());
105 }
106 catch (const tlv::Error&) {
Junxiao Shi7d30d852017-01-22 03:29:26 +0000107 BOOST_TEST_MESSAGE("response[" << idx << "] cannot be decoded");
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700108 return CheckResponseResult::INVALID_RESPONSE;
109 }
110
111 if (response.getCode() != expectedResponse.getCode()) {
Junxiao Shi7d30d852017-01-22 03:29:26 +0000112 BOOST_TEST_MESSAGE("response[" << idx << "] has wrong StatusCode " << response.getCode());
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700113 return CheckResponseResult::WRONG_CODE;
114 }
115
116 if (response.getText() != expectedResponse.getText()) {
Junxiao Shi7d30d852017-01-22 03:29:26 +0000117 BOOST_TEST_MESSAGE("response[" << idx << "] has wrong StatusText " << response.getText());
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700118 return CheckResponseResult::WRONG_TEXT;
119 }
120
121 const Block& body = response.getBody();
122 const Block& expectedBody = expectedResponse.getBody();
123 if (body.value_size() != expectedBody.value_size()) {
Junxiao Shi7d30d852017-01-22 03:29:26 +0000124 BOOST_TEST_MESSAGE("response[" << idx << "] has wrong body size " << body.value_size());
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700125 return CheckResponseResult::WRONG_BODY_SIZE;
126 }
127 if (body.value_size() > 0 && memcmp(body.value(), expectedBody.value(), body.value_size()) != 0) {
Junxiao Shi7d30d852017-01-22 03:29:26 +0000128 BOOST_TEST_MESSAGE("response[" << idx << "] has wrong body value");
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700129 return CheckResponseResult::WRONG_BODY_VALUE;
130 }
131
132 return CheckResponseResult::OK;
133}
134
135Block
136ManagerCommonFixture::concatenateResponses(size_t startIndex, size_t nResponses)
137{
Davide Pesavento17057442018-04-20 15:21:31 -0400138 while (m_responses.back().getName().at(-1) != m_responses.back().getFinalBlock()) {
Yanbiao Lidf846e52016-01-30 21:53:47 -0800139 const Name& name = m_responses.back().getName();
140 Name prefix = name.getPrefix(-1);
141 uint64_t segmentNo = name.at(-1).toSegment() + 1;
Yanbiao Li150b80d2016-03-18 15:30:10 +0800142 // request for the next segment
Junxiao Shi9d727852019-05-14 13:44:22 -0600143 receiveInterest(*makeInterest(prefix.appendSegment(segmentNo)));
Yanbiao Li150b80d2016-03-18 15:30:10 +0800144 }
145
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700146 size_t endIndex = startIndex + nResponses; // not included
147 if (nResponses == startIndex || endIndex > m_responses.size()) {
148 endIndex = m_responses.size();
149 }
150
151 ndn::EncodingBuffer encoder;
Davide Pesaventodeb54272022-03-11 18:51:05 -0500152 size_t length = 0;
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700153 for (size_t i = startIndex; i < endIndex ; i ++) {
Davide Pesaventodeb54272022-03-11 18:51:05 -0500154 length += encoder.appendBytes(m_responses[i].getContent().value_bytes());
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700155 }
Davide Pesaventodeb54272022-03-11 18:51:05 -0500156 encoder.prependVarNumber(length);
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700157 encoder.prependVarNumber(tlv::Content);
158 return encoder.block();
159}
160
161std::ostream&
Davide Pesavento78ddcab2019-02-28 22:00:03 -0500162operator<<(std::ostream& os, ManagerCommonFixture::CheckResponseResult result)
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700163{
164 switch (result) {
Junxiao Shi8a1f1702017-07-03 00:05:08 +0000165 case ManagerCommonFixture::CheckResponseResult::OK:
166 return os << "OK";
167 case ManagerCommonFixture::CheckResponseResult::OUT_OF_BOUNDARY:
168 return os << "OUT_OF_BOUNDARY";
169 case ManagerCommonFixture::CheckResponseResult::WRONG_NAME:
170 return os << "WRONG_NAME";
171 case ManagerCommonFixture::CheckResponseResult::WRONG_CONTENT_TYPE:
172 return os << "WRONG_CONTENT_TYPE";
173 case ManagerCommonFixture::CheckResponseResult::INVALID_RESPONSE:
174 return os << "INVALID_RESPONSE";
175 case ManagerCommonFixture::CheckResponseResult::WRONG_CODE:
176 return os << "WRONG_CODE";
177 case ManagerCommonFixture::CheckResponseResult::WRONG_TEXT:
178 return os << "WRONG_TEXT";
179 case ManagerCommonFixture::CheckResponseResult::WRONG_BODY_SIZE:
180 return os << "WRONG_BODY_SIZE";
181 case ManagerCommonFixture::CheckResponseResult::WRONG_BODY_VALUE:
182 return os << "WRONG_BODY_VALUE";
183 }
184 return os << static_cast<int>(result);
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700185}
186
Davide Pesavento78ddcab2019-02-28 22:00:03 -0500187void
188ManagerFixtureWithAuthenticator::setPrivilege(const std::string& privilege)
189{
Davide Pesavento21353752020-11-20 00:43:44 -0500190 saveIdentityCert(DEFAULT_COMMAND_SIGNER_IDENTITY, "ManagerCommonFixture.ndncert");
Davide Pesavento78ddcab2019-02-28 22:00:03 -0500191
Davide Pesavento20cafa82022-07-25 01:15:03 -0400192 const std::string config = R"CONFIG(
Davide Pesavento78ddcab2019-02-28 22:00:03 -0500193 authorizations
194 {
195 authorize
196 {
197 certfile "ManagerCommonFixture.ndncert"
198 privileges
199 {
200 )CONFIG" + privilege + R"CONFIG(
201 }
202 }
203 }
204 )CONFIG";
205
206 ConfigFile cf;
207 m_authenticator->setConfigFile(cf);
208 cf.parse(config, false, "ManagerCommonFixture.authenticator.conf");
209}
210
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400211} // namespace nfd::tests