blob: cd8c46674bda3168cdf015124198fdc975820112 [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-simple-hierarchy.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)
38BOOST_FIXTURE_TEST_SUITE(TestValidationPolicySimpleHierarchy,
39 HierarchicalValidatorFixture<ValidationPolicySimpleHierarchy>)
40
41typedef boost::mpl::vector<Interest, Data> Packets;
42
43BOOST_AUTO_TEST_CASE_TEMPLATE(Validate, Packet, Packets)
44{
45 Packet unsignedPacket("/Security/V2/ValidatorFixture/Sub1/Sub2/Packet");
46
47 Packet packet = unsignedPacket;
48 VALIDATE_FAILURE(packet, "Unsigned");
49
50 packet = unsignedPacket;
51 m_keyChain.sign(packet, signingWithSha256());
52 VALIDATE_FAILURE(packet, "Policy doesn't accept Sha256Digest signature");
53
54 packet = unsignedPacket;
55 m_keyChain.sign(packet, signingByIdentity(identity));
56 VALIDATE_SUCCESS(packet, "Should get accepted, as signed by the anchor");
57
58 packet = unsignedPacket;
59 m_keyChain.sign(packet, signingByIdentity(subIdentity));
60 VALIDATE_SUCCESS(packet, "Should get accepted, as signed by the policy-compliant cert");
61
62 packet = unsignedPacket;
63 m_keyChain.sign(packet, signingByIdentity(otherIdentity));
64 VALIDATE_FAILURE(packet, "Should fail, as signed by the policy-violating cert");
65
66 packet = unsignedPacket;
67 m_keyChain.sign(packet, signingByIdentity(subSelfSignedIdentity));
68 VALIDATE_FAILURE(packet, "Should fail, because subSelfSignedIdentity is not a trust anchor");
69
70 // TODO add checks with malformed packets
71}
72
73BOOST_AUTO_TEST_SUITE_END() // TestValidator
74BOOST_AUTO_TEST_SUITE_END() // V2
75BOOST_AUTO_TEST_SUITE_END() // Security
76
77} // namespace tests
78} // namespace v2
79} // namespace security
80} // namespace ndn