blob: 91c4fe27f81daa792233fd65955298f7280707fa [file] [log] [blame]
Yingdi Yub8f8b342015-04-27 11:06:42 -07001/* -*- 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/identity-container.hpp"
23#include "security/pib.hpp"
Yingdi Yu3bf91f52015-06-12 19:39:40 -070024#include "security/pib-memory.hpp"
Yingdi Yub8f8b342015-04-27 11:06:42 -070025#include "pib-data-fixture.hpp"
26
27#include "boost-test.hpp"
28
29namespace ndn {
30namespace security {
31namespace tests {
32
33BOOST_AUTO_TEST_SUITE(SecurityIdentityContainer)
34
35BOOST_FIXTURE_TEST_CASE(TestIdentityContainer, PibDataFixture)
36{
Yingdi Yu3bf91f52015-06-12 19:39:40 -070037 auto pibImpl = make_shared<PibMemory>();
Yingdi Yub8f8b342015-04-27 11:06:42 -070038 Pib pib("pib-memory", "", pibImpl);
39
40 Identity identity1 = pib.addIdentity(id1);
41 Identity identity2 = pib.addIdentity(id2);
42
43 IdentityContainer container = pib.getIdentities();
44 BOOST_CHECK_EQUAL(container.size(), 2);
45 BOOST_CHECK(container.find(id1) != container.end());
46 BOOST_CHECK(container.find(id2) != container.end());
47
48 std::set<Name> idNames;
49 idNames.insert(id1);
50 idNames.insert(id2);
51
52 IdentityContainer::const_iterator it = container.begin();
53 std::set<Name>::const_iterator testIt = idNames.begin();
54 BOOST_CHECK_EQUAL((*it).getName(), *testIt);
55 it++;
56 testIt++;
57 BOOST_CHECK_EQUAL((*it).getName(), *testIt);
58 ++it;
59 testIt++;
60 BOOST_CHECK(it == container.end());
61
62 size_t count = 0;
63 testIt = idNames.begin();
64 for (const auto& identity : container) {
65 BOOST_CHECK_EQUAL(identity.getName(), *testIt);
66 testIt++;
67 count++;
68 }
69 BOOST_CHECK_EQUAL(count, 2);
70}
71
72BOOST_AUTO_TEST_SUITE_END()
73
74} // namespace tests
75} // namespace security
76} // namespace ndn