blob: 57a1f3d9b5b30f2a2bd56030f7c8592a65cd9f45 [file] [log] [blame]
Alexander Afanasyev74633892015-02-08 18:08:46 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento74daf742018-11-23 18:14:13 -05002/*
Davide Pesaventofbea4fc2022-02-08 07:26:04 -05003 * Copyright (c) 2013-2022 Regents of the University of California.
Alexander Afanasyev74633892015-02-08 18:08:46 -08004 *
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 Pesavento7e780642018-11-24 15:51:34 -050022#include "ndn-cxx/encoding/encoder.hpp"
Alexander Afanasyev74633892015-02-08 18:08:46 -080023
Davide Pesavento7e780642018-11-24 15:51:34 -050024#include "tests/boost-test.hpp"
Alexander Afanasyev74633892015-02-08 18:08:46 -080025
26namespace ndn {
27namespace encoding {
28namespace tests {
29
Davide Pesaventoeee3e822016-11-26 19:19:34 +010030BOOST_AUTO_TEST_SUITE(Encoding)
31BOOST_AUTO_TEST_SUITE(TestEncoder)
Alexander Afanasyev74633892015-02-08 18:08:46 -080032
33BOOST_AUTO_TEST_CASE(Basic)
34{
35 Encoder e;
36 BOOST_CHECK_GT(e.capacity(), 100);
37
38 Encoder e1(100);
39 BOOST_CHECK_EQUAL(e1.capacity(), 100);
40
41 Encoder e2(100, 100);
42 BOOST_CHECK_EQUAL(e2.capacity(), 100);
43
Davide Pesaventofbea4fc2022-02-08 07:26:04 -050044 BOOST_CHECK_EQUAL(e.prependBytes({1}), 1);
45 BOOST_CHECK_EQUAL(e.appendBytes({1}), 1);
Alexander Afanasyev74633892015-02-08 18:08:46 -080046
Davide Pesaventofbea4fc2022-02-08 07:26:04 -050047 const uint8_t buf1[] = {'t', 'e', 's', 't', '1'};
48 BOOST_CHECK_EQUAL(e1.prependBytes(buf1), 5);
49 BOOST_CHECK_EQUAL(e1.appendBytes(buf1), 5);
Alexander Afanasyev74633892015-02-08 18:08:46 -080050
51 std::vector<uint8_t> buf2 = {'t', 'e', 's', 't', '2'};
Davide Pesaventofbea4fc2022-02-08 07:26:04 -050052 BOOST_CHECK_EQUAL(e2.prependBytes(buf2), 5);
53 BOOST_CHECK_EQUAL(e2.appendBytes(buf2), 5);
Alexander Afanasyev74633892015-02-08 18:08:46 -080054 BOOST_CHECK_EQUAL(e1.prependRange(buf2.begin(), buf2.end()), 5);
55 BOOST_CHECK_EQUAL(e1.appendRange(buf2.begin(), buf2.end()), 5);
56
57 std::list<uint8_t> buf3 = {'t', 'e', 's', 't', '2'};
58 BOOST_CHECK_EQUAL(e2.prependRange(buf3.begin(), buf3.end()), 5);
59 BOOST_CHECK_EQUAL(e2.appendRange(buf3.begin(), buf3.end()), 5);
60
Davide Pesaventofbea4fc2022-02-08 07:26:04 -050061 const uint8_t expected1[] = {1, 1};
62 BOOST_CHECK_EQUAL_COLLECTIONS(e.data(), e.data() + e.size(),
Alexander Afanasyev74633892015-02-08 18:08:46 -080063 expected1, expected1 + sizeof(expected1));
64
65 const Encoder& constE = e;
Davide Pesaventofbea4fc2022-02-08 07:26:04 -050066 BOOST_CHECK_EQUAL_COLLECTIONS(constE.data(), constE.data() + constE.size(),
Alexander Afanasyev74633892015-02-08 18:08:46 -080067 expected1, expected1 + sizeof(expected1));
68
Davide Pesaventofbea4fc2022-02-08 07:26:04 -050069 const uint8_t expected2[] = {'t', 'e', 's', 't', '2', 't', 'e', 's', 't', '1',
70 't', 'e', 's', 't', '1', 't', 'e', 's', 't', '2'};
Alexander Afanasyev74633892015-02-08 18:08:46 -080071 BOOST_CHECK_EQUAL_COLLECTIONS(e1.begin(), e1.end(),
72 expected2, expected2 + sizeof(expected2));
73 const Encoder& constE1 = e1;
74 BOOST_CHECK_EQUAL_COLLECTIONS(constE1.begin(), constE1.end(),
75 expected2, expected2 + sizeof(expected2));
76
77 BOOST_CHECK_THROW(e1.block(), tlv::Error);
78 BOOST_CHECK_NO_THROW(e1.block(false));
79
80 e1.prependVarNumber(20);
81 e1.prependVarNumber(100);
82
83 BOOST_CHECK_NO_THROW(e1.block());
84}
85
86BOOST_AUTO_TEST_CASE(Tlv)
87{
88 Encoder e;
89
90 BOOST_CHECK_EQUAL(e.prependVarNumber(1), 1);
91 BOOST_CHECK_EQUAL(e.appendVarNumber(1), 1);
92
93 BOOST_CHECK_EQUAL(e.prependVarNumber(252), 1);
94 BOOST_CHECK_EQUAL(e.appendVarNumber(252), 1);
95
96 BOOST_CHECK_EQUAL(e.prependVarNumber(253), 3);
97 BOOST_CHECK_EQUAL(e.appendVarNumber(253), 3);
98
99 BOOST_CHECK_EQUAL(e.prependVarNumber(65536), 5);
100 BOOST_CHECK_EQUAL(e.appendVarNumber(65536), 5);
101
102 BOOST_CHECK_EQUAL(e.prependVarNumber(4294967296LL), 9);
103 BOOST_CHECK_EQUAL(e.appendVarNumber(4294967296LL), 9);
104
105 //
106
107 BOOST_CHECK_EQUAL(e.prependNonNegativeInteger(1), 1);
108 BOOST_CHECK_EQUAL(e.appendNonNegativeInteger(1), 1);
109
110 BOOST_CHECK_EQUAL(e.prependNonNegativeInteger(252), 1);
111 BOOST_CHECK_EQUAL(e.appendNonNegativeInteger(252), 1);
112
113 BOOST_CHECK_EQUAL(e.prependNonNegativeInteger(253), 1);
114 BOOST_CHECK_EQUAL(e.appendNonNegativeInteger(253), 1);
115
116 BOOST_CHECK_EQUAL(e.prependNonNegativeInteger(255), 1);
117 BOOST_CHECK_EQUAL(e.appendNonNegativeInteger(255), 1);
118
119 BOOST_CHECK_EQUAL(e.prependNonNegativeInteger(256), 2);
120 BOOST_CHECK_EQUAL(e.appendNonNegativeInteger(256), 2);
121
122 BOOST_CHECK_EQUAL(e.prependNonNegativeInteger(65535), 2);
123 BOOST_CHECK_EQUAL(e.appendNonNegativeInteger(65535), 2);
124
125 BOOST_CHECK_EQUAL(e.prependNonNegativeInteger(65536), 4);
126 BOOST_CHECK_EQUAL(e.appendNonNegativeInteger(65536), 4);
127
128 BOOST_CHECK_EQUAL(e.prependNonNegativeInteger(4294967296LL), 8);
129 BOOST_CHECK_EQUAL(e.appendNonNegativeInteger(4294967296LL), 8);
130
131 //
132
Davide Pesaventofbea4fc2022-02-08 07:26:04 -0500133#pragma GCC diagnostic push
134#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
135 Block block1({0x01, 0x03, 0x00, 0x00, 0x00});
Alexander Afanasyev74633892015-02-08 18:08:46 -0800136 BOOST_CHECK_EQUAL(e.prependBlock(block1), 5);
137 BOOST_CHECK_EQUAL(e.appendBlock(block1), 5);
138
139 Block block2(100, block1);
Alexander Afanasyev74633892015-02-08 18:08:46 -0800140 BOOST_CHECK_EQUAL(e.prependBlock(block2), 7);
141 BOOST_CHECK_EQUAL(e.appendBlock(block2), 7);
Davide Pesaventofbea4fc2022-02-08 07:26:04 -0500142#pragma GCC diagnostic pop
Alexander Afanasyev74633892015-02-08 18:08:46 -0800143}
144
145BOOST_AUTO_TEST_CASE(Reserve)
146{
147 Encoder e(100, 0);
148 BOOST_CHECK_EQUAL(e.capacity(), 100);
149
150 e.reserve(100, true);
151 BOOST_CHECK_EQUAL(e.capacity(), 100);
152
153 e.reserve(200, true);
154 BOOST_CHECK_EQUAL(e.capacity(), 200);
155
156 e.reserve(100, false);
157 BOOST_CHECK_EQUAL(e.capacity(), 200);
158
159 e.reserveFront(1000);
160 BOOST_CHECK_GT(e.capacity(), 1000);
161
162 e.reserveBack(1000);
163 BOOST_CHECK_GT(e.capacity(), 2000);
164}
165
Davide Pesaventoeee3e822016-11-26 19:19:34 +0100166BOOST_AUTO_TEST_SUITE_END() // TestEncoder
167BOOST_AUTO_TEST_SUITE_END() // Encoding
Alexander Afanasyev74633892015-02-08 18:08:46 -0800168
169} // namespace tests
170} // namespace encoding
171} // namespace ndn