Zhiyi Zhang | 65ba932 | 2017-01-19 14:15:03 -0800 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Zhiyi Zhang | af7c290 | 2019-03-14 22:13:21 -0700 | [diff] [blame] | 3 | * Copyright (c) 2017-2019, Regents of the University of California. |
Zhiyi Zhang | 65ba932 | 2017-01-19 14:15:03 -0800 | [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 | 65ba932 | 2017-01-19 14:15:03 -0800 | [diff] [blame] | 21 | #include "challenge-module/challenge-pin.hpp" |
Zhiyi Zhang | 8ce677b | 2018-07-13 14:44:06 -0700 | [diff] [blame] | 22 | #include "identity-management-fixture.hpp" |
Zhiyi Zhang | 65ba932 | 2017-01-19 14:15:03 -0800 | [diff] [blame] | 23 | |
| 24 | namespace ndn { |
| 25 | namespace ndncert { |
| 26 | namespace tests { |
| 27 | |
Zhiyi Zhang | af7c290 | 2019-03-14 22:13:21 -0700 | [diff] [blame] | 28 | BOOST_FIXTURE_TEST_SUITE(TestChallengePin, IdentityManagementFixture) |
Zhiyi Zhang | 65ba932 | 2017-01-19 14:15:03 -0800 | [diff] [blame] | 29 | |
| 30 | BOOST_AUTO_TEST_CASE(TestGetInitInfo) |
| 31 | { |
| 32 | ChallengePin challenge; |
| 33 | BOOST_CHECK_EQUAL(challenge.CHALLENGE_TYPE, "PIN"); |
| 34 | } |
| 35 | |
Zhiyi Zhang | af7c290 | 2019-03-14 22:13:21 -0700 | [diff] [blame] | 36 | BOOST_AUTO_TEST_CASE(OnChallengeRequestWithEmptyInfo) |
Zhiyi Zhang | 65ba932 | 2017-01-19 14:15:03 -0800 | [diff] [blame] | 37 | { |
| 38 | auto identity = addIdentity(Name("/ndn/site1")); |
| 39 | auto key = identity.getDefaultKey(); |
| 40 | auto cert = key.getDefaultCertificate(); |
Zhiyi Zhang | af7c290 | 2019-03-14 22:13:21 -0700 | [diff] [blame] | 41 | CertificateRequest request(Name("/ndn/site1"), "123", STATUS_BEFORE_CHALLENGE, cert); |
Zhiyi Zhang | 65ba932 | 2017-01-19 14:15:03 -0800 | [diff] [blame] | 42 | |
| 43 | ChallengePin challenge; |
Zhiyi Zhang | af7c290 | 2019-03-14 22:13:21 -0700 | [diff] [blame] | 44 | challenge.handleChallengeRequest(JsonSection(), request); |
Zhiyi Zhang | 65ba932 | 2017-01-19 14:15:03 -0800 | [diff] [blame] | 45 | |
Zhiyi Zhang | af7c290 | 2019-03-14 22:13:21 -0700 | [diff] [blame] | 46 | BOOST_CHECK_EQUAL(request.m_status, STATUS_CHALLENGE); |
| 47 | BOOST_CHECK_EQUAL(request.m_challengeStatus, ChallengePin::NEED_CODE); |
| 48 | BOOST_CHECK_EQUAL(request.m_challengeType, "PIN"); |
Zhiyi Zhang | 65ba932 | 2017-01-19 14:15:03 -0800 | [diff] [blame] | 49 | } |
| 50 | |
Zhiyi Zhang | af7c290 | 2019-03-14 22:13:21 -0700 | [diff] [blame] | 51 | BOOST_AUTO_TEST_CASE(OnChallengeRequestWithCode) |
Zhiyi Zhang | 65ba932 | 2017-01-19 14:15:03 -0800 | [diff] [blame] | 52 | { |
| 53 | auto identity = addIdentity(Name("/ndn/site1")); |
| 54 | auto key = identity.getDefaultKey(); |
| 55 | auto cert = key.getDefaultCertificate(); |
Zhiyi Zhang | af7c290 | 2019-03-14 22:13:21 -0700 | [diff] [blame] | 56 | JsonSection secret; |
| 57 | secret.add(ChallengePin::JSON_PIN_CODE, "12345"); |
| 58 | CertificateRequest request(Name("/ndn/site1"), "123", STATUS_CHALLENGE, ChallengePin::NEED_CODE, "PIN", |
| 59 | time::toIsoString(time::system_clock::now()), 3600, 3, secret, cert); |
Zhiyi Zhang | 65ba932 | 2017-01-19 14:15:03 -0800 | [diff] [blame] | 60 | |
Zhiyi Zhang | af7c290 | 2019-03-14 22:13:21 -0700 | [diff] [blame] | 61 | JsonSection paramJson; |
| 62 | paramJson.put(ChallengePin::JSON_PIN_CODE, "12345"); |
Zhiyi Zhang | 65ba932 | 2017-01-19 14:15:03 -0800 | [diff] [blame] | 63 | |
| 64 | ChallengePin challenge; |
Zhiyi Zhang | af7c290 | 2019-03-14 22:13:21 -0700 | [diff] [blame] | 65 | challenge.handleChallengeRequest(paramJson, request); |
Zhiyi Zhang | 65ba932 | 2017-01-19 14:15:03 -0800 | [diff] [blame] | 66 | |
Zhiyi Zhang | af7c290 | 2019-03-14 22:13:21 -0700 | [diff] [blame] | 67 | BOOST_CHECK_EQUAL(request.m_status, STATUS_PENDING); |
| 68 | BOOST_CHECK_EQUAL(request.m_challengeStatus, CHALLENGE_STATUS_SUCCESS); |
| 69 | BOOST_CHECK_EQUAL(request.m_challengeSecrets.empty(), true); |
Zhiyi Zhang | 65ba932 | 2017-01-19 14:15:03 -0800 | [diff] [blame] | 70 | } |
| 71 | |
Zhiyi Zhang | af7c290 | 2019-03-14 22:13:21 -0700 | [diff] [blame] | 72 | BOOST_AUTO_TEST_CASE(OnChallengeRequestWithWrongCode) |
Zhiyi Zhang | 0df767e | 2017-02-21 16:05:36 -0800 | [diff] [blame] | 73 | { |
| 74 | auto identity = addIdentity(Name("/ndn/site1")); |
| 75 | auto key = identity.getDefaultKey(); |
| 76 | auto cert = key.getDefaultCertificate(); |
Zhiyi Zhang | af7c290 | 2019-03-14 22:13:21 -0700 | [diff] [blame] | 77 | JsonSection secret; |
| 78 | secret.add(ChallengePin::JSON_PIN_CODE, "12345"); |
| 79 | CertificateRequest request(Name("/ndn/site1"), "123", STATUS_CHALLENGE, ChallengePin::NEED_CODE, "PIN", |
| 80 | time::toIsoString(time::system_clock::now()), 3600, 3, secret, cert); |
Zhiyi Zhang | 0df767e | 2017-02-21 16:05:36 -0800 | [diff] [blame] | 81 | |
Zhiyi Zhang | af7c290 | 2019-03-14 22:13:21 -0700 | [diff] [blame] | 82 | JsonSection paramJson; |
| 83 | paramJson.put(ChallengePin::JSON_PIN_CODE, "45678"); |
Zhiyi Zhang | 0df767e | 2017-02-21 16:05:36 -0800 | [diff] [blame] | 84 | |
| 85 | ChallengePin challenge; |
Zhiyi Zhang | af7c290 | 2019-03-14 22:13:21 -0700 | [diff] [blame] | 86 | challenge.handleChallengeRequest(paramJson, request); |
Zhiyi Zhang | 0df767e | 2017-02-21 16:05:36 -0800 | [diff] [blame] | 87 | |
Zhiyi Zhang | af7c290 | 2019-03-14 22:13:21 -0700 | [diff] [blame] | 88 | BOOST_CHECK_EQUAL(request.m_status, STATUS_CHALLENGE); |
| 89 | BOOST_CHECK_EQUAL(request.m_challengeStatus, ChallengePin::WRONG_CODE); |
| 90 | BOOST_CHECK_EQUAL(request.m_challengeSecrets.empty(), false); |
Zhiyi Zhang | 65ba932 | 2017-01-19 14:15:03 -0800 | [diff] [blame] | 91 | } |
| 92 | |
| 93 | BOOST_AUTO_TEST_SUITE_END() |
| 94 | |
| 95 | } // namespace tests |
| 96 | } // namespace ndncert |
| 97 | } // namespace ndn |