blob: 3188ee44487ad2a53404aa04736282a8c2bc9be8 [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
Yanbiao Li698f4fe2015-08-19 16:30:16 -070028namespace nfd {
29namespace tests {
30
Junxiao Shi8a1f1702017-07-03 00:05:08 +000031CommandInterestSignerFixture::CommandInterestSignerFixture()
Davide Pesavento6a699be2021-05-17 02:13:37 -040032 : m_signer(m_keyChain)
Junxiao Shi8a1f1702017-07-03 00:05:08 +000033{
Davide Pesavento21353752020-11-20 00:43:44 -050034 BOOST_REQUIRE(m_keyChain.createIdentity(DEFAULT_COMMAND_SIGNER_IDENTITY));
Junxiao Shi8a1f1702017-07-03 00:05:08 +000035}
36
37Interest
38CommandInterestSignerFixture::makeCommandInterest(const Name& name, const Name& identity)
39{
Davide Pesavento6a699be2021-05-17 02:13:37 -040040 return m_signer.makeCommandInterest(name, ndn::security::signingByIdentity(identity));
Junxiao Shi8a1f1702017-07-03 00:05:08 +000041}
42
43Interest
44CommandInterestSignerFixture::makeControlCommandRequest(Name commandName,
45 const ControlParameters& params,
46 const Name& identity)
47{
Davide Pesaventodeb54272022-03-11 18:51:05 -050048 commandName.append(tlv::GenericNameComponent, params.wireEncode());
Junxiao Shi8a1f1702017-07-03 00:05:08 +000049 return this->makeCommandInterest(commandName, identity);
50}
51
Yanbiao Li698f4fe2015-08-19 16:30:16 -070052ManagerCommonFixture::ManagerCommonFixture()
Davide Pesavento3dade002019-03-19 11:29:56 -060053 : m_face(g_io, m_keyChain, {true, true})
Junxiao Shi221b6fe2016-07-14 18:21:56 +000054 , m_dispatcher(m_face, m_keyChain, ndn::security::SigningInfo())
55 , m_responses(m_face.sentData)
Yanbiao Li698f4fe2015-08-19 16:30:16 -070056{
57}
58
59void
Davide Pesavento78ddcab2019-02-28 22:00:03 -050060ManagerCommonFixture::setTopPrefix()
Yanbiao Li698f4fe2015-08-19 16:30:16 -070061{
Davide Pesavento78ddcab2019-02-28 22:00:03 -050062 m_dispatcher.addTopPrefix("/localhost/nfd");
63 advanceClocks(1_ms); // so that all filters are added
Yanbiao Li698f4fe2015-08-19 16:30:16 -070064}
65
Yanbiao Li698f4fe2015-08-19 16:30:16 -070066void
Junxiao Shi8a1f1702017-07-03 00:05:08 +000067ManagerCommonFixture::receiveInterest(const Interest& interest)
Yanbiao Li698f4fe2015-08-19 16:30:16 -070068{
Junxiao Shi8a1f1702017-07-03 00:05:08 +000069 m_face.receive(interest);
Davide Pesavento17057442018-04-20 15:21:31 -040070 advanceClocks(1_ms);
Yanbiao Li698f4fe2015-08-19 16:30:16 -070071}
72
73ControlResponse
74ManagerCommonFixture::makeResponse(uint32_t code, const std::string& text,
75 const ControlParameters& parameters)
76{
77 return ControlResponse(code, text).setBody(parameters.wireEncode());
78}
79
80ManagerCommonFixture::CheckResponseResult
81ManagerCommonFixture::checkResponse(size_t idx,
82 const Name& expectedName,
83 const ControlResponse& expectedResponse,
84 int expectedContentType /*= -1*/)
85{
86 Data data;
87 try {
88 data = m_responses.at(idx);
89 }
90 catch (const std::out_of_range&) {
Junxiao Shi7d30d852017-01-22 03:29:26 +000091 BOOST_TEST_MESSAGE("response[" << idx << "] does not exist");
Yanbiao Li698f4fe2015-08-19 16:30:16 -070092 return CheckResponseResult::OUT_OF_BOUNDARY;
93 }
94
95 if (data.getName() != expectedName) {
Junxiao Shi7d30d852017-01-22 03:29:26 +000096 BOOST_TEST_MESSAGE("response[" << idx << "] has wrong name " << data.getName());
Yanbiao Li698f4fe2015-08-19 16:30:16 -070097 return CheckResponseResult::WRONG_NAME;
98 }
99
100 if (expectedContentType != -1 &&
101 data.getContentType() != static_cast<uint32_t>(expectedContentType)) {
Junxiao Shi7d30d852017-01-22 03:29:26 +0000102 BOOST_TEST_MESSAGE("response[" << idx << "] has wrong ContentType " << data.getContentType());
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700103 return CheckResponseResult::WRONG_CONTENT_TYPE;
104 }
105
106 ControlResponse response;
107 try {
108 response.wireDecode(data.getContent().blockFromValue());
109 }
110 catch (const tlv::Error&) {
Junxiao Shi7d30d852017-01-22 03:29:26 +0000111 BOOST_TEST_MESSAGE("response[" << idx << "] cannot be decoded");
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700112 return CheckResponseResult::INVALID_RESPONSE;
113 }
114
115 if (response.getCode() != expectedResponse.getCode()) {
Junxiao Shi7d30d852017-01-22 03:29:26 +0000116 BOOST_TEST_MESSAGE("response[" << idx << "] has wrong StatusCode " << response.getCode());
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700117 return CheckResponseResult::WRONG_CODE;
118 }
119
120 if (response.getText() != expectedResponse.getText()) {
Junxiao Shi7d30d852017-01-22 03:29:26 +0000121 BOOST_TEST_MESSAGE("response[" << idx << "] has wrong StatusText " << response.getText());
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700122 return CheckResponseResult::WRONG_TEXT;
123 }
124
125 const Block& body = response.getBody();
126 const Block& expectedBody = expectedResponse.getBody();
127 if (body.value_size() != expectedBody.value_size()) {
Junxiao Shi7d30d852017-01-22 03:29:26 +0000128 BOOST_TEST_MESSAGE("response[" << idx << "] has wrong body size " << body.value_size());
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700129 return CheckResponseResult::WRONG_BODY_SIZE;
130 }
131 if (body.value_size() > 0 && memcmp(body.value(), expectedBody.value(), body.value_size()) != 0) {
Junxiao Shi7d30d852017-01-22 03:29:26 +0000132 BOOST_TEST_MESSAGE("response[" << idx << "] has wrong body value");
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700133 return CheckResponseResult::WRONG_BODY_VALUE;
134 }
135
136 return CheckResponseResult::OK;
137}
138
139Block
140ManagerCommonFixture::concatenateResponses(size_t startIndex, size_t nResponses)
141{
Davide Pesavento17057442018-04-20 15:21:31 -0400142 while (m_responses.back().getName().at(-1) != m_responses.back().getFinalBlock()) {
Yanbiao Lidf846e52016-01-30 21:53:47 -0800143 const Name& name = m_responses.back().getName();
144 Name prefix = name.getPrefix(-1);
145 uint64_t segmentNo = name.at(-1).toSegment() + 1;
Yanbiao Li150b80d2016-03-18 15:30:10 +0800146 // request for the next segment
Junxiao Shi9d727852019-05-14 13:44:22 -0600147 receiveInterest(*makeInterest(prefix.appendSegment(segmentNo)));
Yanbiao Li150b80d2016-03-18 15:30:10 +0800148 }
149
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700150 size_t endIndex = startIndex + nResponses; // not included
151 if (nResponses == startIndex || endIndex > m_responses.size()) {
152 endIndex = m_responses.size();
153 }
154
155 ndn::EncodingBuffer encoder;
Davide Pesaventodeb54272022-03-11 18:51:05 -0500156 size_t length = 0;
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700157 for (size_t i = startIndex; i < endIndex ; i ++) {
Davide Pesaventodeb54272022-03-11 18:51:05 -0500158 length += encoder.appendBytes(m_responses[i].getContent().value_bytes());
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700159 }
Davide Pesaventodeb54272022-03-11 18:51:05 -0500160 encoder.prependVarNumber(length);
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700161 encoder.prependVarNumber(tlv::Content);
162 return encoder.block();
163}
164
165std::ostream&
Davide Pesavento78ddcab2019-02-28 22:00:03 -0500166operator<<(std::ostream& os, ManagerCommonFixture::CheckResponseResult result)
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700167{
168 switch (result) {
Junxiao Shi8a1f1702017-07-03 00:05:08 +0000169 case ManagerCommonFixture::CheckResponseResult::OK:
170 return os << "OK";
171 case ManagerCommonFixture::CheckResponseResult::OUT_OF_BOUNDARY:
172 return os << "OUT_OF_BOUNDARY";
173 case ManagerCommonFixture::CheckResponseResult::WRONG_NAME:
174 return os << "WRONG_NAME";
175 case ManagerCommonFixture::CheckResponseResult::WRONG_CONTENT_TYPE:
176 return os << "WRONG_CONTENT_TYPE";
177 case ManagerCommonFixture::CheckResponseResult::INVALID_RESPONSE:
178 return os << "INVALID_RESPONSE";
179 case ManagerCommonFixture::CheckResponseResult::WRONG_CODE:
180 return os << "WRONG_CODE";
181 case ManagerCommonFixture::CheckResponseResult::WRONG_TEXT:
182 return os << "WRONG_TEXT";
183 case ManagerCommonFixture::CheckResponseResult::WRONG_BODY_SIZE:
184 return os << "WRONG_BODY_SIZE";
185 case ManagerCommonFixture::CheckResponseResult::WRONG_BODY_VALUE:
186 return os << "WRONG_BODY_VALUE";
187 }
188 return os << static_cast<int>(result);
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700189}
190
Davide Pesavento78ddcab2019-02-28 22:00:03 -0500191void
192ManagerFixtureWithAuthenticator::setPrivilege(const std::string& privilege)
193{
Davide Pesavento21353752020-11-20 00:43:44 -0500194 saveIdentityCert(DEFAULT_COMMAND_SIGNER_IDENTITY, "ManagerCommonFixture.ndncert");
Davide Pesavento78ddcab2019-02-28 22:00:03 -0500195
196 const std::string& config = R"CONFIG(
197 authorizations
198 {
199 authorize
200 {
201 certfile "ManagerCommonFixture.ndncert"
202 privileges
203 {
204 )CONFIG" + privilege + R"CONFIG(
205 }
206 }
207 }
208 )CONFIG";
209
210 ConfigFile cf;
211 m_authenticator->setConfigFile(cf);
212 cf.parse(config, false, "ManagerCommonFixture.authenticator.conf");
213}
214
Yanbiao Li698f4fe2015-08-19 16:30:16 -0700215} // namespace tests
216} // namespace nfd