Alexander Afanasyev | 7e72141 | 2017-01-11 13:36:08 -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 | 7e72141 | 2017-01-11 13:36:08 -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/validation-policy-accept-all.hpp" |
Alexander Afanasyev | 7e72141 | 2017-01-11 13:36:08 -0800 | [diff] [blame] | 23 | |
Davide Pesavento | 7e78064 | 2018-11-24 15:51:34 -0500 | [diff] [blame] | 24 | #include "tests/boost-test.hpp" |
| 25 | #include "tests/unit/security/v2/validator-fixture.hpp" |
Alexander Afanasyev | 7e72141 | 2017-01-11 13:36:08 -0800 | [diff] [blame] | 26 | |
| 27 | #include <boost/mpl/vector.hpp> |
| 28 | |
| 29 | namespace ndn { |
| 30 | namespace security { |
| 31 | namespace v2 { |
| 32 | namespace tests { |
| 33 | |
| 34 | using namespace ndn::tests; |
| 35 | |
| 36 | BOOST_AUTO_TEST_SUITE(Security) |
| 37 | BOOST_AUTO_TEST_SUITE(V2) |
| 38 | |
| 39 | class ValidationPolicyAcceptAllFixture : public ValidatorFixture<ValidationPolicyAcceptAll> |
| 40 | { |
| 41 | public: |
| 42 | ValidationPolicyAcceptAllFixture() |
| 43 | { |
| 44 | identity = addIdentity("/Security/V2/TestValidationPolicyAcceptAll"); |
| 45 | // don't add trust anchors |
| 46 | } |
| 47 | |
| 48 | public: |
| 49 | Identity identity; |
| 50 | }; |
| 51 | |
| 52 | BOOST_FIXTURE_TEST_SUITE(TestValidationPolicyAcceptAll, ValidationPolicyAcceptAllFixture) |
| 53 | |
| 54 | typedef boost::mpl::vector<Interest, Data> Packets; |
| 55 | |
| 56 | BOOST_AUTO_TEST_CASE_TEMPLATE(Validate, Packet, Packets) |
| 57 | { |
| 58 | Packet unsignedPacket("/Security/V2/TestValidationPolicyAcceptAll/Sub/Packet"); |
| 59 | |
| 60 | Packet packet = unsignedPacket; |
| 61 | VALIDATE_SUCCESS(packet, "Should accept unsigned"); |
| 62 | |
| 63 | packet = unsignedPacket; |
| 64 | m_keyChain.sign(packet, signingWithSha256()); |
| 65 | VALIDATE_SUCCESS(packet, "Should accept Sha256Digest signature"); |
| 66 | |
| 67 | packet = unsignedPacket; |
| 68 | m_keyChain.sign(packet, signingByIdentity(identity)); |
| 69 | VALIDATE_SUCCESS(packet, "Should accept signature while no trust anchors configured"); |
| 70 | } |
| 71 | |
| 72 | BOOST_AUTO_TEST_SUITE_END() // TestValidationPolicyAcceptAll |
| 73 | BOOST_AUTO_TEST_SUITE_END() // V2 |
| 74 | BOOST_AUTO_TEST_SUITE_END() // Security |
| 75 | |
| 76 | } // namespace tests |
| 77 | } // namespace v2 |
| 78 | } // namespace security |
| 79 | } // namespace ndn |