blob: 681c43c4a675c9eb8e1e190833760665b3e8e3ac [file] [log] [blame]
Yingdi Yub8f8b342015-04-27 11:06:42 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Alexander Afanasyev2fa59392016-07-29 17:24:23 -07003 * 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/key.hpp"
23#include "security/pib.hpp"
Yingdi Yu3bf91f52015-06-12 19:39:40 -070024#include "security/pib-memory.hpp"
Yingdi Yub8f8b342015-04-27 11:06:42 -070025#include "pib-data-fixture.hpp"
26
27#include "boost-test.hpp"
28
29namespace ndn {
30namespace security {
31namespace tests {
32
33BOOST_AUTO_TEST_SUITE(SecurityKey)
34
35BOOST_FIXTURE_TEST_CASE(ValidityChecking, PibDataFixture)
36{
37 // key
38 Key key;
39
40 BOOST_CHECK_EQUAL(static_cast<bool>(key), false);
41 BOOST_CHECK_EQUAL(!key, true);
42
43 if (key)
44 BOOST_CHECK(false);
45 else
46 BOOST_CHECK(true);
47
Yingdi Yu3bf91f52015-06-12 19:39:40 -070048 auto pibImpl = make_shared<PibMemory>();
Yingdi Yub8f8b342015-04-27 11:06:42 -070049 key = Key(id1, id1Key1Name.get(-1), id1Key1, pibImpl);
50
51 BOOST_CHECK_EQUAL(static_cast<bool>(key), true);
52 BOOST_CHECK_EQUAL(!key, false);
53
54 if (key)
55 BOOST_CHECK(true);
56 else
57 BOOST_CHECK(false);
58}
59
60BOOST_FIXTURE_TEST_CASE(TestCertificateOperation, PibDataFixture)
61{
Yingdi Yu3bf91f52015-06-12 19:39:40 -070062 auto pibImpl = make_shared<PibMemory>();
Yingdi Yub8f8b342015-04-27 11:06:42 -070063
64 Key key11(id1, id1Key1Name.get(-1), id1Key1, pibImpl);
65
66 BOOST_CHECK_THROW(key11.getCertificate(id1Key1Cert1.getName()), Pib::Error);
67 key11.addCertificate(id1Key1Cert1);
68 BOOST_CHECK_NO_THROW(key11.getCertificate(id1Key1Cert1.getName()));
69 key11.removeCertificate(id1Key1Cert1.getName());
70 BOOST_CHECK_THROW(key11.getCertificate(id1Key1Cert1.getName()), Pib::Error);
71
72 BOOST_CHECK_THROW(key11.getDefaultCertificate(), Pib::Error);
73 BOOST_REQUIRE_THROW(key11.setDefaultCertificate(id1Key1Cert1.getName()), Pib::Error);
74 BOOST_REQUIRE_NO_THROW(key11.setDefaultCertificate(id1Key1Cert1));
75 BOOST_REQUIRE_NO_THROW(key11.getDefaultCertificate());
76
Alexander Afanasyev2fa59392016-07-29 17:24:23 -070077 const v1::IdentityCertificate& defaultCert = key11.getDefaultCertificate();
Yingdi Yub8f8b342015-04-27 11:06:42 -070078 BOOST_CHECK_EQUAL_COLLECTIONS(defaultCert.wireEncode().wire(),
79 defaultCert.wireEncode().wire() + defaultCert.wireEncode().size(),
80 id1Key1Cert1.wireEncode().wire(),
81 id1Key1Cert1.wireEncode().wire() + id1Key1Cert1.wireEncode().size());
82
83 key11.removeCertificate(id1Key1Cert1.getName());
84 BOOST_CHECK_THROW(key11.getCertificate(id1Key1Cert1.getName()), Pib::Error);
85 BOOST_CHECK_THROW(key11.getDefaultCertificate(), Pib::Error);
86}
87
88
89BOOST_AUTO_TEST_SUITE_END()
90
91} // namespace tests
92} // namespace security
93} // namespace ndn