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 | 5149350 | 2019-07-17 02:26:44 -0400 | [diff] [blame] | 3 | * Copyright (c) 2013-2019 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" |
Alexander Afanasyev | 5f1820e | 2017-01-04 18:12:42 -0800 | [diff] [blame] | 26 | #include <boost/lexical_cast.hpp> |
Junxiao Shi | af8eeea | 2014-03-31 20:10:56 -0700 | [diff] [blame] | 27 | |
| 28 | namespace ndn { |
Spyridon Mastorakis | 429634f | 2015-02-19 17:35:33 -0800 | [diff] [blame] | 29 | namespace tests { |
Junxiao Shi | af8eeea | 2014-03-31 20:10:56 -0700 | [diff] [blame] | 30 | |
| 31 | BOOST_AUTO_TEST_SUITE(TestKeyLocator) |
| 32 | |
Junxiao Shi | bc5030d | 2014-09-01 11:53:12 -0700 | [diff] [blame] | 33 | BOOST_AUTO_TEST_CASE(TypeNone) |
| 34 | { |
| 35 | KeyLocator a; |
Davide Pesavento | 5149350 | 2019-07-17 02:26:44 -0400 | [diff] [blame] | 36 | BOOST_CHECK_EQUAL(a.empty(), true); |
| 37 | BOOST_CHECK_EQUAL(a.getType(), tlv::Invalid); |
Junxiao Shi | bc5030d | 2014-09-01 11:53:12 -0700 | [diff] [blame] | 38 | BOOST_CHECK_THROW(a.getName(), KeyLocator::Error); |
| 39 | BOOST_CHECK_THROW(a.getKeyDigest(), KeyLocator::Error); |
| 40 | |
Davide Pesavento | 5149350 | 2019-07-17 02:26:44 -0400 | [diff] [blame] | 41 | Block wire = a.wireEncode(); |
| 42 | // These octets are obtained from the snippet below. |
Junxiao Shi | bc5030d | 2014-09-01 11:53:12 -0700 | [diff] [blame] | 43 | // This check is intended to detect unexpected encoding change in the future. |
Davide Pesavento | 8a8c01b | 2018-03-11 00:07:52 -0500 | [diff] [blame] | 44 | // for (auto it = wire.begin(); it != wire.end(); ++it) { |
Junxiao Shi | bc5030d | 2014-09-01 11:53:12 -0700 | [diff] [blame] | 45 | // 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 Shi | bc5030d | 2014-09-01 11:53:12 -0700 | [diff] [blame] | 53 | KeyLocator b(wire); |
Junxiao Shi | 72c0c64 | 2018-04-20 15:41:09 +0000 | [diff] [blame] | 54 | BOOST_CHECK_EQUAL(a, b); |
Davide Pesavento | 5149350 | 2019-07-17 02:26:44 -0400 | [diff] [blame] | 55 | BOOST_CHECK_EQUAL(a.empty(), true); |
| 56 | BOOST_CHECK_EQUAL(b.getType(), tlv::Invalid); |
Junxiao Shi | bc5030d | 2014-09-01 11:53:12 -0700 | [diff] [blame] | 57 | BOOST_CHECK_THROW(b.getName(), KeyLocator::Error); |
| 58 | BOOST_CHECK_THROW(b.getKeyDigest(), KeyLocator::Error); |
Alexander Afanasyev | 5f1820e | 2017-01-04 18:12:42 -0800 | [diff] [blame] | 59 | BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(b), "None"); |
Junxiao Shi | bc5030d | 2014-09-01 11:53:12 -0700 | [diff] [blame] | 60 | } |
| 61 | |
| 62 | BOOST_AUTO_TEST_CASE(TypeName) |
| 63 | { |
| 64 | KeyLocator a; |
| 65 | a.setName("/N"); |
Davide Pesavento | 5149350 | 2019-07-17 02:26:44 -0400 | [diff] [blame] | 66 | BOOST_CHECK_EQUAL(a.empty(), false); |
| 67 | BOOST_CHECK_EQUAL(a.getType(), tlv::Name); |
Junxiao Shi | bc5030d | 2014-09-01 11:53:12 -0700 | [diff] [blame] | 68 | BOOST_CHECK_EQUAL(a.getName(), Name("/N")); |
| 69 | BOOST_CHECK_THROW(a.getKeyDigest(), KeyLocator::Error); |
| 70 | |
Davide Pesavento | 5149350 | 2019-07-17 02:26:44 -0400 | [diff] [blame] | 71 | Block wire = a.wireEncode(); |
| 72 | // These octets are obtained from the snippet below. |
Junxiao Shi | bc5030d | 2014-09-01 11:53:12 -0700 | [diff] [blame] | 73 | // This check is intended to detect unexpected encoding change in the future. |
Davide Pesavento | 8a8c01b | 2018-03-11 00:07:52 -0500 | [diff] [blame] | 74 | // for (auto it = wire.begin(); it != wire.end(); ++it) { |
Junxiao Shi | bc5030d | 2014-09-01 11:53:12 -0700 | [diff] [blame] | 75 | // 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 Shi | bc5030d | 2014-09-01 11:53:12 -0700 | [diff] [blame] | 83 | KeyLocator b(wire); |
Junxiao Shi | 72c0c64 | 2018-04-20 15:41:09 +0000 | [diff] [blame] | 84 | BOOST_CHECK_EQUAL(a, b); |
Davide Pesavento | 5149350 | 2019-07-17 02:26:44 -0400 | [diff] [blame] | 85 | BOOST_CHECK_EQUAL(b.getType(), tlv::Name); |
Junxiao Shi | bc5030d | 2014-09-01 11:53:12 -0700 | [diff] [blame] | 86 | BOOST_CHECK_EQUAL(b.getName(), Name("/N")); |
| 87 | BOOST_CHECK_THROW(b.getKeyDigest(), KeyLocator::Error); |
Alexander Afanasyev | 5f1820e | 2017-01-04 18:12:42 -0800 | [diff] [blame] | 88 | BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(b), "Name=/N"); |
Davide Pesavento | 5149350 | 2019-07-17 02:26:44 -0400 | [diff] [blame] | 89 | |
| 90 | KeyLocator c("/N"); |
| 91 | BOOST_CHECK_EQUAL(a, c); |
Junxiao Shi | bc5030d | 2014-09-01 11:53:12 -0700 | [diff] [blame] | 92 | } |
| 93 | |
| 94 | BOOST_AUTO_TEST_CASE(TypeKeyDigest) |
| 95 | { |
Alexander Afanasyev | 5f1820e | 2017-01-04 18:12:42 -0800 | [diff] [blame] | 96 | std::string digestOctets = "\x12\x34\x56\x78\x9a\xbc\xde\xf1\x23\x45"; |
Davide Pesavento | 5149350 | 2019-07-17 02:26:44 -0400 | [diff] [blame] | 97 | ConstBufferPtr digestBuffer = make_shared<Buffer>(digestOctets.data(), digestOctets.size()); |
| 98 | Block expectedDigestBlock = makeBinaryBlock(tlv::KeyDigest, digestOctets.data(), digestOctets.size()); |
Junxiao Shi | bc5030d | 2014-09-01 11:53:12 -0700 | [diff] [blame] | 99 | |
| 100 | KeyLocator a; |
| 101 | a.setKeyDigest(digestBuffer); |
Davide Pesavento | 5149350 | 2019-07-17 02:26:44 -0400 | [diff] [blame] | 102 | BOOST_CHECK_EQUAL(a.empty(), false); |
| 103 | BOOST_CHECK_EQUAL(a.getType(), tlv::KeyDigest); |
Junxiao Shi | 72c0c64 | 2018-04-20 15:41:09 +0000 | [diff] [blame] | 104 | BOOST_CHECK_EQUAL(a.getKeyDigest(), expectedDigestBlock); |
Junxiao Shi | bc5030d | 2014-09-01 11:53:12 -0700 | [diff] [blame] | 105 | BOOST_CHECK_THROW(a.getName(), KeyLocator::Error); |
| 106 | |
Davide Pesavento | 5149350 | 2019-07-17 02:26:44 -0400 | [diff] [blame] | 107 | Block wire = a.wireEncode(); |
| 108 | // These octets are obtained from the snippet below. |
Junxiao Shi | bc5030d | 2014-09-01 11:53:12 -0700 | [diff] [blame] | 109 | // This check is intended to detect unexpected encoding change in the future. |
Davide Pesavento | 8a8c01b | 2018-03-11 00:07:52 -0500 | [diff] [blame] | 110 | // for (auto it = wire.begin(); it != wire.end(); ++it) { |
Junxiao Shi | bc5030d | 2014-09-01 11:53:12 -0700 | [diff] [blame] | 111 | // printf("0x%02x, ", *it); |
| 112 | // } |
| 113 | static const uint8_t expected[] = { |
Alexander Afanasyev | 5f1820e | 2017-01-04 18:12:42 -0800 | [diff] [blame] | 114 | 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] | 115 | }; |
| 116 | BOOST_CHECK_EQUAL_COLLECTIONS(expected, expected + sizeof(expected), |
| 117 | wire.begin(), wire.end()); |
| 118 | |
Junxiao Shi | bc5030d | 2014-09-01 11:53:12 -0700 | [diff] [blame] | 119 | KeyLocator b(wire); |
Junxiao Shi | 72c0c64 | 2018-04-20 15:41:09 +0000 | [diff] [blame] | 120 | BOOST_CHECK_EQUAL(a, b); |
Davide Pesavento | 5149350 | 2019-07-17 02:26:44 -0400 | [diff] [blame] | 121 | BOOST_CHECK_EQUAL(b.getType(), tlv::KeyDigest); |
Junxiao Shi | 72c0c64 | 2018-04-20 15:41:09 +0000 | [diff] [blame] | 122 | BOOST_CHECK_EQUAL(b.getKeyDigest(), expectedDigestBlock); |
Junxiao Shi | bc5030d | 2014-09-01 11:53:12 -0700 | [diff] [blame] | 123 | BOOST_CHECK_THROW(b.getName(), KeyLocator::Error); |
Alexander Afanasyev | 5f1820e | 2017-01-04 18:12:42 -0800 | [diff] [blame] | 124 | BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(b), "KeyDigest=123456789A..."); |
| 125 | |
Davide Pesavento | 5149350 | 2019-07-17 02:26:44 -0400 | [diff] [blame] | 126 | 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 Afanasyev | 5f1820e | 2017-01-04 18:12:42 -0800 | [diff] [blame] | 130 | BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(b), "KeyDigest=BCDEF1"); |
Junxiao Shi | bc5030d | 2014-09-01 11:53:12 -0700 | [diff] [blame] | 131 | } |
| 132 | |
Davide Pesavento | 5149350 | 2019-07-17 02:26:44 -0400 | [diff] [blame] | 133 | BOOST_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 | |
| 149 | BOOST_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 Shi | af8eeea | 2014-03-31 20:10:56 -0700 | [diff] [blame] | 160 | BOOST_AUTO_TEST_CASE(Equality) |
| 161 | { |
Junxiao Shi | af8eeea | 2014-03-31 20:10:56 -0700 | [diff] [blame] | 162 | 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 Shi | bc5030d | 2014-09-01 11:53:12 -0700 | [diff] [blame] | 178 | |
Davide Pesavento | 5149350 | 2019-07-17 02:26:44 -0400 | [diff] [blame] | 179 | const char digestOctets[] = "\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD"; |
| 180 | auto digestBuffer = make_shared<Buffer>(digestOctets, 8); |
Junxiao Shi | bc5030d | 2014-09-01 11:53:12 -0700 | [diff] [blame] | 181 | |
| 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 Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 191 | BOOST_AUTO_TEST_SUITE_END() // TestKeyLocator |
Junxiao Shi | af8eeea | 2014-03-31 20:10:56 -0700 | [diff] [blame] | 192 | |
Spyridon Mastorakis | 429634f | 2015-02-19 17:35:33 -0800 | [diff] [blame] | 193 | } // namespace tests |
Junxiao Shi | af8eeea | 2014-03-31 20:10:56 -0700 | [diff] [blame] | 194 | } // namespace ndn |