Zhuo Li | b355889 | 2016-08-12 15:51:12 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Junxiao Shi | b54aabd | 2018-04-16 19:36:24 +0000 | [diff] [blame] | 2 | /* |
Junxiao Shi | fd2d101 | 2022-01-11 18:20:38 +0000 | [diff] [blame] | 3 | * Copyright (c) 2014-2022, Arizona Board of Regents. |
Zhuo Li | b355889 | 2016-08-12 15:51:12 -0700 | [diff] [blame] | 4 | * |
| 5 | * This file is part of ndn-tools (Named Data Networking Essential Tools). |
| 6 | * See AUTHORS.md for complete list of ndn-tools authors and contributors. |
| 7 | * |
| 8 | * ndn-tools is free software: you can redistribute it and/or modify it under the terms |
| 9 | * of the GNU General Public License as published by the Free Software Foundation, |
| 10 | * either version 3 of the License, or (at your option) any later version. |
| 11 | * |
| 12 | * ndn-tools is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 13 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 14 | * PURPOSE. See the GNU General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License along with |
| 17 | * ndn-tools, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 18 | */ |
| 19 | |
| 20 | #include "tools/peek/ndnpeek/ndnpeek.hpp" |
| 21 | |
| 22 | #include "tests/test-common.hpp" |
Davide Pesavento | 6677762 | 2020-10-09 18:46:03 -0400 | [diff] [blame] | 23 | #include "tests/io-fixture.hpp" |
Davide Pesavento | bf28cd7 | 2017-08-13 17:22:47 -0400 | [diff] [blame] | 24 | |
Zhuo Li | b355889 | 2016-08-12 15:51:12 -0700 | [diff] [blame] | 25 | #include <ndn-cxx/util/dummy-client-face.hpp> |
| 26 | |
| 27 | #include <boost/mpl/vector.hpp> |
Davide Pesavento | a8600b0 | 2019-12-22 18:52:36 -0500 | [diff] [blame] | 28 | #if BOOST_VERSION >= 105900 |
| 29 | #include <boost/test/tools/output_test_stream.hpp> |
| 30 | #else |
| 31 | #include <boost/test/output_test_stream.hpp> |
| 32 | #endif |
Zhuo Li | b355889 | 2016-08-12 15:51:12 -0700 | [diff] [blame] | 33 | |
| 34 | namespace ndn { |
| 35 | namespace peek { |
| 36 | namespace tests { |
| 37 | |
| 38 | using namespace ndn::tests; |
| 39 | using boost::test_tools::output_test_stream; |
| 40 | |
| 41 | class CoutRedirector : noncopyable |
| 42 | { |
| 43 | public: |
| 44 | explicit |
| 45 | CoutRedirector(std::ostream& destination) |
| 46 | { |
| 47 | m_originalBuf = std::cout.rdbuf(destination.rdbuf()); |
| 48 | } |
| 49 | |
| 50 | ~CoutRedirector() |
| 51 | { |
| 52 | std::cout.rdbuf(m_originalBuf); |
| 53 | } |
| 54 | |
| 55 | private: |
| 56 | std::streambuf* m_originalBuf; |
| 57 | }; |
| 58 | |
Davide Pesavento | 9602823 | 2019-08-17 01:26:13 -0400 | [diff] [blame] | 59 | static PeekOptions |
| 60 | makeDefaultOptions() |
| 61 | { |
| 62 | PeekOptions opt; |
| 63 | opt.name = "/peek/test"; |
| 64 | return opt; |
| 65 | } |
| 66 | |
Davide Pesavento | 6677762 | 2020-10-09 18:46:03 -0400 | [diff] [blame] | 67 | class NdnPeekFixture : public IoFixture |
Zhuo Li | b355889 | 2016-08-12 15:51:12 -0700 | [diff] [blame] | 68 | { |
| 69 | protected: |
Zhuo Li | b355889 | 2016-08-12 15:51:12 -0700 | [diff] [blame] | 70 | void |
Davide Pesavento | 9602823 | 2019-08-17 01:26:13 -0400 | [diff] [blame] | 71 | initialize(const PeekOptions& opts = makeDefaultOptions()) |
Zhuo Li | b355889 | 2016-08-12 15:51:12 -0700 | [diff] [blame] | 72 | { |
| 73 | peek = make_unique<NdnPeek>(face, opts); |
| 74 | } |
| 75 | |
| 76 | protected: |
Davide Pesavento | 6677762 | 2020-10-09 18:46:03 -0400 | [diff] [blame] | 77 | ndn::util::DummyClientFace face{m_io}; |
Zhuo Li | b355889 | 2016-08-12 15:51:12 -0700 | [diff] [blame] | 78 | output_test_stream output; |
| 79 | unique_ptr<NdnPeek> peek; |
| 80 | }; |
| 81 | |
Zhuo Li | b355889 | 2016-08-12 15:51:12 -0700 | [diff] [blame] | 82 | class OutputFull |
| 83 | { |
| 84 | public: |
| 85 | static PeekOptions |
| 86 | makeOptions() |
| 87 | { |
| 88 | return makeDefaultOptions(); |
| 89 | } |
| 90 | |
| 91 | static void |
| 92 | checkOutput(output_test_stream& output, const Data& data) |
| 93 | { |
| 94 | const Block& block = data.wireEncode(); |
| 95 | std::string expected(reinterpret_cast<const char*>(block.wire()), block.size()); |
| 96 | BOOST_CHECK(output.is_equal(expected)); |
| 97 | } |
| 98 | |
| 99 | static void |
| 100 | checkOutput(output_test_stream& output, const lp::Nack& nack) |
| 101 | { |
| 102 | const Block& block = nack.getHeader().wireEncode(); |
| 103 | std::string expected(reinterpret_cast<const char*>(block.wire()), block.size()); |
| 104 | BOOST_CHECK(output.is_equal(expected)); |
| 105 | } |
| 106 | }; |
| 107 | |
| 108 | class OutputPayloadOnly |
| 109 | { |
| 110 | public: |
| 111 | static PeekOptions |
| 112 | makeOptions() |
| 113 | { |
| 114 | PeekOptions opt = makeDefaultOptions(); |
| 115 | opt.wantPayloadOnly = true; |
| 116 | return opt; |
| 117 | } |
| 118 | |
| 119 | static void |
| 120 | checkOutput(output_test_stream& output, const Data& data) |
| 121 | { |
| 122 | const Block& block = data.getContent(); |
| 123 | std::string expected(reinterpret_cast<const char*>(block.value()), block.value_size()); |
| 124 | BOOST_CHECK(output.is_equal(expected)); |
| 125 | } |
| 126 | |
| 127 | static void |
| 128 | checkOutput(output_test_stream& output, const lp::Nack& nack) |
| 129 | { |
| 130 | std::string expected = boost::lexical_cast<std::string>(nack.getReason()) + '\n'; |
| 131 | BOOST_CHECK(output.is_equal(expected)); |
| 132 | } |
| 133 | }; |
| 134 | |
| 135 | BOOST_AUTO_TEST_SUITE(Peek) |
| 136 | BOOST_FIXTURE_TEST_SUITE(TestNdnPeek, NdnPeekFixture) |
| 137 | |
| 138 | using OutputChecks = boost::mpl::vector<OutputFull, OutputPayloadOnly>; |
| 139 | |
| 140 | BOOST_AUTO_TEST_CASE_TEMPLATE(Default, OutputCheck, OutputChecks) |
| 141 | { |
| 142 | auto options = OutputCheck::makeOptions(); |
| 143 | initialize(options); |
| 144 | |
Junxiao Shi | b54aabd | 2018-04-16 19:36:24 +0000 | [diff] [blame] | 145 | auto data = makeData(options.name); |
Davide Pesavento | 5998428 | 2022-02-16 22:41:03 -0500 | [diff] [blame^] | 146 | data->setContent({'n', 'd', 'n', 'p', 'e', 'e', 'k'}); |
Zhuo Li | b355889 | 2016-08-12 15:51:12 -0700 | [diff] [blame] | 147 | |
| 148 | { |
| 149 | CoutRedirector redir(output); |
| 150 | peek->start(); |
Davide Pesavento | 6677762 | 2020-10-09 18:46:03 -0400 | [diff] [blame] | 151 | this->advanceClocks(25_ms, 4); |
Zhuo Li | b355889 | 2016-08-12 15:51:12 -0700 | [diff] [blame] | 152 | face.receive(*data); |
| 153 | } |
| 154 | |
| 155 | OutputCheck::checkOutput(output, *data); |
| 156 | BOOST_REQUIRE_EQUAL(face.sentInterests.size(), 1); |
Junxiao Shi | fd2d101 | 2022-01-11 18:20:38 +0000 | [diff] [blame] | 157 | const auto& interest = face.sentInterests.back(); |
| 158 | BOOST_CHECK_EQUAL(interest.getCanBePrefix(), false); |
| 159 | BOOST_CHECK_EQUAL(interest.getMustBeFresh(), false); |
| 160 | BOOST_CHECK_EQUAL(interest.getForwardingHint().empty(), true); |
| 161 | BOOST_CHECK_EQUAL(interest.getInterestLifetime(), DEFAULT_INTEREST_LIFETIME); |
| 162 | BOOST_CHECK(interest.getHopLimit() == nullopt); |
| 163 | BOOST_CHECK(!interest.hasApplicationParameters()); |
Davide Pesavento | 87434be | 2019-07-25 19:04:23 -0400 | [diff] [blame] | 164 | BOOST_CHECK(peek->getResult() == NdnPeek::Result::DATA); |
Zhuo Li | b355889 | 2016-08-12 15:51:12 -0700 | [diff] [blame] | 165 | } |
| 166 | |
Junxiao Shi | b54aabd | 2018-04-16 19:36:24 +0000 | [diff] [blame] | 167 | BOOST_AUTO_TEST_CASE_TEMPLATE(NonDefault, OutputCheck, OutputChecks) |
Zhuo Li | b355889 | 2016-08-12 15:51:12 -0700 | [diff] [blame] | 168 | { |
| 169 | auto options = OutputCheck::makeOptions(); |
Junxiao Shi | b54aabd | 2018-04-16 19:36:24 +0000 | [diff] [blame] | 170 | options.canBePrefix = true; |
Zhuo Li | b355889 | 2016-08-12 15:51:12 -0700 | [diff] [blame] | 171 | options.mustBeFresh = true; |
Junxiao Shi | fd2d101 | 2022-01-11 18:20:38 +0000 | [diff] [blame] | 172 | options.forwardingHint.emplace_back("/fh"); |
Junxiao Shi | b54aabd | 2018-04-16 19:36:24 +0000 | [diff] [blame] | 173 | options.interestLifetime = 200_ms; |
Davide Pesavento | c214e07 | 2019-08-17 01:33:28 -0400 | [diff] [blame] | 174 | options.hopLimit = 64; |
Zhuo Li | b355889 | 2016-08-12 15:51:12 -0700 | [diff] [blame] | 175 | initialize(options); |
| 176 | |
Junxiao Shi | b54aabd | 2018-04-16 19:36:24 +0000 | [diff] [blame] | 177 | auto data = makeData(Name(options.name).append("suffix")); |
Junxiao Shi | 9619295 | 2019-05-22 15:45:12 +0000 | [diff] [blame] | 178 | data->setFreshnessPeriod(1_s); |
Davide Pesavento | 5998428 | 2022-02-16 22:41:03 -0500 | [diff] [blame^] | 179 | data->setContent({'n', 'd', 'n', 'p', 'e', 'e', 'k'}); |
Zhuo Li | b355889 | 2016-08-12 15:51:12 -0700 | [diff] [blame] | 180 | |
| 181 | { |
| 182 | CoutRedirector redir(output); |
| 183 | peek->start(); |
Davide Pesavento | 6677762 | 2020-10-09 18:46:03 -0400 | [diff] [blame] | 184 | this->advanceClocks(25_ms, 4); |
Zhuo Li | b355889 | 2016-08-12 15:51:12 -0700 | [diff] [blame] | 185 | face.receive(*data); |
| 186 | } |
| 187 | |
| 188 | OutputCheck::checkOutput(output, *data); |
| 189 | BOOST_REQUIRE_EQUAL(face.sentInterests.size(), 1); |
Junxiao Shi | fd2d101 | 2022-01-11 18:20:38 +0000 | [diff] [blame] | 190 | const auto& interest = face.sentInterests.back(); |
| 191 | BOOST_CHECK_EQUAL(interest.getCanBePrefix(), true); |
| 192 | BOOST_CHECK_EQUAL(interest.getMustBeFresh(), true); |
| 193 | BOOST_TEST(interest.getForwardingHint() == std::vector<Name>({"/fh"}), |
| 194 | boost::test_tools::per_element()); |
| 195 | BOOST_CHECK_EQUAL(interest.getInterestLifetime(), 200_ms); |
| 196 | BOOST_CHECK(interest.getHopLimit() == 64); |
| 197 | BOOST_CHECK(!interest.hasApplicationParameters()); |
Davide Pesavento | 87434be | 2019-07-25 19:04:23 -0400 | [diff] [blame] | 198 | BOOST_CHECK(peek->getResult() == NdnPeek::Result::DATA); |
Zhuo Li | b355889 | 2016-08-12 15:51:12 -0700 | [diff] [blame] | 199 | } |
| 200 | |
| 201 | BOOST_AUTO_TEST_CASE_TEMPLATE(ReceiveNackWithReason, OutputCheck, OutputChecks) |
| 202 | { |
| 203 | auto options = OutputCheck::makeOptions(); |
| 204 | initialize(options); |
| 205 | lp::Nack nack; |
| 206 | |
| 207 | { |
| 208 | CoutRedirector redir(output); |
| 209 | peek->start(); |
Davide Pesavento | 6677762 | 2020-10-09 18:46:03 -0400 | [diff] [blame] | 210 | this->advanceClocks(25_ms, 4); |
Zhuo Li | b355889 | 2016-08-12 15:51:12 -0700 | [diff] [blame] | 211 | nack = makeNack(face.sentInterests.at(0), lp::NackReason::NO_ROUTE); |
| 212 | face.receive(nack); |
| 213 | } |
| 214 | |
| 215 | OutputCheck::checkOutput(output, nack); |
| 216 | BOOST_CHECK_EQUAL(face.sentInterests.size(), 1); |
Davide Pesavento | 87434be | 2019-07-25 19:04:23 -0400 | [diff] [blame] | 217 | BOOST_CHECK(peek->getResult() == NdnPeek::Result::NACK); |
Zhuo Li | b355889 | 2016-08-12 15:51:12 -0700 | [diff] [blame] | 218 | } |
| 219 | |
| 220 | BOOST_AUTO_TEST_CASE_TEMPLATE(ReceiveNackWithoutReason, OutputCheck, OutputChecks) |
| 221 | { |
| 222 | auto options = OutputCheck::makeOptions(); |
| 223 | initialize(options); |
| 224 | lp::Nack nack; |
| 225 | |
| 226 | { |
| 227 | CoutRedirector redir(output); |
| 228 | peek->start(); |
Davide Pesavento | 6677762 | 2020-10-09 18:46:03 -0400 | [diff] [blame] | 229 | this->advanceClocks(25_ms, 4); |
Zhuo Li | b355889 | 2016-08-12 15:51:12 -0700 | [diff] [blame] | 230 | nack = makeNack(face.sentInterests.at(0), lp::NackReason::NONE); |
| 231 | face.receive(nack); |
| 232 | } |
| 233 | |
| 234 | OutputCheck::checkOutput(output, nack); |
| 235 | BOOST_CHECK_EQUAL(face.sentInterests.size(), 1); |
Davide Pesavento | 87434be | 2019-07-25 19:04:23 -0400 | [diff] [blame] | 236 | BOOST_CHECK(peek->getResult() == NdnPeek::Result::NACK); |
Zhuo Li | b355889 | 2016-08-12 15:51:12 -0700 | [diff] [blame] | 237 | } |
| 238 | |
Davide Pesavento | 9602823 | 2019-08-17 01:26:13 -0400 | [diff] [blame] | 239 | BOOST_AUTO_TEST_CASE(ApplicationParameters) |
| 240 | { |
| 241 | auto options = makeDefaultOptions(); |
| 242 | options.applicationParameters = make_shared<Buffer>("hello", 5); |
| 243 | initialize(options); |
| 244 | |
| 245 | peek->start(); |
Davide Pesavento | 6677762 | 2020-10-09 18:46:03 -0400 | [diff] [blame] | 246 | this->advanceClocks(25_ms, 4); |
Davide Pesavento | 9602823 | 2019-08-17 01:26:13 -0400 | [diff] [blame] | 247 | |
| 248 | BOOST_REQUIRE_EQUAL(face.sentInterests.size(), 1); |
| 249 | BOOST_CHECK_EQUAL(face.sentInterests.back().getCanBePrefix(), false); |
| 250 | BOOST_CHECK_EQUAL(face.sentInterests.back().getMustBeFresh(), false); |
| 251 | BOOST_CHECK_EQUAL(face.sentInterests.back().getForwardingHint().empty(), true); |
| 252 | BOOST_CHECK_EQUAL(face.sentInterests.back().getInterestLifetime(), DEFAULT_INTEREST_LIFETIME); |
| 253 | BOOST_CHECK_EQUAL(face.sentInterests.back().hasApplicationParameters(), true); |
| 254 | BOOST_CHECK_EQUAL(face.sentInterests.back().getApplicationParameters(), "2405 68656C6C6F"_block); |
| 255 | } |
| 256 | |
Davide Pesavento | 65d1155 | 2019-06-09 19:15:50 -0400 | [diff] [blame] | 257 | BOOST_AUTO_TEST_CASE(NoTimeout) |
Zhuo Li | b355889 | 2016-08-12 15:51:12 -0700 | [diff] [blame] | 258 | { |
| 259 | auto options = makeDefaultOptions(); |
Davide Pesavento | 65d1155 | 2019-06-09 19:15:50 -0400 | [diff] [blame] | 260 | options.interestLifetime = 1_s; |
| 261 | options.timeout = nullopt; |
Zhuo Li | b355889 | 2016-08-12 15:51:12 -0700 | [diff] [blame] | 262 | initialize(options); |
| 263 | |
Davide Pesavento | 65d1155 | 2019-06-09 19:15:50 -0400 | [diff] [blame] | 264 | BOOST_CHECK_EQUAL(face.sentInterests.size(), 0); |
Zhuo Li | b355889 | 2016-08-12 15:51:12 -0700 | [diff] [blame] | 265 | |
| 266 | peek->start(); |
Davide Pesavento | 6677762 | 2020-10-09 18:46:03 -0400 | [diff] [blame] | 267 | this->advanceClocks(100_ms, 9); |
Zhuo Li | b355889 | 2016-08-12 15:51:12 -0700 | [diff] [blame] | 268 | BOOST_CHECK_EQUAL(face.sentInterests.size(), 1); |
Davide Pesavento | 65d1155 | 2019-06-09 19:15:50 -0400 | [diff] [blame] | 269 | BOOST_CHECK_EQUAL(face.getNPendingInterests(), 1); |
Davide Pesavento | 87434be | 2019-07-25 19:04:23 -0400 | [diff] [blame] | 270 | BOOST_CHECK(peek->getResult() == NdnPeek::Result::UNKNOWN); |
Davide Pesavento | 65d1155 | 2019-06-09 19:15:50 -0400 | [diff] [blame] | 271 | |
Davide Pesavento | 6677762 | 2020-10-09 18:46:03 -0400 | [diff] [blame] | 272 | this->advanceClocks(100_ms, 2); |
Davide Pesavento | 65d1155 | 2019-06-09 19:15:50 -0400 | [diff] [blame] | 273 | BOOST_CHECK_EQUAL(face.sentInterests.size(), 1); |
| 274 | BOOST_CHECK_EQUAL(face.getNPendingInterests(), 0); |
Davide Pesavento | 87434be | 2019-07-25 19:04:23 -0400 | [diff] [blame] | 275 | BOOST_CHECK(peek->getResult() == NdnPeek::Result::TIMEOUT); |
Zhuo Li | b355889 | 2016-08-12 15:51:12 -0700 | [diff] [blame] | 276 | } |
| 277 | |
| 278 | BOOST_AUTO_TEST_CASE(TimeoutLessThanLifetime) |
| 279 | { |
| 280 | auto options = makeDefaultOptions(); |
Junxiao Shi | b54aabd | 2018-04-16 19:36:24 +0000 | [diff] [blame] | 281 | options.interestLifetime = 200_ms; |
| 282 | options.timeout = 100_ms; |
Zhuo Li | b355889 | 2016-08-12 15:51:12 -0700 | [diff] [blame] | 283 | initialize(options); |
| 284 | |
Davide Pesavento | 65d1155 | 2019-06-09 19:15:50 -0400 | [diff] [blame] | 285 | BOOST_CHECK_EQUAL(face.sentInterests.size(), 0); |
Zhuo Li | b355889 | 2016-08-12 15:51:12 -0700 | [diff] [blame] | 286 | |
| 287 | peek->start(); |
Davide Pesavento | 6677762 | 2020-10-09 18:46:03 -0400 | [diff] [blame] | 288 | this->advanceClocks(25_ms, 6); |
Zhuo Li | b355889 | 2016-08-12 15:51:12 -0700 | [diff] [blame] | 289 | |
| 290 | BOOST_CHECK_EQUAL(face.sentInterests.size(), 1); |
Davide Pesavento | 65d1155 | 2019-06-09 19:15:50 -0400 | [diff] [blame] | 291 | BOOST_CHECK_EQUAL(face.getNPendingInterests(), 0); |
Davide Pesavento | 87434be | 2019-07-25 19:04:23 -0400 | [diff] [blame] | 292 | BOOST_CHECK(peek->getResult() == NdnPeek::Result::TIMEOUT); |
Zhuo Li | b355889 | 2016-08-12 15:51:12 -0700 | [diff] [blame] | 293 | } |
| 294 | |
| 295 | BOOST_AUTO_TEST_CASE(TimeoutGreaterThanLifetime) |
| 296 | { |
| 297 | auto options = makeDefaultOptions(); |
Junxiao Shi | b54aabd | 2018-04-16 19:36:24 +0000 | [diff] [blame] | 298 | options.interestLifetime = 50_ms; |
| 299 | options.timeout = 200_ms; |
Zhuo Li | b355889 | 2016-08-12 15:51:12 -0700 | [diff] [blame] | 300 | initialize(options); |
| 301 | |
Davide Pesavento | 65d1155 | 2019-06-09 19:15:50 -0400 | [diff] [blame] | 302 | BOOST_CHECK_EQUAL(face.sentInterests.size(), 0); |
Zhuo Li | b355889 | 2016-08-12 15:51:12 -0700 | [diff] [blame] | 303 | |
| 304 | peek->start(); |
Davide Pesavento | 6677762 | 2020-10-09 18:46:03 -0400 | [diff] [blame] | 305 | this->advanceClocks(25_ms, 4); |
Zhuo Li | b355889 | 2016-08-12 15:51:12 -0700 | [diff] [blame] | 306 | |
| 307 | BOOST_CHECK_EQUAL(face.sentInterests.size(), 1); |
Davide Pesavento | 65d1155 | 2019-06-09 19:15:50 -0400 | [diff] [blame] | 308 | BOOST_CHECK_EQUAL(face.getNPendingInterests(), 0); |
Davide Pesavento | 87434be | 2019-07-25 19:04:23 -0400 | [diff] [blame] | 309 | BOOST_CHECK(peek->getResult() == NdnPeek::Result::TIMEOUT); |
Zhuo Li | b355889 | 2016-08-12 15:51:12 -0700 | [diff] [blame] | 310 | } |
| 311 | |
Davide Pesavento | 9602823 | 2019-08-17 01:26:13 -0400 | [diff] [blame] | 312 | BOOST_AUTO_TEST_CASE(OversizedPacket) |
| 313 | { |
| 314 | auto options = makeDefaultOptions(); |
| 315 | options.applicationParameters = make_shared<Buffer>(MAX_NDN_PACKET_SIZE); |
| 316 | initialize(options); |
| 317 | |
| 318 | peek->start(); |
Davide Pesavento | 6677762 | 2020-10-09 18:46:03 -0400 | [diff] [blame] | 319 | BOOST_CHECK_THROW(this->advanceClocks(1_ms, 10), Face::OversizedPacketError); |
Davide Pesavento | 9602823 | 2019-08-17 01:26:13 -0400 | [diff] [blame] | 320 | |
| 321 | BOOST_CHECK_EQUAL(face.sentInterests.size(), 0); |
| 322 | } |
| 323 | |
Zhuo Li | b355889 | 2016-08-12 15:51:12 -0700 | [diff] [blame] | 324 | BOOST_AUTO_TEST_SUITE_END() // TestNdnPeek |
| 325 | BOOST_AUTO_TEST_SUITE_END() // Peek |
| 326 | |
| 327 | } // namespace tests |
| 328 | } // namespace peek |
| 329 | } // namespace ndn |