blob: 7e72c266229355aacfb7ab6b55e3d31222514454 [file] [log] [blame]
Junxiao Shi51742322017-08-13 17:04:52 +00001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/*
Davide Pesavento152ef442023-04-22 02:02:29 -04003 * Copyright (c) 2013-2023 Regents of the University of California.
Junxiao Shi51742322017-08-13 17:04:52 +00004 *
5 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
6 *
7 * ndn-cxx library is free software: you can redistribute it and/or modify it under the
8 * terms of the GNU Lesser General Public License as published by the Free Software
9 * Foundation, either version 3 of the License, or (at your option) any later version.
10 *
11 * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY
12 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13 * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
14 *
15 * You should have received copies of the GNU General Public License and GNU Lesser
16 * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see
17 * <http://www.gnu.org/licenses/>.
18 *
19 * See AUTHORS.md for complete list of ndn-cxx authors and contributors.
20 */
21
Davide Pesavento7e780642018-11-24 15:51:34 -050022#include "ndn-cxx/mgmt/control-response.hpp"
Davide Pesavento152ef442023-04-22 02:02:29 -040023#include "ndn-cxx/util/concepts.hpp"
Junxiao Shi51742322017-08-13 17:04:52 +000024
Davide Pesavento7e780642018-11-24 15:51:34 -050025#include "tests/boost-test.hpp"
Junxiao Shi51742322017-08-13 17:04:52 +000026
Davide Pesavento47ce2ee2023-05-09 01:33:33 -040027namespace ndn::tests {
28
29using namespace ndn::mgmt;
Junxiao Shi51742322017-08-13 17:04:52 +000030
Davide Pesavento152ef442023-04-22 02:02:29 -040031BOOST_CONCEPT_ASSERT((WireEncodable<ControlResponse>));
32BOOST_CONCEPT_ASSERT((WireDecodable<ControlResponse>));
33static_assert(std::is_convertible_v<ControlResponse::Error*, tlv::Error*>,
34 "ControlResponse::Error must inherit from tlv::Error");
35
Junxiao Shi51742322017-08-13 17:04:52 +000036BOOST_AUTO_TEST_SUITE(Mgmt)
37BOOST_AUTO_TEST_SUITE(TestControlResponse)
38
39static const uint8_t WIRE[] = {
40 0x65, 0x17, // ControlResponse
41 0x66, 0x02, // StatusCode
42 0x01, 0x94,
43 0x67, 0x11, // StatusText
44 0x4e, 0x6f, 0x74, 0x68, 0x69, 0x6e, 0x67, 0x20, 0x6e, 0x6f, 0x74, 0x20,
45 0x66, 0x6f, 0x75, 0x6e, 0x64};
46
47BOOST_AUTO_TEST_CASE(Encode)
48{
49 ControlResponse cr(404, "Nothing not found");
50 const Block& wire = cr.wireEncode();
51 BOOST_CHECK_EQUAL_COLLECTIONS(WIRE, WIRE + sizeof(WIRE),
52 wire.begin(), wire.end());
53}
54
55BOOST_AUTO_TEST_CASE(Decode)
56{
Davide Pesaventofbea4fc2022-02-08 07:26:04 -050057 ControlResponse cr(Block{WIRE});
Junxiao Shi51742322017-08-13 17:04:52 +000058 BOOST_CHECK_EQUAL(cr.getCode(), 404);
59 BOOST_CHECK_EQUAL(cr.getText(), "Nothing not found");
60}
61
62BOOST_AUTO_TEST_SUITE_END() // TestControlResponse
63BOOST_AUTO_TEST_SUITE_END() // Mgmt
64
Davide Pesavento47ce2ee2023-05-09 01:33:33 -040065} // namespace ndn::tests