blob: 3bb7252a5ad93cc57d0cd506d3fd4b579c81c5b7 [file] [log] [blame]
Yanbiao Lic17de832014-11-21 17:51:45 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Alexander Afanasyevbc9ed492016-01-26 11:38:11 -08003 * Copyright (c) 2014-2016, Regents of the University of California,
4 * Arizona Board of Regents,
5 * Colorado State University,
6 * University Pierre & Marie Curie, Sorbonne University,
7 * Washington University in St. Louis,
8 * Beijing Institute of Technology,
9 * The University of Memphis.
Yanbiao Lic17de832014-11-21 17:51:45 -080010 *
Alexander Afanasyevbc9ed492016-01-26 11:38:11 -080011 * This file is part of NFD (Named Data Networking Forwarding Daemon).
12 * See AUTHORS.md for complete list of NFD authors and contributors.
Yanbiao Lic17de832014-11-21 17:51:45 -080013 *
Alexander Afanasyevbc9ed492016-01-26 11:38:11 -080014 * NFD is free software: you can redistribute it and/or modify it under the terms
15 * of the GNU General Public License as published by the Free Software Foundation,
16 * either version 3 of the License, or (at your option) any later version.
Yanbiao Lic17de832014-11-21 17:51:45 -080017 *
Alexander Afanasyevbc9ed492016-01-26 11:38:11 -080018 * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
19 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
20 * PURPOSE. See the GNU General Public License for more details.
Yanbiao Lic17de832014-11-21 17:51:45 -080021 *
Alexander Afanasyevbc9ed492016-01-26 11:38:11 -080022 * You should have received a copy of the GNU General Public License along with
23 * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
Yanbiao Lic17de832014-11-21 17:51:45 -080024 */
25
26#include "identity-management-fixture.hpp"
Junxiao Shid7631272016-08-17 04:16:31 +000027#include <ndn-cxx/util/io.hpp>
28#include <boost/filesystem.hpp>
Yanbiao Lic17de832014-11-21 17:51:45 -080029
30namespace nfd {
31namespace tests {
32
33IdentityManagementFixture::IdentityManagementFixture()
34 : m_keyChain("sqlite3", "file")
35{
Junxiao Shid7631272016-08-17 04:16:31 +000036 m_keyChain.getDefaultCertificate(); // side effect: create a default cert if it doesn't exist
Yanbiao Lic17de832014-11-21 17:51:45 -080037}
38
39IdentityManagementFixture::~IdentityManagementFixture()
40{
Junxiao Shid7631272016-08-17 04:16:31 +000041 for (const auto& id : m_identities) {
Yanbiao Lic17de832014-11-21 17:51:45 -080042 m_keyChain.deleteIdentity(id);
43 }
Junxiao Shid7631272016-08-17 04:16:31 +000044
45 boost::system::error_code ec;
46 for (const auto& certFile : m_certFiles) {
47 boost::filesystem::remove(certFile, ec); // ignore error
48 }
Yanbiao Lic17de832014-11-21 17:51:45 -080049}
50
51bool
Junxiao Shid7631272016-08-17 04:16:31 +000052IdentityManagementFixture::addIdentity(const Name& identity, const ndn::KeyParams& params)
Yanbiao Lic17de832014-11-21 17:51:45 -080053{
54 try {
55 m_keyChain.createIdentity(identity, params);
56 m_identities.push_back(identity);
57 return true;
58 }
59 catch (std::runtime_error&) {
60 return false;
61 }
62}
63
Junxiao Shid7631272016-08-17 04:16:31 +000064bool
65IdentityManagementFixture::saveIdentityCertificate(const Name& identity, const std::string& filename, bool wantAdd)
66{
67 shared_ptr<ndn::IdentityCertificate> cert;
68 try {
69 cert = m_keyChain.getCertificate(m_keyChain.getDefaultCertificateNameForIdentity(identity));
70 }
71 catch (const ndn::SecPublicInfo::Error&) {
72 if (wantAdd && this->addIdentity(identity)) {
73 return this->saveIdentityCertificate(identity, filename, false);
74 }
75 return false;
76 }
77
78 m_certFiles.push_back(filename);
79 try {
80 ndn::io::save(*cert, filename);
81 return true;
82 }
83 catch (const ndn::io::Error&) {
84 return false;
85 }
86}
87
Yanbiao Lic17de832014-11-21 17:51:45 -080088} // namespace tests
89} // namespace nfd