Vince Lehman | 5144f82 | 2014-07-23 15:12:56 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Junxiao Shi | 221b6fe | 2016-07-14 18:21:56 +0000 | [diff] [blame^] | 3 | * Copyright (c) 2014-2016, Regents of the University of California, |
Steve DiBenedetto | 8919abe | 2015-01-28 09:34:54 -0700 | [diff] [blame] | 4 | * Arizona Board of Regents, |
| 5 | * Colorado State University, |
| 6 | * University Pierre & Marie Curie, Sorbonne University, |
| 7 | * Washington University in St. Louis, |
| 8 | * Beijing Institute of Technology, |
| 9 | * The University of Memphis. |
Vince Lehman | 5144f82 | 2014-07-23 15:12:56 -0700 | [diff] [blame] | 10 | * |
| 11 | * This file is part of NFD (Named Data Networking Forwarding Daemon). |
| 12 | * See AUTHORS.md for complete list of NFD authors and contributors. |
| 13 | * |
| 14 | * NFD is free software: you can redistribute it and/or modify it under the terms |
| 15 | * of the GNU General Public License as published by the Free Software Foundation, |
| 16 | * either version 3 of the License, or (at your option) any later version. |
| 17 | * |
| 18 | * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 19 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 20 | * PURPOSE. See the GNU General Public License for more details. |
| 21 | * |
| 22 | * You should have received a copy of the GNU General Public License along with |
| 23 | * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 24 | */ |
| 25 | |
| 26 | #include "core/segment-publisher.hpp" |
Vince Lehman | 5144f82 | 2014-07-23 15:12:56 -0700 | [diff] [blame] | 27 | #include <ndn-cxx/encoding/tlv.hpp> |
| 28 | |
Junxiao Shi | 376f737 | 2014-11-17 18:03:31 -0700 | [diff] [blame] | 29 | #include "tests/test-common.hpp" |
Junxiao Shi | 221b6fe | 2016-07-14 18:21:56 +0000 | [diff] [blame^] | 30 | #include "tests/identity-management-fixture.hpp" |
Junxiao Shi | 376f737 | 2014-11-17 18:03:31 -0700 | [diff] [blame] | 31 | #include <ndn-cxx/util/dummy-client-face.hpp> |
Vince Lehman | 5144f82 | 2014-07-23 15:12:56 -0700 | [diff] [blame] | 32 | |
| 33 | namespace nfd { |
| 34 | namespace tests { |
| 35 | |
| 36 | NFD_LOG_INIT("SegmentPublisherTest"); |
| 37 | |
Wentao Shang | e612e2f | 2014-08-04 10:24:59 -0400 | [diff] [blame] | 38 | template<int64_t N=10000> |
Spyridon Mastorakis | d0381c0 | 2015-02-19 10:29:41 -0800 | [diff] [blame] | 39 | class SegmentPublisherTester : public SegmentPublisher<ndn::util::DummyClientFace> |
Vince Lehman | 5144f82 | 2014-07-23 15:12:56 -0700 | [diff] [blame] | 40 | { |
| 41 | public: |
Spyridon Mastorakis | d0381c0 | 2015-02-19 10:29:41 -0800 | [diff] [blame] | 42 | SegmentPublisherTester(ndn::util::DummyClientFace& face, |
Junxiao Shi | 221b6fe | 2016-07-14 18:21:56 +0000 | [diff] [blame^] | 43 | const Name& prefix, |
| 44 | ndn::KeyChain& keyChain, |
| 45 | const time::milliseconds freshnessPeriod) |
Steve DiBenedetto | 8919abe | 2015-01-28 09:34:54 -0700 | [diff] [blame] | 46 | : SegmentPublisher(face, prefix, keyChain, freshnessPeriod) |
Vince Lehman | 5144f82 | 2014-07-23 15:12:56 -0700 | [diff] [blame] | 47 | , m_totalPayloadLength(0) |
| 48 | { |
| 49 | |
| 50 | } |
| 51 | |
| 52 | virtual |
Junxiao Shi | 221b6fe | 2016-07-14 18:21:56 +0000 | [diff] [blame^] | 53 | ~SegmentPublisherTester() = default; |
Vince Lehman | 5144f82 | 2014-07-23 15:12:56 -0700 | [diff] [blame] | 54 | |
| 55 | uint16_t |
| 56 | getLimit() const |
| 57 | { |
| 58 | return N; |
| 59 | } |
| 60 | |
| 61 | size_t |
| 62 | getTotalPayloadLength() const |
| 63 | { |
| 64 | return m_totalPayloadLength; |
| 65 | } |
| 66 | |
| 67 | protected: |
| 68 | |
| 69 | virtual size_t |
| 70 | generate(ndn::EncodingBuffer& outBuffer) |
| 71 | { |
| 72 | size_t totalLength = 0; |
Junxiao Shi | 221b6fe | 2016-07-14 18:21:56 +0000 | [diff] [blame^] | 73 | for (int64_t i = 0; i < N; ++i) { |
| 74 | totalLength += prependNonNegativeIntegerBlock(outBuffer, tlv::Content, i); |
| 75 | } |
Vince Lehman | 5144f82 | 2014-07-23 15:12:56 -0700 | [diff] [blame] | 76 | m_totalPayloadLength += totalLength; |
| 77 | return totalLength; |
| 78 | } |
| 79 | |
| 80 | protected: |
| 81 | size_t m_totalPayloadLength; |
| 82 | }; |
| 83 | |
Wentao Shang | e612e2f | 2014-08-04 10:24:59 -0400 | [diff] [blame] | 84 | template<int64_t N> |
Junxiao Shi | 221b6fe | 2016-07-14 18:21:56 +0000 | [diff] [blame^] | 85 | class SegmentPublisherFixture : public IdentityManagementFixture |
Vince Lehman | 5144f82 | 2014-07-23 15:12:56 -0700 | [diff] [blame] | 86 | { |
| 87 | public: |
| 88 | SegmentPublisherFixture() |
Junxiao Shi | 221b6fe | 2016-07-14 18:21:56 +0000 | [diff] [blame^] | 89 | : m_face(m_keyChain) |
Steve DiBenedetto | 8919abe | 2015-01-28 09:34:54 -0700 | [diff] [blame] | 90 | , m_expectedFreshnessPeriod(time::milliseconds(111)) |
Junxiao Shi | 221b6fe | 2016-07-14 18:21:56 +0000 | [diff] [blame^] | 91 | , m_publisher(m_face, "/localhost/nfd/SegmentPublisherFixture", |
Steve DiBenedetto | 8919abe | 2015-01-28 09:34:54 -0700 | [diff] [blame] | 92 | m_keyChain, m_expectedFreshnessPeriod) |
Vince Lehman | 5144f82 | 2014-07-23 15:12:56 -0700 | [diff] [blame] | 93 | { |
| 94 | } |
| 95 | |
| 96 | void |
| 97 | validate(const Data& data) |
| 98 | { |
Steve DiBenedetto | 8919abe | 2015-01-28 09:34:54 -0700 | [diff] [blame] | 99 | BOOST_CHECK_EQUAL(data.getFreshnessPeriod(), m_expectedFreshnessPeriod); |
| 100 | |
Vince Lehman | 5144f82 | 2014-07-23 15:12:56 -0700 | [diff] [blame] | 101 | Block payload = data.getContent(); |
| 102 | NFD_LOG_DEBUG("payload size (w/o Content TLV): " << payload.value_size()); |
| 103 | |
| 104 | m_buffer.appendByteArray(payload.value(), payload.value_size()); |
| 105 | |
| 106 | uint64_t segmentNo = data.getName()[-1].toSegment(); |
Junxiao Shi | 221b6fe | 2016-07-14 18:21:56 +0000 | [diff] [blame^] | 107 | if (data.getFinalBlockId() != data.getName()[-1]) { |
| 108 | return; |
| 109 | } |
Vince Lehman | 5144f82 | 2014-07-23 15:12:56 -0700 | [diff] [blame] | 110 | |
| 111 | NFD_LOG_DEBUG("got final block: #" << segmentNo); |
| 112 | |
| 113 | // wrap data in a single Content TLV for easy parsing |
| 114 | m_buffer.prependVarNumber(m_buffer.size()); |
Junxiao Shi | 67f11ac | 2014-10-19 09:29:13 -0700 | [diff] [blame] | 115 | m_buffer.prependVarNumber(tlv::Content); |
Vince Lehman | 5144f82 | 2014-07-23 15:12:56 -0700 | [diff] [blame] | 116 | |
| 117 | BOOST_TEST_CHECKPOINT("creating parser"); |
| 118 | ndn::Block parser(m_buffer.buf(), m_buffer.size()); |
| 119 | BOOST_TEST_CHECKPOINT("parsing aggregated response"); |
| 120 | parser.parse(); |
| 121 | |
| 122 | BOOST_REQUIRE_EQUAL(parser.elements_size(), m_publisher.getLimit()); |
| 123 | |
| 124 | uint64_t expectedNo = m_publisher.getLimit() - 1; |
Junxiao Shi | 221b6fe | 2016-07-14 18:21:56 +0000 | [diff] [blame^] | 125 | std::for_each(parser.elements_begin(), parser.elements_end(), |
| 126 | [&expectedNo] (const Block& element) { |
| 127 | uint64_t number = readNonNegativeInteger(element); |
Vince Lehman | 5144f82 | 2014-07-23 15:12:56 -0700 | [diff] [blame] | 128 | BOOST_REQUIRE_EQUAL(number, expectedNo); |
| 129 | --expectedNo; |
Junxiao Shi | 221b6fe | 2016-07-14 18:21:56 +0000 | [diff] [blame^] | 130 | }); |
Vince Lehman | 5144f82 | 2014-07-23 15:12:56 -0700 | [diff] [blame] | 131 | } |
| 132 | |
| 133 | protected: |
Junxiao Shi | 221b6fe | 2016-07-14 18:21:56 +0000 | [diff] [blame^] | 134 | ndn::util::DummyClientFace m_face; |
Steve DiBenedetto | 8919abe | 2015-01-28 09:34:54 -0700 | [diff] [blame] | 135 | const time::milliseconds m_expectedFreshnessPeriod; |
Spyridon Mastorakis | d0381c0 | 2015-02-19 10:29:41 -0800 | [diff] [blame] | 136 | SegmentPublisherTester<N> m_publisher; |
Vince Lehman | 5144f82 | 2014-07-23 15:12:56 -0700 | [diff] [blame] | 137 | ndn::EncodingBuffer m_buffer; |
| 138 | ndn::KeyChain m_keyChain; |
| 139 | }; |
| 140 | |
| 141 | using boost::mpl::int_; |
Junxiao Shi | 221b6fe | 2016-07-14 18:21:56 +0000 | [diff] [blame^] | 142 | typedef boost::mpl::vector<int_<10000>, int_<100>, int_<10>, int_<0>> DatasetSizes; |
Vince Lehman | 5144f82 | 2014-07-23 15:12:56 -0700 | [diff] [blame] | 143 | |
Spyridon Mastorakis | d0381c0 | 2015-02-19 10:29:41 -0800 | [diff] [blame] | 144 | BOOST_AUTO_TEST_SUITE(TestSegmentPublisher) |
Vince Lehman | 5144f82 | 2014-07-23 15:12:56 -0700 | [diff] [blame] | 145 | |
| 146 | BOOST_FIXTURE_TEST_CASE_TEMPLATE(Generate, T, DatasetSizes, SegmentPublisherFixture<T::value>) |
| 147 | { |
| 148 | this->m_publisher.publish(); |
Junxiao Shi | 221b6fe | 2016-07-14 18:21:56 +0000 | [diff] [blame^] | 149 | this->m_face.processEvents(); |
Vince Lehman | 5144f82 | 2014-07-23 15:12:56 -0700 | [diff] [blame] | 150 | |
Junxiao Shi | 221b6fe | 2016-07-14 18:21:56 +0000 | [diff] [blame^] | 151 | size_t nSegments = |
| 152 | this->m_publisher.getTotalPayloadLength() / this->m_publisher.getMaxSegmentSize() + |
| 153 | (this->m_publisher.getTotalPayloadLength() % this->m_publisher.getMaxSegmentSize() != 0 || |
| 154 | this->m_publisher.getTotalPayloadLength() == 0); |
Vince Lehman | 5144f82 | 2014-07-23 15:12:56 -0700 | [diff] [blame] | 155 | |
Junxiao Shi | 221b6fe | 2016-07-14 18:21:56 +0000 | [diff] [blame^] | 156 | BOOST_CHECK_EQUAL(this->m_face.sentData.size(), nSegments); |
| 157 | for (const Data& data : this->m_face.sentData) { |
Vince Lehman | 5144f82 | 2014-07-23 15:12:56 -0700 | [diff] [blame] | 158 | this->validate(data); |
| 159 | } |
| 160 | } |
| 161 | |
| 162 | BOOST_AUTO_TEST_SUITE_END() |
| 163 | |
| 164 | } // namespace tests |
| 165 | } // namespace nfd |