blob: 1e1c947f313d0ec7fd18136462d6be062f7e0248 [file] [log] [blame]
Yanbiao Li8ee37ed2015-05-19 12:44:04 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Junxiao Shic542f632017-07-18 14:20:32 +00002/*
Davide Pesavento152ef442023-04-22 02:02:29 -04003 * Copyright (c) 2013-2023 Regents of the University of California.
Yanbiao Li8ee37ed2015-05-19 12:44:04 -07004 *
Alexander Afanasyev80b68e12015-09-17 17:01:04 -07005 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
Yanbiao Li8ee37ed2015-05-19 12:44:04 -07006 *
Alexander Afanasyev80b68e12015-09-17 17:01:04 -07007 * ndn-cxx library is free software: you can redistribute it and/or modify it under the
8 * terms of the GNU Lesser General Public License as published by the Free Software
9 * Foundation, either version 3 of the License, or (at your option) any later version.
Yanbiao Li8ee37ed2015-05-19 12:44:04 -070010 *
Alexander Afanasyev80b68e12015-09-17 17:01:04 -070011 * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY
12 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13 * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
Yanbiao Li8ee37ed2015-05-19 12:44:04 -070014 *
Alexander Afanasyev80b68e12015-09-17 17:01:04 -070015 * You should have received copies of the GNU General Public License and GNU Lesser
16 * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see
17 * <http://www.gnu.org/licenses/>.
18 *
19 * See AUTHORS.md for complete list of ndn-cxx authors and contributors.
Yanbiao Li8ee37ed2015-05-19 12:44:04 -070020 */
21
Davide Pesavento7e780642018-11-24 15:51:34 -050022#include "ndn-cxx/mgmt/dispatcher.hpp"
23#include "ndn-cxx/mgmt/nfd/control-parameters.hpp"
24#include "ndn-cxx/util/dummy-client-face.hpp"
Yanbiao Li8ee37ed2015-05-19 12:44:04 -070025
Davide Pesavento4c1ad4c2020-11-16 21:12:02 -050026#include "tests/test-common.hpp"
27#include "tests/unit/io-key-chain-fixture.hpp"
Yanbiao Li8ee37ed2015-05-19 12:44:04 -070028
Davide Pesavento47ce2ee2023-05-09 01:33:33 -040029namespace ndn::tests {
Yanbiao Li8ee37ed2015-05-19 12:44:04 -070030
Davide Pesavento47ce2ee2023-05-09 01:33:33 -040031using namespace ndn::mgmt;
Yanbiao Li8ee37ed2015-05-19 12:44:04 -070032
Davide Pesavento4c1ad4c2020-11-16 21:12:02 -050033class DispatcherFixture : public IoKeyChainFixture
Yanbiao Li8ee37ed2015-05-19 12:44:04 -070034{
35public:
36 DispatcherFixture()
Davide Pesavento4c1ad4c2020-11-16 21:12:02 -050037 : face(m_io, m_keyChain, {true, true})
Alexander Afanasyev9bdbb832015-12-30 12:54:22 -080038 , dispatcher(face, m_keyChain, security::SigningInfo())
Yanbiao Li4b4f7542016-03-11 02:04:43 +080039 , storage(dispatcher.m_storage)
Yanbiao Li8ee37ed2015-05-19 12:44:04 -070040 {
41 }
42
43public:
Davide Pesavento47ce2ee2023-05-09 01:33:33 -040044 DummyClientFace face;
Yanbiao Li8ee37ed2015-05-19 12:44:04 -070045 mgmt::Dispatcher dispatcher;
Junxiao Shic542f632017-07-18 14:20:32 +000046 InMemoryStorageFifo& storage;
Yanbiao Li8ee37ed2015-05-19 12:44:04 -070047};
48
49class VoidParameters : public mgmt::ControlParameters
50{
51public:
52 explicit
53 VoidParameters(const Block& wire)
54 {
55 wireDecode(wire);
56 }
57
Junxiao Shid97c9532017-04-27 16:17:04 +000058 Block
Davide Pesaventoaa82eb62016-04-22 19:08:40 +020059 wireEncode() const final
Yanbiao Li8ee37ed2015-05-19 12:44:04 -070060 {
61 return Block(128);
62 }
63
Junxiao Shid97c9532017-04-27 16:17:04 +000064 void
Davide Pesaventoaa82eb62016-04-22 19:08:40 +020065 wireDecode(const Block& wire) final
Yanbiao Li8ee37ed2015-05-19 12:44:04 -070066 {
67 if (wire.type() != 128)
Davide Pesavento923ba442019-02-12 22:00:38 -050068 NDN_THROW(tlv::Error("Expecting TLV type 128"));
Yanbiao Li8ee37ed2015-05-19 12:44:04 -070069 }
70};
71
72static Authorization
73makeTestAuthorization()
74{
Davide Pesavento3c34ec12021-03-28 21:50:06 -040075 return [] (const Name&, const Interest& interest, const ControlParameters*,
76 AcceptContinuation accept, RejectContinuation reject) {
Yanbiao Li8ee37ed2015-05-19 12:44:04 -070077 if (interest.getName()[-1] == name::Component("valid")) {
78 accept("");
79 }
80 else {
81 if (interest.getName()[-1] == name::Component("silent")) {
82 reject(RejectReply::SILENT);
83 }
84 else {
85 reject(RejectReply::STATUS403);
86 }
87 }
88 };
89}
90
Junxiao Shid97c9532017-04-27 16:17:04 +000091BOOST_AUTO_TEST_SUITE(Mgmt)
92BOOST_FIXTURE_TEST_SUITE(TestDispatcher, DispatcherFixture)
93
94BOOST_AUTO_TEST_CASE(Basic)
Yanbiao Li8ee37ed2015-05-19 12:44:04 -070095{
96 BOOST_CHECK_NO_THROW(dispatcher
97 .addControlCommand<VoidParameters>("test/1", makeAcceptAllAuthorization(),
Davide Pesavento152ef442023-04-22 02:02:29 -040098 std::bind([] { return true; }),
99 std::bind([]{})));
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700100 BOOST_CHECK_NO_THROW(dispatcher
101 .addControlCommand<VoidParameters>("test/2", makeAcceptAllAuthorization(),
Davide Pesavento152ef442023-04-22 02:02:29 -0400102 std::bind([] { return true; }),
103 std::bind([]{})));
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700104
105 BOOST_CHECK_THROW(dispatcher
106 .addControlCommand<VoidParameters>("test", makeAcceptAllAuthorization(),
Davide Pesavento152ef442023-04-22 02:02:29 -0400107 std::bind([] { return true; }),
108 std::bind([]{})),
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700109 std::out_of_range);
110
111 BOOST_CHECK_NO_THROW(dispatcher.addStatusDataset("status/1",
Davide Pesavento152ef442023-04-22 02:02:29 -0400112 makeAcceptAllAuthorization(), std::bind([]{})));
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700113 BOOST_CHECK_NO_THROW(dispatcher.addStatusDataset("status/2",
Davide Pesavento152ef442023-04-22 02:02:29 -0400114 makeAcceptAllAuthorization(), std::bind([]{})));
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700115 BOOST_CHECK_THROW(dispatcher.addStatusDataset("status",
Davide Pesavento152ef442023-04-22 02:02:29 -0400116 makeAcceptAllAuthorization(), std::bind([]{})),
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700117 std::out_of_range);
118
119 BOOST_CHECK_NO_THROW(dispatcher.addNotificationStream("stream/1"));
120 BOOST_CHECK_NO_THROW(dispatcher.addNotificationStream("stream/2"));
121 BOOST_CHECK_THROW(dispatcher.addNotificationStream("stream"), std::out_of_range);
122
123
124 BOOST_CHECK_NO_THROW(dispatcher.addTopPrefix("/root/1"));
125 BOOST_CHECK_NO_THROW(dispatcher.addTopPrefix("/root/2"));
126 BOOST_CHECK_THROW(dispatcher.addTopPrefix("/root"), std::out_of_range);
127
128 BOOST_CHECK_THROW(dispatcher
129 .addControlCommand<VoidParameters>("test/3", makeAcceptAllAuthorization(),
Davide Pesavento152ef442023-04-22 02:02:29 -0400130 std::bind([] { return true; }),
131 std::bind([]{})),
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700132 std::domain_error);
133
134 BOOST_CHECK_THROW(dispatcher.addStatusDataset("status/3",
Davide Pesavento152ef442023-04-22 02:02:29 -0400135 makeAcceptAllAuthorization(), std::bind([]{})),
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700136 std::domain_error);
137
138 BOOST_CHECK_THROW(dispatcher.addNotificationStream("stream/3"), std::domain_error);
139}
140
Junxiao Shid97c9532017-04-27 16:17:04 +0000141BOOST_AUTO_TEST_CASE(AddRemoveTopPrefix)
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700142{
143 std::map<std::string, size_t> nCallbackCalled;
144 dispatcher
145 .addControlCommand<VoidParameters>("test/1", makeAcceptAllAuthorization(),
Davide Pesavento152ef442023-04-22 02:02:29 -0400146 std::bind([] { return true; }),
147 std::bind([&nCallbackCalled] { ++nCallbackCalled["test/1"]; }));
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700148
149 dispatcher
150 .addControlCommand<VoidParameters>("test/2", makeAcceptAllAuthorization(),
Davide Pesavento152ef442023-04-22 02:02:29 -0400151 std::bind([] { return true; }),
152 std::bind([&nCallbackCalled] { ++nCallbackCalled["test/2"]; }));
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700153
Junxiao Shi85d90832016-08-04 03:19:46 +0000154 face.receive(*makeInterest("/root/1/test/1/%80%00"));
Davide Pesavento0f830802018-01-16 23:58:58 -0500155 advanceClocks(1_ms);
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700156 BOOST_CHECK_EQUAL(nCallbackCalled["test/1"], 0);
157 BOOST_CHECK_EQUAL(nCallbackCalled["test/2"], 0);
158
159 dispatcher.addTopPrefix("/root/1");
Davide Pesavento0f830802018-01-16 23:58:58 -0500160 advanceClocks(1_ms);
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700161
Junxiao Shi85d90832016-08-04 03:19:46 +0000162 face.receive(*makeInterest("/root/1/test/1/%80%00"));
Davide Pesavento0f830802018-01-16 23:58:58 -0500163 advanceClocks(1_ms);
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700164 BOOST_CHECK_EQUAL(nCallbackCalled["test/1"], 1);
165 BOOST_CHECK_EQUAL(nCallbackCalled["test/2"], 0);
166
Junxiao Shi85d90832016-08-04 03:19:46 +0000167 face.receive(*makeInterest("/root/1/test/2/%80%00"));
Davide Pesavento0f830802018-01-16 23:58:58 -0500168 advanceClocks(1_ms);
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700169 BOOST_CHECK_EQUAL(nCallbackCalled["test/1"], 1);
170 BOOST_CHECK_EQUAL(nCallbackCalled["test/2"], 1);
171
Junxiao Shi85d90832016-08-04 03:19:46 +0000172 face.receive(*makeInterest("/root/2/test/1/%80%00"));
173 face.receive(*makeInterest("/root/2/test/2/%80%00"));
Davide Pesavento0f830802018-01-16 23:58:58 -0500174 advanceClocks(1_ms);
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700175 BOOST_CHECK_EQUAL(nCallbackCalled["test/1"], 1);
176 BOOST_CHECK_EQUAL(nCallbackCalled["test/2"], 1);
177
178 dispatcher.addTopPrefix("/root/2");
Davide Pesavento0f830802018-01-16 23:58:58 -0500179 advanceClocks(1_ms);
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700180
Junxiao Shi85d90832016-08-04 03:19:46 +0000181 face.receive(*makeInterest("/root/1/test/1/%80%00"));
Davide Pesavento0f830802018-01-16 23:58:58 -0500182 advanceClocks(1_ms);
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700183 BOOST_CHECK_EQUAL(nCallbackCalled["test/1"], 2);
184
Junxiao Shi85d90832016-08-04 03:19:46 +0000185 face.receive(*makeInterest("/root/2/test/1/%80%00"));
Davide Pesavento0f830802018-01-16 23:58:58 -0500186 advanceClocks(1_ms);
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700187 BOOST_CHECK_EQUAL(nCallbackCalled["test/1"], 3);
188
189 dispatcher.removeTopPrefix("/root/1");
Davide Pesavento0f830802018-01-16 23:58:58 -0500190 advanceClocks(1_ms);
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700191
Junxiao Shi85d90832016-08-04 03:19:46 +0000192 face.receive(*makeInterest("/root/1/test/1/%80%00"));
Davide Pesavento0f830802018-01-16 23:58:58 -0500193 advanceClocks(1_ms);
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700194 BOOST_CHECK_EQUAL(nCallbackCalled["test/1"], 3);
195
Junxiao Shi85d90832016-08-04 03:19:46 +0000196 face.receive(*makeInterest("/root/2/test/1/%80%00"));
Davide Pesavento0f830802018-01-16 23:58:58 -0500197 advanceClocks(1_ms);
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700198 BOOST_CHECK_EQUAL(nCallbackCalled["test/1"], 4);
199}
200
Junxiao Shid97c9532017-04-27 16:17:04 +0000201BOOST_AUTO_TEST_CASE(ControlCommand)
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700202{
203 size_t nCallbackCalled = 0;
204 dispatcher
205 .addControlCommand<VoidParameters>("test",
206 makeTestAuthorization(),
Davide Pesavento152ef442023-04-22 02:02:29 -0400207 std::bind([] { return true; }),
208 std::bind([&nCallbackCalled] { ++nCallbackCalled; }));
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700209
210 dispatcher.addTopPrefix("/root");
Davide Pesavento0f830802018-01-16 23:58:58 -0500211 advanceClocks(1_ms);
Alexander Afanasyev9bdbb832015-12-30 12:54:22 -0800212 face.sentData.clear();
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700213
Junxiao Shi85d90832016-08-04 03:19:46 +0000214 face.receive(*makeInterest("/root/test/%80%00")); // returns 403
215 face.receive(*makeInterest("/root/test/%80%00/invalid")); // returns 403
216 face.receive(*makeInterest("/root/test/%80%00/silent")); // silently ignored
217 face.receive(*makeInterest("/root/test/.../invalid")); // silently ignored (wrong format)
218 face.receive(*makeInterest("/root/test/.../valid")); // silently ignored (wrong format)
Davide Pesavento0f830802018-01-16 23:58:58 -0500219 advanceClocks(1_ms, 20);
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700220 BOOST_CHECK_EQUAL(nCallbackCalled, 0);
Alexander Afanasyev9bdbb832015-12-30 12:54:22 -0800221 BOOST_CHECK_EQUAL(face.sentData.size(), 2);
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700222
Junxiao Shi72c0c642018-04-20 15:41:09 +0000223 BOOST_CHECK_EQUAL(face.sentData[0].getContentType(), tlv::ContentType_Blob);
Alexander Afanasyev9bdbb832015-12-30 12:54:22 -0800224 BOOST_CHECK_EQUAL(ControlResponse(face.sentData[0].getContent().blockFromValue()).getCode(), 403);
Junxiao Shi72c0c642018-04-20 15:41:09 +0000225 BOOST_CHECK_EQUAL(face.sentData[1].getContentType(), tlv::ContentType_Blob);
Alexander Afanasyev9bdbb832015-12-30 12:54:22 -0800226 BOOST_CHECK_EQUAL(ControlResponse(face.sentData[1].getContent().blockFromValue()).getCode(), 403);
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700227
Junxiao Shi85d90832016-08-04 03:19:46 +0000228 face.receive(*makeInterest("/root/test/%80%00/valid"));
Davide Pesavento0f830802018-01-16 23:58:58 -0500229 advanceClocks(1_ms, 10);
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700230 BOOST_CHECK_EQUAL(nCallbackCalled, 1);
231}
232
Junxiao Shid97c9532017-04-27 16:17:04 +0000233class StatefulParameters : public mgmt::ControlParameters
234{
235public:
236 explicit
237 StatefulParameters(const Block& wire)
238 {
239 wireDecode(wire);
240 }
241
242 Block
243 wireEncode() const final
244 {
Davide Pesaventofbea4fc2022-02-08 07:26:04 -0500245 return {};
Junxiao Shid97c9532017-04-27 16:17:04 +0000246 }
247
248 void
Davide Pesavento3c34ec12021-03-28 21:50:06 -0400249 wireDecode(const Block&) final
Junxiao Shid97c9532017-04-27 16:17:04 +0000250 {
251 m_state = EXPECTED_STATE;
252 }
253
254 bool
255 check() const
256 {
257 return m_state == EXPECTED_STATE;
258 }
259
260private:
261 static constexpr int EXPECTED_STATE = 12602;
262 int m_state = 0;
263};
264
265BOOST_AUTO_TEST_CASE(ControlCommandAsyncAuthorization) // Bug 4059
266{
267 AcceptContinuation authorizationAccept;
268 auto authorization =
Davide Pesavento3c34ec12021-03-28 21:50:06 -0400269 [&authorizationAccept] (const Name&, const Interest&, const ControlParameters*,
270 AcceptContinuation accept, RejectContinuation) {
271 authorizationAccept = std::move(accept);
Junxiao Shid97c9532017-04-27 16:17:04 +0000272 };
273
274 auto validateParameters =
275 [] (const ControlParameters& params) {
276 return dynamic_cast<const StatefulParameters&>(params).check();
277 };
278
279 size_t nCallbackCalled = 0;
Davide Pesavento3c34ec12021-03-28 21:50:06 -0400280 dispatcher.addControlCommand<StatefulParameters>("test", authorization, validateParameters,
Davide Pesavento152ef442023-04-22 02:02:29 -0400281 std::bind([&nCallbackCalled] { ++nCallbackCalled; }));
Junxiao Shid97c9532017-04-27 16:17:04 +0000282
283 dispatcher.addTopPrefix("/root");
Davide Pesavento0f830802018-01-16 23:58:58 -0500284 advanceClocks(1_ms);
Junxiao Shid97c9532017-04-27 16:17:04 +0000285
286 face.receive(*makeInterest("/root/test/%80%00"));
287 BOOST_CHECK_EQUAL(nCallbackCalled, 0);
288 BOOST_REQUIRE(authorizationAccept != nullptr);
289
Davide Pesavento0f830802018-01-16 23:58:58 -0500290 advanceClocks(1_ms);
Junxiao Shid97c9532017-04-27 16:17:04 +0000291 authorizationAccept("");
Davide Pesavento0f830802018-01-16 23:58:58 -0500292 advanceClocks(1_ms);
Junxiao Shid97c9532017-04-27 16:17:04 +0000293 BOOST_CHECK_EQUAL(nCallbackCalled, 1);
294}
295
296BOOST_AUTO_TEST_CASE(StatusDataset)
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700297{
Davide Pesaventofbea4fc2022-02-08 07:26:04 -0500298 const Block smallBlock({0x81, 0x01, 0x01});
Davide Pesavento3c34ec12021-03-28 21:50:06 -0400299 const Block largeBlock = [] {
300 Block b(129, std::make_shared<const Buffer>(3000));
301 b.encode();
302 return b;
303 }();
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700304
305 dispatcher.addStatusDataset("test/small",
306 makeTestAuthorization(),
Davide Pesavento3c34ec12021-03-28 21:50:06 -0400307 [&smallBlock] (const Name&, const Interest&,
Davide Pesaventob10024c2017-09-22 01:36:44 -0400308 StatusDatasetContext& context) {
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700309 context.append(smallBlock);
310 context.append(smallBlock);
311 context.append(smallBlock);
312 context.end();
313 });
314
315 dispatcher.addStatusDataset("test/large",
316 makeTestAuthorization(),
Davide Pesavento3c34ec12021-03-28 21:50:06 -0400317 [&largeBlock] (const Name&, const Interest&,
Davide Pesaventob10024c2017-09-22 01:36:44 -0400318 StatusDatasetContext& context) {
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700319 context.append(largeBlock);
320 context.append(largeBlock);
321 context.append(largeBlock);
322 context.end();
323 });
324
325 dispatcher.addStatusDataset("test/reject",
326 makeTestAuthorization(),
Davide Pesavento3c34ec12021-03-28 21:50:06 -0400327 [] (const Name&, const Interest&, StatusDatasetContext& context) {
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700328 context.reject();
329 });
330
331 dispatcher.addTopPrefix("/root");
Davide Pesavento0f830802018-01-16 23:58:58 -0500332 advanceClocks(1_ms);
Alexander Afanasyev9bdbb832015-12-30 12:54:22 -0800333 face.sentData.clear();
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700334
Junxiao Shi85d90832016-08-04 03:19:46 +0000335 face.receive(*makeInterest("/root/test/small/%80%00")); // returns 403
336 face.receive(*makeInterest("/root/test/small/%80%00/invalid")); // returns 403
337 face.receive(*makeInterest("/root/test/small/%80%00/silent")); // silently ignored
Davide Pesavento0f830802018-01-16 23:58:58 -0500338 advanceClocks(1_ms, 20);
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700339
Davide Pesavento3c34ec12021-03-28 21:50:06 -0400340 BOOST_REQUIRE_EQUAL(face.sentData.size(), 2);
Junxiao Shi72c0c642018-04-20 15:41:09 +0000341 BOOST_CHECK_EQUAL(face.sentData[0].getContentType(), tlv::ContentType_Blob);
Alexander Afanasyev9bdbb832015-12-30 12:54:22 -0800342 BOOST_CHECK_EQUAL(ControlResponse(face.sentData[0].getContent().blockFromValue()).getCode(), 403);
Junxiao Shi72c0c642018-04-20 15:41:09 +0000343 BOOST_CHECK_EQUAL(face.sentData[1].getContentType(), tlv::ContentType_Blob);
Alexander Afanasyev9bdbb832015-12-30 12:54:22 -0800344 BOOST_CHECK_EQUAL(ControlResponse(face.sentData[1].getContent().blockFromValue()).getCode(), 403);
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700345
Alexander Afanasyev9bdbb832015-12-30 12:54:22 -0800346 face.sentData.clear();
Yanbiao Li4b4f7542016-03-11 02:04:43 +0800347
Junxiao Shib55e5d32018-07-18 13:32:00 -0600348 auto interestSmall = *makeInterest("/root/test/small/valid", true);
Yanbiao Li4b4f7542016-03-11 02:04:43 +0800349 face.receive(interestSmall);
Davide Pesavento0f830802018-01-16 23:58:58 -0500350 advanceClocks(1_ms, 10);
Yanbiao Li4b4f7542016-03-11 02:04:43 +0800351
352 // one data packet is generated and sent to both places
Davide Pesavento3c34ec12021-03-28 21:50:06 -0400353 BOOST_REQUIRE_EQUAL(face.sentData.size(), 1);
Yanbiao Li4b4f7542016-03-11 02:04:43 +0800354 BOOST_CHECK_EQUAL(storage.size(), 1);
355
356 auto fetchedData = storage.find(interestSmall);
357 BOOST_REQUIRE(fetchedData != nullptr);
Junxiao Shi72c0c642018-04-20 15:41:09 +0000358 BOOST_CHECK_EQUAL(face.sentData[0].wireEncode(), fetchedData->wireEncode());
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700359
Junxiao Shi85d90832016-08-04 03:19:46 +0000360 face.receive(*makeInterest(Name("/root/test/small/valid").appendVersion(10))); // should be ignored
361 face.receive(*makeInterest(Name("/root/test/small/valid").appendSegment(20))); // should be ignored
Davide Pesavento0f830802018-01-16 23:58:58 -0500362 advanceClocks(1_ms, 10);
Davide Pesavento3c34ec12021-03-28 21:50:06 -0400363 BOOST_REQUIRE_EQUAL(face.sentData.size(), 1);
Yanbiao Li4b4f7542016-03-11 02:04:43 +0800364 BOOST_CHECK_EQUAL(storage.size(), 1);
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700365
Alexander Afanasyev9bdbb832015-12-30 12:54:22 -0800366 Block content = face.sentData[0].getContent();
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700367 BOOST_CHECK_NO_THROW(content.parse());
368
Junxiao Shi72c0c642018-04-20 15:41:09 +0000369 BOOST_REQUIRE_EQUAL(content.elements().size(), 3);
370 BOOST_CHECK_EQUAL(content.elements()[0], smallBlock);
371 BOOST_CHECK_EQUAL(content.elements()[1], smallBlock);
372 BOOST_CHECK_EQUAL(content.elements()[2], smallBlock);
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700373
Yanbiao Li4b4f7542016-03-11 02:04:43 +0800374 storage.erase("/", true); // clear the storage
Alexander Afanasyev9bdbb832015-12-30 12:54:22 -0800375 face.sentData.clear();
Junxiao Shi85d90832016-08-04 03:19:46 +0000376 face.receive(*makeInterest("/root/test/large/valid"));
Davide Pesavento0f830802018-01-16 23:58:58 -0500377 advanceClocks(1_ms, 10);
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700378
Yanbiao Li4b4f7542016-03-11 02:04:43 +0800379 // two data packets are generated, the first one will be sent to both places
380 // while the second one will only be inserted into the in-memory storage
Davide Pesavento3c34ec12021-03-28 21:50:06 -0400381 BOOST_REQUIRE_EQUAL(face.sentData.size(), 1);
382 BOOST_REQUIRE_EQUAL(storage.size(), 2);
Yanbiao Li4b4f7542016-03-11 02:04:43 +0800383
384 // segment0 should be sent through the face
385 const auto& component = face.sentData[0].getName().at(-1);
386 BOOST_CHECK(component.isSegment());
387 BOOST_CHECK_EQUAL(component.toSegment(), 0);
388
389 std::vector<Data> dataInStorage;
390 std::copy(storage.begin(), storage.end(), std::back_inserter(dataInStorage));
391
392 // the Data sent through the face should be the same as the first Data in the storage
393 BOOST_CHECK_EQUAL(face.sentData[0].getName(), dataInStorage[0].getName());
Junxiao Shi72c0c642018-04-20 15:41:09 +0000394 BOOST_CHECK_EQUAL(face.sentData[0].getContent(), dataInStorage[0].getContent());
Yanbiao Li4b4f7542016-03-11 02:04:43 +0800395
396 content = [&dataInStorage] () -> Block {
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700397 EncodingBuffer encoder;
Davide Pesavento258d51a2022-02-27 21:26:28 -0500398 size_t valueLength = encoder.prependBytes(dataInStorage[1].getContent().value_bytes());
399 valueLength += encoder.prependBytes(dataInStorage[0].getContent().value_bytes());
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700400 encoder.prependVarNumber(valueLength);
401 encoder.prependVarNumber(tlv::Content);
402 return encoder.block();
403 }();
404
405 BOOST_CHECK_NO_THROW(content.parse());
Junxiao Shi72c0c642018-04-20 15:41:09 +0000406 BOOST_REQUIRE_EQUAL(content.elements().size(), 3);
407 BOOST_CHECK_EQUAL(content.elements()[0], largeBlock);
408 BOOST_CHECK_EQUAL(content.elements()[1], largeBlock);
409 BOOST_CHECK_EQUAL(content.elements()[2], largeBlock);
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700410
Yanbiao Li4b4f7542016-03-11 02:04:43 +0800411 storage.erase("/", true);// clear the storage
Alexander Afanasyev9bdbb832015-12-30 12:54:22 -0800412 face.sentData.clear();
Junxiao Shi85d90832016-08-04 03:19:46 +0000413 face.receive(*makeInterest("/root/test/reject/%80%00/valid")); // returns nack
Davide Pesavento0f830802018-01-16 23:58:58 -0500414 advanceClocks(1_ms);
Davide Pesavento3c34ec12021-03-28 21:50:06 -0400415
416 BOOST_REQUIRE_EQUAL(face.sentData.size(), 1);
Junxiao Shi72c0c642018-04-20 15:41:09 +0000417 BOOST_CHECK_EQUAL(face.sentData[0].getContentType(), tlv::ContentType_Nack);
Alexander Afanasyev9bdbb832015-12-30 12:54:22 -0800418 BOOST_CHECK_EQUAL(ControlResponse(face.sentData[0].getContent().blockFromValue()).getCode(), 400);
Yanbiao Li4b4f7542016-03-11 02:04:43 +0800419 BOOST_CHECK_EQUAL(storage.size(), 0); // the nack packet will not be inserted into the in-memory storage
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700420}
421
Junxiao Shid97c9532017-04-27 16:17:04 +0000422BOOST_AUTO_TEST_CASE(NotificationStream)
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700423{
Davide Pesaventofbea4fc2022-02-08 07:26:04 -0500424 const Block block({0x82, 0x01, 0x02});
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700425 auto post = dispatcher.addNotificationStream("test");
426
427 post(block);
Davide Pesavento0f830802018-01-16 23:58:58 -0500428 advanceClocks(1_ms);
Alexander Afanasyev9bdbb832015-12-30 12:54:22 -0800429 BOOST_CHECK_EQUAL(face.sentData.size(), 0);
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700430
431 dispatcher.addTopPrefix("/root");
Davide Pesavento0f830802018-01-16 23:58:58 -0500432 advanceClocks(1_ms);
Alexander Afanasyev9bdbb832015-12-30 12:54:22 -0800433 face.sentData.clear();
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700434
435 post(block);
Davide Pesavento0f830802018-01-16 23:58:58 -0500436 advanceClocks(1_ms);
Alexander Afanasyev9bdbb832015-12-30 12:54:22 -0800437 BOOST_CHECK_EQUAL(face.sentData.size(), 1);
Yanbiao Li4b4f7542016-03-11 02:04:43 +0800438 BOOST_CHECK_EQUAL(storage.size(), 1);
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700439
440 post(block);
441 post(block);
442 post(block);
Davide Pesavento0f830802018-01-16 23:58:58 -0500443 advanceClocks(1_ms, 10);
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700444
Junxiao Shi72c0c642018-04-20 15:41:09 +0000445 BOOST_REQUIRE_EQUAL(face.sentData.size(), 4);
Eric Newberryc25e4632021-02-11 10:48:11 -0800446 BOOST_CHECK_EQUAL(face.sentData[0].getName(), "/root/test/seq=0");
447 BOOST_CHECK_EQUAL(face.sentData[1].getName(), "/root/test/seq=1");
448 BOOST_CHECK_EQUAL(face.sentData[2].getName(), "/root/test/seq=2");
449 BOOST_CHECK_EQUAL(face.sentData[3].getName(), "/root/test/seq=3");
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700450
Junxiao Shi72c0c642018-04-20 15:41:09 +0000451 BOOST_CHECK_EQUAL(face.sentData[0].getContent().blockFromValue(), block);
452 BOOST_CHECK_EQUAL(face.sentData[1].getContent().blockFromValue(), block);
453 BOOST_CHECK_EQUAL(face.sentData[2].getContent().blockFromValue(), block);
454 BOOST_CHECK_EQUAL(face.sentData[3].getContent().blockFromValue(), block);
Yanbiao Li4b4f7542016-03-11 02:04:43 +0800455
456 // each version of notification will be sent to both places
457 std::vector<Data> dataInStorage;
458 std::copy(storage.begin(), storage.end(), std::back_inserter(dataInStorage));
Junxiao Shi72c0c642018-04-20 15:41:09 +0000459 BOOST_REQUIRE_EQUAL(dataInStorage.size(), 4);
Eric Newberryc25e4632021-02-11 10:48:11 -0800460 BOOST_CHECK_EQUAL(dataInStorage[0].getName(), "/root/test/seq=0");
461 BOOST_CHECK_EQUAL(dataInStorage[1].getName(), "/root/test/seq=1");
462 BOOST_CHECK_EQUAL(dataInStorage[2].getName(), "/root/test/seq=2");
463 BOOST_CHECK_EQUAL(dataInStorage[3].getName(), "/root/test/seq=3");
Yanbiao Li4b4f7542016-03-11 02:04:43 +0800464
Junxiao Shi72c0c642018-04-20 15:41:09 +0000465 BOOST_CHECK_EQUAL(dataInStorage[0].getContent().blockFromValue(), block);
466 BOOST_CHECK_EQUAL(dataInStorage[1].getContent().blockFromValue(), block);
467 BOOST_CHECK_EQUAL(dataInStorage[2].getContent().blockFromValue(), block);
468 BOOST_CHECK_EQUAL(dataInStorage[3].getContent().blockFromValue(), block);
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700469}
470
Yanbiao Li4b4f7542016-03-11 02:04:43 +0800471BOOST_AUTO_TEST_SUITE_END() // TestDispatcher
472BOOST_AUTO_TEST_SUITE_END() // Mgmt
Yanbiao Li8ee37ed2015-05-19 12:44:04 -0700473
Davide Pesavento47ce2ee2023-05-09 01:33:33 -0400474} // namespace ndn::tests