Weiwei Liu | e476501 | 2016-06-01 00:10:29 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | e9c6985 | 2017-11-04 18:08:37 -0400 | [diff] [blame] | 2 | /* |
Davide Pesavento | 969cd5a | 2018-04-20 16:27:47 -0400 | [diff] [blame] | 3 | * Copyright (c) 2016-2018, Regents of the University of California, |
Davide Pesavento | e9c6985 | 2017-11-04 18:08:37 -0400 | [diff] [blame] | 4 | * Colorado State University, |
| 5 | * University Pierre & Marie Curie, Sorbonne University. |
Weiwei Liu | e476501 | 2016-06-01 00:10:29 -0700 | [diff] [blame] | 6 | * |
| 7 | * This file is part of ndn-tools (Named Data Networking Essential Tools). |
| 8 | * See AUTHORS.md for complete list of ndn-tools authors and contributors. |
| 9 | * |
| 10 | * ndn-tools is free software: you can redistribute it and/or modify it under the terms |
| 11 | * of the GNU General Public License as published by the Free Software Foundation, |
| 12 | * either version 3 of the License, or (at your option) any later version. |
| 13 | * |
| 14 | * ndn-tools is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 15 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 16 | * PURPOSE. See the GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License along with |
| 19 | * ndn-tools, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 20 | * |
| 21 | * See AUTHORS.md for complete list of ndn-cxx authors and contributors. |
| 22 | * |
| 23 | * @author Andrea Tosatto |
Davide Pesavento | e9c6985 | 2017-11-04 18:08:37 -0400 | [diff] [blame] | 24 | * @author Davide Pesavento |
Weiwei Liu | e476501 | 2016-06-01 00:10:29 -0700 | [diff] [blame] | 25 | * @author Weiwei Liu |
Chavoosh Ghasemi | 641f593 | 2017-11-06 22:45:11 +0000 | [diff] [blame] | 26 | * @author Chavoosh Ghasemi |
Weiwei Liu | e476501 | 2016-06-01 00:10:29 -0700 | [diff] [blame] | 27 | */ |
| 28 | |
| 29 | #ifndef NDN_TOOLS_TESTS_CHUNKS_PIPELINE_INTERESTS_FIXTURE_HPP |
| 30 | #define NDN_TOOLS_TESTS_CHUNKS_PIPELINE_INTERESTS_FIXTURE_HPP |
| 31 | |
| 32 | #include "tools/chunks/catchunks/pipeline-interests.hpp" |
| 33 | |
| 34 | #include "tests/test-common.hpp" |
Davide Pesavento | e9c6985 | 2017-11-04 18:08:37 -0400 | [diff] [blame] | 35 | |
Weiwei Liu | e476501 | 2016-06-01 00:10:29 -0700 | [diff] [blame] | 36 | #include <ndn-cxx/util/dummy-client-face.hpp> |
| 37 | |
| 38 | namespace ndn { |
| 39 | namespace chunks { |
| 40 | namespace tests { |
| 41 | |
| 42 | using namespace ndn::tests; |
| 43 | |
| 44 | class PipelineInterestsFixture : public UnitTestTimeFixture |
| 45 | { |
Weiwei Liu | e476501 | 2016-06-01 00:10:29 -0700 | [diff] [blame] | 46 | protected: |
| 47 | void |
| 48 | setPipeline(unique_ptr<PipelineInterests> pline) |
| 49 | { |
| 50 | pipeline = std::move(pline); |
| 51 | } |
| 52 | |
| 53 | shared_ptr<Data> |
| 54 | makeDataWithSegment(uint64_t segmentNo, bool setFinalBlockId = true) const |
| 55 | { |
| 56 | auto data = make_shared<Data>(Name(name).appendVersion(0).appendSegment(segmentNo)); |
| 57 | if (setFinalBlockId) |
Davide Pesavento | 969cd5a | 2018-04-20 16:27:47 -0400 | [diff] [blame] | 58 | data->setFinalBlock(name::Component::fromSegment(nDataSegments - 1)); |
Weiwei Liu | e476501 | 2016-06-01 00:10:29 -0700 | [diff] [blame] | 59 | return signData(data); |
| 60 | } |
| 61 | |
Chavoosh Ghasemi | 641f593 | 2017-11-06 22:45:11 +0000 | [diff] [blame] | 62 | shared_ptr<Data> |
Davide Pesavento | dc4cb4b | 2017-11-21 13:40:22 -0500 | [diff] [blame] | 63 | makeDataWithSegmentAndCongMark(uint64_t segmentNo, |
| 64 | uint64_t congestionMark = 1, |
Chavoosh Ghasemi | 641f593 | 2017-11-06 22:45:11 +0000 | [diff] [blame] | 65 | bool setFinalBlockId = true) const |
| 66 | { |
| 67 | auto data = makeDataWithSegment(segmentNo, setFinalBlockId); |
| 68 | data->setCongestionMark(congestionMark); |
| 69 | return data; |
| 70 | } |
| 71 | |
Weiwei Liu | e476501 | 2016-06-01 00:10:29 -0700 | [diff] [blame] | 72 | void |
| 73 | runWithData(const Data& data) |
| 74 | { |
| 75 | pipeline->run(data, |
Davide Pesavento | dc4cb4b | 2017-11-21 13:40:22 -0500 | [diff] [blame] | 76 | [] (const Data&) {}, |
Davide Pesavento | e9c6985 | 2017-11-04 18:08:37 -0400 | [diff] [blame] | 77 | [this] (const std::string&) { hasFailed = true; }); |
Weiwei Liu | e476501 | 2016-06-01 00:10:29 -0700 | [diff] [blame] | 78 | } |
| 79 | |
| 80 | protected: |
| 81 | boost::asio::io_service io; |
Davide Pesavento | dc4cb4b | 2017-11-21 13:40:22 -0500 | [diff] [blame] | 82 | util::DummyClientFace face{io}; |
Weiwei Liu | e476501 | 2016-06-01 00:10:29 -0700 | [diff] [blame] | 83 | unique_ptr<PipelineInterests> pipeline; |
Davide Pesavento | dc4cb4b | 2017-11-21 13:40:22 -0500 | [diff] [blame] | 84 | Name name{"/ndn/chunks/test"}; |
| 85 | uint64_t nDataSegments = 0; |
| 86 | bool hasFailed = false; |
Weiwei Liu | e476501 | 2016-06-01 00:10:29 -0700 | [diff] [blame] | 87 | }; |
| 88 | |
| 89 | } // namespace tests |
| 90 | } // namespace chunks |
| 91 | } // namespace ndn |
| 92 | |
| 93 | #endif // NDN_TOOLS_TESTS_CHUNKS_PIPELINE_INTERESTS_FIXTURE_HPP |