blob: 8ca9e8b85360fb5eeca74b27822486e3e4ff941b [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/**
Alexander Afanasyevc169a812014-05-20 20:37:29 -04003 * Copyright (c) 2013-2014 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
22#include "management/nfd-control-response.hpp"
23
24#include "boost-test.hpp"
25
26namespace ndn {
27namespace nfd {
28
29BOOST_AUTO_TEST_SUITE(ManagementTestNfdControlResponse)
30
31const uint8_t TestControlResponse[] = {0x65, 0x17,
32 0x66, 0x02, 0x01, 0x94, 0x67, 0x11, 0x4e, 0x6f, 0x74,
33 0x68, 0x69, 0x6e, 0x67, 0x20, 0x6e, 0x6f, 0x74, 0x20,
34 0x66, 0x6f, 0x75, 0x6e, 0x64};
35
36// ControlResponse
37
38BOOST_AUTO_TEST_CASE(ControlResponseEncode)
39{
40 ControlResponse controlResponse(404, "Nothing not found");
41 const Block &wire = controlResponse.wireEncode();
42
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -070043 BOOST_REQUIRE_EQUAL_COLLECTIONS(TestControlResponse,
44 TestControlResponse+sizeof(TestControlResponse),
Alexander Afanasyevd1b5c412014-03-27 15:03:51 -070045 wire.begin(), wire.end());
46}
47
48BOOST_AUTO_TEST_CASE(ControlResponseDecode)
49{
50 ControlResponse controlResponse;
51
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -070052 BOOST_REQUIRE_NO_THROW(controlResponse.wireDecode(Block(TestControlResponse,
53 sizeof(TestControlResponse))));
Alexander Afanasyevd1b5c412014-03-27 15:03:51 -070054
55 BOOST_REQUIRE_EQUAL(controlResponse.getCode(), 404);
56 BOOST_REQUIRE_EQUAL(controlResponse.getText(), "Nothing not found");
57}
58
59BOOST_AUTO_TEST_SUITE_END()
60
61} // namespace nfd
62} // namespace ndn