blob: ca86c86c93db0cc66f8db644d9a908dd95e867da [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/*
Davide Pesavento47ce2ee2023-05-09 01:33:33 -04003 * Copyright (c) 2013-2023 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
Davide Pesavento47ce2ee2023-05-09 01:33:33 -040029namespace ndn::tests {
Alexander Afanasyev7e721412017-01-11 13:36:08 -080030
31BOOST_AUTO_TEST_SUITE(Security)
Alexander Afanasyev7e721412017-01-11 13:36:08 -080032
Davide Pesavento47ce2ee2023-05-09 01:33:33 -040033class ValidationPolicyAcceptAllFixture : public ValidatorFixture<security::ValidationPolicyAcceptAll>
Alexander Afanasyev7e721412017-01-11 13:36:08 -080034{
35public:
36 ValidationPolicyAcceptAllFixture()
37 {
Davide Pesavento4c1ad4c2020-11-16 21:12:02 -050038 identity = m_keyChain.createIdentity("/Security/TestValidationPolicyAcceptAll");
Alexander Afanasyev7e721412017-01-11 13:36:08 -080039 // don't add trust anchors
40 }
41
42public:
43 Identity identity;
44};
45
46BOOST_FIXTURE_TEST_SUITE(TestValidationPolicyAcceptAll, ValidationPolicyAcceptAllFixture)
47
Davide Pesavento47ce2ee2023-05-09 01:33:33 -040048using Packets = boost::mpl::vector<Interest, Data>;
Alexander Afanasyev7e721412017-01-11 13:36:08 -080049
50BOOST_AUTO_TEST_CASE_TEMPLATE(Validate, Packet, Packets)
51{
Alexander Afanasyev09236c22020-06-03 13:42:38 -040052 Packet unsignedPacket("/Security/TestValidationPolicyAcceptAll/Sub/Packet");
Alexander Afanasyev7e721412017-01-11 13:36:08 -080053
54 Packet packet = unsignedPacket;
55 VALIDATE_SUCCESS(packet, "Should accept unsigned");
56
57 packet = unsignedPacket;
58 m_keyChain.sign(packet, signingWithSha256());
59 VALIDATE_SUCCESS(packet, "Should accept Sha256Digest signature");
60
61 packet = unsignedPacket;
62 m_keyChain.sign(packet, signingByIdentity(identity));
63 VALIDATE_SUCCESS(packet, "Should accept signature while no trust anchors configured");
64}
65
66BOOST_AUTO_TEST_SUITE_END() // TestValidationPolicyAcceptAll
Alexander Afanasyev7e721412017-01-11 13:36:08 -080067BOOST_AUTO_TEST_SUITE_END() // Security
68
Davide Pesavento47ce2ee2023-05-09 01:33:33 -040069} // namespace ndn::tests