blob: be617acaa13319b2472d0d664b9b1a959a2b6910 [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
22#include "security/pib.hpp"
Yingdi Yu3bf91f52015-06-12 19:39:40 -070023#include "security/pib-memory.hpp"
Yingdi Yub8f8b342015-04-27 11:06:42 -070024
25#include "boost-test.hpp"
Davide Pesaventoeee3e822016-11-26 19:19:34 +010026#include "pib-data-fixture.hpp"
Yingdi Yub8f8b342015-04-27 11:06:42 -070027
28namespace ndn {
29namespace security {
30namespace tests {
31
Davide Pesaventoeee3e822016-11-26 19:19:34 +010032BOOST_AUTO_TEST_SUITE(Security)
33BOOST_FIXTURE_TEST_SUITE(TestPib, PibDataFixture)
Yingdi Yub8f8b342015-04-27 11:06:42 -070034
Davide Pesaventoeee3e822016-11-26 19:19:34 +010035BOOST_AUTO_TEST_CASE(ValidityChecking)
Yingdi Yub8f8b342015-04-27 11:06:42 -070036{
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 id = pib.addIdentity(id1);
41
42 BOOST_CHECK_EQUAL(bool(id), true);
43 BOOST_CHECK_EQUAL(!id, false);
44
45 if (id)
46 BOOST_CHECK(true);
47 else
48 BOOST_CHECK(false);
49
50 // key
51 Key key = id.addKey(id1Key1, id1Key1Name.get(-1));
52
53 BOOST_CHECK_EQUAL(bool(key), true);
54 BOOST_CHECK_EQUAL(!key, false);
55
56 if (key)
57 BOOST_CHECK(true);
58 else
59 BOOST_CHECK(false);
60}
61
Davide Pesaventoeee3e822016-11-26 19:19:34 +010062BOOST_AUTO_TEST_CASE(IdentityOperations)
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 Pib pib("pib-memory", "", pibImpl);
66
67 BOOST_CHECK_THROW(pib.getIdentity(id1), Pib::Error);
68 Identity identity1 = pib.addIdentity(id1);
69 BOOST_CHECK_NO_THROW(pib.getIdentity(id1));
70 pib.removeIdentity(id1);
71 BOOST_CHECK_THROW(pib.getIdentity(id1), Pib::Error);
72
73 BOOST_CHECK_THROW(pib.getDefaultIdentity(), Pib::Error);
74 BOOST_REQUIRE_NO_THROW(pib.setDefaultIdentity(id1));
75 BOOST_REQUIRE_NO_THROW(pib.getDefaultIdentity());
76 BOOST_CHECK_EQUAL(pib.getDefaultIdentity().getName(), id1);
77 pib.removeIdentity(id1);
78 BOOST_CHECK_THROW(pib.getIdentity(id1), Pib::Error);
79 BOOST_CHECK_THROW(pib.getDefaultIdentity(), Pib::Error);
80}
81
Davide Pesaventoeee3e822016-11-26 19:19:34 +010082BOOST_AUTO_TEST_SUITE_END() // TestPib
83BOOST_AUTO_TEST_SUITE_END() // Security
Yingdi Yub8f8b342015-04-27 11:06:42 -070084
85} // namespace tests
86} // namespace security
87} // namespace ndn