blob: 83c9f9d171ddddb42216bf6166055a7556068703 [file] [log] [blame]
Eric Newberry38982622015-08-06 21:39:55 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Davide Pesaventoeee3e822016-11-26 19:19:34 +01003 * Copyright (c) 2013-2016 Regents of the University of California.
Eric Newberry38982622015-08-06 21:39:55 -07004 *
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 * @author Eric Newberry <enewberry@email.arizona.edu>
22 */
23
24#include "lp/nack-header.hpp"
25
26#include "boost-test.hpp"
27
28namespace ndn {
29namespace lp {
30namespace tests {
31
Davide Pesaventoeee3e822016-11-26 19:19:34 +010032BOOST_AUTO_TEST_SUITE(Lp)
33BOOST_AUTO_TEST_SUITE(TestNackHeader)
Eric Newberry38982622015-08-06 21:39:55 -070034
35BOOST_AUTO_TEST_CASE(Encode)
36{
37 NackHeader header;
38 header.setReason(NackReason::DUPLICATE);
39
40 Block wire;
41 BOOST_REQUIRE_NO_THROW(wire = header.wireEncode());
42
43 // Sample encoded value obtained with:
44 // for (Buffer::const_iterator it = wire.begin(); it != wire.end(); ++it) {
45 // printf("0x%02x, ", *it);
46 // }
47
48 // Contains NackReason::DUPLICATE
49 static const uint8_t expectedBlock[] = {
50 0xfd, 0x03, 0x20, 0x05, 0xfd, 0x03, 0x21, 0x01, 0x64,
51 };
52
53 BOOST_CHECK_EQUAL_COLLECTIONS(expectedBlock, expectedBlock + sizeof(expectedBlock),
54 wire.begin(), wire.end());
55
56 BOOST_REQUIRE_NO_THROW(header.wireDecode(wire));
57}
58
59BOOST_AUTO_TEST_CASE(DecodeUnknownReasonCode)
60{
61 static const uint8_t expectedBlock[] = {
62 0xfd, 0x03, 0x20, 0x08, 0xfd, 0x03, 0x21, 0x04, 0xff, 0xff, 0xff, 0xff,
63 };
64
65 NackHeader header;
66 Block wire(expectedBlock, sizeof(expectedBlock));
67 BOOST_REQUIRE_NO_THROW(header.wireDecode(wire));
68 Block wireEncoded;
69 BOOST_REQUIRE_NO_THROW(wireEncoded = header.wireEncode());
70 BOOST_CHECK_EQUAL_COLLECTIONS(expectedBlock, expectedBlock + sizeof(expectedBlock),
71 wireEncoded.begin(), wireEncoded.end());
72 BOOST_CHECK_EQUAL(header.getReason(), NackReason::NONE);
73}
74
75BOOST_AUTO_TEST_CASE(DecodeOmitReason)
76{
77 static const uint8_t expectedBlock[] = {
78 0xfd, 0x03, 0x20, 0x00,
79 };
80
81 NackHeader header;
82 Block wire(expectedBlock, sizeof(expectedBlock));
83 BOOST_REQUIRE_NO_THROW(header.wireDecode(wire));
84 Block wireEncoded;
85 BOOST_REQUIRE_NO_THROW(wireEncoded = header.wireEncode());
86 BOOST_CHECK_EQUAL_COLLECTIONS(expectedBlock, expectedBlock + sizeof(expectedBlock),
87 wireEncoded.begin(), wireEncoded.end());
88 BOOST_CHECK_EQUAL(header.getReason(), NackReason::NONE);
89}
90
91BOOST_AUTO_TEST_CASE(Reason)
92{
93 NackHeader header;
94 BOOST_CHECK_EQUAL(header.getReason(), NackReason::NONE);
95
96 header.setReason(NackReason::DUPLICATE);
97 BOOST_CHECK_EQUAL(header.getReason(), NackReason::DUPLICATE);
98}
99
Davide Pesaventoeee3e822016-11-26 19:19:34 +0100100BOOST_AUTO_TEST_SUITE_END() // TestNackHeader
101BOOST_AUTO_TEST_SUITE_END() // Lp
Eric Newberry38982622015-08-06 21:39:55 -0700102
103} // namespace tests
104} // namespace lp
Davide Pesaventoeee3e822016-11-26 19:19:34 +0100105} // namespace ndn