Junxiao Shi | df4b24e | 2016-07-14 21:41:43 +0000 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Junxiao Shi | 71ff231 | 2017-07-12 13:32:50 +0000 | [diff] [blame] | 2 | /* |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 3 | * Copyright (c) 2013-2018 Regents of the University of California. |
Junxiao Shi | df4b24e | 2016-07-14 21:41:43 +0000 | [diff] [blame] | 4 | * |
| 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 "name-component.hpp" |
Junxiao Shi | 71ff231 | 2017-07-12 13:32:50 +0000 | [diff] [blame] | 23 | #include "name.hpp" |
Junxiao Shi | 4053bd5 | 2018-08-16 13:39:25 -0600 | [diff] [blame^] | 24 | #include "util/string-helper.hpp" |
Junxiao Shi | df4b24e | 2016-07-14 21:41:43 +0000 | [diff] [blame] | 25 | |
Junxiao Shi | cf4ac5b | 2018-03-28 22:46:06 +0000 | [diff] [blame] | 26 | #include "block-literal.hpp" |
Junxiao Shi | df4b24e | 2016-07-14 21:41:43 +0000 | [diff] [blame] | 27 | #include "boost-test.hpp" |
Junxiao Shi | 4053bd5 | 2018-08-16 13:39:25 -0600 | [diff] [blame^] | 28 | #include <boost/algorithm/string/case_conv.hpp> |
Junxiao Shi | df4b24e | 2016-07-14 21:41:43 +0000 | [diff] [blame] | 29 | #include <boost/mpl/vector.hpp> |
| 30 | |
| 31 | namespace ndn { |
Junxiao Shi | cf4ac5b | 2018-03-28 22:46:06 +0000 | [diff] [blame] | 32 | namespace name { |
Junxiao Shi | df4b24e | 2016-07-14 21:41:43 +0000 | [diff] [blame] | 33 | namespace tests { |
| 34 | |
Junxiao Shi | cf4ac5b | 2018-03-28 22:46:06 +0000 | [diff] [blame] | 35 | using namespace ndn::tests; |
Junxiao Shi | df4b24e | 2016-07-14 21:41:43 +0000 | [diff] [blame] | 36 | |
Junxiao Shi | cf4ac5b | 2018-03-28 22:46:06 +0000 | [diff] [blame] | 37 | BOOST_AUTO_TEST_SUITE(TestNameComponent) |
Junxiao Shi | df4b24e | 2016-07-14 21:41:43 +0000 | [diff] [blame] | 38 | |
| 39 | BOOST_AUTO_TEST_SUITE(Decode) |
| 40 | |
| 41 | BOOST_AUTO_TEST_CASE(Generic) |
| 42 | { |
Junxiao Shi | cf4ac5b | 2018-03-28 22:46:06 +0000 | [diff] [blame] | 43 | Component comp("0807 6E646E2D637878"_block); |
| 44 | BOOST_CHECK_EQUAL(comp.type(), tlv::GenericNameComponent); |
| 45 | BOOST_CHECK_EQUAL(comp.toUri(), "ndn-cxx"); |
| 46 | BOOST_CHECK_EQUAL(Component::fromEscapedString("ndn-cxx"), comp); |
Junxiao Shi | d2e6063 | 2018-08-10 10:48:44 -0600 | [diff] [blame] | 47 | BOOST_CHECK_EQUAL(Component::fromEscapedString("8=ndn-cxx"), comp); |
Junxiao Shi | cf4ac5b | 2018-03-28 22:46:06 +0000 | [diff] [blame] | 48 | |
| 49 | comp.wireDecode("0800"_block); |
| 50 | BOOST_CHECK_EQUAL(comp.toUri(), "..."); |
| 51 | BOOST_CHECK_EQUAL(Component::fromEscapedString("..."), comp); |
Junxiao Shi | d2e6063 | 2018-08-10 10:48:44 -0600 | [diff] [blame] | 52 | BOOST_CHECK_EQUAL(Component::fromEscapedString("8=..."), comp); |
Junxiao Shi | cf4ac5b | 2018-03-28 22:46:06 +0000 | [diff] [blame] | 53 | BOOST_CHECK_EQUAL(Component::fromEscapedString(".%2E."), comp); |
| 54 | |
| 55 | comp.wireDecode("0801 2E"_block); |
| 56 | BOOST_CHECK_EQUAL(comp.toUri(), "...."); |
| 57 | BOOST_CHECK_EQUAL(Component::fromEscapedString("...."), comp); |
| 58 | BOOST_CHECK_EQUAL(Component::fromEscapedString("%2E..%2E"), comp); |
| 59 | |
| 60 | comp.wireDecode("0803 2E412E"_block); |
| 61 | BOOST_CHECK_EQUAL(comp.toUri(), ".A."); |
| 62 | BOOST_CHECK_EQUAL(Component::fromEscapedString(".A."), comp); |
| 63 | |
| 64 | comp.wireDecode("0807 666F6F25626172"_block); |
| 65 | BOOST_CHECK_EQUAL(comp.toUri(), "foo%25bar"); |
| 66 | BOOST_CHECK_EQUAL(Component::fromEscapedString("foo%25bar"), comp); |
Junxiao Shi | d2e6063 | 2018-08-10 10:48:44 -0600 | [diff] [blame] | 67 | BOOST_CHECK_EQUAL(Component::fromEscapedString("8=foo%25bar"), comp); |
Junxiao Shi | cf4ac5b | 2018-03-28 22:46:06 +0000 | [diff] [blame] | 68 | |
| 69 | comp.wireDecode("0804 2D2E5F7E"_block); |
| 70 | BOOST_CHECK_EQUAL(comp.toUri(), "-._~"); |
| 71 | BOOST_CHECK_EQUAL(Component::fromEscapedString("-._~"), comp); |
| 72 | |
Junxiao Shi | d2e6063 | 2018-08-10 10:48:44 -0600 | [diff] [blame] | 73 | comp.wireDecode("0803 393D41"_block); |
| 74 | BOOST_CHECK_EQUAL(comp.toUri(), "9%3DA"); |
| 75 | BOOST_CHECK_EQUAL(Component::fromEscapedString("9%3DA"), comp); |
| 76 | |
Junxiao Shi | cf4ac5b | 2018-03-28 22:46:06 +0000 | [diff] [blame] | 77 | comp = Component(":/?#[]@"); |
| 78 | BOOST_CHECK_EQUAL(comp.toUri(), "%3A%2F%3F%23%5B%5D%40"); |
| 79 | BOOST_CHECK_EQUAL(Component::fromEscapedString("%3A%2F%3F%23%5B%5D%40"), comp); |
| 80 | |
| 81 | BOOST_CHECK_THROW(Component::fromEscapedString(""), Component::Error); |
| 82 | BOOST_CHECK_THROW(Component::fromEscapedString("."), Component::Error); |
| 83 | BOOST_CHECK_THROW(Component::fromEscapedString(".."), Component::Error); |
Junxiao Shi | df4b24e | 2016-07-14 21:41:43 +0000 | [diff] [blame] | 84 | } |
| 85 | |
Junxiao Shi | 4053bd5 | 2018-08-16 13:39:25 -0600 | [diff] [blame^] | 86 | static void |
| 87 | testSha256(uint32_t type, const std::string& uriPrefix) |
Junxiao Shi | df4b24e | 2016-07-14 21:41:43 +0000 | [diff] [blame] | 88 | { |
Junxiao Shi | cf4ac5b | 2018-03-28 22:46:06 +0000 | [diff] [blame] | 89 | std::string hexLower = "28bad4b5275bd392dbb670c75cf0b66f13f7942b21e80f55c0e86b374753a548"; |
Junxiao Shi | 4053bd5 | 2018-08-16 13:39:25 -0600 | [diff] [blame^] | 90 | std::string hexUpper = boost::to_upper_copy(hexLower); |
| 91 | std::string hexPct; |
| 92 | for (size_t i = 0; i < hexUpper.size(); i += 2) { |
| 93 | hexPct += "%" + hexUpper.substr(i, 2); |
| 94 | } |
Junxiao Shi | cf4ac5b | 2018-03-28 22:46:06 +0000 | [diff] [blame] | 95 | |
Junxiao Shi | 4053bd5 | 2018-08-16 13:39:25 -0600 | [diff] [blame^] | 96 | Component comp(Block(type, fromHex(hexLower))); |
| 97 | BOOST_CHECK_EQUAL(comp.type(), type); |
Junxiao Shi | cf4ac5b | 2018-03-28 22:46:06 +0000 | [diff] [blame] | 98 | BOOST_CHECK_EQUAL(comp.toUri(), uriPrefix + hexLower); |
| 99 | BOOST_CHECK_EQUAL(Component::fromEscapedString(uriPrefix + hexLower), comp); |
| 100 | BOOST_CHECK_EQUAL(Component::fromEscapedString(uriPrefix + hexUpper), comp); |
Junxiao Shi | 4053bd5 | 2018-08-16 13:39:25 -0600 | [diff] [blame^] | 101 | BOOST_CHECK_EQUAL(Component::fromEscapedString(to_string(type) + "=" + hexPct), comp); |
Junxiao Shi | cf4ac5b | 2018-03-28 22:46:06 +0000 | [diff] [blame] | 102 | |
Junxiao Shi | 4053bd5 | 2018-08-16 13:39:25 -0600 | [diff] [blame^] | 103 | BOOST_CHECK_THROW(comp.wireDecode(Block(type, fromHex("A791806951F25C4D"))), Component::Error); |
Junxiao Shi | cf4ac5b | 2018-03-28 22:46:06 +0000 | [diff] [blame] | 104 | BOOST_CHECK_THROW(Component::fromEscapedString(uriPrefix), Component::Error); |
Junxiao Shi | 4053bd5 | 2018-08-16 13:39:25 -0600 | [diff] [blame^] | 105 | BOOST_CHECK_THROW(Component::fromEscapedString(uriPrefix + "a791806951f25c4d"), |
Junxiao Shi | cf4ac5b | 2018-03-28 22:46:06 +0000 | [diff] [blame] | 106 | Component::Error); |
Junxiao Shi | 4053bd5 | 2018-08-16 13:39:25 -0600 | [diff] [blame^] | 107 | BOOST_CHECK_THROW(Component::fromEscapedString(boost::to_upper_copy(uriPrefix) + hexLower), |
| 108 | Component::Error); |
| 109 | } |
| 110 | |
| 111 | BOOST_AUTO_TEST_CASE(Digest) |
| 112 | { |
| 113 | testSha256(tlv::ImplicitSha256DigestComponent, "sha256digest="); |
| 114 | } |
| 115 | |
| 116 | BOOST_AUTO_TEST_CASE(Params) |
| 117 | { |
| 118 | testSha256(tlv::ParametersSha256DigestComponent, "params-sha256="); |
Junxiao Shi | df4b24e | 2016-07-14 21:41:43 +0000 | [diff] [blame] | 119 | } |
| 120 | |
Junxiao Shi | cf4ac5b | 2018-03-28 22:46:06 +0000 | [diff] [blame] | 121 | BOOST_AUTO_TEST_CASE(OtherType) |
Junxiao Shi | df4b24e | 2016-07-14 21:41:43 +0000 | [diff] [blame] | 122 | { |
Junxiao Shi | cf4ac5b | 2018-03-28 22:46:06 +0000 | [diff] [blame] | 123 | Component comp("0907 6E646E2D637878"_block); |
| 124 | BOOST_CHECK_EQUAL(comp.type(), 0x09); |
| 125 | BOOST_CHECK_EQUAL(comp.toUri(), "9=ndn-cxx"); |
| 126 | BOOST_CHECK_EQUAL(Component::fromEscapedString("9=ndn-cxx"), comp); |
| 127 | |
| 128 | comp.wireDecode("FDFFFF00"_block); |
| 129 | BOOST_CHECK_EQUAL(comp.type(), 0xFFFF); |
| 130 | BOOST_CHECK_EQUAL(comp.toUri(), "65535=..."); |
| 131 | BOOST_CHECK_EQUAL(Component::fromEscapedString("65535=..."), comp); |
| 132 | |
| 133 | comp.wireDecode("FD576501 2E"_block); |
| 134 | BOOST_CHECK_EQUAL(comp.type(), 0x5765); |
| 135 | BOOST_CHECK_EQUAL(comp.toUri(), "22373=...."); |
| 136 | BOOST_CHECK_EQUAL(Component::fromEscapedString("22373=...."), comp); |
| 137 | |
| 138 | BOOST_CHECK_THROW(Component::fromEscapedString("3="), Component::Error); |
| 139 | BOOST_CHECK_THROW(Component::fromEscapedString("3=."), Component::Error); |
| 140 | BOOST_CHECK_THROW(Component::fromEscapedString("3=.."), Component::Error); |
| 141 | } |
| 142 | |
| 143 | BOOST_AUTO_TEST_CASE(InvalidType) |
| 144 | { |
| 145 | Component comp; |
| 146 | BOOST_CHECK_THROW(comp.wireDecode("0001 80"_block), Component::Error); |
| 147 | BOOST_CHECK_THROW(comp.wireDecode("FE0001000001 80"_block), Component::Error); |
| 148 | |
| 149 | BOOST_CHECK_THROW(Component::fromEscapedString("0=A"), Component::Error); |
| 150 | BOOST_CHECK_THROW(Component::fromEscapedString("65536=A"), Component::Error); |
Junxiao Shi | d2e6063 | 2018-08-10 10:48:44 -0600 | [diff] [blame] | 151 | BOOST_CHECK_THROW(Component::fromEscapedString("4294967296=A"), Component::Error); |
Junxiao Shi | cf4ac5b | 2018-03-28 22:46:06 +0000 | [diff] [blame] | 152 | BOOST_CHECK_THROW(Component::fromEscapedString("-1=A"), Component::Error); |
| 153 | BOOST_CHECK_THROW(Component::fromEscapedString("+=A"), Component::Error); |
| 154 | BOOST_CHECK_THROW(Component::fromEscapedString("=A"), Component::Error); |
| 155 | BOOST_CHECK_THROW(Component::fromEscapedString("0x1=A"), Component::Error); |
| 156 | BOOST_CHECK_THROW(Component::fromEscapedString("Z=A"), Component::Error); |
| 157 | BOOST_CHECK_THROW(Component::fromEscapedString("09=A"), Component::Error); |
Junxiao Shi | 4053bd5 | 2018-08-16 13:39:25 -0600 | [diff] [blame^] | 158 | BOOST_CHECK_THROW(Component::fromEscapedString("0x3=A"), Component::Error); |
Junxiao Shi | cf4ac5b | 2018-03-28 22:46:06 +0000 | [diff] [blame] | 159 | BOOST_CHECK_THROW(Component::fromEscapedString("+9=A"), Component::Error); |
Junxiao Shi | d2e6063 | 2018-08-10 10:48:44 -0600 | [diff] [blame] | 160 | BOOST_CHECK_THROW(Component::fromEscapedString(" 9=A"), Component::Error); |
| 161 | BOOST_CHECK_THROW(Component::fromEscapedString("9 =A"), Component::Error); |
| 162 | BOOST_CHECK_THROW(Component::fromEscapedString("9.0=A"), Component::Error); |
| 163 | BOOST_CHECK_THROW(Component::fromEscapedString("9E0=A"), Component::Error); |
Junxiao Shi | df4b24e | 2016-07-14 21:41:43 +0000 | [diff] [blame] | 164 | } |
| 165 | |
| 166 | BOOST_AUTO_TEST_SUITE_END() // Decode |
| 167 | |
Junxiao Shi | cf4ac5b | 2018-03-28 22:46:06 +0000 | [diff] [blame] | 168 | BOOST_AUTO_TEST_CASE(Compare) |
Junxiao Shi | df4b24e | 2016-07-14 21:41:43 +0000 | [diff] [blame] | 169 | { |
Junxiao Shi | cf4ac5b | 2018-03-28 22:46:06 +0000 | [diff] [blame] | 170 | std::vector<Component> comps = { |
| 171 | Component("0120 0000000000000000000000000000000000000000000000000000000000000000"_block), |
| 172 | Component("0120 0000000000000000000000000000000000000000000000000000000000000001"_block), |
| 173 | Component("0120 FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"_block), |
Junxiao Shi | 4053bd5 | 2018-08-16 13:39:25 -0600 | [diff] [blame^] | 174 | Component("0220 0000000000000000000000000000000000000000000000000000000000000000"_block), |
| 175 | Component("0220 0000000000000000000000000000000000000000000000000000000000000001"_block), |
| 176 | Component("0220 FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"_block), |
| 177 | Component(0x03), |
| 178 | Component("0301 44"_block), |
| 179 | Component("0301 46"_block), |
| 180 | Component("0302 4141"_block), |
Junxiao Shi | cf4ac5b | 2018-03-28 22:46:06 +0000 | [diff] [blame] | 181 | Component(), |
| 182 | Component("D"), |
| 183 | Component("F"), |
| 184 | Component("AA"), |
| 185 | Component(0x53B2), |
| 186 | Component("FD53B201 44"_block), |
| 187 | Component("FD53B201 46"_block), |
| 188 | Component("FD53B202 4141"_block), |
| 189 | }; |
Junxiao Shi | df4b24e | 2016-07-14 21:41:43 +0000 | [diff] [blame] | 190 | |
Junxiao Shi | cf4ac5b | 2018-03-28 22:46:06 +0000 | [diff] [blame] | 191 | for (size_t i = 0; i < comps.size(); ++i) { |
| 192 | for (size_t j = 0; j < comps.size(); ++j) { |
| 193 | Component lhs = comps[i]; |
| 194 | Component rhs = comps[j]; |
| 195 | BOOST_CHECK_EQUAL(lhs == rhs, i == j); |
| 196 | BOOST_CHECK_EQUAL(lhs != rhs, i != j); |
| 197 | BOOST_CHECK_EQUAL(lhs < rhs, i < j); |
| 198 | BOOST_CHECK_EQUAL(lhs <= rhs, i <= j); |
| 199 | BOOST_CHECK_EQUAL(lhs > rhs, i > j); |
| 200 | BOOST_CHECK_EQUAL(lhs >= rhs, i >= j); |
| 201 | } |
| 202 | } |
Davide Pesavento | 08378cb | 2018-02-01 16:10:54 -0500 | [diff] [blame] | 203 | } |
| 204 | |
Junxiao Shi | df4b24e | 2016-07-14 21:41:43 +0000 | [diff] [blame] | 205 | BOOST_AUTO_TEST_SUITE(CreateFromIterators) // Bug 2490 |
| 206 | |
| 207 | typedef boost::mpl::vector< |
| 208 | std::vector<uint8_t>, |
| 209 | std::list<uint8_t>, |
| 210 | std::vector<int8_t>, |
| 211 | std::list<int8_t> |
| 212 | > ContainerTypes; |
| 213 | |
| 214 | BOOST_AUTO_TEST_CASE_TEMPLATE(ZeroOctet, T, ContainerTypes) |
| 215 | { |
| 216 | T bytes; |
Junxiao Shi | cf4ac5b | 2018-03-28 22:46:06 +0000 | [diff] [blame] | 217 | Component c(bytes.begin(), bytes.end()); |
| 218 | BOOST_CHECK_EQUAL(c.type(), tlv::GenericNameComponent); |
Junxiao Shi | df4b24e | 2016-07-14 21:41:43 +0000 | [diff] [blame] | 219 | BOOST_CHECK_EQUAL(c.value_size(), 0); |
| 220 | BOOST_CHECK_EQUAL(c.size(), 2); |
| 221 | } |
| 222 | |
| 223 | BOOST_AUTO_TEST_CASE_TEMPLATE(OneOctet, T, ContainerTypes) |
| 224 | { |
| 225 | T bytes{1}; |
Junxiao Shi | cf4ac5b | 2018-03-28 22:46:06 +0000 | [diff] [blame] | 226 | Component c(0x09, bytes.begin(), bytes.end()); |
| 227 | BOOST_CHECK_EQUAL(c.type(), 0x09); |
Junxiao Shi | df4b24e | 2016-07-14 21:41:43 +0000 | [diff] [blame] | 228 | BOOST_CHECK_EQUAL(c.value_size(), 1); |
| 229 | BOOST_CHECK_EQUAL(c.size(), 3); |
| 230 | } |
| 231 | |
| 232 | BOOST_AUTO_TEST_CASE_TEMPLATE(FourOctets, T, ContainerTypes) |
| 233 | { |
| 234 | T bytes{1, 2, 3, 4}; |
Junxiao Shi | cf4ac5b | 2018-03-28 22:46:06 +0000 | [diff] [blame] | 235 | Component c(0xFCEC, bytes.begin(), bytes.end()); |
| 236 | BOOST_CHECK_EQUAL(c.type(), 0xFCEC); |
Junxiao Shi | df4b24e | 2016-07-14 21:41:43 +0000 | [diff] [blame] | 237 | BOOST_CHECK_EQUAL(c.value_size(), 4); |
Junxiao Shi | cf4ac5b | 2018-03-28 22:46:06 +0000 | [diff] [blame] | 238 | BOOST_CHECK_EQUAL(c.size(), 8); |
Junxiao Shi | df4b24e | 2016-07-14 21:41:43 +0000 | [diff] [blame] | 239 | } |
| 240 | |
| 241 | BOOST_AUTO_TEST_SUITE_END() // CreateFromIterators |
| 242 | |
Junxiao Shi | 71ff231 | 2017-07-12 13:32:50 +0000 | [diff] [blame] | 243 | BOOST_AUTO_TEST_SUITE(NamingConvention) |
| 244 | |
| 245 | template<typename ArgType> |
| 246 | struct ConventionTest |
| 247 | { |
Junxiao Shi | cf4ac5b | 2018-03-28 22:46:06 +0000 | [diff] [blame] | 248 | function<Component(ArgType)> makeComponent; |
| 249 | function<ArgType(const Component&)> getValue; |
Junxiao Shi | 71ff231 | 2017-07-12 13:32:50 +0000 | [diff] [blame] | 250 | function<Name&(Name&, ArgType)> append; |
| 251 | Name expected; |
| 252 | ArgType value; |
Junxiao Shi | cf4ac5b | 2018-03-28 22:46:06 +0000 | [diff] [blame] | 253 | function<bool(const Component&)> isComponent; |
Junxiao Shi | 71ff231 | 2017-07-12 13:32:50 +0000 | [diff] [blame] | 254 | }; |
| 255 | |
| 256 | class NumberWithMarker |
| 257 | { |
| 258 | public: |
| 259 | ConventionTest<uint64_t> |
| 260 | operator()() const |
| 261 | { |
Junxiao Shi | cf4ac5b | 2018-03-28 22:46:06 +0000 | [diff] [blame] | 262 | return {bind(&Component::fromNumberWithMarker, 0xAA, _1), |
| 263 | bind(&Component::toNumberWithMarker, _1, 0xAA), |
Junxiao Shi | 71ff231 | 2017-07-12 13:32:50 +0000 | [diff] [blame] | 264 | bind(&Name::appendNumberWithMarker, _1, 0xAA, _2), |
| 265 | Name("/%AA%03%E8"), |
| 266 | 1000, |
Junxiao Shi | cf4ac5b | 2018-03-28 22:46:06 +0000 | [diff] [blame] | 267 | bind(&Component::isNumberWithMarker, _1, 0xAA)}; |
Junxiao Shi | 71ff231 | 2017-07-12 13:32:50 +0000 | [diff] [blame] | 268 | } |
| 269 | }; |
| 270 | |
| 271 | class Segment |
| 272 | { |
| 273 | public: |
| 274 | ConventionTest<uint64_t> |
| 275 | operator()() const |
| 276 | { |
Junxiao Shi | cf4ac5b | 2018-03-28 22:46:06 +0000 | [diff] [blame] | 277 | return {&Component::fromSegment, |
| 278 | bind(&Component::toSegment, _1), |
Junxiao Shi | 71ff231 | 2017-07-12 13:32:50 +0000 | [diff] [blame] | 279 | bind(&Name::appendSegment, _1, _2), |
| 280 | Name("/%00%27%10"), |
| 281 | 10000, |
Junxiao Shi | cf4ac5b | 2018-03-28 22:46:06 +0000 | [diff] [blame] | 282 | bind(&Component::isSegment, _1)}; |
Junxiao Shi | 71ff231 | 2017-07-12 13:32:50 +0000 | [diff] [blame] | 283 | } |
| 284 | }; |
| 285 | |
| 286 | class SegmentOffset |
| 287 | { |
| 288 | public: |
| 289 | ConventionTest<uint64_t> |
| 290 | operator()() const |
| 291 | { |
Junxiao Shi | cf4ac5b | 2018-03-28 22:46:06 +0000 | [diff] [blame] | 292 | return {&Component::fromSegmentOffset, |
| 293 | bind(&Component::toSegmentOffset, _1), |
Junxiao Shi | 71ff231 | 2017-07-12 13:32:50 +0000 | [diff] [blame] | 294 | bind(&Name::appendSegmentOffset, _1, _2), |
| 295 | Name("/%FB%00%01%86%A0"), |
| 296 | 100000, |
Junxiao Shi | cf4ac5b | 2018-03-28 22:46:06 +0000 | [diff] [blame] | 297 | bind(&Component::isSegmentOffset, _1)}; |
Junxiao Shi | 71ff231 | 2017-07-12 13:32:50 +0000 | [diff] [blame] | 298 | } |
| 299 | }; |
| 300 | |
| 301 | class Version |
| 302 | { |
| 303 | public: |
| 304 | ConventionTest<uint64_t> |
| 305 | operator()() const |
| 306 | { |
Junxiao Shi | cf4ac5b | 2018-03-28 22:46:06 +0000 | [diff] [blame] | 307 | return {&Component::fromVersion, |
| 308 | bind(&Component::toVersion, _1), |
Junxiao Shi | 71ff231 | 2017-07-12 13:32:50 +0000 | [diff] [blame] | 309 | [] (Name& name, uint64_t version) -> Name& { return name.appendVersion(version); }, |
| 310 | Name("/%FD%00%0FB%40"), |
| 311 | 1000000, |
Junxiao Shi | cf4ac5b | 2018-03-28 22:46:06 +0000 | [diff] [blame] | 312 | bind(&Component::isVersion, _1)}; |
Junxiao Shi | 71ff231 | 2017-07-12 13:32:50 +0000 | [diff] [blame] | 313 | } |
| 314 | }; |
| 315 | |
| 316 | class Timestamp |
| 317 | { |
| 318 | public: |
| 319 | ConventionTest<time::system_clock::TimePoint> |
| 320 | operator()() const |
| 321 | { |
Junxiao Shi | cf4ac5b | 2018-03-28 22:46:06 +0000 | [diff] [blame] | 322 | return {&Component::fromTimestamp, |
| 323 | bind(&Component::toTimestamp, _1), |
Junxiao Shi | 71ff231 | 2017-07-12 13:32:50 +0000 | [diff] [blame] | 324 | [] (Name& name, time::system_clock::TimePoint t) -> Name& { return name.appendTimestamp(t); }, |
| 325 | Name("/%FC%00%04%7BE%E3%1B%00%00"), |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 326 | time::getUnixEpoch() + 14600_days, // 40 years |
Junxiao Shi | cf4ac5b | 2018-03-28 22:46:06 +0000 | [diff] [blame] | 327 | bind(&Component::isTimestamp, _1)}; |
Junxiao Shi | 71ff231 | 2017-07-12 13:32:50 +0000 | [diff] [blame] | 328 | } |
| 329 | }; |
| 330 | |
| 331 | class SequenceNumber |
| 332 | { |
| 333 | public: |
| 334 | ConventionTest<uint64_t> |
| 335 | operator()() const |
| 336 | { |
Junxiao Shi | cf4ac5b | 2018-03-28 22:46:06 +0000 | [diff] [blame] | 337 | return {&Component::fromSequenceNumber, |
| 338 | bind(&Component::toSequenceNumber, _1), |
Junxiao Shi | 71ff231 | 2017-07-12 13:32:50 +0000 | [diff] [blame] | 339 | bind(&Name::appendSequenceNumber, _1, _2), |
| 340 | Name("/%FE%00%98%96%80"), |
| 341 | 10000000, |
Junxiao Shi | cf4ac5b | 2018-03-28 22:46:06 +0000 | [diff] [blame] | 342 | bind(&Component::isSequenceNumber, _1)}; |
Junxiao Shi | 71ff231 | 2017-07-12 13:32:50 +0000 | [diff] [blame] | 343 | } |
| 344 | }; |
| 345 | |
| 346 | using ConventionTests = boost::mpl::vector< |
| 347 | NumberWithMarker, |
| 348 | Segment, |
| 349 | SegmentOffset, |
| 350 | Version, |
| 351 | Timestamp, |
| 352 | SequenceNumber |
| 353 | >; |
| 354 | |
| 355 | BOOST_AUTO_TEST_CASE_TEMPLATE(Convention, T, ConventionTests) |
| 356 | { |
Junxiao Shi | cf4ac5b | 2018-03-28 22:46:06 +0000 | [diff] [blame] | 357 | Component invalidComponent1; |
| 358 | Component invalidComponent2("1234567890"); |
Junxiao Shi | 71ff231 | 2017-07-12 13:32:50 +0000 | [diff] [blame] | 359 | |
| 360 | auto test = T()(); |
| 361 | |
| 362 | const Name& expected = test.expected; |
| 363 | BOOST_TEST_MESSAGE("Check " << expected[0].toUri()); |
| 364 | |
| 365 | BOOST_CHECK_EQUAL(expected[0].isGeneric(), true); |
| 366 | |
Junxiao Shi | cf4ac5b | 2018-03-28 22:46:06 +0000 | [diff] [blame] | 367 | Component actualComponent = test.makeComponent(test.value); |
Junxiao Shi | 71ff231 | 2017-07-12 13:32:50 +0000 | [diff] [blame] | 368 | BOOST_CHECK_EQUAL(actualComponent, expected[0]); |
| 369 | |
| 370 | Name actualName; |
| 371 | test.append(actualName, test.value); |
| 372 | BOOST_CHECK_EQUAL(actualName, expected); |
| 373 | |
| 374 | BOOST_CHECK_EQUAL(test.isComponent(expected[0]), true); |
| 375 | BOOST_CHECK_EQUAL(test.getValue(expected[0]), test.value); |
| 376 | |
| 377 | BOOST_CHECK_EQUAL(test.isComponent(invalidComponent1), false); |
| 378 | BOOST_CHECK_EQUAL(test.isComponent(invalidComponent2), false); |
| 379 | |
Junxiao Shi | cf4ac5b | 2018-03-28 22:46:06 +0000 | [diff] [blame] | 380 | BOOST_CHECK_THROW(test.getValue(invalidComponent1), Component::Error); |
| 381 | BOOST_CHECK_THROW(test.getValue(invalidComponent2), Component::Error); |
Junxiao Shi | 71ff231 | 2017-07-12 13:32:50 +0000 | [diff] [blame] | 382 | } |
| 383 | |
| 384 | BOOST_AUTO_TEST_SUITE_END() // NamingConvention |
| 385 | |
Junxiao Shi | df4b24e | 2016-07-14 21:41:43 +0000 | [diff] [blame] | 386 | BOOST_AUTO_TEST_SUITE_END() // TestNameComponent |
| 387 | |
| 388 | } // namespace tests |
Junxiao Shi | cf4ac5b | 2018-03-28 22:46:06 +0000 | [diff] [blame] | 389 | } // namespace name |
Junxiao Shi | df4b24e | 2016-07-14 21:41:43 +0000 | [diff] [blame] | 390 | } // namespace ndn |