Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | 8a8c01b | 2018-03-11 00:07:52 -0500 | [diff] [blame] | 2 | /* |
Davide Pesavento | 152ef44 | 2023-04-22 02:02:29 -0400 | [diff] [blame] | 3 | * Copyright (c) 2013-2023 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. |
Junxiao Shi | af8eeea | 2014-03-31 20:10:56 -0700 | [diff] [blame] | 20 | */ |
| 21 | |
Davide Pesavento | 7e78064 | 2018-11-24 15:51:34 -0500 | [diff] [blame] | 22 | #include "ndn-cxx/key-locator.hpp" |
| 23 | #include "ndn-cxx/encoding/block-helpers.hpp" |
Junxiao Shi | af8eeea | 2014-03-31 20:10:56 -0700 | [diff] [blame] | 24 | |
Davide Pesavento | 7e78064 | 2018-11-24 15:51:34 -0500 | [diff] [blame] | 25 | #include "tests/boost-test.hpp" |
Davide Pesavento | 152ef44 | 2023-04-22 02:02:29 -0400 | [diff] [blame] | 26 | |
Alexander Afanasyev | 5f1820e | 2017-01-04 18:12:42 -0800 | [diff] [blame] | 27 | #include <boost/lexical_cast.hpp> |
Junxiao Shi | af8eeea | 2014-03-31 20:10:56 -0700 | [diff] [blame] | 28 | |
Davide Pesavento | 47ce2ee | 2023-05-09 01:33:33 -0400 | [diff] [blame] | 29 | namespace ndn::tests { |
Junxiao Shi | af8eeea | 2014-03-31 20:10:56 -0700 | [diff] [blame] | 30 | |
Davide Pesavento | 152ef44 | 2023-04-22 02:02:29 -0400 | [diff] [blame] | 31 | BOOST_CONCEPT_ASSERT((boost::EqualityComparable<KeyLocator>)); |
| 32 | BOOST_CONCEPT_ASSERT((WireEncodable<KeyLocator>)); |
| 33 | BOOST_CONCEPT_ASSERT((WireEncodableWithEncodingBuffer<KeyLocator>)); |
| 34 | BOOST_CONCEPT_ASSERT((WireDecodable<KeyLocator>)); |
| 35 | static_assert(std::is_convertible_v<KeyLocator::Error*, tlv::Error*>, |
| 36 | "KeyLocator::Error must inherit from tlv::Error"); |
| 37 | |
Junxiao Shi | af8eeea | 2014-03-31 20:10:56 -0700 | [diff] [blame] | 38 | BOOST_AUTO_TEST_SUITE(TestKeyLocator) |
| 39 | |
Junxiao Shi | bc5030d | 2014-09-01 11:53:12 -0700 | [diff] [blame] | 40 | BOOST_AUTO_TEST_CASE(TypeNone) |
| 41 | { |
| 42 | KeyLocator a; |
Davide Pesavento | 5149350 | 2019-07-17 02:26:44 -0400 | [diff] [blame] | 43 | BOOST_CHECK_EQUAL(a.empty(), true); |
| 44 | BOOST_CHECK_EQUAL(a.getType(), tlv::Invalid); |
Junxiao Shi | bc5030d | 2014-09-01 11:53:12 -0700 | [diff] [blame] | 45 | BOOST_CHECK_THROW(a.getName(), KeyLocator::Error); |
| 46 | BOOST_CHECK_THROW(a.getKeyDigest(), KeyLocator::Error); |
| 47 | |
Davide Pesavento | 5149350 | 2019-07-17 02:26:44 -0400 | [diff] [blame] | 48 | Block wire = a.wireEncode(); |
| 49 | // These octets are obtained from the snippet below. |
Junxiao Shi | bc5030d | 2014-09-01 11:53:12 -0700 | [diff] [blame] | 50 | // This check is intended to detect unexpected encoding change in the future. |
Davide Pesavento | 8a8c01b | 2018-03-11 00:07:52 -0500 | [diff] [blame] | 51 | // for (auto it = wire.begin(); it != wire.end(); ++it) { |
Junxiao Shi | bc5030d | 2014-09-01 11:53:12 -0700 | [diff] [blame] | 52 | // printf("0x%02x, ", *it); |
| 53 | // } |
| 54 | static const uint8_t expected[] = { |
| 55 | 0x1c, 0x00 |
| 56 | }; |
| 57 | BOOST_CHECK_EQUAL_COLLECTIONS(expected, expected + sizeof(expected), |
| 58 | wire.begin(), wire.end()); |
| 59 | |
Junxiao Shi | bc5030d | 2014-09-01 11:53:12 -0700 | [diff] [blame] | 60 | KeyLocator b(wire); |
Junxiao Shi | 72c0c64 | 2018-04-20 15:41:09 +0000 | [diff] [blame] | 61 | BOOST_CHECK_EQUAL(a, b); |
Davide Pesavento | 5149350 | 2019-07-17 02:26:44 -0400 | [diff] [blame] | 62 | BOOST_CHECK_EQUAL(a.empty(), true); |
| 63 | BOOST_CHECK_EQUAL(b.getType(), tlv::Invalid); |
Junxiao Shi | bc5030d | 2014-09-01 11:53:12 -0700 | [diff] [blame] | 64 | BOOST_CHECK_THROW(b.getName(), KeyLocator::Error); |
| 65 | BOOST_CHECK_THROW(b.getKeyDigest(), KeyLocator::Error); |
Alexander Afanasyev | 5f1820e | 2017-01-04 18:12:42 -0800 | [diff] [blame] | 66 | BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(b), "None"); |
Junxiao Shi | bc5030d | 2014-09-01 11:53:12 -0700 | [diff] [blame] | 67 | } |
| 68 | |
| 69 | BOOST_AUTO_TEST_CASE(TypeName) |
| 70 | { |
| 71 | KeyLocator a; |
| 72 | a.setName("/N"); |
Davide Pesavento | 5149350 | 2019-07-17 02:26:44 -0400 | [diff] [blame] | 73 | BOOST_CHECK_EQUAL(a.empty(), false); |
| 74 | BOOST_CHECK_EQUAL(a.getType(), tlv::Name); |
Junxiao Shi | bc5030d | 2014-09-01 11:53:12 -0700 | [diff] [blame] | 75 | BOOST_CHECK_EQUAL(a.getName(), Name("/N")); |
| 76 | BOOST_CHECK_THROW(a.getKeyDigest(), KeyLocator::Error); |
| 77 | |
Davide Pesavento | 5149350 | 2019-07-17 02:26:44 -0400 | [diff] [blame] | 78 | Block wire = a.wireEncode(); |
| 79 | // These octets are obtained from the snippet below. |
Junxiao Shi | bc5030d | 2014-09-01 11:53:12 -0700 | [diff] [blame] | 80 | // This check is intended to detect unexpected encoding change in the future. |
Davide Pesavento | 8a8c01b | 2018-03-11 00:07:52 -0500 | [diff] [blame] | 81 | // for (auto it = wire.begin(); it != wire.end(); ++it) { |
Junxiao Shi | bc5030d | 2014-09-01 11:53:12 -0700 | [diff] [blame] | 82 | // printf("0x%02x, ", *it); |
| 83 | // } |
| 84 | static const uint8_t expected[] = { |
| 85 | 0x1c, 0x05, 0x07, 0x03, 0x08, 0x01, 0x4e |
| 86 | }; |
| 87 | BOOST_CHECK_EQUAL_COLLECTIONS(expected, expected + sizeof(expected), |
| 88 | wire.begin(), wire.end()); |
| 89 | |
Junxiao Shi | bc5030d | 2014-09-01 11:53:12 -0700 | [diff] [blame] | 90 | KeyLocator b(wire); |
Junxiao Shi | 72c0c64 | 2018-04-20 15:41:09 +0000 | [diff] [blame] | 91 | BOOST_CHECK_EQUAL(a, b); |
Davide Pesavento | 5149350 | 2019-07-17 02:26:44 -0400 | [diff] [blame] | 92 | BOOST_CHECK_EQUAL(b.getType(), tlv::Name); |
Junxiao Shi | bc5030d | 2014-09-01 11:53:12 -0700 | [diff] [blame] | 93 | BOOST_CHECK_EQUAL(b.getName(), Name("/N")); |
| 94 | BOOST_CHECK_THROW(b.getKeyDigest(), KeyLocator::Error); |
Alexander Afanasyev | 5f1820e | 2017-01-04 18:12:42 -0800 | [diff] [blame] | 95 | BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(b), "Name=/N"); |
Davide Pesavento | 5149350 | 2019-07-17 02:26:44 -0400 | [diff] [blame] | 96 | |
| 97 | KeyLocator c("/N"); |
| 98 | BOOST_CHECK_EQUAL(a, c); |
Junxiao Shi | bc5030d | 2014-09-01 11:53:12 -0700 | [diff] [blame] | 99 | } |
| 100 | |
| 101 | BOOST_AUTO_TEST_CASE(TypeKeyDigest) |
| 102 | { |
Davide Pesavento | 765abc9 | 2021-12-27 00:44:04 -0500 | [diff] [blame] | 103 | static const uint8_t digestOctets[] = { |
| 104 | 0x12, 0x34, 0x56, 0x78, 0x9a, 0xbc, 0xde, 0xf1, 0x23, 0x45 |
| 105 | }; |
| 106 | ConstBufferPtr digestBuffer = std::make_shared<Buffer>(digestOctets, sizeof(digestOctets)); |
| 107 | Block expectedDigestBlock = makeBinaryBlock(tlv::KeyDigest, digestOctets); |
Junxiao Shi | bc5030d | 2014-09-01 11:53:12 -0700 | [diff] [blame] | 108 | |
| 109 | KeyLocator a; |
| 110 | a.setKeyDigest(digestBuffer); |
Davide Pesavento | 5149350 | 2019-07-17 02:26:44 -0400 | [diff] [blame] | 111 | BOOST_CHECK_EQUAL(a.empty(), false); |
| 112 | BOOST_CHECK_EQUAL(a.getType(), tlv::KeyDigest); |
Junxiao Shi | 72c0c64 | 2018-04-20 15:41:09 +0000 | [diff] [blame] | 113 | BOOST_CHECK_EQUAL(a.getKeyDigest(), expectedDigestBlock); |
Junxiao Shi | bc5030d | 2014-09-01 11:53:12 -0700 | [diff] [blame] | 114 | BOOST_CHECK_THROW(a.getName(), KeyLocator::Error); |
| 115 | |
Davide Pesavento | 5149350 | 2019-07-17 02:26:44 -0400 | [diff] [blame] | 116 | Block wire = a.wireEncode(); |
| 117 | // These octets are obtained from the snippet below. |
Junxiao Shi | bc5030d | 2014-09-01 11:53:12 -0700 | [diff] [blame] | 118 | // This check is intended to detect unexpected encoding change in the future. |
Davide Pesavento | 8a8c01b | 2018-03-11 00:07:52 -0500 | [diff] [blame] | 119 | // for (auto it = wire.begin(); it != wire.end(); ++it) { |
Junxiao Shi | bc5030d | 2014-09-01 11:53:12 -0700 | [diff] [blame] | 120 | // printf("0x%02x, ", *it); |
| 121 | // } |
| 122 | static const uint8_t expected[] = { |
Alexander Afanasyev | 5f1820e | 2017-01-04 18:12:42 -0800 | [diff] [blame] | 123 | 0x1c, 0x0c, 0x1d, 0x0a, 0x12, 0x34, 0x56, 0x78, 0x9a, 0xbc, 0xde, 0xf1, 0x23, 0x45 |
Junxiao Shi | bc5030d | 2014-09-01 11:53:12 -0700 | [diff] [blame] | 124 | }; |
| 125 | BOOST_CHECK_EQUAL_COLLECTIONS(expected, expected + sizeof(expected), |
| 126 | wire.begin(), wire.end()); |
| 127 | |
Junxiao Shi | bc5030d | 2014-09-01 11:53:12 -0700 | [diff] [blame] | 128 | KeyLocator b(wire); |
Junxiao Shi | 72c0c64 | 2018-04-20 15:41:09 +0000 | [diff] [blame] | 129 | BOOST_CHECK_EQUAL(a, b); |
Davide Pesavento | 5149350 | 2019-07-17 02:26:44 -0400 | [diff] [blame] | 130 | BOOST_CHECK_EQUAL(b.getType(), tlv::KeyDigest); |
Junxiao Shi | 72c0c64 | 2018-04-20 15:41:09 +0000 | [diff] [blame] | 131 | BOOST_CHECK_EQUAL(b.getKeyDigest(), expectedDigestBlock); |
Junxiao Shi | bc5030d | 2014-09-01 11:53:12 -0700 | [diff] [blame] | 132 | BOOST_CHECK_THROW(b.getName(), KeyLocator::Error); |
Davide Pesavento | dd0724b | 2022-04-18 00:30:05 -0400 | [diff] [blame] | 133 | BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(b), "KeyDigest=123456789ABCDEF1..."); |
Alexander Afanasyev | 5f1820e | 2017-01-04 18:12:42 -0800 | [diff] [blame] | 134 | |
Davide Pesavento | dd0724b | 2022-04-18 00:30:05 -0400 | [diff] [blame] | 135 | b.setKeyDigest("1D050123456789"_block); |
Davide Pesavento | 5149350 | 2019-07-17 02:26:44 -0400 | [diff] [blame] | 136 | BOOST_CHECK_EQUAL(b.getType(), tlv::KeyDigest); |
Davide Pesavento | dd0724b | 2022-04-18 00:30:05 -0400 | [diff] [blame] | 137 | BOOST_CHECK_EQUAL(b.getKeyDigest(), "1D050123456789"_block); |
Davide Pesavento | 5149350 | 2019-07-17 02:26:44 -0400 | [diff] [blame] | 138 | BOOST_CHECK_THROW(b.getName(), KeyLocator::Error); |
Davide Pesavento | dd0724b | 2022-04-18 00:30:05 -0400 | [diff] [blame] | 139 | BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(b), "KeyDigest=0123456789"); |
Junxiao Shi | bc5030d | 2014-09-01 11:53:12 -0700 | [diff] [blame] | 140 | } |
| 141 | |
Davide Pesavento | 5149350 | 2019-07-17 02:26:44 -0400 | [diff] [blame] | 142 | BOOST_AUTO_TEST_CASE(TypeUnknown) |
| 143 | { |
| 144 | const auto wire = "1C037F01CC"_block; |
| 145 | KeyLocator a(wire); |
| 146 | BOOST_CHECK_EQUAL(a.empty(), false); |
| 147 | BOOST_CHECK_EQUAL(a.getType(), 127); |
| 148 | |
| 149 | KeyLocator b(wire); |
| 150 | BOOST_CHECK_EQUAL(a, b); |
| 151 | BOOST_CHECK_EQUAL(b.getType(), 127); |
| 152 | BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(b), "Unknown(127)"); |
| 153 | |
| 154 | b.setName("/N"); |
| 155 | BOOST_CHECK_NE(a, b); |
| 156 | } |
| 157 | |
| 158 | BOOST_AUTO_TEST_CASE(Clear) |
| 159 | { |
| 160 | KeyLocator a("/foo"); |
| 161 | BOOST_CHECK_EQUAL(a.empty(), false); |
| 162 | |
| 163 | a.clear(); |
| 164 | BOOST_CHECK_EQUAL(a.empty(), true); |
| 165 | BOOST_CHECK_EQUAL(a.getType(), tlv::Invalid); |
| 166 | BOOST_CHECK_EQUAL(a, KeyLocator{}); |
| 167 | } |
| 168 | |
Junxiao Shi | af8eeea | 2014-03-31 20:10:56 -0700 | [diff] [blame] | 169 | BOOST_AUTO_TEST_CASE(Equality) |
| 170 | { |
Junxiao Shi | af8eeea | 2014-03-31 20:10:56 -0700 | [diff] [blame] | 171 | KeyLocator a; |
| 172 | KeyLocator b; |
| 173 | BOOST_CHECK_EQUAL(a == b, true); |
| 174 | BOOST_CHECK_EQUAL(a != b, false); |
| 175 | |
| 176 | a.setName("ndn:/A"); |
| 177 | BOOST_CHECK_EQUAL(a == b, false); |
| 178 | BOOST_CHECK_EQUAL(a != b, true); |
| 179 | |
| 180 | b.setName("ndn:/B"); |
| 181 | BOOST_CHECK_EQUAL(a == b, false); |
| 182 | BOOST_CHECK_EQUAL(a != b, true); |
| 183 | |
| 184 | b.setName("ndn:/A"); |
| 185 | BOOST_CHECK_EQUAL(a == b, true); |
| 186 | BOOST_CHECK_EQUAL(a != b, false); |
Junxiao Shi | bc5030d | 2014-09-01 11:53:12 -0700 | [diff] [blame] | 187 | |
Davide Pesavento | dd0724b | 2022-04-18 00:30:05 -0400 | [diff] [blame] | 188 | const uint8_t digestOctets[] = "\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD"; |
| 189 | auto digestBuffer = std::make_shared<Buffer>(digestOctets, sizeof(digestOctets) - 1); |
Junxiao Shi | bc5030d | 2014-09-01 11:53:12 -0700 | [diff] [blame] | 190 | |
| 191 | a.setKeyDigest(digestBuffer); |
| 192 | BOOST_CHECK_EQUAL(a == b, false); |
| 193 | BOOST_CHECK_EQUAL(a != b, true); |
| 194 | |
| 195 | b.setKeyDigest(digestBuffer); |
| 196 | BOOST_CHECK_EQUAL(a == b, true); |
| 197 | BOOST_CHECK_EQUAL(a != b, false); |
| 198 | } |
| 199 | |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 200 | BOOST_AUTO_TEST_SUITE_END() // TestKeyLocator |
Junxiao Shi | af8eeea | 2014-03-31 20:10:56 -0700 | [diff] [blame] | 201 | |
Davide Pesavento | 47ce2ee | 2023-05-09 01:33:33 -0400 | [diff] [blame] | 202 | } // namespace ndn::tests |