| /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| /* |
| * Copyright (c) 2013-2020 Regents of the University of California. |
| * |
| * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions). |
| * |
| * ndn-cxx library is free software: you can redistribute it and/or modify it under the |
| * terms of the GNU Lesser General Public License as published by the Free Software |
| * Foundation, either version 3 of the License, or (at your option) any later version. |
| * |
| * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY |
| * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A |
| * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. |
| * |
| * You should have received copies of the GNU General Public License and GNU Lesser |
| * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see |
| * <http://www.gnu.org/licenses/>. |
| * |
| * See AUTHORS.md for complete list of ndn-cxx authors and contributors. |
| */ |
| |
| #include "ndn-cxx/name-component.hpp" |
| #include "ndn-cxx/name.hpp" |
| #include "ndn-cxx/util/string-helper.hpp" |
| |
| #include "tests/boost-test.hpp" |
| |
| #include <boost/algorithm/string/case_conv.hpp> |
| #include <boost/algorithm/string/predicate.hpp> |
| #include <boost/lexical_cast.hpp> |
| #include <boost/mpl/vector.hpp> |
| |
| namespace ndn { |
| namespace name { |
| namespace tests { |
| |
| BOOST_AUTO_TEST_SUITE(TestNameComponent) |
| |
| BOOST_AUTO_TEST_SUITE(Decode) |
| |
| #define CHECK_COMP_ERR(expr, whatstring) \ |
| BOOST_CHECK_EXCEPTION(expr, Component::Error, \ |
| [] (const auto& e) { return boost::contains(e.what(), whatstring); }) |
| |
| BOOST_AUTO_TEST_CASE(Generic) |
| { |
| Component comp("0807 6E646E2D637878"_block); |
| BOOST_CHECK_EQUAL(comp.type(), tlv::GenericNameComponent); |
| BOOST_CHECK_EQUAL(comp.isGeneric(), true); |
| BOOST_CHECK_EQUAL(comp.toUri(), "ndn-cxx"); |
| BOOST_CHECK_EQUAL(comp.toUri(UriFormat::CANONICAL), "8=ndn-cxx"); |
| BOOST_CHECK_EQUAL(comp.toUri(UriFormat::ALTERNATE), "ndn-cxx"); |
| BOOST_CHECK_EQUAL(comp.toUri(UriFormat::ENV_OR_CANONICAL), "8=ndn-cxx"); |
| BOOST_CHECK_EQUAL(comp.toUri(UriFormat::ENV_OR_ALTERNATE), "ndn-cxx"); |
| BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(comp), "ndn-cxx"); |
| BOOST_CHECK_EQUAL(Component::fromEscapedString("ndn-cxx"), comp); |
| BOOST_CHECK_EQUAL(Component::fromEscapedString("8=ndn-cxx"), comp); |
| |
| comp.wireDecode("0800"_block); |
| BOOST_CHECK_EQUAL(comp.toUri(), "..."); |
| BOOST_CHECK_EQUAL(Component::fromEscapedString("..."), comp); |
| BOOST_CHECK_EQUAL(Component::fromEscapedString("8=..."), comp); |
| BOOST_CHECK_EQUAL(Component::fromEscapedString(".%2E."), comp); |
| |
| comp.wireDecode("0801 2E"_block); |
| BOOST_CHECK_EQUAL(comp.toUri(), "...."); |
| BOOST_CHECK_EQUAL(Component::fromEscapedString("...."), comp); |
| BOOST_CHECK_EQUAL(Component::fromEscapedString("%2E..%2E"), comp); |
| |
| comp.wireDecode("0803 2E412E"_block); |
| BOOST_CHECK_EQUAL(comp.toUri(), ".A."); |
| BOOST_CHECK_EQUAL(Component::fromEscapedString(".A."), comp); |
| |
| comp.wireDecode("0807 666F6F25626172"_block); |
| BOOST_CHECK_EQUAL(comp.toUri(), "foo%25bar"); |
| BOOST_CHECK_EQUAL(Component::fromEscapedString("foo%25bar"), comp); |
| BOOST_CHECK_EQUAL(Component::fromEscapedString("8=foo%25bar"), comp); |
| |
| comp.wireDecode("0804 2D2E5F7E"_block); |
| BOOST_CHECK_EQUAL(comp.toUri(), "-._~"); |
| BOOST_CHECK_EQUAL(Component::fromEscapedString("-._~"), comp); |
| |
| comp.wireDecode("0803 393D41"_block); |
| BOOST_CHECK_EQUAL(comp.toUri(), "9%3DA"); |
| BOOST_CHECK_EQUAL(Component::fromEscapedString("9%3DA"), comp); |
| |
| comp = Component(":/?#[]@"); |
| BOOST_CHECK_EQUAL(comp.toUri(), "%3A%2F%3F%23%5B%5D%40"); |
| BOOST_CHECK_EQUAL(Component::fromEscapedString("%3A%2F%3F%23%5B%5D%40"), comp); |
| |
| BOOST_CHECK_THROW(Component::fromEscapedString(""), Component::Error); |
| BOOST_CHECK_THROW(Component::fromEscapedString("."), Component::Error); |
| BOOST_CHECK_THROW(Component::fromEscapedString(".."), Component::Error); |
| } |
| |
| static void |
| testSha256Component(uint32_t type, const std::string& uriPrefix) |
| { |
| const std::string hexLower = "28bad4b5275bd392dbb670c75cf0b66f13f7942b21e80f55c0e86b374753a548"; |
| const std::string hexUpper = boost::to_upper_copy(hexLower); |
| std::string hexPct; |
| for (size_t i = 0; i < hexUpper.size(); i += 2) { |
| hexPct += "%" + hexUpper.substr(i, 2); |
| } |
| const std::string hexPctCanonical = "%28%BA%D4%B5%27%5B%D3%92%DB%B6p%C7%5C%F0%B6o%13%F7%94%2B%21%E8%0FU%C0%E8k7GS%A5H"; |
| |
| Component comp(Block(type, fromHex(hexLower))); |
| |
| BOOST_CHECK_EQUAL(comp.type(), type); |
| BOOST_CHECK_EQUAL(comp.toUri(), uriPrefix + hexLower); |
| BOOST_CHECK_EQUAL(comp.toUri(UriFormat::CANONICAL), to_string(type) + "=" + hexPctCanonical); |
| BOOST_CHECK_EQUAL(comp.toUri(UriFormat::ALTERNATE), uriPrefix + hexLower); |
| BOOST_CHECK_EQUAL(comp.toUri(UriFormat::ENV_OR_CANONICAL), to_string(type) + "=" + hexPctCanonical); |
| BOOST_CHECK_EQUAL(comp.toUri(UriFormat::ENV_OR_ALTERNATE), uriPrefix + hexLower); |
| BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(comp), uriPrefix + hexLower); |
| BOOST_CHECK_EQUAL(comp, Component::fromEscapedString(uriPrefix + hexLower)); |
| BOOST_CHECK_EQUAL(comp, Component::fromEscapedString(uriPrefix + hexUpper)); |
| BOOST_CHECK_EQUAL(comp, Component::fromEscapedString(to_string(type) + "=" + hexPct)); |
| BOOST_CHECK_EQUAL(comp, Component::fromEscapedString(to_string(type) + "=" + hexPctCanonical)); |
| |
| CHECK_COMP_ERR(comp.wireDecode(Block(type, fromHex("A791806951F25C4D"))), "TLV-LENGTH must be 32"); |
| CHECK_COMP_ERR(Component::fromEscapedString(uriPrefix), "TLV-LENGTH must be 32"); |
| CHECK_COMP_ERR(Component::fromEscapedString(uriPrefix + "a791806951f25c4d"), "TLV-LENGTH must be 32"); |
| CHECK_COMP_ERR(Component::fromEscapedString(uriPrefix + "foo"), "invalid hex encoding"); |
| CHECK_COMP_ERR(Component::fromEscapedString(boost::to_upper_copy(uriPrefix) + hexLower), "Unknown TLV-TYPE"); |
| } |
| |
| BOOST_AUTO_TEST_CASE(ImplicitDigest) |
| { |
| testSha256Component(tlv::ImplicitSha256DigestComponent, "sha256digest="); |
| } |
| |
| BOOST_AUTO_TEST_CASE(ParametersDigest) |
| { |
| testSha256Component(tlv::ParametersSha256DigestComponent, "params-sha256="); |
| } |
| |
| static void |
| testDecimalComponent(uint32_t type, const std::string& uriPrefix) |
| { |
| const Component comp(makeNonNegativeIntegerBlock(type, 42)); // TLV-VALUE is a nonNegativeInteger |
| BOOST_CHECK_EQUAL(comp.type(), type); |
| BOOST_CHECK_EQUAL(comp.isNumber(), true); |
| const auto compUri = uriPrefix + "42"; |
| BOOST_CHECK_EQUAL(comp.toUri(), compUri); |
| BOOST_CHECK_EQUAL(comp.toUri(UriFormat::CANONICAL), to_string(type) + "=%2A"); |
| BOOST_CHECK_EQUAL(comp.toUri(UriFormat::ALTERNATE), compUri); |
| BOOST_CHECK_EQUAL(comp.toUri(UriFormat::ENV_OR_CANONICAL), to_string(type) + "=%2A"); |
| BOOST_CHECK_EQUAL(comp.toUri(UriFormat::ENV_OR_ALTERNATE), compUri); |
| BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(comp), compUri); |
| BOOST_CHECK_EQUAL(comp, Component::fromEscapedString(compUri)); |
| BOOST_CHECK_EQUAL(comp, Component::fromEscapedString(to_string(type) + "=%2A")); |
| BOOST_CHECK_EQUAL(comp, Component::fromNumber(42, type)); |
| |
| const Component comp2(Block(type, fromHex("010203"))); // TLV-VALUE is *not* a nonNegativeInteger |
| BOOST_CHECK_EQUAL(comp2.type(), type); |
| BOOST_CHECK_EQUAL(comp2.isNumber(), false); |
| const auto comp2Uri = to_string(type) + "=%01%02%03"; |
| BOOST_CHECK_EQUAL(comp2.toUri(), comp2Uri); |
| BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(comp2), comp2Uri); |
| BOOST_CHECK_EQUAL(comp2, Component::fromEscapedString(comp2Uri)); |
| |
| CHECK_COMP_ERR(Component::fromEscapedString(uriPrefix), "invalid format"); |
| CHECK_COMP_ERR(Component::fromEscapedString(uriPrefix + "foo"), "invalid format"); |
| CHECK_COMP_ERR(Component::fromEscapedString(uriPrefix + "00"), "invalid format"); |
| CHECK_COMP_ERR(Component::fromEscapedString(uriPrefix + "-1"), "invalid format"); |
| CHECK_COMP_ERR(Component::fromEscapedString(uriPrefix + "9.3"), "invalid format"); |
| CHECK_COMP_ERR(Component::fromEscapedString(uriPrefix + " 84"), "invalid format"); |
| CHECK_COMP_ERR(Component::fromEscapedString(uriPrefix + "0xAF"), "invalid format"); |
| CHECK_COMP_ERR(Component::fromEscapedString(uriPrefix + "18446744073709551616"), "out of range"); |
| CHECK_COMP_ERR(Component::fromEscapedString(boost::to_upper_copy(uriPrefix) + "42"), "Unknown TLV-TYPE"); |
| } |
| |
| BOOST_AUTO_TEST_CASE(Segment) |
| { |
| testDecimalComponent(tlv::SegmentNameComponent, "seg="); |
| } |
| |
| BOOST_AUTO_TEST_CASE(ByteOffset) |
| { |
| testDecimalComponent(tlv::ByteOffsetNameComponent, "off="); |
| } |
| |
| BOOST_AUTO_TEST_CASE(Version) |
| { |
| testDecimalComponent(tlv::VersionNameComponent, "v="); |
| } |
| |
| BOOST_AUTO_TEST_CASE(Timestamp) |
| { |
| testDecimalComponent(tlv::TimestampNameComponent, "t="); |
| } |
| |
| BOOST_AUTO_TEST_CASE(SequenceNum) |
| { |
| testDecimalComponent(tlv::SequenceNumNameComponent, "seq="); |
| } |
| |
| BOOST_AUTO_TEST_CASE(OtherType) |
| { |
| Component comp("0907 6E646E2D637878"_block); |
| BOOST_CHECK_EQUAL(comp.type(), 0x09); |
| BOOST_CHECK_EQUAL(comp.toUri(), "9=ndn-cxx"); |
| BOOST_CHECK_EQUAL(comp.toUri(UriFormat::CANONICAL), "9=ndn-cxx"); |
| BOOST_CHECK_EQUAL(comp.toUri(UriFormat::ALTERNATE), "9=ndn-cxx"); |
| BOOST_CHECK_EQUAL(comp.toUri(UriFormat::ENV_OR_CANONICAL), "9=ndn-cxx"); |
| BOOST_CHECK_EQUAL(comp.toUri(UriFormat::ENV_OR_ALTERNATE), "9=ndn-cxx"); |
| BOOST_CHECK_EQUAL(Component::fromEscapedString("9=ndn-cxx"), comp); |
| |
| comp.wireDecode("FDFFFF00"_block); |
| BOOST_CHECK_EQUAL(comp.type(), 0xFFFF); |
| BOOST_CHECK_EQUAL(comp.toUri(), "65535=..."); |
| BOOST_CHECK_EQUAL(Component::fromEscapedString("65535=..."), comp); |
| |
| comp.wireDecode("FD576501 2E"_block); |
| BOOST_CHECK_EQUAL(comp.type(), 0x5765); |
| BOOST_CHECK_EQUAL(comp.toUri(), "22373=...."); |
| BOOST_CHECK_EQUAL(Component::fromEscapedString("22373=...."), comp); |
| |
| BOOST_CHECK_THROW(Component::fromEscapedString("3="), Component::Error); |
| BOOST_CHECK_THROW(Component::fromEscapedString("3=."), Component::Error); |
| BOOST_CHECK_THROW(Component::fromEscapedString("3=.."), Component::Error); |
| } |
| |
| BOOST_AUTO_TEST_CASE(InvalidType) |
| { |
| Component comp; |
| BOOST_CHECK_THROW(comp.wireDecode(Block{}), Component::Error); |
| BOOST_CHECK_THROW(comp.wireDecode("FE0001000001 80"_block), Component::Error); |
| |
| BOOST_CHECK_THROW(Component::fromEscapedString("0=A"), Component::Error); |
| BOOST_CHECK_THROW(Component::fromEscapedString("65536=A"), Component::Error); |
| BOOST_CHECK_THROW(Component::fromEscapedString("4294967296=A"), Component::Error); |
| BOOST_CHECK_THROW(Component::fromEscapedString("-1=A"), Component::Error); |
| BOOST_CHECK_THROW(Component::fromEscapedString("+=A"), Component::Error); |
| BOOST_CHECK_THROW(Component::fromEscapedString("=A"), Component::Error); |
| BOOST_CHECK_THROW(Component::fromEscapedString("0x1=A"), Component::Error); |
| BOOST_CHECK_THROW(Component::fromEscapedString("Z=A"), Component::Error); |
| BOOST_CHECK_THROW(Component::fromEscapedString("09=A"), Component::Error); |
| BOOST_CHECK_THROW(Component::fromEscapedString("0x3=A"), Component::Error); |
| BOOST_CHECK_THROW(Component::fromEscapedString("+9=A"), Component::Error); |
| BOOST_CHECK_THROW(Component::fromEscapedString(" 9=A"), Component::Error); |
| BOOST_CHECK_THROW(Component::fromEscapedString("9 =A"), Component::Error); |
| BOOST_CHECK_THROW(Component::fromEscapedString("9.0=A"), Component::Error); |
| BOOST_CHECK_THROW(Component::fromEscapedString("9E0=A"), Component::Error); |
| } |
| |
| BOOST_AUTO_TEST_SUITE_END() // Decode |
| |
| BOOST_AUTO_TEST_CASE(Compare) |
| { |
| const std::vector<Component> comps = { |
| Component("0120 0000000000000000000000000000000000000000000000000000000000000000"_block), |
| Component("0120 0000000000000000000000000000000000000000000000000000000000000001"_block), |
| Component("0120 FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"_block), |
| Component("0220 0000000000000000000000000000000000000000000000000000000000000000"_block), |
| Component("0220 0000000000000000000000000000000000000000000000000000000000000001"_block), |
| Component("0220 FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"_block), |
| Component(0x03), |
| Component("0301 44"_block), |
| Component("0301 46"_block), |
| Component("0302 4141"_block), |
| Component(), |
| Component("D"), |
| Component("F"), |
| Component("AA"), |
| Component(0x53B2), |
| Component("FD53B201 44"_block), |
| Component("FD53B201 46"_block), |
| Component("FD53B202 4141"_block), |
| }; |
| |
| for (size_t i = 0; i < comps.size(); ++i) { |
| for (size_t j = 0; j < comps.size(); ++j) { |
| Component lhs = comps[i]; |
| Component rhs = comps[j]; |
| BOOST_CHECK_EQUAL(lhs == rhs, i == j); |
| BOOST_CHECK_EQUAL(lhs != rhs, i != j); |
| BOOST_CHECK_EQUAL(lhs < rhs, i < j); |
| BOOST_CHECK_EQUAL(lhs <= rhs, i <= j); |
| BOOST_CHECK_EQUAL(lhs > rhs, i > j); |
| BOOST_CHECK_EQUAL(lhs >= rhs, i >= j); |
| } |
| } |
| } |
| |
| BOOST_AUTO_TEST_SUITE(CreateFromIterators) // Bug 2490 |
| |
| using ContainerTypes = boost::mpl::vector<std::vector<uint8_t>, |
| std::list<uint8_t>, |
| std::vector<int8_t>, |
| std::list<int8_t>>; |
| |
| BOOST_AUTO_TEST_CASE_TEMPLATE(ZeroOctet, T, ContainerTypes) |
| { |
| T bytes; |
| Component c(bytes.begin(), bytes.end()); |
| BOOST_CHECK_EQUAL(c.type(), tlv::GenericNameComponent); |
| BOOST_CHECK_EQUAL(c.value_size(), 0); |
| BOOST_CHECK_EQUAL(c.size(), 2); |
| } |
| |
| BOOST_AUTO_TEST_CASE_TEMPLATE(OneOctet, T, ContainerTypes) |
| { |
| T bytes{1}; |
| Component c(0x09, bytes.begin(), bytes.end()); |
| BOOST_CHECK_EQUAL(c.type(), 0x09); |
| BOOST_CHECK_EQUAL(c.value_size(), 1); |
| BOOST_CHECK_EQUAL(c.size(), 3); |
| } |
| |
| BOOST_AUTO_TEST_CASE_TEMPLATE(FourOctets, T, ContainerTypes) |
| { |
| T bytes{1, 2, 3, 4}; |
| Component c(0xFCEC, bytes.begin(), bytes.end()); |
| BOOST_CHECK_EQUAL(c.type(), 0xFCEC); |
| BOOST_CHECK_EQUAL(c.value_size(), 4); |
| BOOST_CHECK_EQUAL(c.size(), 8); |
| } |
| |
| BOOST_AUTO_TEST_SUITE_END() // CreateFromIterators |
| |
| BOOST_AUTO_TEST_SUITE(NamingConvention) |
| |
| template<typename ArgType> |
| struct ConventionTest |
| { |
| std::function<Component(ArgType)> makeComponent; |
| std::function<ArgType(const Component&)> getValue; |
| std::function<Name&(Name&, ArgType)> append; |
| Name expected; |
| ArgType value; |
| std::function<bool(const Component&)> isComponent; |
| }; |
| |
| class ConventionMarker |
| { |
| }; |
| |
| class ConventionTyped |
| { |
| public: |
| ConventionTyped() |
| { |
| name::setConventionEncoding(name::Convention::TYPED); |
| } |
| |
| ~ConventionTyped() |
| { |
| name::setConventionEncoding(name::Convention::MARKER); |
| } |
| }; |
| |
| class NumberWithMarker |
| { |
| public: |
| using ConventionRev = ConventionMarker; |
| |
| ConventionTest<uint64_t> |
| operator()() const |
| { |
| return {bind(&Component::fromNumberWithMarker, 0xAA, _1), |
| bind(&Component::toNumberWithMarker, _1, 0xAA), |
| bind(&Name::appendNumberWithMarker, _1, 0xAA, _2), |
| Name("/%AA%03%E8"), |
| 1000, |
| bind(&Component::isNumberWithMarker, _1, 0xAA)}; |
| } |
| }; |
| |
| class SegmentMarker |
| { |
| public: |
| using ConventionRev = ConventionMarker; |
| |
| ConventionTest<uint64_t> |
| operator()() const |
| { |
| return {&Component::fromSegment, |
| bind(&Component::toSegment, _1), |
| bind(&Name::appendSegment, _1, _2), |
| Name("/%00%27%10"), |
| 10000, |
| bind(&Component::isSegment, _1)}; |
| } |
| }; |
| |
| class SegmentTyped |
| { |
| public: |
| using ConventionRev = ConventionTyped; |
| |
| ConventionTest<uint64_t> |
| operator()() const |
| { |
| return {&Component::fromSegment, |
| bind(&Component::toSegment, _1), |
| bind(&Name::appendSegment, _1, _2), |
| Name("/33=%27%10"), |
| 10000, |
| bind(&Component::isSegment, _1)}; |
| } |
| }; |
| |
| class ByteOffsetTyped |
| { |
| public: |
| using ConventionRev = ConventionTyped; |
| |
| ConventionTest<uint64_t> |
| operator()() const |
| { |
| return {&Component::fromByteOffset, |
| bind(&Component::toByteOffset, _1), |
| bind(&Name::appendByteOffset, _1, _2), |
| Name("/34=%00%01%86%A0"), |
| 100000, |
| bind(&Component::isByteOffset, _1)}; |
| } |
| }; |
| |
| class VersionMarker |
| { |
| public: |
| using ConventionRev = ConventionMarker; |
| |
| ConventionTest<uint64_t> |
| operator()() const |
| { |
| return {&Component::fromVersion, |
| bind(&Component::toVersion, _1), |
| [] (Name& name, uint64_t version) -> Name& { return name.appendVersion(version); }, |
| Name("/%FD%00%0FB%40"), |
| 1000000, |
| bind(&Component::isVersion, _1)}; |
| } |
| }; |
| |
| class VersionTyped |
| { |
| public: |
| using ConventionRev = ConventionTyped; |
| |
| ConventionTest<uint64_t> |
| operator()() const |
| { |
| return {&Component::fromVersion, |
| bind(&Component::toVersion, _1), |
| [] (Name& name, uint64_t version) -> Name& { return name.appendVersion(version); }, |
| Name("/35=%00%0FB%40"), |
| 1000000, |
| bind(&Component::isVersion, _1)}; |
| } |
| }; |
| |
| class TimestampMarker |
| { |
| public: |
| using ConventionRev = ConventionMarker; |
| |
| ConventionTest<time::system_clock::TimePoint> |
| operator()() const |
| { |
| return {&Component::fromTimestamp, |
| bind(&Component::toTimestamp, _1), |
| [] (Name& name, time::system_clock::TimePoint t) -> Name& { return name.appendTimestamp(t); }, |
| Name("/%FC%00%04%7BE%E3%1B%00%00"), |
| time::getUnixEpoch() + 14600_days, // 40 years |
| bind(&Component::isTimestamp, _1)}; |
| } |
| }; |
| |
| class TimestampTyped |
| { |
| public: |
| using ConventionRev = ConventionTyped; |
| |
| ConventionTest<time::system_clock::TimePoint> |
| operator()() const |
| { |
| return {&Component::fromTimestamp, |
| bind(&Component::toTimestamp, _1), |
| [] (Name& name, time::system_clock::TimePoint t) -> Name& { return name.appendTimestamp(t); }, |
| Name("/36=%00%04%7BE%E3%1B%00%00"), |
| time::getUnixEpoch() + 14600_days, // 40 years |
| bind(&Component::isTimestamp, _1)}; |
| } |
| }; |
| |
| class SequenceNumberMarker |
| { |
| public: |
| using ConventionRev = ConventionMarker; |
| |
| ConventionTest<uint64_t> |
| operator()() const |
| { |
| return {&Component::fromSequenceNumber, |
| bind(&Component::toSequenceNumber, _1), |
| bind(&Name::appendSequenceNumber, _1, _2), |
| Name("/%FE%00%98%96%80"), |
| 10000000, |
| bind(&Component::isSequenceNumber, _1)}; |
| } |
| }; |
| |
| class SequenceNumberTyped |
| { |
| public: |
| using ConventionRev = ConventionTyped; |
| |
| ConventionTest<uint64_t> |
| operator()() const |
| { |
| return {&Component::fromSequenceNumber, |
| bind(&Component::toSequenceNumber, _1), |
| bind(&Name::appendSequenceNumber, _1, _2), |
| Name("/37=%00%98%96%80"), |
| 10000000, |
| bind(&Component::isSequenceNumber, _1)}; |
| } |
| }; |
| |
| using ConventionTests = boost::mpl::vector< |
| NumberWithMarker, |
| SegmentMarker, |
| SegmentTyped, |
| ByteOffsetTyped, |
| VersionMarker, |
| VersionTyped, |
| TimestampMarker, |
| TimestampTyped, |
| SequenceNumberMarker, |
| SequenceNumberTyped |
| >; |
| |
| BOOST_FIXTURE_TEST_CASE_TEMPLATE(Convention, T, ConventionTests, T::ConventionRev) |
| { |
| Component invalidComponent1; |
| Component invalidComponent2("1234567890"); |
| |
| auto test = T()(); |
| |
| const Name& expected = test.expected; |
| BOOST_TEST_MESSAGE("Check " << expected[0]); |
| |
| Component actualComponent = test.makeComponent(test.value); |
| BOOST_CHECK_EQUAL(actualComponent, expected[0]); |
| |
| Name actualName; |
| test.append(actualName, test.value); |
| BOOST_CHECK_EQUAL(actualName, expected); |
| |
| BOOST_CHECK_EQUAL(test.isComponent(expected[0]), true); |
| BOOST_CHECK_EQUAL(test.getValue(expected[0]), test.value); |
| |
| BOOST_CHECK_EQUAL(test.isComponent(invalidComponent1), false); |
| BOOST_CHECK_EQUAL(test.isComponent(invalidComponent2), false); |
| |
| BOOST_CHECK_THROW(test.getValue(invalidComponent1), Component::Error); |
| BOOST_CHECK_THROW(test.getValue(invalidComponent2), Component::Error); |
| } |
| |
| BOOST_AUTO_TEST_SUITE_END() // NamingConvention |
| |
| BOOST_AUTO_TEST_SUITE_END() // TestNameComponent |
| |
| } // namespace tests |
| } // namespace name |
| } // namespace ndn |