blob: 6a9f0f1a4462048fbaf2b299ae3a7bd07c236bf5 [file] [log] [blame]
Alexander Afanasyev7e721412017-01-11 13:36:08 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento74daf742018-11-23 18:14:13 -05002/*
Alexander Afanasyev09236c22020-06-03 13:42:38 -04003 * Copyright (c) 2013-2020 Regents of the University of California.
Alexander Afanasyev7e721412017-01-11 13:36:08 -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-accept-all.hpp"
Alexander Afanasyev7e721412017-01-11 13:36:08 -080023
Davide Pesavento7e780642018-11-24 15:51:34 -050024#include "tests/boost-test.hpp"
Alexander Afanasyev09236c22020-06-03 13:42:38 -040025#include "tests/unit/security/validator-fixture.hpp"
Alexander Afanasyev7e721412017-01-11 13:36:08 -080026
27#include <boost/mpl/vector.hpp>
28
29namespace ndn {
30namespace security {
Alexander Afanasyev09236c22020-06-03 13:42:38 -040031inline namespace v2 {
Alexander Afanasyev7e721412017-01-11 13:36:08 -080032namespace tests {
33
34using namespace ndn::tests;
35
36BOOST_AUTO_TEST_SUITE(Security)
Alexander Afanasyev7e721412017-01-11 13:36:08 -080037
38class ValidationPolicyAcceptAllFixture : public ValidatorFixture<ValidationPolicyAcceptAll>
39{
40public:
41 ValidationPolicyAcceptAllFixture()
42 {
Alexander Afanasyev09236c22020-06-03 13:42:38 -040043 identity = addIdentity("/Security/TestValidationPolicyAcceptAll");
Alexander Afanasyev7e721412017-01-11 13:36:08 -080044 // don't add trust anchors
45 }
46
47public:
48 Identity identity;
49};
50
51BOOST_FIXTURE_TEST_SUITE(TestValidationPolicyAcceptAll, ValidationPolicyAcceptAllFixture)
52
53typedef boost::mpl::vector<Interest, Data> Packets;
54
55BOOST_AUTO_TEST_CASE_TEMPLATE(Validate, Packet, Packets)
56{
Alexander Afanasyev09236c22020-06-03 13:42:38 -040057 Packet unsignedPacket("/Security/TestValidationPolicyAcceptAll/Sub/Packet");
Alexander Afanasyev7e721412017-01-11 13:36:08 -080058
59 Packet packet = unsignedPacket;
60 VALIDATE_SUCCESS(packet, "Should accept unsigned");
61
62 packet = unsignedPacket;
63 m_keyChain.sign(packet, signingWithSha256());
64 VALIDATE_SUCCESS(packet, "Should accept Sha256Digest signature");
65
66 packet = unsignedPacket;
67 m_keyChain.sign(packet, signingByIdentity(identity));
68 VALIDATE_SUCCESS(packet, "Should accept signature while no trust anchors configured");
69}
70
71BOOST_AUTO_TEST_SUITE_END() // TestValidationPolicyAcceptAll
Alexander Afanasyev7e721412017-01-11 13:36:08 -080072BOOST_AUTO_TEST_SUITE_END() // Security
73
74} // namespace tests
Alexander Afanasyev09236c22020-06-03 13:42:38 -040075} // inline namespace v2
Alexander Afanasyev7e721412017-01-11 13:36:08 -080076} // namespace security
77} // namespace ndn