blob: d31f7c639301ee3f4611b13bd0a34a0e2e021f10 [file] [log] [blame]
Yingdi Yub8f8b342015-04-27 11:06:42 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Davide Pesaventoeee3e822016-11-26 19:19:34 +01003 * Copyright (c) 2013-2016 Regents of the University of California.
Yingdi Yub8f8b342015-04-27 11:06:42 -07004 *
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
Alexander Afanasyev97709c02016-08-25 19:58:30 -070022#include "security/pib/identity.hpp"
23#include "security/pib/pib.hpp"
24#include "security/pib/pib-memory.hpp"
Yingdi Yub8f8b342015-04-27 11:06:42 -070025
26#include "boost-test.hpp"
Davide Pesaventoeee3e822016-11-26 19:19:34 +010027#include "pib-data-fixture.hpp"
Yingdi Yub8f8b342015-04-27 11:06:42 -070028
29namespace ndn {
30namespace security {
31namespace tests {
32
Davide Pesaventoeee3e822016-11-26 19:19:34 +010033BOOST_AUTO_TEST_SUITE(Security)
Alexander Afanasyev97709c02016-08-25 19:58:30 -070034BOOST_AUTO_TEST_SUITE(TestPib)
Davide Pesaventoeee3e822016-11-26 19:19:34 +010035BOOST_FIXTURE_TEST_SUITE(TestIdentity, PibDataFixture)
Yingdi Yub8f8b342015-04-27 11:06:42 -070036
Davide Pesaventoeee3e822016-11-26 19:19:34 +010037BOOST_AUTO_TEST_CASE(ValidityChecking)
Yingdi Yub8f8b342015-04-27 11:06:42 -070038{
39 // identity
40 Identity id;
41
42 BOOST_CHECK_EQUAL(static_cast<bool>(id), false);
43 BOOST_CHECK_EQUAL(!id, true);
44
45 if (id)
46 BOOST_CHECK(false);
47 else
48 BOOST_CHECK(true);
49
Yingdi Yu3bf91f52015-06-12 19:39:40 -070050 auto pibImpl = make_shared<PibMemory>();
Yingdi Yub8f8b342015-04-27 11:06:42 -070051 id = Identity(id1, pibImpl, true);
52
53 BOOST_CHECK_EQUAL(static_cast<bool>(id), true);
54 BOOST_CHECK_EQUAL(!id, false);
55
56 if (id)
57 BOOST_CHECK(true);
58 else
59 BOOST_CHECK(false);
60}
61
Davide Pesaventoeee3e822016-11-26 19:19:34 +010062BOOST_AUTO_TEST_CASE(KeyOperations)
Yingdi Yub8f8b342015-04-27 11:06:42 -070063{
Yingdi Yu3bf91f52015-06-12 19:39:40 -070064 auto pibImpl = make_shared<PibMemory>();
Yingdi Yub8f8b342015-04-27 11:06:42 -070065
66 Identity identity1(id1, pibImpl, true);
67
68 BOOST_CHECK_THROW(identity1.getKey(id1Key1Name.get(-1)), Pib::Error);
69 Key key11 = identity1.addKey(id1Key1, id1Key1Name.get(-1));
70 BOOST_CHECK_NO_THROW(identity1.getKey(id1Key1Name.get(-1)));
71 identity1.removeKey(id1Key1Name.get(-1));
72 BOOST_CHECK_THROW(identity1.getKey(id1Key1Name.get(-1)), Pib::Error);
73
74 BOOST_CHECK_THROW(identity1.getDefaultKey(), Pib::Error);
75 BOOST_REQUIRE_THROW(identity1.setDefaultKey(id1Key1Name.get(-1)), Pib::Error);
76 BOOST_REQUIRE_NO_THROW(identity1.setDefaultKey(id1Key1, id1Key1Name.get(-1)));
77 BOOST_REQUIRE_NO_THROW(identity1.getDefaultKey());
78 BOOST_CHECK_EQUAL(identity1.getDefaultKey().getKeyId(), id1Key1Name.get(-1));
79 identity1.removeKey(id1Key1Name.get(-1));
80 BOOST_CHECK_THROW(identity1.getKey(id1Key1Name.get(-1)), Pib::Error);
81 BOOST_CHECK_THROW(identity1.getDefaultKey(), Pib::Error);
82}
83
Davide Pesaventoeee3e822016-11-26 19:19:34 +010084BOOST_AUTO_TEST_SUITE_END() // TestIdentity
Alexander Afanasyev97709c02016-08-25 19:58:30 -070085BOOST_AUTO_TEST_SUITE_END() // TestPib
Davide Pesaventoeee3e822016-11-26 19:19:34 +010086BOOST_AUTO_TEST_SUITE_END() // Security
Yingdi Yub8f8b342015-04-27 11:06:42 -070087
88} // namespace tests
89} // namespace security
90} // namespace ndn