blob: 5cefa9bcab90655fba6871e3625dd24b82130292 [file] [log] [blame]
Alexander Afanasyev7e721412017-01-11 13:36:08 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2013-2017 Regents of the University of California.
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
22#include "security/v2/validation-policy-accept-all.hpp"
23
24#include "boost-test.hpp"
25#include "validator-fixture.hpp"
26
27#include <boost/mpl/vector.hpp>
28
29namespace ndn {
30namespace security {
31namespace v2 {
32namespace tests {
33
34using namespace ndn::tests;
35
36BOOST_AUTO_TEST_SUITE(Security)
37BOOST_AUTO_TEST_SUITE(V2)
38
39class ValidationPolicyAcceptAllFixture : public ValidatorFixture<ValidationPolicyAcceptAll>
40{
41public:
42 ValidationPolicyAcceptAllFixture()
43 {
44 identity = addIdentity("/Security/V2/TestValidationPolicyAcceptAll");
45 // don't add trust anchors
46 }
47
48public:
49 Identity identity;
50};
51
52BOOST_FIXTURE_TEST_SUITE(TestValidationPolicyAcceptAll, ValidationPolicyAcceptAllFixture)
53
54typedef boost::mpl::vector<Interest, Data> Packets;
55
56BOOST_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
72BOOST_AUTO_TEST_SUITE_END() // TestValidationPolicyAcceptAll
73BOOST_AUTO_TEST_SUITE_END() // V2
74BOOST_AUTO_TEST_SUITE_END() // Security
75
76} // namespace tests
77} // namespace v2
78} // namespace security
79} // namespace ndn