blob: 6bda4633f4cdbba1623362c58d87bea2890977f7 [file] [log] [blame]
Junxiao Shi51742322017-08-13 17:04:52 +00001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/*
Davide Pesaventocb385e32024-12-27 15:22:02 -05003 * Copyright (c) 2013-2025 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
Davide Pesaventocb385e32024-12-27 15:22:02 -050039const uint8_t WIRE[] = {
Junxiao Shi51742322017-08-13 17:04:52 +000040 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{
Davide Pesaventocb385e32024-12-27 15:22:02 -050049 ControlResponse cr1(404, "Nothing not found");
50 BOOST_TEST(cr1.wireEncode() == WIRE, boost::test_tools::per_element());
51
52 ControlResponse cr2;
53 cr2.setCode(404);
54 cr2.setText("Nothing not found");
55 BOOST_TEST(cr2.wireEncode() == WIRE, boost::test_tools::per_element());
56
57 ControlResponse cr3(cr1);
58 cr3.setCode(405);
59 BOOST_TEST(cr3.wireEncode() != Block{WIRE});
60
61 ControlResponse cr4(cr1);
62 cr4.setText("foo");
63 BOOST_TEST(cr4.wireEncode() != Block{WIRE});
Junxiao Shi51742322017-08-13 17:04:52 +000064}
65
66BOOST_AUTO_TEST_CASE(Decode)
67{
Davide Pesaventofbea4fc2022-02-08 07:26:04 -050068 ControlResponse cr(Block{WIRE});
Junxiao Shi51742322017-08-13 17:04:52 +000069 BOOST_CHECK_EQUAL(cr.getCode(), 404);
70 BOOST_CHECK_EQUAL(cr.getText(), "Nothing not found");
Davide Pesaventocb385e32024-12-27 15:22:02 -050071
72 // wrong outer TLV type
73 BOOST_CHECK_EXCEPTION(cr.wireDecode("6406660201946700"_block), tlv::Error, [] (const auto& e) {
74 return e.what() == "Expecting ControlResponse element, but TLV has type 100"sv;
75 });
76
77 // empty TLV
78 BOOST_CHECK_EXCEPTION(cr.wireDecode("6500"_block), tlv::Error, [] (const auto& e) {
79 return e.what() == "missing StatusCode sub-element"sv;
80 });
81
82 // missing StatusCode
83 BOOST_CHECK_EXCEPTION(cr.wireDecode("65026700"_block), tlv::Error, [] (const auto& e) {
84 return e.what() == "missing StatusCode sub-element"sv;
85 });
86
87 // missing StatusText
88 BOOST_CHECK_EXCEPTION(cr.wireDecode("650466020194"_block), tlv::Error, [] (const auto& e) {
89 return e.what() == "missing StatusText sub-element"sv;
90 });
Junxiao Shi51742322017-08-13 17:04:52 +000091}
92
93BOOST_AUTO_TEST_SUITE_END() // TestControlResponse
94BOOST_AUTO_TEST_SUITE_END() // Mgmt
95
Davide Pesavento47ce2ee2023-05-09 01:33:33 -040096} // namespace ndn::tests