Alexander Afanasyev | 7bc10fa | 2017-01-13 16:56:26 -0800 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 2 | /* |
Davide Pesavento | 2e481fc | 2021-07-02 18:20:03 -0400 | [diff] [blame] | 3 | * Copyright (c) 2013-2021 Regents of the University of California. |
Alexander Afanasyev | 7bc10fa | 2017-01-13 16:56:26 -0800 | [diff] [blame] | 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 | |
Alexander Afanasyev | 09236c2 | 2020-06-03 13:42:38 -0400 | [diff] [blame] | 22 | #include "ndn-cxx/security/certificate-fetcher-from-network.hpp" |
Davide Pesavento | 4c1ad4c | 2020-11-16 21:12:02 -0500 | [diff] [blame] | 23 | |
Davide Pesavento | 7e78064 | 2018-11-24 15:51:34 -0500 | [diff] [blame] | 24 | #include "ndn-cxx/lp/nack.hpp" |
Davide Pesavento | 4c1ad4c | 2020-11-16 21:12:02 -0500 | [diff] [blame] | 25 | #include "ndn-cxx/security/validation-policy-simple-hierarchy.hpp" |
Alexander Afanasyev | 7bc10fa | 2017-01-13 16:56:26 -0800 | [diff] [blame] | 26 | |
Davide Pesavento | 7e78064 | 2018-11-24 15:51:34 -0500 | [diff] [blame] | 27 | #include "tests/boost-test.hpp" |
Alexander Afanasyev | 09236c2 | 2020-06-03 13:42:38 -0400 | [diff] [blame] | 28 | #include "tests/unit/security/validator-fixture.hpp" |
Alexander Afanasyev | 7bc10fa | 2017-01-13 16:56:26 -0800 | [diff] [blame] | 29 | |
| 30 | namespace ndn { |
| 31 | namespace security { |
Alexander Afanasyev | 09236c2 | 2020-06-03 13:42:38 -0400 | [diff] [blame] | 32 | inline namespace v2 { |
Alexander Afanasyev | 7bc10fa | 2017-01-13 16:56:26 -0800 | [diff] [blame] | 33 | namespace tests { |
| 34 | |
| 35 | using namespace ndn::tests; |
| 36 | |
| 37 | BOOST_AUTO_TEST_SUITE(Security) |
Alexander Afanasyev | 7bc10fa | 2017-01-13 16:56:26 -0800 | [diff] [blame] | 38 | BOOST_AUTO_TEST_SUITE(TestCertificateFetcherFromNetwork) |
| 39 | |
| 40 | class Cert |
| 41 | { |
| 42 | }; |
| 43 | |
| 44 | class Timeout |
| 45 | { |
| 46 | }; |
| 47 | |
| 48 | class Nack |
| 49 | { |
| 50 | }; |
| 51 | |
| 52 | template<class Response> |
| 53 | class CertificateFetcherFromNetworkFixture : public HierarchicalValidatorFixture<ValidationPolicySimpleHierarchy, |
| 54 | CertificateFetcherFromNetwork> |
| 55 | { |
| 56 | public: |
| 57 | CertificateFetcherFromNetworkFixture() |
Alexander Afanasyev | 09236c2 | 2020-06-03 13:42:38 -0400 | [diff] [blame] | 58 | : data("/Security/ValidatorFixture/Sub1/Sub3/Data") |
| 59 | , interest("/Security/ValidatorFixture/Sub1/Sub3/Interest") |
Alexander Afanasyev | 7bc10fa | 2017-01-13 16:56:26 -0800 | [diff] [blame] | 60 | { |
Alexander Afanasyev | 09236c2 | 2020-06-03 13:42:38 -0400 | [diff] [blame] | 61 | Identity subSubIdentity = addSubCertificate("/Security/ValidatorFixture/Sub1/Sub3", subIdentity); |
Alexander Afanasyev | 7bc10fa | 2017-01-13 16:56:26 -0800 | [diff] [blame] | 62 | cache.insert(subSubIdentity.getDefaultKey().getDefaultCertificate()); |
| 63 | |
| 64 | m_keyChain.sign(data, signingByIdentity(subSubIdentity)); |
Eric Newberry | b74bbda | 2020-06-18 19:33:58 -0700 | [diff] [blame] | 65 | interest.setCanBePrefix(false); |
Alexander Afanasyev | 7bc10fa | 2017-01-13 16:56:26 -0800 | [diff] [blame] | 66 | m_keyChain.sign(interest, signingByIdentity(subSubIdentity)); |
| 67 | |
Davide Pesavento | 2e481fc | 2021-07-02 18:20:03 -0400 | [diff] [blame] | 68 | processInterest = [this] (const Interest& i) { makeResponse(i); }; |
Alexander Afanasyev | 7bc10fa | 2017-01-13 16:56:26 -0800 | [diff] [blame] | 69 | } |
| 70 | |
| 71 | void |
| 72 | makeResponse(const Interest& interest); |
| 73 | |
| 74 | public: |
| 75 | Data data; |
| 76 | Interest interest; |
| 77 | }; |
| 78 | |
| 79 | template<> |
| 80 | void |
| 81 | CertificateFetcherFromNetworkFixture<Cert>::makeResponse(const Interest& interest) |
| 82 | { |
| 83 | auto cert = cache.find(interest); |
| 84 | if (cert == nullptr) { |
| 85 | return; |
| 86 | } |
| 87 | face.receive(*cert); |
| 88 | } |
| 89 | |
| 90 | template<> |
| 91 | void |
| 92 | CertificateFetcherFromNetworkFixture<Timeout>::makeResponse(const Interest& interest) |
| 93 | { |
| 94 | // do nothing |
| 95 | } |
| 96 | |
| 97 | template<> |
| 98 | void |
| 99 | CertificateFetcherFromNetworkFixture<Nack>::makeResponse(const Interest& interest) |
| 100 | { |
| 101 | lp::Nack nack(interest); |
| 102 | nack.setHeader(lp::NackHeader().setReason(lp::NackReason::NO_ROUTE)); |
| 103 | face.receive(nack); |
| 104 | } |
| 105 | |
| 106 | using Failures = boost::mpl::vector<Timeout, Nack>; |
| 107 | |
| 108 | BOOST_FIXTURE_TEST_CASE(ValidateSuccess, CertificateFetcherFromNetworkFixture<Cert>) |
| 109 | { |
| 110 | VALIDATE_SUCCESS(this->data, "Should get accepted, as normal interests bring cert"); |
| 111 | BOOST_CHECK_EQUAL(this->face.sentInterests.size(), 2); |
| 112 | this->face.sentInterests.clear(); |
| 113 | |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 114 | this->advanceClocks(1_h, 2); // expire validator caches |
Alexander Afanasyev | 7bc10fa | 2017-01-13 16:56:26 -0800 | [diff] [blame] | 115 | |
| 116 | VALIDATE_SUCCESS(this->interest, "Should get accepted, as interests bring certs"); |
| 117 | BOOST_CHECK_EQUAL(this->face.sentInterests.size(), 2); |
| 118 | } |
| 119 | |
| 120 | BOOST_FIXTURE_TEST_CASE_TEMPLATE(ValidateFailure, T, Failures, CertificateFetcherFromNetworkFixture<T>) |
| 121 | { |
| 122 | VALIDATE_FAILURE(this->data, "Should fail, as interests don't bring data"); |
Ashlesh Gawande | 3e39a4d | 2018-08-30 16:49:13 -0500 | [diff] [blame] | 123 | // first interest + 3 retries |
| 124 | BOOST_CHECK_EQUAL(this->face.sentInterests.size(), 4); |
| 125 | |
Alexander Afanasyev | 7bc10fa | 2017-01-13 16:56:26 -0800 | [diff] [blame] | 126 | this->face.sentInterests.clear(); |
| 127 | |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 128 | this->advanceClocks(1_h, 2); // expire validator caches |
Alexander Afanasyev | 7bc10fa | 2017-01-13 16:56:26 -0800 | [diff] [blame] | 129 | |
| 130 | VALIDATE_FAILURE(this->interest, "Should fail, as interests don't bring data"); |
Ashlesh Gawande | 3e39a4d | 2018-08-30 16:49:13 -0500 | [diff] [blame] | 131 | BOOST_CHECK_EQUAL(this->face.sentInterests.size(), 4); |
Alexander Afanasyev | 7bc10fa | 2017-01-13 16:56:26 -0800 | [diff] [blame] | 132 | } |
| 133 | |
| 134 | BOOST_AUTO_TEST_SUITE_END() // TestCertificateFetcherFromNetwork |
Alexander Afanasyev | 7bc10fa | 2017-01-13 16:56:26 -0800 | [diff] [blame] | 135 | BOOST_AUTO_TEST_SUITE_END() // Security |
| 136 | |
| 137 | } // namespace tests |
Alexander Afanasyev | 09236c2 | 2020-06-03 13:42:38 -0400 | [diff] [blame] | 138 | } // inline namespace v2 |
Alexander Afanasyev | 7bc10fa | 2017-01-13 16:56:26 -0800 | [diff] [blame] | 139 | } // namespace security |
| 140 | } // namespace ndn |