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