blob: 64144f8d27c34cd2cbad2c23285ea9ac86f8da97 [file] [log] [blame]
Alexander Afanasyev8828ca62015-07-02 13:40:09 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Davide Pesavento03115ce2017-01-27 01:17:55 -05003 * Copyright (c) 2013-2017 Regents of the University of California.
Alexander Afanasyev8828ca62015-07-02 13:40:09 -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
22#include "util/string-helper.hpp"
Davide Pesaventodd461432017-01-28 21:47:26 -050023#include "encoding/buffer.hpp"
Alexander Afanasyev8828ca62015-07-02 13:40:09 -070024
25#include "boost-test.hpp"
Alexander Afanasyev8828ca62015-07-02 13:40:09 -070026
27namespace ndn {
28namespace util {
29namespace test {
30
Davide Pesaventoeee3e822016-11-26 19:19:34 +010031BOOST_AUTO_TEST_SUITE(Util)
32BOOST_AUTO_TEST_SUITE(TestStringHelper)
Alexander Afanasyev8828ca62015-07-02 13:40:09 -070033
Davide Pesaventoe78eeca2017-02-23 23:22:32 -050034BOOST_AUTO_TEST_CASE(PrintHex)
35{
36 boost::test_tools::output_test_stream os;
37
38 printHex(os, 0);
39 BOOST_CHECK(os.is_equal("0x0"));
40
41 printHex(os, 42);
42 BOOST_CHECK(os.is_equal("0x2a"));
43
44 printHex(os, 2748, true);
45 BOOST_CHECK(os.is_equal("0xABC"));
46
47 printHex(os, static_cast<uint64_t>(-1));
48 BOOST_CHECK(os.is_equal("0xffffffffffffffff"));
49
50 printHex(os, ~0U, true);
51 BOOST_CHECK(os.is_equal("0xFFFFFFFF"));
52
53 printHex(os, ~0ULL, true);
54 BOOST_CHECK(os.is_equal("0xFFFFFFFFFFFFFFFF"));
55}
56
57BOOST_AUTO_TEST_CASE(AsHex)
58{
59 using ndn::AsHex;
60 boost::test_tools::output_test_stream os;
61
62 os << AsHex{0};
63 BOOST_CHECK(os.is_equal("0x0"));
64
65 os << AsHex{42};
66 BOOST_CHECK(os.is_equal("0x2a"));
67
68 os << std::uppercase << AsHex{~0U};
69 BOOST_CHECK(os.is_equal("0xFFFFFFFF"));
70
71 os << std::nouppercase << AsHex{~0U};
72 BOOST_CHECK(os.is_equal("0xffffffff"));
73}
74
Alexander Afanasyev8828ca62015-07-02 13:40:09 -070075BOOST_AUTO_TEST_CASE(ToHex)
76{
77 std::string test = "Hello, world!";
78 BOOST_CHECK_EQUAL(toHex(reinterpret_cast<const uint8_t*>(test.data()), test.size()),
79 "48656C6C6F2C20776F726C6421");
Alexander Afanasyev8828ca62015-07-02 13:40:09 -070080 BOOST_CHECK_EQUAL(toHex(reinterpret_cast<const uint8_t*>(test.data()), test.size(), false),
81 "48656c6c6f2c20776f726c6421");
Alexander Afanasyev8828ca62015-07-02 13:40:09 -070082 BOOST_CHECK_EQUAL(toHex(nullptr, 0), "");
83
84 Buffer buffer(test.data(), test.size());
85 BOOST_CHECK_EQUAL(toHex(buffer, false), "48656c6c6f2c20776f726c6421");
Davide Pesaventofdda2412017-01-28 18:53:51 -050086 BOOST_CHECK_EQUAL(toHex(Buffer{}), "");
Alexander Afanasyev8828ca62015-07-02 13:40:09 -070087}
88
89BOOST_AUTO_TEST_CASE(FromHexChar)
90{
91 // for (int ch = 0; ch <= std::numeric_limits<uint8_t>::max(); ++ch) {
92 // std::cout << "{0x" << std::hex << ch << ", "
93 // << std::dec << fromHexChar(static_cast<char>(ch)) << "}, ";
94 // if (ch % 8 == 7)
95 // std::cout << std::endl;
96 // }
Davide Pesavento03115ce2017-01-27 01:17:55 -050097 static const std::vector<std::pair<char, int>> hexMap{
Alexander Afanasyev8828ca62015-07-02 13:40:09 -070098 {0x0, -1}, {0x1, -1}, {0x2, -1}, {0x3, -1}, {0x4, -1}, {0x5, -1}, {0x6, -1}, {0x7, -1},
99 {0x8, -1}, {0x9, -1}, {0xa, -1}, {0xb, -1}, {0xc, -1}, {0xd, -1}, {0xe, -1}, {0xf, -1},
100 {0x10, -1}, {0x11, -1}, {0x12, -1}, {0x13, -1}, {0x14, -1}, {0x15, -1}, {0x16, -1}, {0x17, -1},
101 {0x18, -1}, {0x19, -1}, {0x1a, -1}, {0x1b, -1}, {0x1c, -1}, {0x1d, -1}, {0x1e, -1}, {0x1f, -1},
102 {0x20, -1}, {0x21, -1}, {0x22, -1}, {0x23, -1}, {0x24, -1}, {0x25, -1}, {0x26, -1}, {0x27, -1},
103 {0x28, -1}, {0x29, -1}, {0x2a, -1}, {0x2b, -1}, {0x2c, -1}, {0x2d, -1}, {0x2e, -1}, {0x2f, -1},
104 {0x30, 0}, {0x31, 1}, {0x32, 2}, {0x33, 3}, {0x34, 4}, {0x35, 5}, {0x36, 6}, {0x37, 7},
105 {0x38, 8}, {0x39, 9}, {0x3a, -1}, {0x3b, -1}, {0x3c, -1}, {0x3d, -1}, {0x3e, -1}, {0x3f, -1},
106 {0x40, -1}, {0x41, 10}, {0x42, 11}, {0x43, 12}, {0x44, 13}, {0x45, 14}, {0x46, 15}, {0x47, -1},
107 {0x48, -1}, {0x49, -1}, {0x4a, -1}, {0x4b, -1}, {0x4c, -1}, {0x4d, -1}, {0x4e, -1}, {0x4f, -1},
108 {0x50, -1}, {0x51, -1}, {0x52, -1}, {0x53, -1}, {0x54, -1}, {0x55, -1}, {0x56, -1}, {0x57, -1},
109 {0x58, -1}, {0x59, -1}, {0x5a, -1}, {0x5b, -1}, {0x5c, -1}, {0x5d, -1}, {0x5e, -1}, {0x5f, -1},
110 {0x60, -1}, {0x61, 10}, {0x62, 11}, {0x63, 12}, {0x64, 13}, {0x65, 14}, {0x66, 15}, {0x67, -1},
111 {0x68, -1}, {0x69, -1}, {0x6a, -1}, {0x6b, -1}, {0x6c, -1}, {0x6d, -1}, {0x6e, -1}, {0x6f, -1},
112 {0x70, -1}, {0x71, -1}, {0x72, -1}, {0x73, -1}, {0x74, -1}, {0x75, -1}, {0x76, -1}, {0x77, -1},
113 {0x78, -1}, {0x79, -1}, {0x7a, -1}, {0x7b, -1}, {0x7c, -1}, {0x7d, -1}, {0x7e, -1}, {0x7f, -1},
114 {0x80, -1}, {0x81, -1}, {0x82, -1}, {0x83, -1}, {0x84, -1}, {0x85, -1}, {0x86, -1}, {0x87, -1},
115 {0x88, -1}, {0x89, -1}, {0x8a, -1}, {0x8b, -1}, {0x8c, -1}, {0x8d, -1}, {0x8e, -1}, {0x8f, -1},
116 {0x90, -1}, {0x91, -1}, {0x92, -1}, {0x93, -1}, {0x94, -1}, {0x95, -1}, {0x96, -1}, {0x97, -1},
117 {0x98, -1}, {0x99, -1}, {0x9a, -1}, {0x9b, -1}, {0x9c, -1}, {0x9d, -1}, {0x9e, -1}, {0x9f, -1},
118 {0xa0, -1}, {0xa1, -1}, {0xa2, -1}, {0xa3, -1}, {0xa4, -1}, {0xa5, -1}, {0xa6, -1}, {0xa7, -1},
119 {0xa8, -1}, {0xa9, -1}, {0xaa, -1}, {0xab, -1}, {0xac, -1}, {0xad, -1}, {0xae, -1}, {0xaf, -1},
120 {0xb0, -1}, {0xb1, -1}, {0xb2, -1}, {0xb3, -1}, {0xb4, -1}, {0xb5, -1}, {0xb6, -1}, {0xb7, -1},
121 {0xb8, -1}, {0xb9, -1}, {0xba, -1}, {0xbb, -1}, {0xbc, -1}, {0xbd, -1}, {0xbe, -1}, {0xbf, -1},
122 {0xc0, -1}, {0xc1, -1}, {0xc2, -1}, {0xc3, -1}, {0xc4, -1}, {0xc5, -1}, {0xc6, -1}, {0xc7, -1},
123 {0xc8, -1}, {0xc9, -1}, {0xca, -1}, {0xcb, -1}, {0xcc, -1}, {0xcd, -1}, {0xce, -1}, {0xcf, -1},
124 {0xd0, -1}, {0xd1, -1}, {0xd2, -1}, {0xd3, -1}, {0xd4, -1}, {0xd5, -1}, {0xd6, -1}, {0xd7, -1},
125 {0xd8, -1}, {0xd9, -1}, {0xda, -1}, {0xdb, -1}, {0xdc, -1}, {0xdd, -1}, {0xde, -1}, {0xdf, -1},
126 {0xe0, -1}, {0xe1, -1}, {0xe2, -1}, {0xe3, -1}, {0xe4, -1}, {0xe5, -1}, {0xe6, -1}, {0xe7, -1},
127 {0xe8, -1}, {0xe9, -1}, {0xea, -1}, {0xeb, -1}, {0xec, -1}, {0xed, -1}, {0xee, -1}, {0xef, -1},
128 {0xf0, -1}, {0xf1, -1}, {0xf2, -1}, {0xf3, -1}, {0xf4, -1}, {0xf5, -1}, {0xf6, -1}, {0xf7, -1},
129 {0xf8, -1}, {0xf9, -1}, {0xfa, -1}, {0xfb, -1}, {0xfc, -1}, {0xfd, -1}, {0xfe, -1}, {0xff, -1}
130 };
Davide Pesavento03115ce2017-01-27 01:17:55 -0500131
Alexander Afanasyev8828ca62015-07-02 13:40:09 -0700132 for (const auto& item : hexMap) {
Davide Pesavento03115ce2017-01-27 01:17:55 -0500133 BOOST_CHECK_EQUAL(fromHexChar(item.first), item.second);
Alexander Afanasyev8828ca62015-07-02 13:40:09 -0700134 }
135}
136
137BOOST_AUTO_TEST_CASE(FromHex)
138{
Davide Pesavento03115ce2017-01-27 01:17:55 -0500139 BOOST_CHECK(*fromHex("") == Buffer{});
Alexander Afanasyev8828ca62015-07-02 13:40:09 -0700140 BOOST_CHECK(*fromHex("48656c6c6f2c20776f726c6421") ==
Davide Pesavento03115ce2017-01-27 01:17:55 -0500141 (std::vector<uint8_t>{0x48, 0x65, 0x6c, 0x6c, 0x6f, 0x2c, 0x20,
142 0x77, 0x6f, 0x72, 0x6c, 0x64, 0x21}));
Alexander Afanasyev8828ca62015-07-02 13:40:09 -0700143 BOOST_CHECK(*fromHex("012a3Bc4defAB5CdEF") ==
Davide Pesavento03115ce2017-01-27 01:17:55 -0500144 (std::vector<uint8_t>{0x01, 0x2a, 0x3b, 0xc4, 0xde,
145 0xfa, 0xb5, 0xcd, 0xef}));
Alexander Afanasyev8828ca62015-07-02 13:40:09 -0700146
147 BOOST_CHECK_THROW(fromHex("1"), StringHelperError);
148 BOOST_CHECK_THROW(fromHex("zz"), StringHelperError);
149 BOOST_CHECK_THROW(fromHex("00az"), StringHelperError);
Davide Pesavento03115ce2017-01-27 01:17:55 -0500150 BOOST_CHECK_THROW(fromHex("1234z"), StringHelperError);
Alexander Afanasyev8828ca62015-07-02 13:40:09 -0700151}
152
Alexander Afanasyev8828ca62015-07-02 13:40:09 -0700153BOOST_AUTO_TEST_CASE(Unescape)
154{
155 std::string test1 = "Hello%01, world!%AA ";
156 std::string test2 = "Invalid escape %ZZ (not a hex value)";
157 std::string test3 = "Invalid escape %a (should be two hex symbols)";
158 std::string test4 = "Invalid escape %a";
159
160 BOOST_CHECK_EQUAL(unescape(test1), "Hello\x01, world!\xAA ");
161
162 BOOST_CHECK_EQUAL(unescape(test2), "Invalid escape %ZZ (not a hex value)");
163 BOOST_CHECK_EQUAL(unescape(test3), "Invalid escape %a (should be two hex symbols)");
164 BOOST_CHECK_EQUAL(unescape(test4), "Invalid escape %a");
165
166 BOOST_CHECK_EQUAL(unescape("%01%2a%3B%c4%de%fA%B5%Cd%EF"),
167 "\x01\x2a\x3b\xc4\xde\xfa\xb5\xcd\xef");
168}
169
Davide Pesaventoeee3e822016-11-26 19:19:34 +0100170BOOST_AUTO_TEST_SUITE_END() // TestStringHelper
171BOOST_AUTO_TEST_SUITE_END() // Util
Alexander Afanasyev8828ca62015-07-02 13:40:09 -0700172
173} // namespace test
174} // namespace util
175} // namespace ndn