blob: a37e6d821763483017325f3769640c9cff9a44e6 [file] [log] [blame]
Vince Lehmanc2acdcb2015-04-29 11:14:35 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Nick Gordonfeae5572017-01-13 12:06:26 -06003 * Copyright (c) 2014-2017, The University of Memphis,
Vince Lehmanc2acdcb2015-04-29 11:14:35 -05004 * Regents of the University of California,
5 * Arizona Board of Regents.
6 *
7 * This file is part of NLSR (Named-data Link State Routing).
8 * See AUTHORS.md for complete list of NLSR authors and contributors.
9 *
10 * NLSR is free software: you can redistribute it and/or modify it under the terms
11 * of the GNU General Public License as published by the Free Software Foundation,
12 * either version 3 of the License, or (at your option) any later version.
13 *
14 * NLSR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
15 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
16 * PURPOSE. See the GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along with
19 * NLSR, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
20 **/
21
22#include "security/certificate-store.hpp"
23
24#include "../test-common.hpp"
25
26#include <ndn-cxx/security/key-chain.hpp>
27
28namespace nlsr {
29namespace security {
30namespace test {
31
32using std::shared_ptr;
Muktadir Chowdhuryf04f9892017-08-20 20:42:56 -050033using namespace nlsr::test;
Vince Lehmanc2acdcb2015-04-29 11:14:35 -050034
Muktadir Chowdhuryf04f9892017-08-20 20:42:56 -050035class CertificateStoreFixture : public BaseFixture
Vince Lehmanc2acdcb2015-04-29 11:14:35 -050036{
37public:
38 CertificateStoreFixture()
39 {
Muktadir Chowdhuryf04f9892017-08-20 20:42:56 -050040 auto identity = addIdentity("/TestNLSR/identity");
41 certificateKey = identity.getDefaultKey().getName();
42 certificate = identity.getDefaultKey().getDefaultCertificate();
Vince Lehmanc2acdcb2015-04-29 11:14:35 -050043 }
44
45public:
Muktadir Chowdhuryf04f9892017-08-20 20:42:56 -050046 ndn::security::v2::Certificate certificate;
Vince Lehmanc2acdcb2015-04-29 11:14:35 -050047 ndn::Name certificateKey;
48};
49
50BOOST_FIXTURE_TEST_SUITE(TestSecurityCertificateStore, CertificateStoreFixture)
51
52BOOST_AUTO_TEST_CASE(Basic)
53{
54 CertificateStore store;
55
56 BOOST_REQUIRE(store.find(certificateKey) == nullptr);
57 store.insert(certificate);
58
Muktadir Chowdhuryf04f9892017-08-20 20:42:56 -050059 BOOST_CHECK(*store.find(certificateKey) == certificate);
Vince Lehmanc2acdcb2015-04-29 11:14:35 -050060
61 store.clear();
62 BOOST_REQUIRE(store.find(certificateKey) == nullptr);
63}
64
65BOOST_AUTO_TEST_SUITE_END()
66
67} // namespace test
68} // namespace security
69} // namespace nlsr