Junxiao Shi | dc2d6d2 | 2016-08-04 14:30:23 +0000 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
| 3 | * Copyright (c) 2013-2016 Regents of the University of California. |
| 4 | * |
| 5 | * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions). |
| 6 | * |
| 7 | * 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. |
| 10 | * |
| 11 | * 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. |
| 14 | * |
| 15 | * 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. |
| 20 | */ |
| 21 | |
| 22 | #include "security/command-interest-validator.hpp" |
| 23 | #include "security/signing-helpers.hpp" |
Junxiao Shi | dc2d6d2 | 2016-08-04 14:30:23 +0000 | [diff] [blame] | 24 | |
| 25 | #include "boost-test.hpp" |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 26 | #include "dummy-validator.hpp" |
Junxiao Shi | dc2d6d2 | 2016-08-04 14:30:23 +0000 | [diff] [blame] | 27 | #include "../identity-management-time-fixture.hpp" |
| 28 | #include "../make-interest-data.hpp" |
| 29 | |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 30 | #include <boost/lexical_cast.hpp> |
| 31 | |
Junxiao Shi | dc2d6d2 | 2016-08-04 14:30:23 +0000 | [diff] [blame] | 32 | namespace ndn { |
| 33 | namespace security { |
| 34 | namespace tests { |
| 35 | |
| 36 | using namespace ndn::tests; |
| 37 | |
| 38 | class CommandInterestValidatorFixture : public IdentityManagementTimeFixture |
| 39 | { |
| 40 | protected: |
| 41 | CommandInterestValidatorFixture() |
| 42 | { |
| 43 | this->initialize(CommandInterestValidator::Options{}); |
| 44 | } |
| 45 | |
| 46 | void |
| 47 | initialize(const CommandInterestValidator::Options& options) |
| 48 | { |
| 49 | auto inner = make_unique<DummyValidator>(); |
| 50 | this->inner = inner.get(); |
| 51 | this->validator = make_unique<CommandInterestValidator>(std::move(inner), options); |
| 52 | } |
| 53 | |
| 54 | Name |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 55 | makeIdentity(uint64_t identity) |
Junxiao Shi | dc2d6d2 | 2016-08-04 14:30:23 +0000 | [diff] [blame] | 56 | { |
| 57 | Name name("/localhost/CommandInterestValidatorIdentity"); |
| 58 | name.appendSequenceNumber(identity); |
| 59 | BOOST_REQUIRE(m_keyChain.doesIdentityExist(name) || this->addIdentity(name)); |
| 60 | return name; |
| 61 | } |
| 62 | |
| 63 | shared_ptr<Interest> |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 64 | makeCommandInterest(uint64_t identity = 0) |
Junxiao Shi | dc2d6d2 | 2016-08-04 14:30:23 +0000 | [diff] [blame] | 65 | { |
| 66 | auto interest = makeInterest("/CommandInterestPrefix"); |
| 67 | m_keyChain.sign(*interest, signingByIdentity(makeIdentity(identity))); |
| 68 | BOOST_TEST_MESSAGE("makeCommandInterest " << interest->getName()); |
| 69 | return interest; |
| 70 | } |
| 71 | |
| 72 | /** \brief check that validator accepts interest |
| 73 | * \param interest to be validated |
| 74 | */ |
| 75 | void |
| 76 | assertAccept(const Interest& interest) |
| 77 | { |
| 78 | BOOST_TEST_MESSAGE("assertAccept " << interest.getName()); |
| 79 | int nAccepts = 0; |
| 80 | validator->validate(interest, |
| 81 | [&nAccepts] (const shared_ptr<const Interest>&) { ++nAccepts; }, |
| 82 | [] (const shared_ptr<const Interest>&, const std::string& msg) { |
| 83 | BOOST_ERROR("validation request should succeed but fails with: " << msg); |
| 84 | }); |
| 85 | BOOST_CHECK_EQUAL(nAccepts, 1); |
| 86 | } |
| 87 | |
| 88 | /** \brief check that validator rejects interest |
| 89 | * \param interest to be validated |
| 90 | * \param error if not NONE, further check the error code matches \p error |
| 91 | * if NONE, error code is not checked |
| 92 | */ |
| 93 | void |
| 94 | assertReject(const Interest& interest, CommandInterestValidator::ErrorCode error) |
| 95 | { |
| 96 | BOOST_TEST_MESSAGE("assertReject " << interest.getName()); |
| 97 | int nRejects = 0; |
| 98 | validator->validate(interest, |
| 99 | [] (const shared_ptr<const Interest>&) { |
| 100 | BOOST_ERROR("validation request should fail but succeeds"); |
| 101 | }, |
| 102 | [&nRejects, error] (const shared_ptr<const Interest>&, const std::string& msg) { |
| 103 | ++nRejects; |
| 104 | if (error != CommandInterestValidator::ErrorCode::NONE) { |
| 105 | BOOST_CHECK_EQUAL(msg, boost::lexical_cast<std::string>(error)); |
| 106 | } |
| 107 | }); |
| 108 | BOOST_CHECK_EQUAL(nRejects, 1); |
| 109 | } |
| 110 | |
| 111 | protected: |
| 112 | DummyValidator* inner; |
| 113 | unique_ptr<CommandInterestValidator> validator; |
| 114 | }; |
| 115 | |
Junxiao Shi | dc2d6d2 | 2016-08-04 14:30:23 +0000 | [diff] [blame] | 116 | BOOST_AUTO_TEST_SUITE(Security) |
| 117 | BOOST_FIXTURE_TEST_SUITE(TestCommandInterestValidator, CommandInterestValidatorFixture) |
| 118 | |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 119 | BOOST_AUTO_TEST_SUITE(Accepts) |
| 120 | |
| 121 | BOOST_AUTO_TEST_CASE(Basic) |
Junxiao Shi | dc2d6d2 | 2016-08-04 14:30:23 +0000 | [diff] [blame] | 122 | { |
| 123 | auto i1 = makeCommandInterest(); |
| 124 | assertAccept(*i1); |
| 125 | |
| 126 | advanceClocks(time::milliseconds(5)); |
| 127 | auto i2 = makeCommandInterest(); |
| 128 | assertAccept(*i2); |
| 129 | |
| 130 | advanceClocks(time::seconds(2)); |
| 131 | auto i3 = makeCommandInterest(); |
| 132 | assertAccept(*i3); |
| 133 | } |
| 134 | |
| 135 | BOOST_AUTO_TEST_CASE(DataPassthru) |
| 136 | { |
| 137 | auto d1 = makeData("/data"); |
| 138 | int nAccepts = 0; |
| 139 | validator->validate(*d1, |
| 140 | [&nAccepts] (const shared_ptr<const Data>&) { ++nAccepts; }, |
| 141 | [] (const shared_ptr<const Data>&, const std::string& msg) { |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 142 | BOOST_ERROR("validation request should succeed but fails with: " << msg); |
Junxiao Shi | dc2d6d2 | 2016-08-04 14:30:23 +0000 | [diff] [blame] | 143 | }); |
| 144 | BOOST_CHECK_EQUAL(nAccepts, 1); |
| 145 | } |
| 146 | |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 147 | BOOST_AUTO_TEST_SUITE_END() // Accepts |
| 148 | |
Junxiao Shi | dc2d6d2 | 2016-08-04 14:30:23 +0000 | [diff] [blame] | 149 | BOOST_AUTO_TEST_SUITE(Rejects) |
| 150 | |
| 151 | BOOST_AUTO_TEST_CASE(NameTooShort) |
| 152 | { |
| 153 | auto i1 = makeInterest("/name/too/short"); |
| 154 | assertReject(*i1, CommandInterestValidator::ErrorCode::NAME_TOO_SHORT); |
| 155 | } |
| 156 | |
| 157 | BOOST_AUTO_TEST_CASE(BadTimestamp) |
| 158 | { |
| 159 | auto i1 = makeCommandInterest(); |
Junxiao Shi | 198c381 | 2016-08-12 19:24:18 +0000 | [diff] [blame] | 160 | setNameComponent(*i1, signed_interest::POS_TIMESTAMP, "not-timestamp"); |
Junxiao Shi | dc2d6d2 | 2016-08-04 14:30:23 +0000 | [diff] [blame] | 161 | assertReject(*i1, CommandInterestValidator::ErrorCode::BAD_TIMESTAMP); |
| 162 | } |
| 163 | |
| 164 | BOOST_AUTO_TEST_CASE(BadSigInfo) |
| 165 | { |
| 166 | auto i1 = makeCommandInterest(); |
Junxiao Shi | 198c381 | 2016-08-12 19:24:18 +0000 | [diff] [blame] | 167 | setNameComponent(*i1, signed_interest::POS_SIG_INFO, "not-SignatureInfo"); |
Junxiao Shi | dc2d6d2 | 2016-08-04 14:30:23 +0000 | [diff] [blame] | 168 | assertReject(*i1, CommandInterestValidator::ErrorCode::BAD_SIG_INFO); |
| 169 | } |
| 170 | |
| 171 | BOOST_AUTO_TEST_CASE(MissingKeyLocator) |
| 172 | { |
| 173 | auto i1 = makeCommandInterest(); |
Junxiao Shi | dc2d6d2 | 2016-08-04 14:30:23 +0000 | [diff] [blame] | 174 | SignatureInfo sigInfo; |
Junxiao Shi | 198c381 | 2016-08-12 19:24:18 +0000 | [diff] [blame] | 175 | setNameComponent(*i1, signed_interest::POS_SIG_INFO, |
Junxiao Shi | dc2d6d2 | 2016-08-04 14:30:23 +0000 | [diff] [blame] | 176 | sigInfo.wireEncode().begin(), sigInfo.wireEncode().end()); |
Junxiao Shi | dc2d6d2 | 2016-08-04 14:30:23 +0000 | [diff] [blame] | 177 | assertReject(*i1, CommandInterestValidator::ErrorCode::MISSING_KEY_LOCATOR); |
| 178 | } |
| 179 | |
| 180 | BOOST_AUTO_TEST_CASE(BadKeyLocatorType) |
| 181 | { |
| 182 | auto i1 = makeCommandInterest(); |
Junxiao Shi | dc2d6d2 | 2016-08-04 14:30:23 +0000 | [diff] [blame] | 183 | KeyLocator kl; |
| 184 | kl.setKeyDigest(makeBinaryBlock(tlv::KeyDigest, "\xDD\xDD\xDD\xDD\xDD\xDD\xDD\xDD", 8)); |
| 185 | SignatureInfo sigInfo; |
| 186 | sigInfo.setKeyLocator(kl); |
Junxiao Shi | 198c381 | 2016-08-12 19:24:18 +0000 | [diff] [blame] | 187 | setNameComponent(*i1, signed_interest::POS_SIG_INFO, |
Junxiao Shi | dc2d6d2 | 2016-08-04 14:30:23 +0000 | [diff] [blame] | 188 | sigInfo.wireEncode().begin(), sigInfo.wireEncode().end()); |
Junxiao Shi | dc2d6d2 | 2016-08-04 14:30:23 +0000 | [diff] [blame] | 189 | assertReject(*i1, CommandInterestValidator::ErrorCode::BAD_KEY_LOCATOR_TYPE); |
| 190 | } |
| 191 | |
| 192 | BOOST_AUTO_TEST_CASE(BadCertName) |
| 193 | { |
| 194 | auto i1 = makeCommandInterest(); |
Junxiao Shi | dc2d6d2 | 2016-08-04 14:30:23 +0000 | [diff] [blame] | 195 | KeyLocator kl; |
| 196 | kl.setName("/bad/cert/name"); |
| 197 | SignatureInfo sigInfo; |
| 198 | sigInfo.setKeyLocator(kl); |
Junxiao Shi | 198c381 | 2016-08-12 19:24:18 +0000 | [diff] [blame] | 199 | setNameComponent(*i1, signed_interest::POS_SIG_INFO, |
Junxiao Shi | dc2d6d2 | 2016-08-04 14:30:23 +0000 | [diff] [blame] | 200 | sigInfo.wireEncode().begin(), sigInfo.wireEncode().end()); |
Junxiao Shi | dc2d6d2 | 2016-08-04 14:30:23 +0000 | [diff] [blame] | 201 | assertReject(*i1, CommandInterestValidator::ErrorCode::BAD_CERT_NAME); |
| 202 | } |
| 203 | |
| 204 | BOOST_AUTO_TEST_CASE(InnerReject) |
| 205 | { |
| 206 | inner->setResult(false); |
| 207 | auto i1 = makeCommandInterest(); |
| 208 | assertReject(*i1, CommandInterestValidator::ErrorCode::NONE); |
| 209 | } |
| 210 | |
| 211 | BOOST_AUTO_TEST_CASE(TimestampOutOfGracePositive) |
| 212 | { |
| 213 | CommandInterestValidator::Options options; |
| 214 | options.gracePeriod = time::seconds(15); |
| 215 | initialize(options); |
| 216 | |
| 217 | auto i1 = makeCommandInterest(); // signed at 0s |
| 218 | advanceClocks(time::seconds(16)); // verifying at +16s |
| 219 | assertReject(*i1, CommandInterestValidator::ErrorCode::TIMESTAMP_OUT_OF_GRACE); |
| 220 | |
| 221 | auto i2 = makeCommandInterest(); // signed at +16s |
| 222 | assertAccept(*i2); // verifying at +16s |
| 223 | } |
| 224 | |
| 225 | BOOST_AUTO_TEST_CASE(TimestampOutOfGraceNegative) |
| 226 | { |
| 227 | CommandInterestValidator::Options options; |
| 228 | options.gracePeriod = time::seconds(15); |
| 229 | initialize(options); |
| 230 | |
| 231 | auto i1 = makeCommandInterest(); // signed at 0s |
| 232 | advanceClocks(time::seconds(1)); |
| 233 | auto i2 = makeCommandInterest(); // signed at +1s |
| 234 | advanceClocks(time::seconds(1)); |
| 235 | auto i3 = makeCommandInterest(); // signed at +2s |
| 236 | |
| 237 | systemClock->advance(time::seconds(-18)); // verifying at -16s |
| 238 | assertReject(*i1, CommandInterestValidator::ErrorCode::TIMESTAMP_OUT_OF_GRACE); |
| 239 | |
| 240 | // CommandInterestValidator should not remember i1's timestamp |
| 241 | assertReject(*i2, CommandInterestValidator::ErrorCode::TIMESTAMP_OUT_OF_GRACE); |
| 242 | |
| 243 | // CommandInterestValidator should not remember i2's timestamp, and should treat i3 as initial |
| 244 | advanceClocks(time::seconds(18)); // verifying at +2s |
| 245 | assertAccept(*i3); |
| 246 | } |
| 247 | |
| 248 | BOOST_AUTO_TEST_CASE(TimestampReorderEqual) |
| 249 | { |
| 250 | auto i1 = makeCommandInterest(); // signed at 0s |
| 251 | assertAccept(*i1); |
| 252 | |
Junxiao Shi | 198c381 | 2016-08-12 19:24:18 +0000 | [diff] [blame] | 253 | auto i2 = makeCommandInterest(); // signed at 0s |
| 254 | setNameComponent(*i2, signed_interest::POS_TIMESTAMP, |
| 255 | i1->getName()[signed_interest::POS_TIMESTAMP]); |
Junxiao Shi | dc2d6d2 | 2016-08-04 14:30:23 +0000 | [diff] [blame] | 256 | assertReject(*i2, CommandInterestValidator::ErrorCode::TIMESTAMP_REORDER); |
| 257 | |
| 258 | advanceClocks(time::seconds(2)); |
| 259 | auto i3 = makeCommandInterest(); // signed at +2s |
| 260 | assertAccept(*i3); |
| 261 | } |
| 262 | |
| 263 | BOOST_AUTO_TEST_CASE(TimestampReorderNegative) |
| 264 | { |
| 265 | auto i2 = makeCommandInterest(); // signed at 0ms |
| 266 | advanceClocks(time::milliseconds(200)); |
| 267 | auto i3 = makeCommandInterest(); // signed at +200ms |
| 268 | advanceClocks(time::milliseconds(900)); |
| 269 | auto i1 = makeCommandInterest(); // signed at +1100ms |
| 270 | advanceClocks(time::milliseconds(300)); |
| 271 | auto i4 = makeCommandInterest(); // signed at +1400ms |
| 272 | |
| 273 | systemClock->advance(time::milliseconds(-300)); // verifying at +1100ms |
| 274 | assertAccept(*i1); |
| 275 | |
| 276 | systemClock->advance(time::milliseconds(-1100)); // verifying at 0ms |
| 277 | assertReject(*i2, CommandInterestValidator::ErrorCode::TIMESTAMP_REORDER); |
| 278 | |
| 279 | // CommandInterestValidator should not remember i2's timestamp |
| 280 | advanceClocks(time::milliseconds(200)); // verifying at +200ms |
| 281 | assertReject(*i3, CommandInterestValidator::ErrorCode::TIMESTAMP_REORDER); |
| 282 | |
| 283 | advanceClocks(time::milliseconds(1200)); // verifying at 1400ms |
| 284 | assertAccept(*i4); |
| 285 | } |
| 286 | |
| 287 | BOOST_AUTO_TEST_SUITE_END() // Rejects |
| 288 | |
| 289 | BOOST_AUTO_TEST_SUITE(Options) |
| 290 | |
| 291 | typedef boost::mpl::vector< |
| 292 | boost::mpl::int_<0>, |
| 293 | boost::mpl::int_<-1> |
| 294 | > GraceNonPositiveValues; |
| 295 | |
| 296 | BOOST_AUTO_TEST_CASE_TEMPLATE(GraceNonPositive, VALUE, GraceNonPositiveValues) |
| 297 | { |
| 298 | CommandInterestValidator::Options options; |
| 299 | options.gracePeriod = time::seconds(VALUE::value); |
| 300 | initialize(options); |
| 301 | |
| 302 | auto i1 = makeCommandInterest(1); // signed at 0ms |
| 303 | auto i2 = makeCommandInterest(2); // signed at 0ms |
| 304 | for (auto interest : {i1, i2}) { |
Junxiao Shi | 198c381 | 2016-08-12 19:24:18 +0000 | [diff] [blame] | 305 | setNameComponent(*interest, signed_interest::POS_TIMESTAMP, |
Junxiao Shi | dc2d6d2 | 2016-08-04 14:30:23 +0000 | [diff] [blame] | 306 | name::Component::fromNumber(time::toUnixTimestamp(time::system_clock::now()).count())); |
Junxiao Shi | dc2d6d2 | 2016-08-04 14:30:23 +0000 | [diff] [blame] | 307 | } // ensure timestamps are exactly 0ms |
| 308 | |
| 309 | assertAccept(*i1); // verifying at 0ms |
| 310 | |
| 311 | advanceClocks(time::milliseconds(1)); |
| 312 | assertReject(*i2, CommandInterestValidator::ErrorCode::TIMESTAMP_OUT_OF_GRACE); // verifying at 1ms |
| 313 | } |
| 314 | |
| 315 | BOOST_AUTO_TEST_CASE(TimestampsLimited) |
| 316 | { |
| 317 | CommandInterestValidator::Options options; |
| 318 | options.gracePeriod = time::seconds(15); |
| 319 | options.maxTimestamps = 3; |
| 320 | initialize(options); |
| 321 | |
| 322 | auto i1 = makeCommandInterest(1); |
| 323 | auto i2 = makeCommandInterest(2); |
| 324 | auto i3 = makeCommandInterest(3); |
| 325 | auto i00 = makeCommandInterest(0); // signed at 0s |
| 326 | advanceClocks(time::seconds(1)); |
| 327 | auto i01 = makeCommandInterest(0); // signed at 1s |
| 328 | advanceClocks(time::seconds(1)); |
| 329 | auto i02 = makeCommandInterest(0); // signed at 2s |
| 330 | |
| 331 | assertAccept(*i00); |
| 332 | assertAccept(*i02); |
| 333 | assertAccept(*i1); |
| 334 | assertAccept(*i2); |
| 335 | assertAccept(*i3); // forgets identity 0 |
| 336 | assertAccept(*i01); // accepted despite timestamp is reordered, because record has been evicted |
| 337 | } |
| 338 | |
| 339 | BOOST_AUTO_TEST_CASE(TimestampsUnlimited) |
| 340 | { |
| 341 | CommandInterestValidator::Options options; |
| 342 | options.gracePeriod = time::seconds(15); |
| 343 | options.maxTimestamps = -1; |
| 344 | initialize(options); |
| 345 | |
| 346 | auto i1 = makeCommandInterest(0); // signed at 0s |
| 347 | advanceClocks(time::seconds(1)); |
| 348 | for (int identity = 0; identity < 20; ++identity) { |
| 349 | auto i2 = makeCommandInterest(identity); // signed at +1s |
| 350 | assertAccept(*i2); |
| 351 | } |
| 352 | assertReject(*i1, CommandInterestValidator::ErrorCode::TIMESTAMP_REORDER); |
| 353 | } |
| 354 | |
| 355 | BOOST_AUTO_TEST_CASE(TimestampsDisabled) |
| 356 | { |
| 357 | CommandInterestValidator::Options options; |
| 358 | options.gracePeriod = time::seconds(15); |
| 359 | options.maxTimestamps = 0; |
| 360 | initialize(options); |
| 361 | |
| 362 | auto i1 = makeCommandInterest(); // signed at 0s |
| 363 | advanceClocks(time::seconds(1)); |
| 364 | auto i2 = makeCommandInterest(); // signed at +1s |
| 365 | assertAccept(*i2); |
| 366 | |
| 367 | assertAccept(*i1); // accepted despite timestamp is reordered, because record isn't kept |
| 368 | } |
| 369 | |
| 370 | BOOST_AUTO_TEST_CASE(TtlLimited) |
| 371 | { |
| 372 | CommandInterestValidator::Options options; |
| 373 | options.gracePeriod = time::seconds(120); |
| 374 | options.timestampTtl = time::seconds(300); |
| 375 | initialize(options); |
| 376 | |
| 377 | auto i1 = makeCommandInterest(); // signed at 0s |
| 378 | advanceClocks(time::seconds(240)); |
| 379 | auto i2 = makeCommandInterest(); // signed at +240s |
| 380 | advanceClocks(time::seconds(120)); |
| 381 | auto i3 = makeCommandInterest(); // signed at +360s |
| 382 | |
| 383 | systemClock->advance(time::seconds(-360)); // rewind system clock to 0s |
| 384 | assertAccept(*i1); |
| 385 | assertAccept(*i3); |
| 386 | |
| 387 | advanceClocks(time::seconds(30), time::seconds(301)); // advance steady clock by 301s, and system clock to +301s |
| 388 | assertAccept(*i2); // accepted despite timestamp is reordered, because record has been expired |
| 389 | } |
| 390 | |
| 391 | BOOST_AUTO_TEST_CASE(TtlZero) |
| 392 | { |
| 393 | CommandInterestValidator::Options options; |
| 394 | options.gracePeriod = time::seconds(15); |
| 395 | options.timestampTtl = time::seconds::zero(); |
| 396 | initialize(options); |
| 397 | |
| 398 | auto i1 = makeCommandInterest(); // signed at 0s |
| 399 | advanceClocks(time::seconds(1)); |
| 400 | auto i2 = makeCommandInterest(); // signed at +1s |
| 401 | assertAccept(*i2); |
| 402 | |
| 403 | assertAccept(*i1); // accepted despite timestamp is reordered, because record has been expired |
| 404 | } |
| 405 | |
| 406 | BOOST_AUTO_TEST_SUITE_END() // Options |
| 407 | |
| 408 | BOOST_AUTO_TEST_SUITE_END() // TestCommandInterestValidator |
| 409 | BOOST_AUTO_TEST_SUITE_END() // Security |
| 410 | |
| 411 | } // namespace tests |
| 412 | } // namespace security |
| 413 | } // namespace ndn |