blob: 4b87a1e6aa05ebf0b71cb3ebf8f599ca0fd1ebc4 [file] [log] [blame]
Zhiyi Zhang65ba9322017-01-19 14:15:03 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento914d05f2019-07-13 16:20:19 -04002/*
tylerliu182bc532020-09-25 01:54:45 -07003 * Copyright (c) 2017-2020, Regents of the University of California.
Zhiyi Zhang65ba9322017-01-19 14:15:03 -08004 *
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 Zhangdbd9d432020-10-07 15:56:27 -070021#include "identity-challenge/challenge-pin.hpp"
Zhiyi Zhang5d80e1e2020-09-25 11:34:54 -070022#include "test-common.hpp"
Zhiyi Zhang65ba9322017-01-19 14:15:03 -080023
24namespace ndn {
25namespace ndncert {
26namespace tests {
27
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -070028BOOST_FIXTURE_TEST_SUITE(TestChallengePin, IdentityManagementFixture)
Zhiyi Zhang65ba9322017-01-19 14:15:03 -080029
Davide Pesavento914d05f2019-07-13 16:20:19 -040030BOOST_AUTO_TEST_CASE(ChallengeType)
Zhiyi Zhang65ba9322017-01-19 14:15:03 -080031{
32 ChallengePin challenge;
Zhiyi Zhang36706832019-07-04 21:33:03 -070033 BOOST_CHECK_EQUAL(challenge.CHALLENGE_TYPE, "pin");
Zhiyi Zhang65ba9322017-01-19 14:15:03 -080034}
35
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -070036BOOST_AUTO_TEST_CASE(OnChallengeRequestWithEmptyInfo)
Zhiyi Zhang65ba9322017-01-19 14:15:03 -080037{
38 auto identity = addIdentity(Name("/ndn/site1"));
39 auto key = identity.getDefaultKey();
40 auto cert = key.getDefaultCertificate();
Zhiyi Zhang80593022020-11-17 10:55:48 -080041 RequestId requestId = {{1,2,3,4,5,6,7,8}};
Zhiyi Zhang1f9551b2020-10-30 10:30:43 -070042 std::array<uint8_t, 16> aesKey;
43 ca::RequestState request(Name("/ndn/site1"), requestId, RequestType::NEW, Status::BEFORE_CHALLENGE, cert, std::move(aesKey));
Zhiyi Zhang65ba9322017-01-19 14:15:03 -080044
45 ChallengePin challenge;
tylerliu50d679e2020-10-14 14:08:39 -070046 challenge.handleChallengeRequest(makeEmptyBlock(tlv::EncryptedPayload), request);
Zhiyi Zhang65ba9322017-01-19 14:15:03 -080047
Zhiyi Zhang48f23782020-09-28 12:11:24 -070048 BOOST_CHECK(request.m_status == Status::CHALLENGE);
Zhiyi Zhanga749f442020-09-29 17:19:51 -070049 BOOST_CHECK_EQUAL(request.m_challengeState->m_challengeStatus, ChallengePin::NEED_CODE);
Zhiyi Zhang36706832019-07-04 21:33:03 -070050 BOOST_CHECK_EQUAL(request.m_challengeType, "pin");
Zhiyi Zhang65ba9322017-01-19 14:15:03 -080051}
52
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -070053BOOST_AUTO_TEST_CASE(OnChallengeRequestWithCode)
Zhiyi Zhang65ba9322017-01-19 14:15:03 -080054{
55 auto identity = addIdentity(Name("/ndn/site1"));
56 auto key = identity.getDefaultKey();
57 auto cert = key.getDefaultCertificate();
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -070058 JsonSection secret;
Zhiyi Zhang46049832020-09-28 17:08:12 -070059 secret.add(ChallengePin::PARAMETER_KEY_CODE, "12345");
Zhiyi Zhang80593022020-11-17 10:55:48 -080060 RequestId requestId = {{1,2,3,4,5,6,7,8}};
Zhiyi Zhang1f9551b2020-10-30 10:30:43 -070061 std::array<uint8_t, 16> aesKey;
Zhiyi Zhang32d4b4e2020-10-28 22:10:49 -070062 ca::RequestState request(Name("/ndn/site1"), requestId, RequestType::NEW, Status::CHALLENGE, cert,
Zhiyi Zhang1f9551b2020-10-30 10:30:43 -070063 "pin", ChallengePin::NEED_CODE, time::system_clock::now(),
64 3, time::seconds(3600), std::move(secret), std::move(aesKey), 0);
Zhiyi Zhang65ba9322017-01-19 14:15:03 -080065
tylerliu50d679e2020-10-14 14:08:39 -070066 Block paramTLV = makeEmptyBlock(tlv::EncryptedPayload);
67 paramTLV.push_back(makeStringBlock(tlv::ParameterKey, ChallengePin::PARAMETER_KEY_CODE));
68 paramTLV.push_back(makeStringBlock(tlv::ParameterValue, "12345"));
Zhiyi Zhang65ba9322017-01-19 14:15:03 -080069
70 ChallengePin challenge;
Suyong Won44d0cce2020-05-10 04:07:43 -070071 challenge.handleChallengeRequest(paramTLV, request);
Zhiyi Zhang65ba9322017-01-19 14:15:03 -080072
Zhiyi Zhang48f23782020-09-28 12:11:24 -070073 BOOST_CHECK(request.m_status == Status::PENDING);
Zhiyi Zhanga749f442020-09-29 17:19:51 -070074 BOOST_CHECK(!request.m_challengeState);
Zhiyi Zhang65ba9322017-01-19 14:15:03 -080075}
76
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -070077BOOST_AUTO_TEST_CASE(OnChallengeRequestWithWrongCode)
Zhiyi Zhang0df767e2017-02-21 16:05:36 -080078{
79 auto identity = addIdentity(Name("/ndn/site1"));
80 auto key = identity.getDefaultKey();
81 auto cert = key.getDefaultCertificate();
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -070082 JsonSection secret;
Zhiyi Zhang46049832020-09-28 17:08:12 -070083 secret.add(ChallengePin::PARAMETER_KEY_CODE, "12345");
Zhiyi Zhang80593022020-11-17 10:55:48 -080084 RequestId requestId = {{1,2,3,4,5,6,7,8}};
Zhiyi Zhang1f9551b2020-10-30 10:30:43 -070085 std::array<uint8_t, 16> aesKey;
Zhiyi Zhang32d4b4e2020-10-28 22:10:49 -070086 ca::RequestState request(Name("/ndn/site1"), requestId, RequestType::NEW, Status::CHALLENGE, cert,
Zhiyi Zhang1f9551b2020-10-30 10:30:43 -070087 "pin", ChallengePin::NEED_CODE, time::system_clock::now(),
88 3, time::seconds(3600), std::move(secret), std::move(aesKey), 0);
Zhiyi Zhang0df767e2017-02-21 16:05:36 -080089
tylerliu50d679e2020-10-14 14:08:39 -070090 Block paramTLV = makeEmptyBlock(tlv::EncryptedPayload);
91 paramTLV.push_back(makeStringBlock(tlv::ParameterKey, ChallengePin::PARAMETER_KEY_CODE));
92 paramTLV.push_back(makeStringBlock(tlv::ParameterValue, "45678"));
Zhiyi Zhang0df767e2017-02-21 16:05:36 -080093
94 ChallengePin challenge;
Suyong Won44d0cce2020-05-10 04:07:43 -070095 challenge.handleChallengeRequest(paramTLV, request);
Zhiyi Zhang0df767e2017-02-21 16:05:36 -080096
Zhiyi Zhang48f23782020-09-28 12:11:24 -070097 BOOST_CHECK(request.m_status == Status::CHALLENGE);
Zhiyi Zhanga749f442020-09-29 17:19:51 -070098 BOOST_CHECK_EQUAL(request.m_challengeState->m_challengeStatus, ChallengePin::WRONG_CODE);
99 BOOST_CHECK_EQUAL(request.m_challengeState->m_secrets.empty(), false);
Zhiyi Zhang65ba9322017-01-19 14:15:03 -0800100}
101
102BOOST_AUTO_TEST_SUITE_END()
103
104} // namespace tests
105} // namespace ndncert
106} // namespace ndn