blob: f48971fcad7d5dc2d12355ccd3dcb45d8a404353 [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/*
Davide Pesavento2acce252022-09-08 22:03:03 -04003 * Copyright (c) 2013-2022 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"
Alexander Afanasyev7bc10fa2017-01-13 16:56:26 -080024
Davide Pesavento7e780642018-11-24 15:51:34 -050025#include "tests/boost-test.hpp"
Alexander Afanasyev09236c22020-06-03 13:42:38 -040026#include "tests/unit/security/validator-fixture.hpp"
Alexander Afanasyev7bc10fa2017-01-13 16:56:26 -080027
28namespace ndn {
29namespace security {
Alexander Afanasyev09236c22020-06-03 13:42:38 -040030inline namespace v2 {
Alexander Afanasyev7bc10fa2017-01-13 16:56:26 -080031namespace tests {
32
Alexander Afanasyev7bc10fa2017-01-13 16:56:26 -080033BOOST_AUTO_TEST_SUITE(Security)
Alexander Afanasyev7bc10fa2017-01-13 16:56:26 -080034
35class CertificateFetcherOfflineWrapper : public CertificateFetcherOffline
36{
37public:
38 CertificateFetcherOfflineWrapper(Face&)
39 {
40 }
41};
42
43using CertificateFetcherOfflineFixture = HierarchicalValidatorFixture<ValidationPolicySimpleHierarchy,
44 CertificateFetcherOfflineWrapper>;
45
46BOOST_FIXTURE_TEST_SUITE(TestCertificateFetcherOffline, CertificateFetcherOfflineFixture)
47
Davide Pesavento1a4a7bf2020-12-04 22:30:46 -050048using Packets = boost::mpl::vector<InterestV03Pkt, DataPkt>;
Alexander Afanasyev7bc10fa2017-01-13 16:56:26 -080049
50BOOST_AUTO_TEST_CASE_TEMPLATE(Validate, Packet, Packets)
51{
Davide Pesavento1a4a7bf2020-12-04 22:30:46 -050052 const Name name = "/Security/ValidatorFixture/Sub1/Packet";
Eric Newberryb74bbda2020-06-18 19:33:58 -070053
Davide Pesavento1a4a7bf2020-12-04 22:30:46 -050054 auto packet = Packet::makePacket(name);
Alexander Afanasyev7bc10fa2017-01-13 16:56:26 -080055 m_keyChain.sign(packet, signingByIdentity(subIdentity));
56 VALIDATE_FAILURE(packet, "Should fail, as no cert should be requested");
Davide Pesavento2acce252022-09-08 22:03:03 -040057 BOOST_TEST(this->lastError.getCode() == ValidationError::CANNOT_RETRIEVE_CERT);
58 BOOST_TEST(this->face.sentInterests.size() == 0);
Alexander Afanasyev7bc10fa2017-01-13 16:56:26 -080059
Davide Pesavento1a4a7bf2020-12-04 22:30:46 -050060 packet = Packet::makePacket(name);
Alexander Afanasyev7bc10fa2017-01-13 16:56:26 -080061 m_keyChain.sign(packet, signingByIdentity(identity));
62 VALIDATE_SUCCESS(packet, "Should succeed, as signed by trust anchor");
63 BOOST_CHECK_EQUAL(this->face.sentInterests.size(), 0);
64}
65
66BOOST_AUTO_TEST_SUITE_END() // TestCertificateFetcherOffline
Alexander Afanasyev7bc10fa2017-01-13 16:56:26 -080067BOOST_AUTO_TEST_SUITE_END() // Security
68
69} // namespace tests
Alexander Afanasyev09236c22020-06-03 13:42:38 -040070} // inline namespace v2
Alexander Afanasyev7bc10fa2017-01-13 16:56:26 -080071} // namespace security
72} // namespace ndn