blob: 58fc3bc637f59be3b29040e6f25f9606ec8b0f3b [file] [log] [blame]
Alexander Afanasyevc169a812014-05-20 20:37:29 -04001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Alexander Afanasyevd1b5c412014-03-27 15:03:51 -07002/**
Junxiao Shi7357ef22016-09-07 02:39:37 +00003 * Copyright (c) 2013-2016 Regents of the University of California.
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07004 *
5 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07006 *
Alexander Afanasyevc169a812014-05-20 20:37:29 -04007 * 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.
Alexander Afanasyevd1b5c412014-03-27 15:03:51 -070020 */
21
Junxiao Shi7357ef22016-09-07 02:39:37 +000022#include "mgmt/nfd/control-response.hpp"
Alexander Afanasyevd1b5c412014-03-27 15:03:51 -070023
24#include "boost-test.hpp"
25
26namespace ndn {
27namespace nfd {
Spyridon Mastorakis429634f2015-02-19 17:35:33 -080028namespace tests {
Alexander Afanasyevd1b5c412014-03-27 15:03:51 -070029
Junxiao Shi7357ef22016-09-07 02:39:37 +000030BOOST_AUTO_TEST_SUITE(Mgmt)
31BOOST_AUTO_TEST_SUITE(Nfd)
32BOOST_AUTO_TEST_SUITE(TestControlResponse)
Alexander Afanasyevd1b5c412014-03-27 15:03:51 -070033
34const uint8_t TestControlResponse[] = {0x65, 0x17,
35 0x66, 0x02, 0x01, 0x94, 0x67, 0x11, 0x4e, 0x6f, 0x74,
36 0x68, 0x69, 0x6e, 0x67, 0x20, 0x6e, 0x6f, 0x74, 0x20,
37 0x66, 0x6f, 0x75, 0x6e, 0x64};
38
39// ControlResponse
40
41BOOST_AUTO_TEST_CASE(ControlResponseEncode)
42{
43 ControlResponse controlResponse(404, "Nothing not found");
44 const Block &wire = controlResponse.wireEncode();
45
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -070046 BOOST_REQUIRE_EQUAL_COLLECTIONS(TestControlResponse,
47 TestControlResponse+sizeof(TestControlResponse),
Alexander Afanasyevd1b5c412014-03-27 15:03:51 -070048 wire.begin(), wire.end());
49}
50
51BOOST_AUTO_TEST_CASE(ControlResponseDecode)
52{
53 ControlResponse controlResponse;
54
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -070055 BOOST_REQUIRE_NO_THROW(controlResponse.wireDecode(Block(TestControlResponse,
56 sizeof(TestControlResponse))));
Alexander Afanasyevd1b5c412014-03-27 15:03:51 -070057
58 BOOST_REQUIRE_EQUAL(controlResponse.getCode(), 404);
59 BOOST_REQUIRE_EQUAL(controlResponse.getText(), "Nothing not found");
60}
61
Junxiao Shi7357ef22016-09-07 02:39:37 +000062BOOST_AUTO_TEST_SUITE_END() // TestControlResponse
63BOOST_AUTO_TEST_SUITE_END() // Nfd
64BOOST_AUTO_TEST_SUITE_END() // Mgmt
Alexander Afanasyevd1b5c412014-03-27 15:03:51 -070065
Spyridon Mastorakis429634f2015-02-19 17:35:33 -080066} // namespace tests
Alexander Afanasyevd1b5c412014-03-27 15:03:51 -070067} // namespace nfd
68} // namespace ndn