blob: 9ae1ad828123195c12ec9de19f7b7c55a099fca5 [file] [log] [blame]
Andrea Tosatto672b9a72016-01-05 16:18:20 +01001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento06807dc2017-09-19 15:52:43 -04002/*
Chavoosh Ghasemi5cb67012019-02-15 09:56:57 -08003 * Copyright (c) 2016-2019, Regents of the University of California,
Junxiao Shif8606492017-07-23 03:44:34 +00004 * 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
Junxiao Shif8606492017-07-23 03:44:34 +000032#include <ndn-cxx/security/validator-null.hpp>
33#include <ndn-cxx/util/dummy-client-face.hpp>
Andrea Tosatto672b9a72016-01-05 16:18:20 +010034
35namespace ndn {
36namespace chunks {
37namespace tests {
38
39using namespace ndn::tests;
40using boost::test_tools::output_test_stream;
41
42BOOST_AUTO_TEST_SUITE(Chunks)
43BOOST_AUTO_TEST_SUITE(TestConsumer)
44
45BOOST_AUTO_TEST_CASE(OutputDataSequential)
46{
47 // Test sequential segments in the right order
48 // Segment order: 0 1 2
49
50 std::string name("/ndn/chunks/test");
51
52 std::vector<std::string> testStrings {
53 "",
54
55 "a1b2c3%^&(#$&%^$$/><",
56
57 "123456789123456789123456789123456789123456789123456789123456789"
58 "123456789123456789123456789123456789123456789123456789123456789",
59
60 "Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. "
61 "Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur "
62 "ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla "
63 "consequat massa Donec pede justo,"
64 };
65
66 util::DummyClientFace face;
Andrea Tosatto672b9a72016-01-05 16:18:20 +010067 output_test_stream output("");
Davide Pesaventof6991e12018-01-08 20:58:50 -050068 Consumer cons(security::v2::getAcceptAllValidator(), output);
Andrea Tosatto672b9a72016-01-05 16:18:20 +010069
Junxiao Shi20d5a0b2018-08-14 09:26:11 -060070 auto interest = makeInterest(name, true);
Andrea Tosatto672b9a72016-01-05 16:18:20 +010071
72 for (size_t i = 0; i < testStrings.size(); ++i) {
73 output.flush();
74
75 auto data = makeData(Name(name).appendVersion(1).appendSegment(i));
76 data->setContent(reinterpret_cast<const uint8_t*>(testStrings[i].data()),
77 testStrings[i].size());
78
79 cons.m_bufferedData[i] = data;
80 cons.writeInOrderData();
81
82 BOOST_CHECK(output.is_equal(testStrings[i]));
83 }
84}
85
86BOOST_AUTO_TEST_CASE(OutputDataUnordered)
87{
88 // Test unordered segments
89 // Segment order: 1 0 2
90
91 std::string name("/ndn/chunks/test");
92
93 std::vector<std::string> testStrings {
94 "a1b2c3%^&(#$&%^$$/><",
95
96 "123456789123456789123456789123456789123456789123456789123456789"
97 "123456789123456789123456789123456789123456789123456789123456789",
98
99 "Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. "
100 "Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur "
101 "ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla "
102 "consequat massa Donec pede justo,"
103 };;
104
105 util::DummyClientFace face;
Andrea Tosatto672b9a72016-01-05 16:18:20 +0100106 output_test_stream output("");
Davide Pesaventof6991e12018-01-08 20:58:50 -0500107 Consumer cons(security::v2::getAcceptAllValidator(), output);
Andrea Tosatto672b9a72016-01-05 16:18:20 +0100108
Junxiao Shi20d5a0b2018-08-14 09:26:11 -0600109 auto interest = makeInterest(name, true);
Andrea Tosatto672b9a72016-01-05 16:18:20 +0100110 std::vector<shared_ptr<Data>> dataStore;
111
112 for (size_t i = 0; i < testStrings.size(); ++i) {
113 auto data = makeData(Name(name).appendVersion(1).appendSegment(i));
114 data->setContent(reinterpret_cast<const uint8_t*>(testStrings[i].data()),
115 testStrings[i].size());
116
117 dataStore.push_back(data);
118 }
119
120 output.flush();
121 cons.m_bufferedData[1] = dataStore[1];
122 cons.writeInOrderData();
123 BOOST_CHECK(output.is_equal(""));
124
125 output.flush();
126 cons.m_bufferedData[0] = dataStore[0];
127 cons.writeInOrderData();
128 BOOST_CHECK(output.is_equal(testStrings[0] + testStrings[1]));
129
130 output.flush();
131 cons.m_bufferedData[2] = dataStore[2];
132 cons.writeInOrderData();
133 BOOST_CHECK(output.is_equal(testStrings[2]));
134}
135
Weiwei Liu05d92092016-07-19 17:34:33 -0700136class PipelineInterestsDummy : public PipelineInterests
137{
138public:
Davide Pesavento97a33b22019-10-17 22:10:47 -0400139 using PipelineInterests::PipelineInterests;
Weiwei Liu05d92092016-07-19 17:34:33 -0700140
141private:
142 void
143 doRun() final
144 {
145 isPipelineRunning = true;
146 }
147
148 void
149 doCancel() final
150 {
151 }
152
153public:
Davide Pesavento97a33b22019-10-17 22:10:47 -0400154 bool isPipelineRunning = false;
Weiwei Liu05d92092016-07-19 17:34:33 -0700155};
156
157BOOST_FIXTURE_TEST_CASE(RunBasic, UnitTestTimeFixture)
158{
159 boost::asio::io_service io;
160 util::DummyClientFace face(io);
Davide Pesavento97a33b22019-10-17 22:10:47 -0400161 Options options;
Davide Pesaventof6991e12018-01-08 20:58:50 -0500162 Consumer consumer(security::v2::getAcceptAllValidator());
Weiwei Liu05d92092016-07-19 17:34:33 -0700163
Chavoosh Ghasemibb2d2802019-03-26 16:07:58 -0700164 Name prefix = Name("/ndn/chunks/test").appendVersion(1);
Davide Pesavento97a33b22019-10-17 22:10:47 -0400165 auto discover = make_unique<DiscoverVersion>(face, prefix, options);
166 auto pipeline = make_unique<PipelineInterestsDummy>(face, options);
Weiwei Liu05d92092016-07-19 17:34:33 -0700167 auto pipelinePtr = pipeline.get();
168
169 consumer.run(std::move(discover), std::move(pipeline));
Weiwei Liu05d92092016-07-19 17:34:33 -0700170
171 this->advanceClocks(io, time::nanoseconds(1));
Chavoosh Ghasemibb2d2802019-03-26 16:07:58 -0700172 // no discovery interest is issued
173 BOOST_CHECK_EQUAL(face.sentInterests.size(), 0);
Weiwei Liu05d92092016-07-19 17:34:33 -0700174
Chavoosh Ghasemi5cb67012019-02-15 09:56:57 -0800175 // this Data packet answers the discovery Interest, so it must end with a version number
176 auto data = makeData(prefix.appendVersion(0));
Weiwei Liu05d92092016-07-19 17:34:33 -0700177 face.receive(*data);
178
179 this->advanceClocks(io, time::nanoseconds(1));
180 BOOST_CHECK_EQUAL(pipelinePtr->isPipelineRunning, true);
181}
182
Andrea Tosatto672b9a72016-01-05 16:18:20 +0100183BOOST_AUTO_TEST_SUITE_END() // TestConsumer
184BOOST_AUTO_TEST_SUITE_END() // Chunks
185
186} // namespace tests
187} // namespace chunks
188} // namespace ndn