blob: 8f7097e537a0a463751509f3fc4f8e1f9c9dd362 [file] [log] [blame]
Andrea Tosatto672b9a72016-01-05 16:18:20 +01001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shif8606492017-07-23 03:44:34 +00003 * Copyright (c) 2016-2017, Regents of the University of California,
4 * Colorado State University,
5 * University Pierre & Marie Curie, Sorbonne University.
Andrea Tosatto672b9a72016-01-05 16:18:20 +01006 *
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
24 */
25
26#include "tools/chunks/catchunks/consumer.hpp"
Weiwei Liu05d92092016-07-19 17:34:33 -070027#include "tools/chunks/catchunks/discover-version.hpp"
28#include "tools/chunks/catchunks/pipeline-interests.hpp"
Andrea Tosatto672b9a72016-01-05 16:18:20 +010029
30#include "tests/test-common.hpp"
Andrea Tosatto672b9a72016-01-05 16:18:20 +010031
32#include <boost/test/output_test_stream.hpp>
Junxiao Shif8606492017-07-23 03:44:34 +000033#include <ndn-cxx/security/validator-null.hpp>
34#include <ndn-cxx/util/dummy-client-face.hpp>
Andrea Tosatto672b9a72016-01-05 16:18:20 +010035
36namespace ndn {
37namespace chunks {
38namespace tests {
39
40using namespace ndn::tests;
41using boost::test_tools::output_test_stream;
42
43BOOST_AUTO_TEST_SUITE(Chunks)
44BOOST_AUTO_TEST_SUITE(TestConsumer)
45
46BOOST_AUTO_TEST_CASE(OutputDataSequential)
47{
48 // Test sequential segments in the right order
49 // Segment order: 0 1 2
50
51 std::string name("/ndn/chunks/test");
52
53 std::vector<std::string> testStrings {
54 "",
55
56 "a1b2c3%^&(#$&%^$$/><",
57
58 "123456789123456789123456789123456789123456789123456789123456789"
59 "123456789123456789123456789123456789123456789123456789123456789",
60
61 "Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. "
62 "Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur "
63 "ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla "
64 "consequat massa Donec pede justo,"
65 };
66
67 util::DummyClientFace face;
Andrea Tosatto672b9a72016-01-05 16:18:20 +010068 output_test_stream output("");
Junxiao Shif8606492017-07-23 03:44:34 +000069 Consumer cons(security::v2::getAcceptAllValidator(), false, output);
Andrea Tosatto672b9a72016-01-05 16:18:20 +010070
71 auto interest = makeInterest(name);
72
73 for (size_t i = 0; i < testStrings.size(); ++i) {
74 output.flush();
75
76 auto data = makeData(Name(name).appendVersion(1).appendSegment(i));
77 data->setContent(reinterpret_cast<const uint8_t*>(testStrings[i].data()),
78 testStrings[i].size());
79
80 cons.m_bufferedData[i] = data;
81 cons.writeInOrderData();
82
83 BOOST_CHECK(output.is_equal(testStrings[i]));
84 }
85}
86
87BOOST_AUTO_TEST_CASE(OutputDataUnordered)
88{
89 // Test unordered segments
90 // Segment order: 1 0 2
91
92 std::string name("/ndn/chunks/test");
93
94 std::vector<std::string> testStrings {
95 "a1b2c3%^&(#$&%^$$/><",
96
97 "123456789123456789123456789123456789123456789123456789123456789"
98 "123456789123456789123456789123456789123456789123456789123456789",
99
100 "Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. "
101 "Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur "
102 "ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla "
103 "consequat massa Donec pede justo,"
104 };;
105
106 util::DummyClientFace face;
Andrea Tosatto672b9a72016-01-05 16:18:20 +0100107 output_test_stream output("");
Junxiao Shif8606492017-07-23 03:44:34 +0000108 Consumer cons(security::v2::getAcceptAllValidator(), false, output);
Andrea Tosatto672b9a72016-01-05 16:18:20 +0100109
110 auto interest = makeInterest(name);
111 std::vector<shared_ptr<Data>> dataStore;
112
113 for (size_t i = 0; i < testStrings.size(); ++i) {
114 auto data = makeData(Name(name).appendVersion(1).appendSegment(i));
115 data->setContent(reinterpret_cast<const uint8_t*>(testStrings[i].data()),
116 testStrings[i].size());
117
118 dataStore.push_back(data);
119 }
120
121 output.flush();
122 cons.m_bufferedData[1] = dataStore[1];
123 cons.writeInOrderData();
124 BOOST_CHECK(output.is_equal(""));
125
126 output.flush();
127 cons.m_bufferedData[0] = dataStore[0];
128 cons.writeInOrderData();
129 BOOST_CHECK(output.is_equal(testStrings[0] + testStrings[1]));
130
131 output.flush();
132 cons.m_bufferedData[2] = dataStore[2];
133 cons.writeInOrderData();
134 BOOST_CHECK(output.is_equal(testStrings[2]));
135}
136
Weiwei Liu05d92092016-07-19 17:34:33 -0700137class DiscoverVersionDummy : public DiscoverVersion
138{
139public:
140 DiscoverVersionDummy(const Name& prefix, Face& face, const Options& options)
141 : DiscoverVersion(prefix, face, options)
142 , isDiscoverRunning(false)
143 , m_prefix(prefix)
144 {
145 }
146
147 void
148 run() final
149 {
150 isDiscoverRunning = true;
151
152 auto interest = makeInterest(m_prefix);
153 expressInterest(*interest, 1, 1);
154 }
155
156private:
157 void
158 handleData(const Interest& interest, const Data& data) final
159 {
160 this->emitSignal(onDiscoverySuccess, data);
161 }
162
163public:
164 bool isDiscoverRunning;
165
166private:
167 Name m_prefix;
168};
169
170class PipelineInterestsDummy : public PipelineInterests
171{
172public:
173 PipelineInterestsDummy(Face& face)
174 : PipelineInterests(face)
175 , isPipelineRunning(false)
176 {
177 }
178
179private:
180 void
181 doRun() final
182 {
183 isPipelineRunning = true;
184 }
185
186 void
187 doCancel() final
188 {
189 }
190
191public:
192 bool isPipelineRunning;
193};
194
195BOOST_FIXTURE_TEST_CASE(RunBasic, UnitTestTimeFixture)
196{
197 boost::asio::io_service io;
198 util::DummyClientFace face(io);
Junxiao Shif8606492017-07-23 03:44:34 +0000199 Consumer consumer(security::v2::getAcceptAllValidator(), false);
Weiwei Liu05d92092016-07-19 17:34:33 -0700200
201 Name prefix("/ndn/chunks/test");
202 auto discover = make_unique<DiscoverVersionDummy>(prefix, face, Options());
203 auto pipeline = make_unique<PipelineInterestsDummy>(face);
204 auto discoverPtr = discover.get();
205 auto pipelinePtr = pipeline.get();
206
207 consumer.run(std::move(discover), std::move(pipeline));
208 BOOST_CHECK_EQUAL(discoverPtr->isDiscoverRunning, true);
209
210 this->advanceClocks(io, time::nanoseconds(1));
211 BOOST_REQUIRE_EQUAL(face.sentInterests.size(), 1);
212
213 auto data = makeData(prefix.appendSegment(0));
214 face.receive(*data);
215
216 this->advanceClocks(io, time::nanoseconds(1));
217 BOOST_CHECK_EQUAL(pipelinePtr->isPipelineRunning, true);
218}
219
Andrea Tosatto672b9a72016-01-05 16:18:20 +0100220BOOST_AUTO_TEST_SUITE_END() // TestConsumer
221BOOST_AUTO_TEST_SUITE_END() // Chunks
222
223} // namespace tests
224} // namespace chunks
225} // namespace ndn