blob: 11910c854b618b93375d81b431ae613b4fdfc06f [file] [log] [blame]
Zhiyi Zhang0a89b722017-04-28 17:56:01 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
tylerliu182bc532020-09-25 01:54:45 -07003 * Copyright (c) 2017-2020, Regents of the University of California.
Zhiyi Zhang0a89b722017-04-28 17:56:01 -07004 *
5 * This file is part of ndncert, a certificate management system based on NDN.
6 *
7 * ndncert is free software: you can redistribute it and/or modify it under the terms
8 * of the GNU General Public License as published by the Free Software Foundation, either
9 * version 3 of the License, or (at your option) any later version.
10 *
11 * ndncert 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 General Public License for more details.
14 *
15 * You should have received copies of the GNU General Public License along with
16 * ndncert, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
17 *
18 * See AUTHORS.md for complete list of ndncert authors and contributors.
19 */
20
Zhiyi Zhang8bd8e5b2020-09-29 17:40:40 -070021#include "challenge-modules/challenge-credential.hpp"
Zhiyi Zhang5d80e1e2020-09-25 11:34:54 -070022#include "test-common.hpp"
Zhiyi Zhang0a89b722017-04-28 17:56:01 -070023#include <ndn-cxx/security/signing-helpers.hpp>
24#include <ndn-cxx/util/io.hpp>
25
26namespace ndn {
27namespace ndncert {
28namespace tests {
29
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -070030BOOST_FIXTURE_TEST_SUITE(TestChallengeCredential, IdentityManagementFixture)
Zhiyi Zhang0a89b722017-04-28 17:56:01 -070031
32BOOST_AUTO_TEST_CASE(LoadConfig)
33{
34 ChallengeCredential challenge("./tests/unit-tests/challenge-credential.conf.test");
Zhiyi Zhang70fe2582017-05-19 15:01:03 -070035 BOOST_CHECK_EQUAL(challenge.CHALLENGE_TYPE, "Credential");
Zhiyi Zhang0a89b722017-04-28 17:56:01 -070036
Zhiyi Zhang70fe2582017-05-19 15:01:03 -070037 challenge.parseConfigFile();
Zhiyi Zhang0a89b722017-04-28 17:56:01 -070038 BOOST_CHECK_EQUAL(challenge.m_trustAnchors.size(), 1);
39 auto cert = challenge.m_trustAnchors.front();
40 BOOST_CHECK_EQUAL(cert.getName(),
41 "/ndn/site1/KEY/%11%BC%22%F4c%15%FF%17/self/%FD%00%00%01Y%C8%14%D9%A5");
42}
43
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -070044BOOST_AUTO_TEST_CASE(HandleChallengeRequest)
Zhiyi Zhang0a89b722017-04-28 17:56:01 -070045{
46 // create trust anchor
47 ChallengeCredential challenge("./tests/unit-tests/challenge-credential.conf.test");
Zhiyi Zhang70fe2582017-05-19 15:01:03 -070048 auto identity = addIdentity(Name("/trust"));
49 auto key = identity.getDefaultKey();
50 auto trustAnchor = key.getDefaultCertificate();
51 challenge.parseConfigFile();
Zhiyi Zhang0a89b722017-04-28 17:56:01 -070052 challenge.m_trustAnchors.front() = trustAnchor;
53
54 // create certificate request
Zhiyi Zhang70fe2582017-05-19 15:01:03 -070055 auto identityA = addIdentity(Name("/example"));
56 auto keyA = identityA.getDefaultKey();
57 auto certA = key.getDefaultCertificate();
tylerliu8704d032020-06-23 10:18:15 -070058 CaState state(Name("/example"), "123", RequestType::NEW, Status::BEFORE_CHALLENGE, certA, makeEmptyBlock(tlv::ContentType_Key));
Zhiyi Zhang70fe2582017-05-19 15:01:03 -070059
tylerliu05405f52020-09-29 12:27:23 -070060 // create requester's credential
Zhiyi Zhang70fe2582017-05-19 15:01:03 -070061 auto identityB = addIdentity(Name("/trust/cert"));
62 auto keyB = identityB.getDefaultKey();
tylerliu05405f52020-09-29 12:27:23 -070063 auto credentialName = Name(keyB.getName()).append("Credential").appendVersion();
64 security::v2::Certificate credential;
65 credential.setName(credentialName);
66 credential.setContent(keyB.getPublicKey().data(), keyB.getPublicKey().size());
67 SignatureInfo signatureInfo;
68 signatureInfo.setValidityPeriod(security::ValidityPeriod(system_clock::now(), system_clock::now() + time::minutes(1)));
69 m_keyChain.sign(credential, signingByCertificate(trustAnchor).setSignatureInfo(signatureInfo));
Zhiyi Zhang34a8d432020-10-03 22:14:25 -070070 m_keyChain.addCertificate(keyB, credential);
Zhiyi Zhang0a89b722017-04-28 17:56:01 -070071
tylerliu05405f52020-09-29 12:27:23 -070072 // using private key to sign cert request
Zhiyi Zhang34a8d432020-10-03 22:14:25 -070073 auto params = challenge.getRequestedParameterList(state.m_status, "");
Zhiyi Zhang621a3b52020-10-03 21:55:11 -070074 ChallengeCredential::fulfillParameters(params, m_keyChain, credential.getName(), "123");
Zhiyi Zhang34a8d432020-10-03 22:14:25 -070075 Block paramsTlv = challenge.genChallengeRequestTLV(state.m_status, "", std::move(params));
Zhiyi Zhang621a3b52020-10-03 21:55:11 -070076 challenge.handleChallengeRequest(paramsTlv, state);
Zhiyi Zhang34a8d432020-10-03 22:14:25 -070077 BOOST_CHECK_EQUAL(statusToString(state.m_status), statusToString(Status::PENDING));
Zhiyi Zhang0a89b722017-04-28 17:56:01 -070078}
79
80BOOST_AUTO_TEST_SUITE_END()
81
Zhiyi Zhang5d80e1e2020-09-25 11:34:54 -070082} // namespace tests
83} // namespace ndncert
84} // namespace ndn