Zhiyi Zhang | 91c846b | 2017-04-12 14:16:31 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | 914d05f | 2019-07-13 16:20:19 -0400 | [diff] [blame] | 2 | /* |
Davide Pesavento | 0dc0201 | 2021-11-23 22:55:03 -0500 | [diff] [blame^] | 3 | * Copyright (c) 2017-2021, Regents of the University of California. |
Zhiyi Zhang | 91c846b | 2017-04-12 14:16:31 -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 | 062be6d | 2020-10-14 17:13:43 -0700 | [diff] [blame] | 21 | #include "detail/ca-sqlite.hpp" |
Zhiyi Zhang | 5d80e1e | 2020-09-25 11:34:54 -0700 | [diff] [blame] | 22 | #include "test-common.hpp" |
Zhiyi Zhang | 91c846b | 2017-04-12 14:16:31 -0700 | [diff] [blame] | 23 | |
Zhiyi Zhang | 91c846b | 2017-04-12 14:16:31 -0700 | [diff] [blame] | 24 | namespace ndncert { |
| 25 | namespace tests { |
| 26 | |
Zhiyi Zhang | 32d4b4e | 2020-10-28 22:10:49 -0700 | [diff] [blame] | 27 | using namespace ca; |
| 28 | |
Zhiyi Zhang | ae123bf | 2017-04-14 12:24:53 -0700 | [diff] [blame] | 29 | BOOST_FIXTURE_TEST_SUITE(TestCaSqlite, DatabaseFixture) |
Zhiyi Zhang | 91c846b | 2017-04-12 14:16:31 -0700 | [diff] [blame] | 30 | |
Zhiyi Zhang | 91c846b | 2017-04-12 14:16:31 -0700 | [diff] [blame] | 31 | BOOST_AUTO_TEST_CASE(RequestOperations) |
| 32 | { |
Zhiyi Zhang | cf21457 | 2020-10-06 16:55:43 -0700 | [diff] [blame] | 33 | CaSqlite storage(Name(), dbDir.string() + "/TestCaSqlite_RequestOperations.db"); |
Zhiyi Zhang | 91c846b | 2017-04-12 14:16:31 -0700 | [diff] [blame] | 34 | |
Zhiyi Zhang | ae123bf | 2017-04-14 12:24:53 -0700 | [diff] [blame] | 35 | auto identity1 = addIdentity(Name("/ndn/site1")); |
| 36 | auto key1 = identity1.getDefaultKey(); |
| 37 | auto cert1 = key1.getDefaultCertificate(); |
Zhiyi Zhang | 91c846b | 2017-04-12 14:16:31 -0700 | [diff] [blame] | 38 | |
Zhiyi Zhang | ae123bf | 2017-04-14 12:24:53 -0700 | [diff] [blame] | 39 | // add operation |
Zhiyi Zhang | 1f5e86e | 2020-12-04 15:07:57 -0800 | [diff] [blame] | 40 | RequestId requestId = {{101}}; |
| 41 | RequestState request1; |
| 42 | request1.caPrefix = Name("/ndn/site1"); |
| 43 | request1.requestId = requestId; |
| 44 | request1.requestType = RequestType::NEW; |
| 45 | request1.cert = cert1; |
Zhiyi Zhang | 48f546f | 2020-12-24 17:31:02 -0800 | [diff] [blame] | 46 | request1.encryptionKey = {{102}}; |
| 47 | request1.decryptionIv.assign({1,2,3,4,5,6,7,8,9,10,11,12}); |
| 48 | request1.decryptionIv.assign({2,3,4,5,6,7,8,9,10,11,12,13}); |
Zhiyi Zhang | c74f158 | 2020-10-06 16:51:51 -0700 | [diff] [blame] | 49 | storage.addRequest(request1); |
Zhiyi Zhang | ae123bf | 2017-04-14 12:24:53 -0700 | [diff] [blame] | 50 | |
| 51 | // get operation |
Zhiyi Zhang | 8fdb36b | 2020-10-18 11:58:51 -0700 | [diff] [blame] | 52 | auto result = storage.getRequest(requestId); |
tylerliu | 7b9185c | 2020-11-24 12:15:18 -0800 | [diff] [blame] | 53 | BOOST_CHECK_EQUAL(request1.cert, result.cert); |
| 54 | BOOST_CHECK(request1.status == result.status); |
| 55 | BOOST_CHECK_EQUAL(request1.caPrefix, result.caPrefix); |
| 56 | BOOST_CHECK_EQUAL_COLLECTIONS(request1.encryptionKey.begin(), request1.encryptionKey.end(), |
| 57 | result.encryptionKey.begin(), result.encryptionKey.end()); |
Zhiyi Zhang | 48f546f | 2020-12-24 17:31:02 -0800 | [diff] [blame] | 58 | BOOST_CHECK_EQUAL_COLLECTIONS(request1.encryptionIv.begin(), request1.encryptionIv.end(), |
| 59 | result.encryptionIv.begin(), result.encryptionIv.end()); |
| 60 | BOOST_CHECK_EQUAL_COLLECTIONS(request1.decryptionIv.begin(), request1.decryptionIv.end(), |
| 61 | result.decryptionIv.begin(), result.decryptionIv.end()); |
Zhiyi Zhang | 91c846b | 2017-04-12 14:16:31 -0700 | [diff] [blame] | 62 | |
Zhiyi Zhang | ae123bf | 2017-04-14 12:24:53 -0700 | [diff] [blame] | 63 | // update operation |
Zhiyi Zhang | 1f5e86e | 2020-12-04 15:07:57 -0800 | [diff] [blame] | 64 | RequestState request2; |
| 65 | request2.caPrefix = Name("/ndn/site1"); |
| 66 | request2.requestId = requestId; |
| 67 | request2.requestType = RequestType::NEW; |
| 68 | request2.cert = cert1; |
| 69 | request2.challengeType = "email"; |
| 70 | JsonSection secret; |
| 71 | secret.add("code", "1234"); |
| 72 | request2.challengeState = ChallengeState("test", time::system_clock::now(), 3, |
| 73 | time::seconds(3600), std::move(secret)); |
Zhiyi Zhang | 48f546f | 2020-12-24 17:31:02 -0800 | [diff] [blame] | 74 | request2.decryptionIv.assign({1,2,3,4,5,6,7,8,9,10,11,14}); |
| 75 | request2.decryptionIv.assign({2,3,4,5,6,7,8,9,10,11,12,15}); |
Zhiyi Zhang | 91c846b | 2017-04-12 14:16:31 -0700 | [diff] [blame] | 76 | storage.updateRequest(request2); |
Zhiyi Zhang | 8fdb36b | 2020-10-18 11:58:51 -0700 | [diff] [blame] | 77 | result = storage.getRequest(requestId); |
tylerliu | 7b9185c | 2020-11-24 12:15:18 -0800 | [diff] [blame] | 78 | BOOST_CHECK_EQUAL(request2.cert, result.cert); |
| 79 | BOOST_CHECK(request2.status == result.status); |
| 80 | BOOST_CHECK_EQUAL(request2.caPrefix, result.caPrefix); |
Zhiyi Zhang | 48f546f | 2020-12-24 17:31:02 -0800 | [diff] [blame] | 81 | BOOST_CHECK_EQUAL_COLLECTIONS(request2.encryptionIv.begin(), request2.encryptionIv.end(), |
| 82 | result.encryptionIv.begin(), result.encryptionIv.end()); |
| 83 | BOOST_CHECK_EQUAL_COLLECTIONS(request2.decryptionIv.begin(), request2.decryptionIv.end(), |
| 84 | result.decryptionIv.begin(), result.decryptionIv.end()); |
Zhiyi Zhang | ae123bf | 2017-04-14 12:24:53 -0700 | [diff] [blame] | 85 | |
Zhiyi Zhang | 1f5e86e | 2020-12-04 15:07:57 -0800 | [diff] [blame] | 86 | // another add operation |
Zhiyi Zhang | ae123bf | 2017-04-14 12:24:53 -0700 | [diff] [blame] | 87 | auto identity2 = addIdentity(Name("/ndn/site2")); |
| 88 | auto key2 = identity2.getDefaultKey(); |
| 89 | auto cert2 = key2.getDefaultCertificate(); |
Zhiyi Zhang | 1f5e86e | 2020-12-04 15:07:57 -0800 | [diff] [blame] | 90 | RequestId requestId2 = {{102}}; |
| 91 | RequestState request3; |
| 92 | request3.caPrefix = Name("/ndn/site2"); |
| 93 | request3.requestId = requestId2; |
| 94 | request3.requestType = RequestType::NEW; |
| 95 | request3.cert = cert2; |
Zhiyi Zhang | ae123bf | 2017-04-14 12:24:53 -0700 | [diff] [blame] | 96 | storage.addRequest(request3); |
| 97 | |
| 98 | // list operation |
| 99 | auto allRequests = storage.listAllRequests(); |
| 100 | BOOST_CHECK_EQUAL(allRequests.size(), 2); |
| 101 | |
Zhiyi Zhang | 8fdb36b | 2020-10-18 11:58:51 -0700 | [diff] [blame] | 102 | storage.deleteRequest(requestId2); |
Zhiyi Zhang | ae123bf | 2017-04-14 12:24:53 -0700 | [diff] [blame] | 103 | allRequests = storage.listAllRequests(); |
| 104 | BOOST_CHECK_EQUAL(allRequests.size(), 1); |
| 105 | |
Zhiyi Zhang | 8fdb36b | 2020-10-18 11:58:51 -0700 | [diff] [blame] | 106 | storage.deleteRequest(requestId); |
Zhiyi Zhang | ae123bf | 2017-04-14 12:24:53 -0700 | [diff] [blame] | 107 | allRequests = storage.listAllRequests(); |
| 108 | BOOST_CHECK_EQUAL(allRequests.size(), 0); |
Zhiyi Zhang | 91c846b | 2017-04-12 14:16:31 -0700 | [diff] [blame] | 109 | } |
| 110 | |
tylerliu | 63900d5 | 2020-09-30 03:01:18 -0700 | [diff] [blame] | 111 | BOOST_AUTO_TEST_CASE(DuplicateAdd) |
| 112 | { |
Zhiyi Zhang | 1f5e86e | 2020-12-04 15:07:57 -0800 | [diff] [blame] | 113 | CaSqlite storage(Name(), dbDir.string() + "/TestCaSqlite_DuplicateAdd.db"); |
tylerliu | 63900d5 | 2020-09-30 03:01:18 -0700 | [diff] [blame] | 114 | |
Zhiyi Zhang | 1f5e86e | 2020-12-04 15:07:57 -0800 | [diff] [blame] | 115 | auto identity1 = addIdentity(Name("/ndn/site1")); |
| 116 | auto key1 = identity1.getDefaultKey(); |
| 117 | auto cert1 = key1.getDefaultCertificate(); |
tylerliu | 63900d5 | 2020-09-30 03:01:18 -0700 | [diff] [blame] | 118 | |
Zhiyi Zhang | 1f5e86e | 2020-12-04 15:07:57 -0800 | [diff] [blame] | 119 | // add operation |
| 120 | RequestId requestId = {{101}}; |
| 121 | RequestState request1; |
| 122 | request1.caPrefix = Name("/ndn/site1"); |
| 123 | request1.requestId = requestId; |
| 124 | request1.requestType = RequestType::NEW; |
| 125 | request1.cert = cert1; |
| 126 | BOOST_CHECK_NO_THROW(storage.addRequest(request1)); |
| 127 | |
| 128 | // add again |
| 129 | BOOST_CHECK_THROW(storage.addRequest(request1), std::runtime_error); |
tylerliu | 63900d5 | 2020-09-30 03:01:18 -0700 | [diff] [blame] | 130 | } |
| 131 | |
Davide Pesavento | 0dc0201 | 2021-11-23 22:55:03 -0500 | [diff] [blame^] | 132 | BOOST_AUTO_TEST_SUITE_END() // TestCaSqlite |
Zhiyi Zhang | 91c846b | 2017-04-12 14:16:31 -0700 | [diff] [blame] | 133 | |
| 134 | } // namespace tests |
| 135 | } // namespace ndncert |