blob: 3704d9201c2c0a96e0cfc9c547dbd81d79f362f7 [file] [log] [blame]
Yingdi Yub8f8b342015-04-27 11:06:42 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Yingdi Yu6ee2d362015-07-16 21:48:05 -07003 * Copyright (c) 2013-2017 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 {
Yingdi Yu6ee2d362015-07-16 21:48:05 -070031namespace pib {
Yingdi Yub8f8b342015-04-27 11:06:42 -070032namespace tests {
33
Yingdi Yu6ee2d362015-07-16 21:48:05 -070034using namespace ndn::security::tests;
35
Davide Pesaventoeee3e822016-11-26 19:19:34 +010036BOOST_AUTO_TEST_SUITE(Security)
Yingdi Yu6ee2d362015-07-16 21:48:05 -070037BOOST_AUTO_TEST_SUITE(Pib)
Davide Pesaventoeee3e822016-11-26 19:19:34 +010038BOOST_FIXTURE_TEST_SUITE(TestIdentity, PibDataFixture)
Yingdi Yub8f8b342015-04-27 11:06:42 -070039
Yingdi Yu6ee2d362015-07-16 21:48:05 -070040using pib::Pib;
41
Davide Pesaventoeee3e822016-11-26 19:19:34 +010042BOOST_AUTO_TEST_CASE(ValidityChecking)
Yingdi Yub8f8b342015-04-27 11:06:42 -070043{
44 // identity
45 Identity id;
46
47 BOOST_CHECK_EQUAL(static_cast<bool>(id), false);
48 BOOST_CHECK_EQUAL(!id, true);
49
50 if (id)
51 BOOST_CHECK(false);
52 else
53 BOOST_CHECK(true);
54
Yingdi Yu7b3b5e92015-08-13 19:52:35 -070055 id = Identity(id1, make_shared<PibMemory>(), true);
Yingdi Yub8f8b342015-04-27 11:06:42 -070056
57 BOOST_CHECK_EQUAL(static_cast<bool>(id), true);
58 BOOST_CHECK_EQUAL(!id, false);
59
60 if (id)
61 BOOST_CHECK(true);
62 else
63 BOOST_CHECK(false);
64}
65
Davide Pesaventoeee3e822016-11-26 19:19:34 +010066BOOST_AUTO_TEST_CASE(KeyOperations)
Yingdi Yub8f8b342015-04-27 11:06:42 -070067{
Yingdi Yu7b3b5e92015-08-13 19:52:35 -070068 Identity identity1(id1, make_shared<PibMemory>(), true);
Yingdi Yub8f8b342015-04-27 11:06:42 -070069
Yingdi Yu6ee2d362015-07-16 21:48:05 -070070 // Key does not exist, throw Error
71 BOOST_CHECK_THROW(identity1.getKey(id1Key1Name), Pib::Error);
72 // Key name does not match identity name, throw Error
73 BOOST_CHECK_THROW(identity1.getKey(id2Key1Name), Pib::Error);
Yingdi Yub8f8b342015-04-27 11:06:42 -070074
Yingdi Yu6ee2d362015-07-16 21:48:05 -070075 // Add key
76 Key key11 = identity1.addKey(id1Key1.buf(), id1Key1.size(), id1Key1Name);
77 BOOST_CHECK_NO_THROW(identity1.getKey(id1Key1Name));
78 // Key name does not match identity name, throw Error
79 BOOST_CHECK_THROW(identity1.addKey(id2Key1.buf(), id2Key1.size(), id2Key1Name), Pib::Error);
80
81 // Remove key
82 identity1.removeKey(id1Key1Name);
83 BOOST_CHECK_THROW(identity1.getKey(id1Key1Name), Pib::Error);
84 // Key name does not match identity name, throw Error
85 BOOST_CHECK_THROW(identity1.removeKey(id2Key1Name), Pib::Error);
86
87 // Default key does not exist, throw Error
Yingdi Yub8f8b342015-04-27 11:06:42 -070088 BOOST_CHECK_THROW(identity1.getDefaultKey(), Pib::Error);
Yingdi Yu6ee2d362015-07-16 21:48:05 -070089
90 // Set default key but the key does not exist, throw Error
91 BOOST_CHECK_THROW(identity1.setDefaultKey(id1Key1Name), Pib::Error);
92 // Set default key
93 BOOST_REQUIRE_NO_THROW(identity1.setDefaultKey(id1Key1.buf(), id1Key1.size(), id1Key1Name));
94 BOOST_CHECK_NO_THROW(identity1.getDefaultKey());
95 BOOST_CHECK_EQUAL(identity1.getDefaultKey().getName(), id1Key1Name);
96
97 // Remove the default key
98 identity1.removeKey(id1Key1Name);
99 BOOST_CHECK_THROW(identity1.getKey(id1Key1Name), Pib::Error);
Yingdi Yub8f8b342015-04-27 11:06:42 -0700100 BOOST_CHECK_THROW(identity1.getDefaultKey(), Pib::Error);
101}
102
Davide Pesaventoeee3e822016-11-26 19:19:34 +0100103BOOST_AUTO_TEST_SUITE_END() // TestIdentity
Yingdi Yu6ee2d362015-07-16 21:48:05 -0700104BOOST_AUTO_TEST_SUITE_END() // Pib
Davide Pesaventoeee3e822016-11-26 19:19:34 +0100105BOOST_AUTO_TEST_SUITE_END() // Security
Yingdi Yub8f8b342015-04-27 11:06:42 -0700106
107} // namespace tests
Yingdi Yu6ee2d362015-07-16 21:48:05 -0700108} // namespace pib
Yingdi Yub8f8b342015-04-27 11:06:42 -0700109} // namespace security
110} // namespace ndn