blob: 0ede9bf9d49db2732add6e8183ab50296c7ae5df [file] [log] [blame]
Vince Lehmanc2acdcb2015-04-29 11:14:35 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2014-2015, The University of Memphis,
4 * 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;
33
34class CertificateStoreFixture
35{
36public:
37 CertificateStoreFixture()
38 {
39 // Create certificate
40 ndn::Name identity("/TestNLSR/identity");
41 identity.appendVersion();
42
43 ndn::KeyChain keyChain;
44 keyChain.createIdentity(identity);
45 ndn::Name certName = keyChain.getDefaultCertificateNameForIdentity(identity);
46 certificate = keyChain.getCertificate(certName);
47
48 BOOST_REQUIRE(certificate != nullptr);
49
50 certificateKey = certificate->getName().getPrefix(-1);
51 }
52
53public:
54 shared_ptr<ndn::IdentityCertificate> certificate;
55 ndn::Name certificateKey;
56};
57
58BOOST_FIXTURE_TEST_SUITE(TestSecurityCertificateStore, CertificateStoreFixture)
59
60BOOST_AUTO_TEST_CASE(Basic)
61{
62 CertificateStore store;
63
64 BOOST_REQUIRE(store.find(certificateKey) == nullptr);
65 store.insert(certificate);
66
67 BOOST_CHECK(*store.find(certificateKey) == *certificate);
68
69 store.clear();
70 BOOST_REQUIRE(store.find(certificateKey) == nullptr);
71}
72
73BOOST_AUTO_TEST_SUITE_END()
74
75} // namespace test
76} // namespace security
77} // namespace nlsr