blob: ac1e9ee0540b593df51d1bc991568558b5d1de5d [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/*
Alexander Afanasyev09236c22020-06-03 13:42:38 -04003 * Copyright (c) 2013-2020 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
Alexander Afanasyev09236c22020-06-03 13:42:38 -040022#include "ndn-cxx/security/certificate-fetcher-offline.hpp"
23#include "ndn-cxx/security/validation-policy-simple-hierarchy.hpp"
Davide Pesavento97ee8112020-08-11 21:38:34 -040024#include "ndn-cxx/util/scope.hpp"
Alexander Afanasyev7bc10fa2017-01-13 16:56:26 -080025
Davide Pesavento7e780642018-11-24 15:51:34 -050026#include "tests/boost-test.hpp"
Alexander Afanasyev09236c22020-06-03 13:42:38 -040027#include "tests/unit/security/validator-fixture.hpp"
Alexander Afanasyev7bc10fa2017-01-13 16:56:26 -080028
29namespace ndn {
30namespace security {
Alexander Afanasyev09236c22020-06-03 13:42:38 -040031inline namespace v2 {
Alexander Afanasyev7bc10fa2017-01-13 16:56:26 -080032namespace tests {
33
34using namespace ndn::tests;
35
36BOOST_AUTO_TEST_SUITE(Security)
Alexander Afanasyev7bc10fa2017-01-13 16:56:26 -080037
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
Davide Pesavento97ee8112020-08-11 21:38:34 -040051using Packets = boost::mpl::vector<Interest, Data>;
Alexander Afanasyev7bc10fa2017-01-13 16:56:26 -080052
53BOOST_AUTO_TEST_CASE_TEMPLATE(Validate, Packet, Packets)
54{
Eric Newberryb74bbda2020-06-18 19:33:58 -070055 // Can't set CanBePrefix on Interests in this test case because of template
56 // TODO: Remove in #4582
Davide Pesavento97ee8112020-08-11 21:38:34 -040057 auto guard = make_scope_exit([] { Interest::s_errorIfCanBePrefixUnset = true; });
Eric Newberryb74bbda2020-06-18 19:33:58 -070058 Interest::s_errorIfCanBePrefixUnset = false;
59
Alexander Afanasyev09236c22020-06-03 13:42:38 -040060 Packet unsignedPacket("/Security/ValidatorFixture/Sub1/Packet");
Alexander Afanasyev7bc10fa2017-01-13 16:56:26 -080061
62 Packet packet = unsignedPacket;
63 m_keyChain.sign(packet, signingByIdentity(subIdentity));
64 VALIDATE_FAILURE(packet, "Should fail, as no cert should be requested");
65 BOOST_CHECK_EQUAL(this->face.sentInterests.size(), 0);
66
67 packet = unsignedPacket;
68 m_keyChain.sign(packet, signingByIdentity(identity));
69 VALIDATE_SUCCESS(packet, "Should succeed, as signed by trust anchor");
70 BOOST_CHECK_EQUAL(this->face.sentInterests.size(), 0);
71}
72
73BOOST_AUTO_TEST_SUITE_END() // TestCertificateFetcherOffline
Alexander Afanasyev7bc10fa2017-01-13 16:56:26 -080074BOOST_AUTO_TEST_SUITE_END() // Security
75
76} // namespace tests
Alexander Afanasyev09236c22020-06-03 13:42:38 -040077} // inline namespace v2
Alexander Afanasyev7bc10fa2017-01-13 16:56:26 -080078} // namespace security
79} // namespace ndn