Junxiao Shi | 5174232 | 2017-08-13 17:04:52 +0000 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /* |
Davide Pesavento | 152ef44 | 2023-04-22 02:02:29 -0400 | [diff] [blame] | 3 | * Copyright (c) 2013-2023 Regents of the University of California. |
Junxiao Shi | 5174232 | 2017-08-13 17:04:52 +0000 | [diff] [blame] | 4 | * |
| 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 Pesavento | 7e78064 | 2018-11-24 15:51:34 -0500 | [diff] [blame] | 22 | #include "ndn-cxx/mgmt/control-response.hpp" |
Davide Pesavento | 152ef44 | 2023-04-22 02:02:29 -0400 | [diff] [blame] | 23 | #include "ndn-cxx/util/concepts.hpp" |
Junxiao Shi | 5174232 | 2017-08-13 17:04:52 +0000 | [diff] [blame] | 24 | |
Davide Pesavento | 7e78064 | 2018-11-24 15:51:34 -0500 | [diff] [blame] | 25 | #include "tests/boost-test.hpp" |
Junxiao Shi | 5174232 | 2017-08-13 17:04:52 +0000 | [diff] [blame] | 26 | |
Davide Pesavento | 47ce2ee | 2023-05-09 01:33:33 -0400 | [diff] [blame] | 27 | namespace ndn::tests { |
| 28 | |
| 29 | using namespace ndn::mgmt; |
Junxiao Shi | 5174232 | 2017-08-13 17:04:52 +0000 | [diff] [blame] | 30 | |
Davide Pesavento | 152ef44 | 2023-04-22 02:02:29 -0400 | [diff] [blame] | 31 | BOOST_CONCEPT_ASSERT((WireEncodable<ControlResponse>)); |
| 32 | BOOST_CONCEPT_ASSERT((WireDecodable<ControlResponse>)); |
| 33 | static_assert(std::is_convertible_v<ControlResponse::Error*, tlv::Error*>, |
| 34 | "ControlResponse::Error must inherit from tlv::Error"); |
| 35 | |
Junxiao Shi | 5174232 | 2017-08-13 17:04:52 +0000 | [diff] [blame] | 36 | BOOST_AUTO_TEST_SUITE(Mgmt) |
| 37 | BOOST_AUTO_TEST_SUITE(TestControlResponse) |
| 38 | |
| 39 | static 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 | |
| 47 | BOOST_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 | |
| 55 | BOOST_AUTO_TEST_CASE(Decode) |
| 56 | { |
Davide Pesavento | fbea4fc | 2022-02-08 07:26:04 -0500 | [diff] [blame] | 57 | ControlResponse cr(Block{WIRE}); |
Junxiao Shi | 5174232 | 2017-08-13 17:04:52 +0000 | [diff] [blame] | 58 | BOOST_CHECK_EQUAL(cr.getCode(), 404); |
| 59 | BOOST_CHECK_EQUAL(cr.getText(), "Nothing not found"); |
| 60 | } |
| 61 | |
| 62 | BOOST_AUTO_TEST_SUITE_END() // TestControlResponse |
| 63 | BOOST_AUTO_TEST_SUITE_END() // Mgmt |
| 64 | |
Davide Pesavento | 47ce2ee | 2023-05-09 01:33:33 -0400 | [diff] [blame] | 65 | } // namespace ndn::tests |