Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Alexander Afanasyev | d1b5c41 | 2014-03-27 15:03:51 -0700 | [diff] [blame] | 2 | /** |
Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 3 | * Copyright (c) 2013-2014 Regents of the University of California. |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 4 | * |
| 5 | * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions). |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 6 | * |
Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 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. |
Alexander Afanasyev | d1b5c41 | 2014-03-27 15:03:51 -0700 | [diff] [blame] | 20 | */ |
| 21 | |
| 22 | #include "management/nfd-control-response.hpp" |
| 23 | |
| 24 | #include "boost-test.hpp" |
| 25 | |
| 26 | namespace ndn { |
| 27 | namespace nfd { |
| 28 | |
| 29 | BOOST_AUTO_TEST_SUITE(ManagementTestNfdControlResponse) |
| 30 | |
| 31 | const 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 | |
| 38 | BOOST_AUTO_TEST_CASE(ControlResponseEncode) |
| 39 | { |
| 40 | ControlResponse controlResponse(404, "Nothing not found"); |
| 41 | const Block &wire = controlResponse.wireEncode(); |
| 42 | |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 43 | BOOST_REQUIRE_EQUAL_COLLECTIONS(TestControlResponse, |
| 44 | TestControlResponse+sizeof(TestControlResponse), |
Alexander Afanasyev | d1b5c41 | 2014-03-27 15:03:51 -0700 | [diff] [blame] | 45 | wire.begin(), wire.end()); |
| 46 | } |
| 47 | |
| 48 | BOOST_AUTO_TEST_CASE(ControlResponseDecode) |
| 49 | { |
| 50 | ControlResponse controlResponse; |
| 51 | |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 52 | BOOST_REQUIRE_NO_THROW(controlResponse.wireDecode(Block(TestControlResponse, |
| 53 | sizeof(TestControlResponse)))); |
Alexander Afanasyev | d1b5c41 | 2014-03-27 15:03:51 -0700 | [diff] [blame] | 54 | |
| 55 | BOOST_REQUIRE_EQUAL(controlResponse.getCode(), 404); |
| 56 | BOOST_REQUIRE_EQUAL(controlResponse.getText(), "Nothing not found"); |
| 57 | } |
| 58 | |
| 59 | BOOST_AUTO_TEST_SUITE_END() |
| 60 | |
| 61 | } // namespace nfd |
| 62 | } // namespace ndn |