blob: 9cabf387d8b8010b945dd3ec35cf8f938c6c645a [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 Zhang65ba9322017-01-19 14:15:03 -080021#include "challenge-module/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();
tylerliu182bc532020-09-25 01:54:45 -070041 CertificateRequest request(Name("/ndn/site1"), "123", REQUEST_TYPE_NEW, STATUS_BEFORE_CHALLENGE, cert);
Zhiyi Zhang65ba9322017-01-19 14:15:03 -080042
43 ChallengePin challenge;
Suyong Won44d0cce2020-05-10 04:07:43 -070044 challenge.handleChallengeRequest(makeEmptyBlock(tlv_encrypted_payload), request);
Zhiyi Zhang65ba9322017-01-19 14:15:03 -080045
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -070046 BOOST_CHECK_EQUAL(request.m_status, STATUS_CHALLENGE);
47 BOOST_CHECK_EQUAL(request.m_challengeStatus, ChallengePin::NEED_CODE);
Zhiyi Zhang36706832019-07-04 21:33:03 -070048 BOOST_CHECK_EQUAL(request.m_challengeType, "pin");
Zhiyi Zhang65ba9322017-01-19 14:15:03 -080049}
50
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -070051BOOST_AUTO_TEST_CASE(OnChallengeRequestWithCode)
Zhiyi Zhang65ba9322017-01-19 14:15:03 -080052{
53 auto identity = addIdentity(Name("/ndn/site1"));
54 auto key = identity.getDefaultKey();
55 auto cert = key.getDefaultCertificate();
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -070056 JsonSection secret;
57 secret.add(ChallengePin::JSON_PIN_CODE, "12345");
tylerliu182bc532020-09-25 01:54:45 -070058 CertificateRequest request(Name("/ndn/site1"), "123", REQUEST_TYPE_NEW, STATUS_CHALLENGE, ChallengePin::NEED_CODE, "pin",
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -070059 time::toIsoString(time::system_clock::now()), 3600, 3, secret, cert);
Zhiyi Zhang65ba9322017-01-19 14:15:03 -080060
Suyong Won44d0cce2020-05-10 04:07:43 -070061 Block paramTLV = makeEmptyBlock(tlv_encrypted_payload);
62 paramTLV.push_back(makeStringBlock(tlv_parameter_key, ChallengePin::JSON_PIN_CODE));
63 paramTLV.push_back(makeStringBlock(tlv_parameter_value, "12345"));
Zhiyi Zhang65ba9322017-01-19 14:15:03 -080064
65 ChallengePin challenge;
Suyong Won44d0cce2020-05-10 04:07:43 -070066 challenge.handleChallengeRequest(paramTLV, request);
Zhiyi Zhang65ba9322017-01-19 14:15:03 -080067
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -070068 BOOST_CHECK_EQUAL(request.m_status, STATUS_PENDING);
69 BOOST_CHECK_EQUAL(request.m_challengeStatus, CHALLENGE_STATUS_SUCCESS);
70 BOOST_CHECK_EQUAL(request.m_challengeSecrets.empty(), true);
Zhiyi Zhang65ba9322017-01-19 14:15:03 -080071}
72
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -070073BOOST_AUTO_TEST_CASE(OnChallengeRequestWithWrongCode)
Zhiyi Zhang0df767e2017-02-21 16:05:36 -080074{
75 auto identity = addIdentity(Name("/ndn/site1"));
76 auto key = identity.getDefaultKey();
77 auto cert = key.getDefaultCertificate();
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -070078 JsonSection secret;
79 secret.add(ChallengePin::JSON_PIN_CODE, "12345");
tylerliu182bc532020-09-25 01:54:45 -070080 CertificateRequest request(Name("/ndn/site1"), "123", REQUEST_TYPE_NEW, STATUS_CHALLENGE, ChallengePin::NEED_CODE, "pin",
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -070081 time::toIsoString(time::system_clock::now()), 3600, 3, secret, cert);
Zhiyi Zhang0df767e2017-02-21 16:05:36 -080082
Suyong Won44d0cce2020-05-10 04:07:43 -070083 Block paramTLV = makeEmptyBlock(tlv_encrypted_payload);
84 paramTLV.push_back(makeStringBlock(tlv_parameter_key, ChallengePin::JSON_PIN_CODE));
85 paramTLV.push_back(makeStringBlock(tlv_parameter_value, "45678"));
Zhiyi Zhang0df767e2017-02-21 16:05:36 -080086
87 ChallengePin challenge;
Suyong Won44d0cce2020-05-10 04:07:43 -070088 challenge.handleChallengeRequest(paramTLV, request);
Zhiyi Zhang0df767e2017-02-21 16:05:36 -080089
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -070090 BOOST_CHECK_EQUAL(request.m_status, STATUS_CHALLENGE);
91 BOOST_CHECK_EQUAL(request.m_challengeStatus, ChallengePin::WRONG_CODE);
92 BOOST_CHECK_EQUAL(request.m_challengeSecrets.empty(), false);
Zhiyi Zhang65ba9322017-01-19 14:15:03 -080093}
94
95BOOST_AUTO_TEST_SUITE_END()
96
97} // namespace tests
98} // namespace ndncert
99} // namespace ndn