blob: 6a543f6ed2094e9cbca21afe52f00e135096433f [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/key.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(TestKey, 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{
Yingdi Yub8f8b342015-04-27 11:06:42 -070044 Key key;
45
46 BOOST_CHECK_EQUAL(static_cast<bool>(key), false);
47 BOOST_CHECK_EQUAL(!key, true);
48
49 if (key)
50 BOOST_CHECK(false);
51 else
52 BOOST_CHECK(true);
53
Yingdi Yu6ee2d362015-07-16 21:48:05 -070054 key = Key(id1Key1Name, id1Key1.buf(), id1Key1.size(), make_shared<PibMemory>());
Yingdi Yub8f8b342015-04-27 11:06:42 -070055
56 BOOST_CHECK_EQUAL(static_cast<bool>(key), true);
57 BOOST_CHECK_EQUAL(!key, false);
58
59 if (key)
60 BOOST_CHECK(true);
61 else
62 BOOST_CHECK(false);
63}
64
Davide Pesaventoeee3e822016-11-26 19:19:34 +010065BOOST_AUTO_TEST_CASE(CertificateOperations)
Yingdi Yub8f8b342015-04-27 11:06:42 -070066{
Yingdi Yu6ee2d362015-07-16 21:48:05 -070067 Key key11(id1Key1Name, id1Key1.buf(), id1Key1.size(), make_shared<PibMemory>());
Yingdi Yub8f8b342015-04-27 11:06:42 -070068
69 BOOST_CHECK_THROW(key11.getCertificate(id1Key1Cert1.getName()), Pib::Error);
70 key11.addCertificate(id1Key1Cert1);
71 BOOST_CHECK_NO_THROW(key11.getCertificate(id1Key1Cert1.getName()));
72 key11.removeCertificate(id1Key1Cert1.getName());
73 BOOST_CHECK_THROW(key11.getCertificate(id1Key1Cert1.getName()), Pib::Error);
74
75 BOOST_CHECK_THROW(key11.getDefaultCertificate(), Pib::Error);
76 BOOST_REQUIRE_THROW(key11.setDefaultCertificate(id1Key1Cert1.getName()), Pib::Error);
77 BOOST_REQUIRE_NO_THROW(key11.setDefaultCertificate(id1Key1Cert1));
78 BOOST_REQUIRE_NO_THROW(key11.getDefaultCertificate());
79
Yingdi Yu6ee2d362015-07-16 21:48:05 -070080 const auto& defaultCert = key11.getDefaultCertificate();
Yingdi Yub8f8b342015-04-27 11:06:42 -070081 BOOST_CHECK_EQUAL_COLLECTIONS(defaultCert.wireEncode().wire(),
82 defaultCert.wireEncode().wire() + defaultCert.wireEncode().size(),
83 id1Key1Cert1.wireEncode().wire(),
84 id1Key1Cert1.wireEncode().wire() + id1Key1Cert1.wireEncode().size());
85
86 key11.removeCertificate(id1Key1Cert1.getName());
87 BOOST_CHECK_THROW(key11.getCertificate(id1Key1Cert1.getName()), Pib::Error);
88 BOOST_CHECK_THROW(key11.getDefaultCertificate(), Pib::Error);
89}
90
Davide Pesaventoeee3e822016-11-26 19:19:34 +010091BOOST_AUTO_TEST_SUITE_END() // TestKey
Yingdi Yu6ee2d362015-07-16 21:48:05 -070092BOOST_AUTO_TEST_SUITE_END() // Pib
Davide Pesaventoeee3e822016-11-26 19:19:34 +010093BOOST_AUTO_TEST_SUITE_END() // Security
Yingdi Yub8f8b342015-04-27 11:06:42 -070094
95} // namespace tests
Yingdi Yu6ee2d362015-07-16 21:48:05 -070096} // namespace pib
Yingdi Yub8f8b342015-04-27 11:06:42 -070097} // namespace security
98} // namespace ndn