blob: dc7eabd94e720ccc747b31a565417d195095a481 [file] [log] [blame]
Weiwei Liue4765012016-06-01 00:10:29 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesaventoe9c69852017-11-04 18:08:37 -04002/*
Chavoosh Ghasemi5cb67012019-02-15 09:56:57 -08003 * Copyright (c) 2016-2019, Regents of the University of California,
Davide Pesaventoe9c69852017-11-04 18:08:37 -04004 * Colorado State University,
5 * University Pierre & Marie Curie, Sorbonne University.
Weiwei Liue4765012016-06-01 00:10:29 -07006 *
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 Pesaventoe9c69852017-11-04 18:08:37 -040024 * @author Davide Pesavento
Weiwei Liue4765012016-06-01 00:10:29 -070025 * @author Weiwei Liu
Chavoosh Ghasemi641f5932017-11-06 22:45:11 +000026 * @author Chavoosh Ghasemi
Weiwei Liue4765012016-06-01 00:10:29 -070027 */
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 Pesaventoe9c69852017-11-04 18:08:37 -040035
Weiwei Liue4765012016-06-01 00:10:29 -070036#include <ndn-cxx/util/dummy-client-face.hpp>
37
38namespace ndn {
39namespace chunks {
40namespace tests {
41
42using namespace ndn::tests;
43
44class PipelineInterestsFixture : public UnitTestTimeFixture
45{
Weiwei Liue4765012016-06-01 00:10:29 -070046protected:
47 void
48 setPipeline(unique_ptr<PipelineInterests> pline)
49 {
schneiderklausd8197df2019-03-16 11:31:40 -070050 m_pipeline = std::move(pline);
Weiwei Liue4765012016-06-01 00:10:29 -070051 }
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 Pesavento969cd5a2018-04-20 16:27:47 -040058 data->setFinalBlock(name::Component::fromSegment(nDataSegments - 1));
Weiwei Liue4765012016-06-01 00:10:29 -070059 return signData(data);
60 }
61
Chavoosh Ghasemi641f5932017-11-06 22:45:11 +000062 shared_ptr<Data>
Davide Pesaventodc4cb4b2017-11-21 13:40:22 -050063 makeDataWithSegmentAndCongMark(uint64_t segmentNo,
64 uint64_t congestionMark = 1,
Chavoosh Ghasemi641f5932017-11-06 22:45:11 +000065 bool setFinalBlockId = true) const
66 {
67 auto data = makeDataWithSegment(segmentNo, setFinalBlockId);
68 data->setCongestionMark(congestionMark);
69 return data;
70 }
71
Weiwei Liue4765012016-06-01 00:10:29 -070072 void
Chavoosh Ghasemi5cb67012019-02-15 09:56:57 -080073 run(const Name& name, uint64_t version = 0)
Weiwei Liue4765012016-06-01 00:10:29 -070074 {
schneiderklausd8197df2019-03-16 11:31:40 -070075 m_pipeline->run(Name(name).appendVersion(version),
76 [] (const Data&) {},
77 [this] (const std::string&) { hasFailed = true; });
Weiwei Liue4765012016-06-01 00:10:29 -070078 }
79
80protected:
81 boost::asio::io_service io;
Davide Pesaventodc4cb4b2017-11-21 13:40:22 -050082 util::DummyClientFace face{io};
Davide Pesaventodc4cb4b2017-11-21 13:40:22 -050083 Name name{"/ndn/chunks/test"};
84 uint64_t nDataSegments = 0;
85 bool hasFailed = false;
schneiderklausd8197df2019-03-16 11:31:40 -070086
87private:
88 unique_ptr<PipelineInterests> m_pipeline;
Weiwei Liue4765012016-06-01 00:10:29 -070089};
90
91} // namespace tests
92} // namespace chunks
93} // namespace ndn
94
95#endif // NDN_TOOLS_TESTS_CHUNKS_PIPELINE_INTERESTS_FIXTURE_HPP