blob: 0ee5172b89ad0dcf096c14649e26b676fb9a32a0 [file] [log] [blame]
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/*
Alexander Afanasyev09236c22020-06-03 13:42:38 -04003 * Copyright (c) 2013-2020 Regents of the University of California.
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -08004 *
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
Alexander Afanasyev09236c22020-06-03 13:42:38 -040022#include "ndn-cxx/security/validation-policy-config.hpp"
Davide Pesavento4c1ad4c2020-11-16 21:12:02 -050023
Davide Pesavento7e780642018-11-24 15:51:34 -050024#include "ndn-cxx/security/transform/base64-encode.hpp"
25#include "ndn-cxx/security/transform/buffer-source.hpp"
26#include "ndn-cxx/security/transform/stream-sink.hpp"
Davide Pesavento7e780642018-11-24 15:51:34 -050027#include "ndn-cxx/util/io.hpp"
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -080028
Davide Pesavento7e780642018-11-24 15:51:34 -050029#include "tests/boost-test.hpp"
Alexander Afanasyev09236c22020-06-03 13:42:38 -040030#include "tests/unit/security/validator-config/common.hpp"
31#include "tests/unit/security/validator-fixture.hpp"
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -080032
33namespace ndn {
34namespace security {
Alexander Afanasyev09236c22020-06-03 13:42:38 -040035inline namespace v2 {
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -080036namespace validator_config {
37namespace tests {
38
39using namespace ndn::tests;
40using namespace ndn::security::v2::tests;
41
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -080042BOOST_AUTO_TEST_SUITE(Security)
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -080043BOOST_AUTO_TEST_SUITE(TestValidationPolicyConfig)
44
Davide Pesavento0a6456c2019-11-14 00:33:11 -050045BOOST_FIXTURE_TEST_CASE(EmptyConfig, HierarchicalValidatorFixture<ValidationPolicyConfig>)
46{
47 this->policy.load(ConfigSection{}, "<empty>");
48
49 BOOST_CHECK_EQUAL(this->policy.m_isConfigured, true);
50 BOOST_CHECK_EQUAL(this->policy.m_shouldBypass, false);
51 BOOST_CHECK_EQUAL(this->policy.m_dataRules.size(), 0);
52 BOOST_CHECK_EQUAL(this->policy.m_interestRules.size(), 0);
53
Alexander Afanasyev09236c22020-06-03 13:42:38 -040054 Data d("/Security/ValidationPolicyConfig/D");
Davide Pesavento0a6456c2019-11-14 00:33:11 -050055 this->m_keyChain.sign(d, signingByIdentity(this->identity));
56 VALIDATE_FAILURE(d, "Empty policy should reject everything");
57
Alexander Afanasyev09236c22020-06-03 13:42:38 -040058 Interest i("/Security/ValidationPolicyConfig/I");
Eric Newberryb74bbda2020-06-18 19:33:58 -070059 i.setCanBePrefix(false);
Davide Pesavento0a6456c2019-11-14 00:33:11 -050060 this->m_keyChain.sign(i, signingByIdentity(this->identity));
61 VALIDATE_FAILURE(i, "Empty policy should reject everything");
62}
63
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -080064template<typename Packet>
65class PacketName;
66
67template<>
68class PacketName<Interest>
69{
70public:
71 static std::string
72 getName()
73 {
74 return "interest";
75 }
76};
77
78template<>
79class PacketName<Data>
80{
81public:
82 static std::string
83 getName()
84 {
85 return "data";
86 }
87};
88
89template<typename PacketType>
90class ValidationPolicyConfigFixture : public HierarchicalValidatorFixture<ValidationPolicyConfig>
91{
92public:
93 ValidationPolicyConfigFixture()
Davide Pesavento4c1ad4c2020-11-16 21:12:02 -050094 : path(boost::filesystem::path(UNIT_TESTS_TMPDIR) / "security" / "validation-policy-config")
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -080095 {
96 boost::filesystem::create_directories(path);
97 baseConfig = R"CONF(
98 rule
99 {
100 id test-rule-id
101 for )CONF" + PacketName<Packet>::getName() + R"CONF(
102 filter
103 {
104 type name
105 name )CONF" + identity.getName().toUri() + R"CONF(
106 relation is-prefix-of
107 }
108 checker
109 {
110 type hierarchical
111 sig-type rsa-sha256
112 }
113 }
114 )CONF";
115 }
116
117 ~ValidationPolicyConfigFixture()
118 {
Davide Pesavento4c1ad4c2020-11-16 21:12:02 -0500119 boost::filesystem::remove_all(path);
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -0800120 }
121
Davide Pesavento0a6456c2019-11-14 00:33:11 -0500122protected:
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -0800123 using Packet = PacketType;
124
125 const boost::filesystem::path path;
126 std::string baseConfig;
127};
128
129template<typename PacketType>
130class LoadStringWithFileAnchor : public ValidationPolicyConfigFixture<PacketType>
131{
132public:
133 LoadStringWithFileAnchor()
134 {
135 BOOST_CHECK_EQUAL(this->policy.m_isConfigured, false);
136
Davide Pesavento4c1ad4c2020-11-16 21:12:02 -0500137 this->saveIdentityCert(this->identity, (this->path / "identity.ndncert").string());
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -0800138 this->policy.load(this->baseConfig + R"CONF(
139 trust-anchor
140 {
141 type file
142 file-name "trust-anchor.ndncert"
143 }
144 )CONF", (this->path / "test-config").string());
145
146 BOOST_CHECK_EQUAL(this->policy.m_isConfigured, true);
147 BOOST_CHECK_EQUAL(this->policy.m_shouldBypass, false);
148 }
149};
150
151template<typename PacketType>
152class LoadFileWithFileAnchor : public ValidationPolicyConfigFixture<PacketType>
153{
154public:
155 LoadFileWithFileAnchor()
156 {
157 std::string configFile = (this->path / "config.conf").string();
158 {
Davide Pesavento0a6456c2019-11-14 00:33:11 -0500159 std::ofstream config(configFile);
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -0800160 config << this->baseConfig << R"CONF(
Davide Pesavento0a6456c2019-11-14 00:33:11 -0500161 trust-anchor
162 {
163 type file
164 file-name "trust-anchor.ndncert"
165 }
166 )CONF";
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -0800167 }
Davide Pesavento0a6456c2019-11-14 00:33:11 -0500168
Davide Pesavento4c1ad4c2020-11-16 21:12:02 -0500169 this->saveIdentityCert(this->identity, (this->path / "identity.ndncert").string());
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -0800170
171 BOOST_CHECK_EQUAL(this->policy.m_isConfigured, false);
172
173 this->policy.load(configFile);
174
175 BOOST_CHECK_EQUAL(this->policy.m_isConfigured, true);
176 BOOST_CHECK_EQUAL(this->policy.m_shouldBypass, false);
177 }
178};
179
180template<typename PacketType>
Varun Patil574c3f92020-11-25 09:07:33 +0530181class LoadFileWithMultipleFileAnchors : public ValidationPolicyConfigFixture<PacketType>
182{
183public:
184 LoadFileWithMultipleFileAnchors()
185 {
186 std::string configFile = (this->path / "config.conf").string();
187 {
188 std::ofstream config(configFile);
189 config << this->baseConfig << R"CONF(
190 trust-anchor
191 {
192 type file
193 file-name "identity.ndncert"
194 }
195 trust-anchor
196 {
197 type file
198 file-name "trust-anchor.ndncert"
199 }
200 )CONF";
201 }
202
203 this->saveIdentityCert(this->identity, (this->path / "identity.ndncert").string());
204
205 BOOST_CHECK_EQUAL(this->policy.m_isConfigured, false);
206
207 this->policy.load(configFile);
208
209 BOOST_CHECK_EQUAL(this->policy.m_isConfigured, true);
210 BOOST_CHECK_EQUAL(this->policy.m_shouldBypass, false);
211 }
212};
213
214template<typename PacketType>
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -0800215class LoadSectionWithFileAnchor : public ValidationPolicyConfigFixture<PacketType>
216{
217public:
218 LoadSectionWithFileAnchor()
219 {
220 auto section = makeSection(this->baseConfig + R"CONF(
221 trust-anchor
222 {
223 type file
224 file-name "trust-anchor.ndncert"
225 }
226 )CONF");
227
Davide Pesavento4c1ad4c2020-11-16 21:12:02 -0500228 this->saveIdentityCert(this->identity, (this->path / "identity.ndncert").string());
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -0800229
230 BOOST_CHECK_EQUAL(this->policy.m_isConfigured, false);
231
232 this->policy.load(section, (this->path / "test-config").string());
233
234 BOOST_CHECK_EQUAL(this->policy.m_isConfigured, true);
235 BOOST_CHECK_EQUAL(this->policy.m_shouldBypass, false);
236 }
237};
238
239template<typename PacketType>
240class LoadStringWithBase64Anchor : public ValidationPolicyConfigFixture<PacketType>
241{
242public:
243 LoadStringWithBase64Anchor()
244 {
245 BOOST_CHECK_EQUAL(this->policy.m_isConfigured, false);
246
247 std::ostringstream os;
Davide Pesavento0a6456c2019-11-14 00:33:11 -0500248 {
249 using namespace ndn::security::transform;
250 const auto& cert = this->identity.getDefaultKey().getDefaultCertificate().wireEncode();
251 bufferSource(cert.wire(), cert.size()) >> base64Encode(false) >> streamSink(os);
252 }
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -0800253
254 this->policy.load(this->baseConfig + R"CONF(
255 trust-anchor
256 {
257 type base64
258 base64-string ")CONF" + os.str() + R"CONF("
259 }
260 )CONF", (this->path / "test-config").string());
261
262 BOOST_CHECK_EQUAL(this->policy.m_isConfigured, true);
263 BOOST_CHECK_EQUAL(this->policy.m_shouldBypass, false);
264 }
265};
266
267class NoRefresh
268{
269public:
270 static std::string
271 getRefreshString()
272 {
273 return "";
274 }
275};
276
277class Refresh1h
278{
279public:
280 static std::string
281 getRefreshString()
282 {
283 return "refresh 1h";
284 }
285
286 static time::milliseconds
287 getRefreshTime()
288 {
Davide Pesavento0f830802018-01-16 23:58:58 -0500289 return 1_h;
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -0800290 }
291};
292
293class Refresh1m
294{
295public:
296 static std::string
297 getRefreshString()
298 {
299 return "refresh 1m";
300 }
301
302 static time::milliseconds
303 getRefreshTime()
304 {
Davide Pesavento0f830802018-01-16 23:58:58 -0500305 return 1_min;
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -0800306 }
307};
308
309class Refresh1s
310{
311public:
312 static std::string
313 getRefreshString()
314 {
315 return "refresh 1s";
316 }
317
318 static time::milliseconds
319 getRefreshTime()
320 {
Davide Pesavento0f830802018-01-16 23:58:58 -0500321 return 1_s;
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -0800322 }
323};
324
325template<typename PacketType, typename Refresh = NoRefresh>
326class LoadStringWithDirAnchor : public ValidationPolicyConfigFixture<PacketType>
327{
328public:
329 LoadStringWithDirAnchor()
330 {
331 BOOST_CHECK_EQUAL(this->policy.m_isConfigured, false);
332
333 boost::filesystem::create_directories(this->path / "keys");
Davide Pesavento4c1ad4c2020-11-16 21:12:02 -0500334 this->saveIdentityCert(this->identity, (this->path / "keys" / "identity.ndncert").string());
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -0800335
336 this->policy.load(this->baseConfig + R"CONF(
337 trust-anchor
338 {
339 type dir
340 dir keys
341 )CONF" + Refresh::getRefreshString() + R"CONF(
342 }
343 )CONF", (this->path / "test-config").string());
344
345 BOOST_CHECK_EQUAL(this->policy.m_isConfigured, true);
346 BOOST_CHECK_EQUAL(this->policy.m_shouldBypass, false);
347 }
348};
349
350using DataPolicies = boost::mpl::vector<LoadStringWithFileAnchor<Data>,
351 LoadFileWithFileAnchor<Data>,
Varun Patil574c3f92020-11-25 09:07:33 +0530352 LoadFileWithMultipleFileAnchors<Data>,
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -0800353 LoadSectionWithFileAnchor<Data>,
354 LoadStringWithBase64Anchor<Data>,
355 LoadStringWithDirAnchor<Data>,
356 LoadStringWithDirAnchor<Data, Refresh1h>,
357 LoadStringWithDirAnchor<Data, Refresh1m>,
358 LoadStringWithDirAnchor<Data, Refresh1s>
359 >;
360
361using InterestPolicies = boost::mpl::vector<LoadStringWithFileAnchor<Interest>,
362 LoadFileWithFileAnchor<Interest>,
Varun Patil574c3f92020-11-25 09:07:33 +0530363 LoadFileWithMultipleFileAnchors<Interest>,
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -0800364 LoadSectionWithFileAnchor<Interest>,
365 LoadStringWithBase64Anchor<Interest>,
366 LoadStringWithDirAnchor<Interest>,
367 LoadStringWithDirAnchor<Interest, Refresh1h>,
368 LoadStringWithDirAnchor<Interest, Refresh1m>,
369 LoadStringWithDirAnchor<Interest, Refresh1s>
370 >;
371
372BOOST_FIXTURE_TEST_CASE_TEMPLATE(ValidateData, Policy, DataPolicies, Policy)
373{
374 BOOST_CHECK_EQUAL(this->policy.m_dataRules.size(), 1);
375 BOOST_CHECK_EQUAL(this->policy.m_interestRules.size(), 0);
376
377 using Packet = typename Policy::Packet;
Alexander Afanasyev09236c22020-06-03 13:42:38 -0400378 Packet unsignedPacket("/Security/ValidatorFixture/Sub1/Sub2/Packet");
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -0800379
380 Packet packet = unsignedPacket;
381 VALIDATE_FAILURE(packet, "Unsigned");
382
383 packet = unsignedPacket;
384 this->m_keyChain.sign(packet, signingWithSha256());
385 VALIDATE_FAILURE(packet, "Policy doesn't accept Sha256Digest signature");
386
387 packet = unsignedPacket;
388 this->m_keyChain.sign(packet, signingByIdentity(this->identity));
389 VALIDATE_SUCCESS(packet, "Should get accepted, as signed by the anchor");
390
391 packet = unsignedPacket;
392 this->m_keyChain.sign(packet, signingByIdentity(this->subIdentity));
393 VALIDATE_SUCCESS(packet, "Should get accepted, as signed by the policy-compliant cert");
394
395 packet = unsignedPacket;
396 this->m_keyChain.sign(packet, signingByIdentity(this->otherIdentity));
397 VALIDATE_FAILURE(packet, "Should fail, as signed by the policy-violating cert");
398
399 packet = unsignedPacket;
400 this->m_keyChain.sign(packet, signingByIdentity(this->subSelfSignedIdentity));
401 VALIDATE_FAILURE(packet, "Should fail, because subSelfSignedIdentity is not a trust anchor");
402}
403
404BOOST_FIXTURE_TEST_CASE_TEMPLATE(ValidateInterest, Policy, InterestPolicies, Policy)
405{
406 BOOST_CHECK_EQUAL(this->policy.m_dataRules.size(), 0);
407 BOOST_CHECK_EQUAL(this->policy.m_interestRules.size(), 1);
408
409 using Packet = typename Policy::Packet;
Alexander Afanasyev09236c22020-06-03 13:42:38 -0400410 Packet unsignedPacket("/Security/ValidatorFixture/Sub1/Sub2/Packet");
Eric Newberryb74bbda2020-06-18 19:33:58 -0700411 // All of the packet types inputed to this test case template are Interests, so we can call
412 // setCanBePrefix
413 unsignedPacket.setCanBePrefix(false);
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -0800414
415 Packet packet = unsignedPacket;
416 VALIDATE_FAILURE(packet, "Unsigned");
417
418 packet = unsignedPacket;
419 this->m_keyChain.sign(packet, signingWithSha256());
420 VALIDATE_FAILURE(packet, "Policy doesn't accept Sha256Digest signature");
421
422 packet = unsignedPacket;
423 this->m_keyChain.sign(packet, signingByIdentity(this->identity));
424 VALIDATE_SUCCESS(packet, "Should get accepted, as signed by the anchor");
425
426 packet = unsignedPacket;
427 this->m_keyChain.sign(packet, signingByIdentity(this->subIdentity));
428 VALIDATE_FAILURE(packet, "Should fail, as there is no matching rule for data");
429
430 packet = unsignedPacket;
431 this->m_keyChain.sign(packet, signingByIdentity(this->otherIdentity));
432 VALIDATE_FAILURE(packet, "Should fail, as signed by the policy-violating cert");
433
434 packet = unsignedPacket;
435 this->m_keyChain.sign(packet, signingByIdentity(this->subSelfSignedIdentity));
436 VALIDATE_FAILURE(packet, "Should fail, because subSelfSignedIdentity is not a trust anchor");
437}
438
Alexander Afanasyev6aff0242017-08-29 17:14:44 -0400439BOOST_FIXTURE_TEST_CASE(Reload, HierarchicalValidatorFixture<ValidationPolicyConfig>)
440{
441 BOOST_CHECK_EQUAL(this->policy.m_isConfigured, false);
442 this->policy.load(R"CONF(
443 rule
444 {
445 id test-rule-data-id
446 for data
447 filter
448 {
449 type name
450 name /foo/bar
451 relation is-prefix-of
452 }
453 checker
454 {
455 type hierarchical
456 sig-type rsa-sha256
457 }
458 }
459 rule
460 {
461 id test-rule-interest-id
462 for interest
463 filter
464 {
465 type name
466 name /foo/bar
467 relation is-prefix-of
468 }
469 checker
470 {
471 type hierarchical
472 sig-type rsa-sha256
473 }
474 }
475 trust-anchor
476 {
477 type dir
478 dir keys
479 refresh 1h
480 }
481 )CONF", "test-config");
482 BOOST_CHECK_EQUAL(this->policy.m_isConfigured, true);
483 BOOST_CHECK_EQUAL(this->policy.m_shouldBypass, false);
484 BOOST_CHECK_EQUAL(this->policy.m_dataRules.size(), 1);
485 BOOST_CHECK_EQUAL(this->policy.m_interestRules.size(), 1);
486
487 this->policy.load(R"CONF(
488 trust-anchor
489 {
490 type any
491 }
492 )CONF", "test-config");
493 BOOST_CHECK_EQUAL(this->policy.m_isConfigured, true);
494 BOOST_CHECK_EQUAL(this->policy.m_shouldBypass, true);
495 BOOST_CHECK_EQUAL(this->policy.m_dataRules.size(), 0);
496 BOOST_CHECK_EQUAL(this->policy.m_interestRules.size(), 0);
497}
498
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -0800499using Packets = boost::mpl::vector<Interest, Data>;
500
501BOOST_FIXTURE_TEST_CASE_TEMPLATE(TrustAnchorWildcard, Packet, Packets, ValidationPolicyConfigFixture<Packet>)
502{
503 this->policy.load(R"CONF(
504 trust-anchor
505 {
506 type any
507 }
508 )CONF", "test-config");
509
510 BOOST_CHECK_EQUAL(this->policy.m_isConfigured, true);
511 BOOST_CHECK_EQUAL(this->policy.m_shouldBypass, true);
512 BOOST_CHECK_EQUAL(this->policy.m_dataRules.size(), 0);
513 BOOST_CHECK_EQUAL(this->policy.m_interestRules.size(), 0);
514
Alexander Afanasyev09236c22020-06-03 13:42:38 -0400515 Packet unsignedPacket("/Security/ValidatorFixture/Sub1/Sub2/Packet");
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -0800516
517 Packet packet = unsignedPacket;
518 VALIDATE_SUCCESS(packet, "Policy should accept everything");
519
520 packet = unsignedPacket;
521 this->m_keyChain.sign(packet, signingWithSha256());
522 VALIDATE_SUCCESS(packet, "Policy should accept everything");
523
524 packet = unsignedPacket;
525 this->m_keyChain.sign(packet, signingByIdentity(this->identity));
526 VALIDATE_SUCCESS(packet, "Policy should accept everything");
527
528 packet = unsignedPacket;
529 this->m_keyChain.sign(packet, signingByIdentity(this->subIdentity));
530 VALIDATE_SUCCESS(packet, "Policy should accept everything");
531
532 packet = unsignedPacket;
533 this->m_keyChain.sign(packet, signingByIdentity(this->otherIdentity));
534 VALIDATE_SUCCESS(packet, "Policy should accept everything");
535
536 packet = unsignedPacket;
537 this->m_keyChain.sign(packet, signingByIdentity(this->subSelfSignedIdentity));
538 VALIDATE_SUCCESS(packet, "Policy should accept everything");
539}
540
Alexander Afanasyev6aff0242017-08-29 17:14:44 -0400541using RefreshPolicies = boost::mpl::vector<Refresh1h, Refresh1m, Refresh1s>;
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -0800542
Alexander Afanasyev6aff0242017-08-29 17:14:44 -0400543template<typename RefreshPolicy>
544class RefreshPolicyFixture : public LoadStringWithDirAnchor<Data, RefreshPolicy>
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -0800545{
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -0800546};
547
Alexander Afanasyev6aff0242017-08-29 17:14:44 -0400548BOOST_FIXTURE_TEST_CASE_TEMPLATE(ValidateRefresh, Refresh, RefreshPolicies, RefreshPolicyFixture<Refresh>)
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -0800549{
550 using Packet = Data;
Alexander Afanasyev09236c22020-06-03 13:42:38 -0400551 Packet unsignedPacket("/Security/ValidatorFixture/Sub1/Sub2/Packet");
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -0800552
553 boost::filesystem::remove(this->path / "keys" / "identity.ndncert");
Alexander Afanasyev6aff0242017-08-29 17:14:44 -0400554 this->advanceClocks(Refresh::getRefreshTime(), 3);
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -0800555
556 Packet packet = unsignedPacket;
557 this->m_keyChain.sign(packet, signingByIdentity(this->identity));
558 VALIDATE_FAILURE(packet, "Should fail, as the trust anchor should no longer exist");
559
560 packet = unsignedPacket;
561 this->m_keyChain.sign(packet, signingByIdentity(this->subIdentity));
562 VALIDATE_FAILURE(packet, "Should fail, as the trust anchor should no longer exist");
563}
564
Alexander Afanasyev7b112462018-10-17 11:51:52 -0400565BOOST_FIXTURE_TEST_CASE(OrphanedPolicyLoad, HierarchicalValidatorFixture<ValidationPolicyConfig>) // Bug #4758
566{
567 ValidationPolicyConfig policy1;
568 BOOST_CHECK_THROW(policy1.load("trust-anchor { type any }", "test-config"), Error);
569
570 // Reloading would have triggered a segfault
571 BOOST_CHECK_THROW(policy1.load("trust-anchor { type any }", "test-config"), Error);
572
573 ValidationPolicyConfig policy2;
574
575 std::string config = R"CONF(
576 trust-anchor
577 {
578 type dir
579 dir keys
580 refresh 1h
581 }
582 )CONF";
583
584 // Inserting trust anchor would have triggered a segfault
585 BOOST_CHECK_THROW(policy2.load(config, "test-config"), Error);
586}
587
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -0800588BOOST_AUTO_TEST_SUITE_END() // TestValidationPolicyConfig
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -0800589BOOST_AUTO_TEST_SUITE_END() // Security
590
591} // namespace tests
592} // namespace validator_config
Alexander Afanasyev09236c22020-06-03 13:42:38 -0400593} // inline namespace v2
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -0800594} // namespace security
595} // namespace ndn