blob: c55c00f3ee34459b887d73d32850e8e28f669f0b [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.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
29namespace ndn {
30namespace security {
31namespace tests {
32
33BOOST_AUTO_TEST_SUITE(SecurityIdentity)
34
35BOOST_FIXTURE_TEST_CASE(ValidityChecking, PibDataFixture)
36{
37 // identity
38 Identity id;
39
40 BOOST_CHECK_EQUAL(static_cast<bool>(id), false);
41 BOOST_CHECK_EQUAL(!id, true);
42
43 if (id)
44 BOOST_CHECK(false);
45 else
46 BOOST_CHECK(true);
47
48 auto pibImpl = make_shared<InMemoryPibImpl>();
49 id = Identity(id1, pibImpl, true);
50
51 BOOST_CHECK_EQUAL(static_cast<bool>(id), true);
52 BOOST_CHECK_EQUAL(!id, false);
53
54 if (id)
55 BOOST_CHECK(true);
56 else
57 BOOST_CHECK(false);
58}
59
60BOOST_FIXTURE_TEST_CASE(TestKeyOperation, PibDataFixture)
61{
62 auto pibImpl = make_shared<InMemoryPibImpl>();
63
64 Identity identity1(id1, pibImpl, true);
65
66 BOOST_CHECK_THROW(identity1.getKey(id1Key1Name.get(-1)), Pib::Error);
67 Key key11 = identity1.addKey(id1Key1, id1Key1Name.get(-1));
68 BOOST_CHECK_NO_THROW(identity1.getKey(id1Key1Name.get(-1)));
69 identity1.removeKey(id1Key1Name.get(-1));
70 BOOST_CHECK_THROW(identity1.getKey(id1Key1Name.get(-1)), Pib::Error);
71
72 BOOST_CHECK_THROW(identity1.getDefaultKey(), Pib::Error);
73 BOOST_REQUIRE_THROW(identity1.setDefaultKey(id1Key1Name.get(-1)), Pib::Error);
74 BOOST_REQUIRE_NO_THROW(identity1.setDefaultKey(id1Key1, id1Key1Name.get(-1)));
75 BOOST_REQUIRE_NO_THROW(identity1.getDefaultKey());
76 BOOST_CHECK_EQUAL(identity1.getDefaultKey().getKeyId(), id1Key1Name.get(-1));
77 identity1.removeKey(id1Key1Name.get(-1));
78 BOOST_CHECK_THROW(identity1.getKey(id1Key1Name.get(-1)), Pib::Error);
79 BOOST_CHECK_THROW(identity1.getDefaultKey(), Pib::Error);
80}
81
82BOOST_AUTO_TEST_SUITE_END()
83
84} // namespace tests
85} // namespace security
86} // namespace ndn