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 | 74daf74 | 2018-11-23 18:14:13 -0500 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2013-2018 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 | |
Davide Pesavento | 7e78064 | 2018-11-24 15:51:34 -0500 | [diff] [blame] | 22 | #include "ndn-cxx/security/v2/certificate-fetcher-offline.hpp" |
| 23 | #include "ndn-cxx/security/v2/validation-policy-simple-hierarchy.hpp" |
Alexander Afanasyev | 7bc10fa | 2017-01-13 16:56:26 -0800 | [diff] [blame] | 24 | |
Davide Pesavento | 7e78064 | 2018-11-24 15:51:34 -0500 | [diff] [blame] | 25 | #include "tests/boost-test.hpp" |
| 26 | #include "tests/unit/security/v2/validator-fixture.hpp" |
Alexander Afanasyev | 7bc10fa | 2017-01-13 16:56:26 -0800 | [diff] [blame] | 27 | |
| 28 | namespace ndn { |
| 29 | namespace security { |
| 30 | namespace v2 { |
| 31 | namespace tests { |
| 32 | |
| 33 | using namespace ndn::tests; |
| 34 | |
| 35 | BOOST_AUTO_TEST_SUITE(Security) |
| 36 | BOOST_AUTO_TEST_SUITE(V2) |
| 37 | |
| 38 | class CertificateFetcherOfflineWrapper : public CertificateFetcherOffline |
| 39 | { |
| 40 | public: |
| 41 | CertificateFetcherOfflineWrapper(Face&) |
| 42 | { |
| 43 | } |
| 44 | }; |
| 45 | |
| 46 | using CertificateFetcherOfflineFixture = HierarchicalValidatorFixture<ValidationPolicySimpleHierarchy, |
| 47 | CertificateFetcherOfflineWrapper>; |
| 48 | |
| 49 | BOOST_FIXTURE_TEST_SUITE(TestCertificateFetcherOffline, CertificateFetcherOfflineFixture) |
| 50 | |
| 51 | typedef boost::mpl::vector<Interest, Data> Packets; |
| 52 | |
| 53 | BOOST_AUTO_TEST_CASE_TEMPLATE(Validate, Packet, Packets) |
| 54 | { |
| 55 | Packet unsignedPacket("/Security/V2/ValidatorFixture/Sub1/Packet"); |
| 56 | |
| 57 | Packet packet = unsignedPacket; |
| 58 | m_keyChain.sign(packet, signingByIdentity(subIdentity)); |
| 59 | VALIDATE_FAILURE(packet, "Should fail, as no cert should be requested"); |
| 60 | BOOST_CHECK_EQUAL(this->face.sentInterests.size(), 0); |
| 61 | |
| 62 | packet = unsignedPacket; |
| 63 | m_keyChain.sign(packet, signingByIdentity(identity)); |
| 64 | VALIDATE_SUCCESS(packet, "Should succeed, as signed by trust anchor"); |
| 65 | BOOST_CHECK_EQUAL(this->face.sentInterests.size(), 0); |
| 66 | } |
| 67 | |
| 68 | BOOST_AUTO_TEST_SUITE_END() // TestCertificateFetcherOffline |
| 69 | BOOST_AUTO_TEST_SUITE_END() // V2 |
| 70 | BOOST_AUTO_TEST_SUITE_END() // Security |
| 71 | |
| 72 | } // namespace tests |
| 73 | } // namespace v2 |
| 74 | } // namespace security |
| 75 | } // namespace ndn |