blob: a94869e901362f06d39a6283dfe9db02aa7fa443 [file] [log] [blame]
Alexander Afanasyevc169a812014-05-20 20:37:29 -04001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento8a8c01b2018-03-11 00:07:52 -05002/*
Davide Pesavento51493502019-07-17 02:26:44 -04003 * Copyright (c) 2013-2019 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.
Junxiao Shiaf8eeea2014-03-31 20:10:56 -070020 */
21
Davide Pesavento7e780642018-11-24 15:51:34 -050022#include "ndn-cxx/key-locator.hpp"
23#include "ndn-cxx/encoding/block-helpers.hpp"
Junxiao Shiaf8eeea2014-03-31 20:10:56 -070024
Davide Pesavento7e780642018-11-24 15:51:34 -050025#include "tests/boost-test.hpp"
Alexander Afanasyev5f1820e2017-01-04 18:12:42 -080026#include <boost/lexical_cast.hpp>
Junxiao Shiaf8eeea2014-03-31 20:10:56 -070027
28namespace ndn {
Spyridon Mastorakis429634f2015-02-19 17:35:33 -080029namespace tests {
Junxiao Shiaf8eeea2014-03-31 20:10:56 -070030
31BOOST_AUTO_TEST_SUITE(TestKeyLocator)
32
Junxiao Shibc5030d2014-09-01 11:53:12 -070033BOOST_AUTO_TEST_CASE(TypeNone)
34{
35 KeyLocator a;
Davide Pesavento51493502019-07-17 02:26:44 -040036 BOOST_CHECK_EQUAL(a.empty(), true);
37 BOOST_CHECK_EQUAL(a.getType(), tlv::Invalid);
Junxiao Shibc5030d2014-09-01 11:53:12 -070038 BOOST_CHECK_THROW(a.getName(), KeyLocator::Error);
39 BOOST_CHECK_THROW(a.getKeyDigest(), KeyLocator::Error);
40
Davide Pesavento51493502019-07-17 02:26:44 -040041 Block wire = a.wireEncode();
42 // These octets are obtained from the snippet below.
Junxiao Shibc5030d2014-09-01 11:53:12 -070043 // This check is intended to detect unexpected encoding change in the future.
Davide Pesavento8a8c01b2018-03-11 00:07:52 -050044 // for (auto it = wire.begin(); it != wire.end(); ++it) {
Junxiao Shibc5030d2014-09-01 11:53:12 -070045 // printf("0x%02x, ", *it);
46 // }
47 static const uint8_t expected[] = {
48 0x1c, 0x00
49 };
50 BOOST_CHECK_EQUAL_COLLECTIONS(expected, expected + sizeof(expected),
51 wire.begin(), wire.end());
52
Junxiao Shibc5030d2014-09-01 11:53:12 -070053 KeyLocator b(wire);
Junxiao Shi72c0c642018-04-20 15:41:09 +000054 BOOST_CHECK_EQUAL(a, b);
Davide Pesavento51493502019-07-17 02:26:44 -040055 BOOST_CHECK_EQUAL(a.empty(), true);
56 BOOST_CHECK_EQUAL(b.getType(), tlv::Invalid);
Junxiao Shibc5030d2014-09-01 11:53:12 -070057 BOOST_CHECK_THROW(b.getName(), KeyLocator::Error);
58 BOOST_CHECK_THROW(b.getKeyDigest(), KeyLocator::Error);
Alexander Afanasyev5f1820e2017-01-04 18:12:42 -080059 BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(b), "None");
Junxiao Shibc5030d2014-09-01 11:53:12 -070060}
61
62BOOST_AUTO_TEST_CASE(TypeName)
63{
64 KeyLocator a;
65 a.setName("/N");
Davide Pesavento51493502019-07-17 02:26:44 -040066 BOOST_CHECK_EQUAL(a.empty(), false);
67 BOOST_CHECK_EQUAL(a.getType(), tlv::Name);
Junxiao Shibc5030d2014-09-01 11:53:12 -070068 BOOST_CHECK_EQUAL(a.getName(), Name("/N"));
69 BOOST_CHECK_THROW(a.getKeyDigest(), KeyLocator::Error);
70
Davide Pesavento51493502019-07-17 02:26:44 -040071 Block wire = a.wireEncode();
72 // These octets are obtained from the snippet below.
Junxiao Shibc5030d2014-09-01 11:53:12 -070073 // This check is intended to detect unexpected encoding change in the future.
Davide Pesavento8a8c01b2018-03-11 00:07:52 -050074 // for (auto it = wire.begin(); it != wire.end(); ++it) {
Junxiao Shibc5030d2014-09-01 11:53:12 -070075 // printf("0x%02x, ", *it);
76 // }
77 static const uint8_t expected[] = {
78 0x1c, 0x05, 0x07, 0x03, 0x08, 0x01, 0x4e
79 };
80 BOOST_CHECK_EQUAL_COLLECTIONS(expected, expected + sizeof(expected),
81 wire.begin(), wire.end());
82
Junxiao Shibc5030d2014-09-01 11:53:12 -070083 KeyLocator b(wire);
Junxiao Shi72c0c642018-04-20 15:41:09 +000084 BOOST_CHECK_EQUAL(a, b);
Davide Pesavento51493502019-07-17 02:26:44 -040085 BOOST_CHECK_EQUAL(b.getType(), tlv::Name);
Junxiao Shibc5030d2014-09-01 11:53:12 -070086 BOOST_CHECK_EQUAL(b.getName(), Name("/N"));
87 BOOST_CHECK_THROW(b.getKeyDigest(), KeyLocator::Error);
Alexander Afanasyev5f1820e2017-01-04 18:12:42 -080088 BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(b), "Name=/N");
Davide Pesavento51493502019-07-17 02:26:44 -040089
90 KeyLocator c("/N");
91 BOOST_CHECK_EQUAL(a, c);
Junxiao Shibc5030d2014-09-01 11:53:12 -070092}
93
94BOOST_AUTO_TEST_CASE(TypeKeyDigest)
95{
Alexander Afanasyev5f1820e2017-01-04 18:12:42 -080096 std::string digestOctets = "\x12\x34\x56\x78\x9a\xbc\xde\xf1\x23\x45";
Davide Pesavento51493502019-07-17 02:26:44 -040097 ConstBufferPtr digestBuffer = make_shared<Buffer>(digestOctets.data(), digestOctets.size());
98 Block expectedDigestBlock = makeBinaryBlock(tlv::KeyDigest, digestOctets.data(), digestOctets.size());
Junxiao Shibc5030d2014-09-01 11:53:12 -070099
100 KeyLocator a;
101 a.setKeyDigest(digestBuffer);
Davide Pesavento51493502019-07-17 02:26:44 -0400102 BOOST_CHECK_EQUAL(a.empty(), false);
103 BOOST_CHECK_EQUAL(a.getType(), tlv::KeyDigest);
Junxiao Shi72c0c642018-04-20 15:41:09 +0000104 BOOST_CHECK_EQUAL(a.getKeyDigest(), expectedDigestBlock);
Junxiao Shibc5030d2014-09-01 11:53:12 -0700105 BOOST_CHECK_THROW(a.getName(), KeyLocator::Error);
106
Davide Pesavento51493502019-07-17 02:26:44 -0400107 Block wire = a.wireEncode();
108 // These octets are obtained from the snippet below.
Junxiao Shibc5030d2014-09-01 11:53:12 -0700109 // This check is intended to detect unexpected encoding change in the future.
Davide Pesavento8a8c01b2018-03-11 00:07:52 -0500110 // for (auto it = wire.begin(); it != wire.end(); ++it) {
Junxiao Shibc5030d2014-09-01 11:53:12 -0700111 // printf("0x%02x, ", *it);
112 // }
113 static const uint8_t expected[] = {
Alexander Afanasyev5f1820e2017-01-04 18:12:42 -0800114 0x1c, 0x0c, 0x1d, 0x0a, 0x12, 0x34, 0x56, 0x78, 0x9a, 0xbc, 0xde, 0xf1, 0x23, 0x45
Junxiao Shibc5030d2014-09-01 11:53:12 -0700115 };
116 BOOST_CHECK_EQUAL_COLLECTIONS(expected, expected + sizeof(expected),
117 wire.begin(), wire.end());
118
Junxiao Shibc5030d2014-09-01 11:53:12 -0700119 KeyLocator b(wire);
Junxiao Shi72c0c642018-04-20 15:41:09 +0000120 BOOST_CHECK_EQUAL(a, b);
Davide Pesavento51493502019-07-17 02:26:44 -0400121 BOOST_CHECK_EQUAL(b.getType(), tlv::KeyDigest);
Junxiao Shi72c0c642018-04-20 15:41:09 +0000122 BOOST_CHECK_EQUAL(b.getKeyDigest(), expectedDigestBlock);
Junxiao Shibc5030d2014-09-01 11:53:12 -0700123 BOOST_CHECK_THROW(b.getName(), KeyLocator::Error);
Alexander Afanasyev5f1820e2017-01-04 18:12:42 -0800124 BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(b), "KeyDigest=123456789A...");
125
Davide Pesavento51493502019-07-17 02:26:44 -0400126 b.setKeyDigest("1D03BCDEF1"_block);
127 BOOST_CHECK_EQUAL(b.getType(), tlv::KeyDigest);
128 BOOST_CHECK_EQUAL(b.getKeyDigest(), "1D03BCDEF1"_block);
129 BOOST_CHECK_THROW(b.getName(), KeyLocator::Error);
Alexander Afanasyev5f1820e2017-01-04 18:12:42 -0800130 BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(b), "KeyDigest=BCDEF1");
Junxiao Shibc5030d2014-09-01 11:53:12 -0700131}
132
Davide Pesavento51493502019-07-17 02:26:44 -0400133BOOST_AUTO_TEST_CASE(TypeUnknown)
134{
135 const auto wire = "1C037F01CC"_block;
136 KeyLocator a(wire);
137 BOOST_CHECK_EQUAL(a.empty(), false);
138 BOOST_CHECK_EQUAL(a.getType(), 127);
139
140 KeyLocator b(wire);
141 BOOST_CHECK_EQUAL(a, b);
142 BOOST_CHECK_EQUAL(b.getType(), 127);
143 BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(b), "Unknown(127)");
144
145 b.setName("/N");
146 BOOST_CHECK_NE(a, b);
147}
148
149BOOST_AUTO_TEST_CASE(Clear)
150{
151 KeyLocator a("/foo");
152 BOOST_CHECK_EQUAL(a.empty(), false);
153
154 a.clear();
155 BOOST_CHECK_EQUAL(a.empty(), true);
156 BOOST_CHECK_EQUAL(a.getType(), tlv::Invalid);
157 BOOST_CHECK_EQUAL(a, KeyLocator{});
158}
159
Junxiao Shiaf8eeea2014-03-31 20:10:56 -0700160BOOST_AUTO_TEST_CASE(Equality)
161{
Junxiao Shiaf8eeea2014-03-31 20:10:56 -0700162 KeyLocator a;
163 KeyLocator b;
164 BOOST_CHECK_EQUAL(a == b, true);
165 BOOST_CHECK_EQUAL(a != b, false);
166
167 a.setName("ndn:/A");
168 BOOST_CHECK_EQUAL(a == b, false);
169 BOOST_CHECK_EQUAL(a != b, true);
170
171 b.setName("ndn:/B");
172 BOOST_CHECK_EQUAL(a == b, false);
173 BOOST_CHECK_EQUAL(a != b, true);
174
175 b.setName("ndn:/A");
176 BOOST_CHECK_EQUAL(a == b, true);
177 BOOST_CHECK_EQUAL(a != b, false);
Junxiao Shibc5030d2014-09-01 11:53:12 -0700178
Davide Pesavento51493502019-07-17 02:26:44 -0400179 const char digestOctets[] = "\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD";
180 auto digestBuffer = make_shared<Buffer>(digestOctets, 8);
Junxiao Shibc5030d2014-09-01 11:53:12 -0700181
182 a.setKeyDigest(digestBuffer);
183 BOOST_CHECK_EQUAL(a == b, false);
184 BOOST_CHECK_EQUAL(a != b, true);
185
186 b.setKeyDigest(digestBuffer);
187 BOOST_CHECK_EQUAL(a == b, true);
188 BOOST_CHECK_EQUAL(a != b, false);
189}
190
Davide Pesaventoeee3e822016-11-26 19:19:34 +0100191BOOST_AUTO_TEST_SUITE_END() // TestKeyLocator
Junxiao Shiaf8eeea2014-03-31 20:10:56 -0700192
Spyridon Mastorakis429634f2015-02-19 17:35:33 -0800193} // namespace tests
Junxiao Shiaf8eeea2014-03-31 20:10:56 -0700194} // namespace ndn