blob: 102a3082beb8dbe229c158666a56ff89613702b7 [file] [log] [blame]
Alexander Afanasyev7bc10fa2017-01-13 16:56:26 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento74daf742018-11-23 18:14:13 -05002/*
3 * Copyright (c) 2013-2018 Regents of the University of California.
Alexander Afanasyev7bc10fa2017-01-13 16:56:26 -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
22#include "security/v2/certificate-fetcher-offline.hpp"
23#include "security/v2/validation-policy-simple-hierarchy.hpp"
24
25#include "boost-test.hpp"
26#include "validator-fixture.hpp"
27
28namespace ndn {
29namespace security {
30namespace v2 {
31namespace tests {
32
33using namespace ndn::tests;
34
35BOOST_AUTO_TEST_SUITE(Security)
36BOOST_AUTO_TEST_SUITE(V2)
37
38class CertificateFetcherOfflineWrapper : public CertificateFetcherOffline
39{
40public:
41 CertificateFetcherOfflineWrapper(Face&)
42 {
43 }
44};
45
46using CertificateFetcherOfflineFixture = HierarchicalValidatorFixture<ValidationPolicySimpleHierarchy,
47 CertificateFetcherOfflineWrapper>;
48
49BOOST_FIXTURE_TEST_SUITE(TestCertificateFetcherOffline, CertificateFetcherOfflineFixture)
50
51typedef boost::mpl::vector<Interest, Data> Packets;
52
53BOOST_AUTO_TEST_CASE_TEMPLATE(Validate, Packet, Packets)
54{
55 Packet unsignedPacket("/Security/V2/ValidatorFixture/Sub1/Packet");
56
57 Packet packet = unsignedPacket;
58 m_keyChain.sign(packet, signingByIdentity(subIdentity));
59 VALIDATE_FAILURE(packet, "Should fail, as no cert should be requested");
60 BOOST_CHECK_EQUAL(this->face.sentInterests.size(), 0);
61
62 packet = unsignedPacket;
63 m_keyChain.sign(packet, signingByIdentity(identity));
64 VALIDATE_SUCCESS(packet, "Should succeed, as signed by trust anchor");
65 BOOST_CHECK_EQUAL(this->face.sentInterests.size(), 0);
66}
67
68BOOST_AUTO_TEST_SUITE_END() // TestCertificateFetcherOffline
69BOOST_AUTO_TEST_SUITE_END() // V2
70BOOST_AUTO_TEST_SUITE_END() // Security
71
72} // namespace tests
73} // namespace v2
74} // namespace security
75} // namespace ndn