Zhiyi Zhang | 0a89b72 | 2017-04-28 17:56:01 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
tylerliu | 182bc53 | 2020-09-25 01:54:45 -0700 | [diff] [blame] | 3 | * Copyright (c) 2017-2020, Regents of the University of California. |
Zhiyi Zhang | 0a89b72 | 2017-04-28 17:56:01 -0700 | [diff] [blame] | 4 | * |
| 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 Zhang | dbd9d43 | 2020-10-07 15:56:27 -0700 | [diff] [blame^] | 21 | #include "identity-challenge/challenge-credential.hpp" |
Zhiyi Zhang | 5d80e1e | 2020-09-25 11:34:54 -0700 | [diff] [blame] | 22 | #include "test-common.hpp" |
Zhiyi Zhang | 0a89b72 | 2017-04-28 17:56:01 -0700 | [diff] [blame] | 23 | #include <ndn-cxx/security/signing-helpers.hpp> |
| 24 | #include <ndn-cxx/util/io.hpp> |
| 25 | |
| 26 | namespace ndn { |
| 27 | namespace ndncert { |
| 28 | namespace tests { |
| 29 | |
Zhiyi Zhang | af7c290 | 2019-03-14 22:13:21 -0700 | [diff] [blame] | 30 | BOOST_FIXTURE_TEST_SUITE(TestChallengeCredential, IdentityManagementFixture) |
Zhiyi Zhang | 0a89b72 | 2017-04-28 17:56:01 -0700 | [diff] [blame] | 31 | |
| 32 | BOOST_AUTO_TEST_CASE(LoadConfig) |
| 33 | { |
| 34 | ChallengeCredential challenge("./tests/unit-tests/challenge-credential.conf.test"); |
Zhiyi Zhang | 70fe258 | 2017-05-19 15:01:03 -0700 | [diff] [blame] | 35 | BOOST_CHECK_EQUAL(challenge.CHALLENGE_TYPE, "Credential"); |
Zhiyi Zhang | 0a89b72 | 2017-04-28 17:56:01 -0700 | [diff] [blame] | 36 | |
Zhiyi Zhang | 70fe258 | 2017-05-19 15:01:03 -0700 | [diff] [blame] | 37 | challenge.parseConfigFile(); |
Zhiyi Zhang | 0a89b72 | 2017-04-28 17:56:01 -0700 | [diff] [blame] | 38 | 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 Zhang | af7c290 | 2019-03-14 22:13:21 -0700 | [diff] [blame] | 44 | BOOST_AUTO_TEST_CASE(HandleChallengeRequest) |
Zhiyi Zhang | 0a89b72 | 2017-04-28 17:56:01 -0700 | [diff] [blame] | 45 | { |
| 46 | // create trust anchor |
| 47 | ChallengeCredential challenge("./tests/unit-tests/challenge-credential.conf.test"); |
Zhiyi Zhang | 70fe258 | 2017-05-19 15:01:03 -0700 | [diff] [blame] | 48 | auto identity = addIdentity(Name("/trust")); |
| 49 | auto key = identity.getDefaultKey(); |
| 50 | auto trustAnchor = key.getDefaultCertificate(); |
| 51 | challenge.parseConfigFile(); |
Zhiyi Zhang | 0a89b72 | 2017-04-28 17:56:01 -0700 | [diff] [blame] | 52 | challenge.m_trustAnchors.front() = trustAnchor; |
| 53 | |
| 54 | // create certificate request |
Zhiyi Zhang | 70fe258 | 2017-05-19 15:01:03 -0700 | [diff] [blame] | 55 | auto identityA = addIdentity(Name("/example")); |
| 56 | auto keyA = identityA.getDefaultKey(); |
| 57 | auto certA = key.getDefaultCertificate(); |
tylerliu | 8704d03 | 2020-06-23 10:18:15 -0700 | [diff] [blame] | 58 | CaState state(Name("/example"), "123", RequestType::NEW, Status::BEFORE_CHALLENGE, certA, makeEmptyBlock(tlv::ContentType_Key)); |
Zhiyi Zhang | 70fe258 | 2017-05-19 15:01:03 -0700 | [diff] [blame] | 59 | |
tylerliu | 05405f5 | 2020-09-29 12:27:23 -0700 | [diff] [blame] | 60 | // create requester's credential |
Zhiyi Zhang | 70fe258 | 2017-05-19 15:01:03 -0700 | [diff] [blame] | 61 | auto identityB = addIdentity(Name("/trust/cert")); |
| 62 | auto keyB = identityB.getDefaultKey(); |
tylerliu | 05405f5 | 2020-09-29 12:27:23 -0700 | [diff] [blame] | 63 | 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 Zhang | 34a8d43 | 2020-10-03 22:14:25 -0700 | [diff] [blame] | 70 | m_keyChain.addCertificate(keyB, credential); |
Zhiyi Zhang | 0a89b72 | 2017-04-28 17:56:01 -0700 | [diff] [blame] | 71 | |
tylerliu | 05405f5 | 2020-09-29 12:27:23 -0700 | [diff] [blame] | 72 | // using private key to sign cert request |
Zhiyi Zhang | 34a8d43 | 2020-10-03 22:14:25 -0700 | [diff] [blame] | 73 | auto params = challenge.getRequestedParameterList(state.m_status, ""); |
Zhiyi Zhang | 621a3b5 | 2020-10-03 21:55:11 -0700 | [diff] [blame] | 74 | ChallengeCredential::fulfillParameters(params, m_keyChain, credential.getName(), "123"); |
Zhiyi Zhang | 34a8d43 | 2020-10-03 22:14:25 -0700 | [diff] [blame] | 75 | Block paramsTlv = challenge.genChallengeRequestTLV(state.m_status, "", std::move(params)); |
Zhiyi Zhang | 621a3b5 | 2020-10-03 21:55:11 -0700 | [diff] [blame] | 76 | challenge.handleChallengeRequest(paramsTlv, state); |
Zhiyi Zhang | 34a8d43 | 2020-10-03 22:14:25 -0700 | [diff] [blame] | 77 | BOOST_CHECK_EQUAL(statusToString(state.m_status), statusToString(Status::PENDING)); |
Zhiyi Zhang | 0a89b72 | 2017-04-28 17:56:01 -0700 | [diff] [blame] | 78 | } |
| 79 | |
| 80 | BOOST_AUTO_TEST_SUITE_END() |
| 81 | |
Zhiyi Zhang | 5d80e1e | 2020-09-25 11:34:54 -0700 | [diff] [blame] | 82 | } // namespace tests |
| 83 | } // namespace ndncert |
| 84 | } // namespace ndn |