blob: 31f6b3329ae86b0d737e25ee237cb37199386352 [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 Zhang84e11842020-11-19 20:03:23 -080021#include "challenge/challenge-credential.hpp"
Zhiyi Zhang5d80e1e2020-09-25 11:34:54 -070022#include "test-common.hpp"
Zhiyi Zhang0a89b722017-04-28 17:56:01 -070023
24namespace ndn {
25namespace ndncert {
26namespace tests {
27
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -070028BOOST_FIXTURE_TEST_SUITE(TestChallengeCredential, IdentityManagementFixture)
Zhiyi Zhang0a89b722017-04-28 17:56:01 -070029
30BOOST_AUTO_TEST_CASE(LoadConfig)
31{
Zhiyi Zhang63cd7d12020-10-10 15:25:48 -070032 ChallengeCredential challenge("./tests/unit-tests/config-files/config-challenge-credential");
Zhiyi Zhang70fe2582017-05-19 15:01:03 -070033 BOOST_CHECK_EQUAL(challenge.CHALLENGE_TYPE, "Credential");
Zhiyi Zhang0a89b722017-04-28 17:56:01 -070034
Zhiyi Zhang70fe2582017-05-19 15:01:03 -070035 challenge.parseConfigFile();
Zhiyi Zhang0a89b722017-04-28 17:56:01 -070036 BOOST_CHECK_EQUAL(challenge.m_trustAnchors.size(), 1);
37 auto cert = challenge.m_trustAnchors.front();
38 BOOST_CHECK_EQUAL(cert.getName(),
39 "/ndn/site1/KEY/%11%BC%22%F4c%15%FF%17/self/%FD%00%00%01Y%C8%14%D9%A5");
40}
41
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -070042BOOST_AUTO_TEST_CASE(HandleChallengeRequest)
Zhiyi Zhang0a89b722017-04-28 17:56:01 -070043{
44 // create trust anchor
Zhiyi Zhang63cd7d12020-10-10 15:25:48 -070045 ChallengeCredential challenge("./tests/unit-tests/config-files/config-challenge-credential");
Zhiyi Zhang70fe2582017-05-19 15:01:03 -070046 auto identity = addIdentity(Name("/trust"));
47 auto key = identity.getDefaultKey();
48 auto trustAnchor = key.getDefaultCertificate();
49 challenge.parseConfigFile();
Zhiyi Zhang0a89b722017-04-28 17:56:01 -070050 challenge.m_trustAnchors.front() = trustAnchor;
51
52 // create certificate request
Zhiyi Zhang70fe2582017-05-19 15:01:03 -070053 auto identityA = addIdentity(Name("/example"));
54 auto keyA = identityA.getDefaultKey();
55 auto certA = key.getDefaultCertificate();
Zhiyi Zhang1f5e86e2020-12-04 15:07:57 -080056 RequestId requestId = {{101}};
57 ca::RequestState state;
58 state.caPrefix = Name("/example");
59 state.requestId = requestId;
60 state.requestType = RequestType::NEW;
61 state.cert = certA;
Zhiyi Zhang70fe2582017-05-19 15:01:03 -070062
tylerliu05405f52020-09-29 12:27:23 -070063 // create requester's credential
Zhiyi Zhang70fe2582017-05-19 15:01:03 -070064 auto identityB = addIdentity(Name("/trust/cert"));
65 auto keyB = identityB.getDefaultKey();
tylerliu05405f52020-09-29 12:27:23 -070066 auto credentialName = Name(keyB.getName()).append("Credential").appendVersion();
tylerliua7bea662020-10-08 18:51:02 -070067 security::Certificate credential;
tylerliu05405f52020-09-29 12:27:23 -070068 credential.setName(credentialName);
69 credential.setContent(keyB.getPublicKey().data(), keyB.getPublicKey().size());
70 SignatureInfo signatureInfo;
tylerliu6563f932020-10-30 11:13:38 -070071 signatureInfo.setValidityPeriod(security::ValidityPeriod(time::system_clock::now(), time::system_clock::now() +
72 time::minutes(1)));
tylerliu05405f52020-09-29 12:27:23 -070073 m_keyChain.sign(credential, signingByCertificate(trustAnchor).setSignatureInfo(signatureInfo));
Zhiyi Zhang34a8d432020-10-03 22:14:25 -070074 m_keyChain.addCertificate(keyB, credential);
Zhiyi Zhang0a89b722017-04-28 17:56:01 -070075
tylerliu05405f52020-09-29 12:27:23 -070076 // using private key to sign cert request
tylerliu7b9185c2020-11-24 12:15:18 -080077 auto params = challenge.getRequestedParameterList(state.status, "");
Zhiyi Zhang8fdb36b2020-10-18 11:58:51 -070078 ChallengeCredential::fulfillParameters(params, m_keyChain, credential.getName(), requestId);
tylerliu7b9185c2020-11-24 12:15:18 -080079 Block paramsTlv = challenge.genChallengeRequestTLV(state.status, "", std::move(params));
Zhiyi Zhang621a3b52020-10-03 21:55:11 -070080 challenge.handleChallengeRequest(paramsTlv, state);
tylerliu7b9185c2020-11-24 12:15:18 -080081 BOOST_CHECK_EQUAL(statusToString(state.status), statusToString(Status::PENDING));
Zhiyi Zhang0a89b722017-04-28 17:56:01 -070082}
83
84BOOST_AUTO_TEST_SUITE_END()
85
Zhiyi Zhange4891b72020-10-10 15:11:57 -070086} // namespace tests
87} // namespace ndncert
88} // namespace ndn