Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 3 | * Copyright (c) 2013-2016 Regents of the University of California. |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 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/key-container.hpp" |
| 23 | #include "security/pib.hpp" |
Yingdi Yu | 3bf91f5 | 2015-06-12 19:39:40 -0700 | [diff] [blame] | 24 | #include "security/pib-memory.hpp" |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 25 | |
| 26 | #include "boost-test.hpp" |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 27 | #include "pib-data-fixture.hpp" |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 28 | |
| 29 | namespace ndn { |
| 30 | namespace security { |
| 31 | namespace tests { |
| 32 | |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 33 | BOOST_AUTO_TEST_SUITE(Security) |
| 34 | BOOST_AUTO_TEST_SUITE(TestKeyContainer) |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 35 | |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 36 | BOOST_FIXTURE_TEST_CASE(Basic, PibDataFixture) |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 37 | { |
Yingdi Yu | 3bf91f5 | 2015-06-12 19:39:40 -0700 | [diff] [blame] | 38 | auto pibImpl = make_shared<PibMemory>(); |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 39 | Pib pib("pib-memory", "", pibImpl); |
| 40 | |
| 41 | Identity identity1 = pib.addIdentity(id1); |
| 42 | |
| 43 | Key key11 = identity1.addKey(id1Key1, id1Key1Name.get(-1)); |
| 44 | Key key12 = identity1.addKey(id1Key2, id1Key2Name.get(-1)); |
| 45 | |
| 46 | KeyContainer container = identity1.getKeys(); |
| 47 | BOOST_CHECK_EQUAL(container.size(), 2); |
| 48 | BOOST_CHECK(container.find(id1Key1Name.get(-1)) != container.end()); |
| 49 | BOOST_CHECK(container.find(id1Key2Name.get(-1)) != container.end()); |
| 50 | |
| 51 | std::set<name::Component> keyNames; |
| 52 | keyNames.insert(id1Key1Name.get(-1)); |
| 53 | keyNames.insert(id1Key2Name.get(-1)); |
| 54 | |
| 55 | KeyContainer::const_iterator it = container.begin(); |
| 56 | std::set<name::Component>::const_iterator testIt = keyNames.begin(); |
| 57 | BOOST_CHECK_EQUAL((*it).getKeyId(), *testIt); |
| 58 | it++; |
| 59 | testIt++; |
| 60 | BOOST_CHECK_EQUAL((*it).getKeyId(), *testIt); |
| 61 | ++it; |
| 62 | testIt++; |
| 63 | BOOST_CHECK(it == container.end()); |
| 64 | |
| 65 | size_t count = 0; |
| 66 | testIt = keyNames.begin(); |
| 67 | for (const auto& key : container) { |
| 68 | BOOST_CHECK_EQUAL(key.getIdentity(), id1); |
| 69 | BOOST_CHECK_EQUAL(key.getKeyId(), *testIt); |
| 70 | testIt++; |
| 71 | count++; |
| 72 | } |
| 73 | BOOST_CHECK_EQUAL(count, 2); |
| 74 | } |
| 75 | |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 76 | BOOST_AUTO_TEST_SUITE_END() // TestKeyContainer |
| 77 | BOOST_AUTO_TEST_SUITE_END() // Security |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 78 | |
| 79 | } // namespace tests |
| 80 | } // namespace security |
| 81 | } // namespace ndn |