Vince Lehman | c2acdcb | 2015-04-29 11:14:35 -0500 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Nick Gordon | feae557 | 2017-01-13 12:06:26 -0600 | [diff] [blame] | 3 | * Copyright (c) 2014-2017, The University of Memphis, |
Vince Lehman | c2acdcb | 2015-04-29 11:14:35 -0500 | [diff] [blame] | 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 | |
| 28 | namespace nlsr { |
| 29 | namespace security { |
| 30 | namespace test { |
| 31 | |
| 32 | using std::shared_ptr; |
Muktadir Chowdhury | f04f989 | 2017-08-20 20:42:56 -0500 | [diff] [blame^] | 33 | using namespace nlsr::test; |
Vince Lehman | c2acdcb | 2015-04-29 11:14:35 -0500 | [diff] [blame] | 34 | |
Muktadir Chowdhury | f04f989 | 2017-08-20 20:42:56 -0500 | [diff] [blame^] | 35 | class CertificateStoreFixture : public BaseFixture |
Vince Lehman | c2acdcb | 2015-04-29 11:14:35 -0500 | [diff] [blame] | 36 | { |
| 37 | public: |
| 38 | CertificateStoreFixture() |
| 39 | { |
Muktadir Chowdhury | f04f989 | 2017-08-20 20:42:56 -0500 | [diff] [blame^] | 40 | auto identity = addIdentity("/TestNLSR/identity"); |
| 41 | certificateKey = identity.getDefaultKey().getName(); |
| 42 | certificate = identity.getDefaultKey().getDefaultCertificate(); |
Vince Lehman | c2acdcb | 2015-04-29 11:14:35 -0500 | [diff] [blame] | 43 | } |
| 44 | |
| 45 | public: |
Muktadir Chowdhury | f04f989 | 2017-08-20 20:42:56 -0500 | [diff] [blame^] | 46 | ndn::security::v2::Certificate certificate; |
Vince Lehman | c2acdcb | 2015-04-29 11:14:35 -0500 | [diff] [blame] | 47 | ndn::Name certificateKey; |
| 48 | }; |
| 49 | |
| 50 | BOOST_FIXTURE_TEST_SUITE(TestSecurityCertificateStore, CertificateStoreFixture) |
| 51 | |
| 52 | BOOST_AUTO_TEST_CASE(Basic) |
| 53 | { |
| 54 | CertificateStore store; |
| 55 | |
| 56 | BOOST_REQUIRE(store.find(certificateKey) == nullptr); |
| 57 | store.insert(certificate); |
| 58 | |
Muktadir Chowdhury | f04f989 | 2017-08-20 20:42:56 -0500 | [diff] [blame^] | 59 | BOOST_CHECK(*store.find(certificateKey) == certificate); |
Vince Lehman | c2acdcb | 2015-04-29 11:14:35 -0500 | [diff] [blame] | 60 | |
| 61 | store.clear(); |
| 62 | BOOST_REQUIRE(store.find(certificateKey) == nullptr); |
| 63 | } |
| 64 | |
| 65 | BOOST_AUTO_TEST_SUITE_END() |
| 66 | |
| 67 | } // namespace test |
| 68 | } // namespace security |
| 69 | } // namespace nlsr |