Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
| 3 | * Copyright (c) 2013-2015 Regents of the University of California. |
| 4 | * |
| 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 | |
| 22 | #include "security/certificate-container.hpp" |
| 23 | #include "security/pib.hpp" |
| 24 | #include "security/in-memory-pib-impl.hpp" |
| 25 | #include "pib-data-fixture.hpp" |
| 26 | |
| 27 | #include "boost-test.hpp" |
| 28 | |
| 29 | namespace ndn { |
| 30 | namespace security { |
| 31 | namespace tests { |
| 32 | |
| 33 | BOOST_AUTO_TEST_SUITE(SecurityCertificateContainer) |
| 34 | |
| 35 | BOOST_FIXTURE_TEST_CASE(TestCertificateContainer, PibDataFixture) |
| 36 | { |
| 37 | auto pibImpl = make_shared<InMemoryPibImpl>(); |
| 38 | Pib pib("pib-memory", "", pibImpl); |
| 39 | |
| 40 | Identity identity1 = pib.addIdentity(id1); |
| 41 | Key key11 = identity1.addKey(id1Key1, id1Key1Name.get(-1)); |
| 42 | key11.addCertificate(id1Key1Cert1); |
| 43 | key11.addCertificate(id1Key1Cert2); |
| 44 | |
| 45 | CertificateContainer container = key11.getCertificates(); |
| 46 | BOOST_CHECK_EQUAL(container.size(), 2); |
| 47 | BOOST_CHECK(container.find(id1Key1Cert1.getName()) != container.end()); |
| 48 | BOOST_CHECK(container.find(id1Key1Cert2.getName()) != container.end()); |
| 49 | |
| 50 | std::set<Name> certNames; |
| 51 | certNames.insert(id1Key1Cert1.getName()); |
| 52 | certNames.insert(id1Key1Cert2.getName()); |
| 53 | |
| 54 | CertificateContainer::const_iterator it = container.begin(); |
| 55 | std::set<Name>::const_iterator testIt = certNames.begin(); |
| 56 | BOOST_CHECK_EQUAL((*it).getName(), *testIt); |
| 57 | it++; |
| 58 | testIt++; |
| 59 | BOOST_CHECK_EQUAL((*it).getName(), *testIt); |
| 60 | ++it; |
| 61 | testIt++; |
| 62 | BOOST_CHECK(it == container.end()); |
| 63 | |
| 64 | size_t count = 0; |
| 65 | testIt = certNames.begin(); |
| 66 | for (const auto& cert : container) { |
| 67 | BOOST_CHECK_EQUAL(cert.getName(), *testIt); |
| 68 | testIt++; |
| 69 | count++; |
| 70 | } |
| 71 | BOOST_CHECK_EQUAL(count, 2); |
| 72 | } |
| 73 | |
| 74 | BOOST_AUTO_TEST_SUITE_END() |
| 75 | |
| 76 | } // namespace tests |
| 77 | } // namespace security |
| 78 | } // namespace ndn |