Zhiyi Zhang | ae123bf | 2017-04-14 12:24:53 -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 | ae123bf | 2017-04-14 12:24:53 -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-memory.hpp" |
| 22 | #include "detail/ca-sqlite.hpp" |
Zhiyi Zhang | 5d80e1e | 2020-09-25 11:34:54 -0700 | [diff] [blame] | 23 | #include "test-common.hpp" |
Zhiyi Zhang | ae123bf | 2017-04-14 12:24:53 -0700 | [diff] [blame] | 24 | |
| 25 | namespace ndn { |
| 26 | namespace ndncert { |
| 27 | namespace tests { |
| 28 | |
Zhiyi Zhang | 32d4b4e | 2020-10-28 22:10:49 -0700 | [diff] [blame] | 29 | using namespace ca; |
| 30 | |
Zhiyi Zhang | af7c290 | 2019-03-14 22:13:21 -0700 | [diff] [blame] | 31 | BOOST_FIXTURE_TEST_SUITE(TestCaMemory, IdentityManagementFixture) |
Zhiyi Zhang | ae123bf | 2017-04-14 12:24:53 -0700 | [diff] [blame] | 32 | |
Zhiyi Zhang | ae123bf | 2017-04-14 12:24:53 -0700 | [diff] [blame] | 33 | BOOST_AUTO_TEST_CASE(RequestOperations) |
| 34 | { |
| 35 | CaMemory storage; |
| 36 | |
| 37 | auto identity1 = addIdentity(Name("/ndn/site1")); |
| 38 | auto key1 = identity1.getDefaultKey(); |
| 39 | auto cert1 = key1.getDefaultCertificate(); |
| 40 | |
| 41 | // add operation |
Zhiyi Zhang | 1f5e86e | 2020-12-04 15:07:57 -0800 | [diff] [blame] | 42 | RequestId requestId = {{101}}; |
| 43 | RequestState request1; |
| 44 | request1.caPrefix = Name("/ndn/site1"); |
| 45 | request1.requestId = requestId; |
| 46 | request1.requestType = RequestType::NEW; |
| 47 | request1.cert = cert1; |
Zhiyi Zhang | ae123bf | 2017-04-14 12:24:53 -0700 | [diff] [blame] | 48 | BOOST_CHECK_NO_THROW(storage.addRequest(request1)); |
| 49 | |
| 50 | // get operation |
Zhiyi Zhang | 8fdb36b | 2020-10-18 11:58:51 -0700 | [diff] [blame] | 51 | auto result = storage.getRequest(requestId); |
tylerliu | 7b9185c | 2020-11-24 12:15:18 -0800 | [diff] [blame] | 52 | BOOST_CHECK_EQUAL(request1.cert, result.cert); |
| 53 | BOOST_CHECK(request1.status == result.status); |
| 54 | BOOST_CHECK_EQUAL(request1.caPrefix, result.caPrefix); |
| 55 | BOOST_CHECK_EQUAL_COLLECTIONS(request1.encryptionKey.begin(), request1.encryptionKey.end(), |
| 56 | result.encryptionKey.begin(), result.encryptionKey.end()); |
Zhiyi Zhang | ae123bf | 2017-04-14 12:24:53 -0700 | [diff] [blame] | 57 | |
Zhiyi Zhang | ae123bf | 2017-04-14 12:24:53 -0700 | [diff] [blame] | 58 | // update operation |
Zhiyi Zhang | 1f5e86e | 2020-12-04 15:07:57 -0800 | [diff] [blame] | 59 | RequestState request2; |
| 60 | request2.caPrefix = Name("/ndn/site1"); |
| 61 | request2.requestId = requestId; |
| 62 | request2.requestType = RequestType::NEW; |
| 63 | request2.cert = cert1; |
| 64 | request2.challengeType = "email"; |
| 65 | JsonSection secret; |
| 66 | secret.add("code", "1234"); |
| 67 | request2.challengeState = ChallengeState("test", time::system_clock::now(), 3, |
| 68 | time::seconds(3600), std::move(secret)); |
Zhiyi Zhang | ae123bf | 2017-04-14 12:24:53 -0700 | [diff] [blame] | 69 | storage.updateRequest(request2); |
Zhiyi Zhang | 8fdb36b | 2020-10-18 11:58:51 -0700 | [diff] [blame] | 70 | result = storage.getRequest(requestId); |
tylerliu | 7b9185c | 2020-11-24 12:15:18 -0800 | [diff] [blame] | 71 | BOOST_CHECK_EQUAL(request2.cert, result.cert); |
| 72 | BOOST_CHECK(request2.status == result.status); |
| 73 | BOOST_CHECK_EQUAL(request2.caPrefix, result.caPrefix); |
Zhiyi Zhang | ae123bf | 2017-04-14 12:24:53 -0700 | [diff] [blame] | 74 | |
Zhiyi Zhang | 1f5e86e | 2020-12-04 15:07:57 -0800 | [diff] [blame] | 75 | // another add operation |
Zhiyi Zhang | ae123bf | 2017-04-14 12:24:53 -0700 | [diff] [blame] | 76 | auto identity2 = addIdentity(Name("/ndn/site2")); |
| 77 | auto key2 = identity2.getDefaultKey(); |
| 78 | auto cert2 = key2.getDefaultCertificate(); |
Zhiyi Zhang | 1f5e86e | 2020-12-04 15:07:57 -0800 | [diff] [blame] | 79 | RequestId requestId2 = {{102}}; |
| 80 | RequestState request3; |
| 81 | request3.caPrefix = Name("/ndn/site2"); |
| 82 | request3.requestId = requestId2; |
| 83 | request3.requestType = RequestType::NEW; |
| 84 | request3.cert = cert2; |
Zhiyi Zhang | ae123bf | 2017-04-14 12:24:53 -0700 | [diff] [blame] | 85 | storage.addRequest(request3); |
| 86 | |
| 87 | // list operation |
| 88 | auto allRequests = storage.listAllRequests(); |
| 89 | BOOST_CHECK_EQUAL(allRequests.size(), 2); |
| 90 | |
Zhiyi Zhang | 8fdb36b | 2020-10-18 11:58:51 -0700 | [diff] [blame] | 91 | storage.deleteRequest(requestId2); |
Zhiyi Zhang | ae123bf | 2017-04-14 12:24:53 -0700 | [diff] [blame] | 92 | allRequests = storage.listAllRequests(); |
| 93 | BOOST_CHECK_EQUAL(allRequests.size(), 1); |
| 94 | } |
| 95 | |
Zhiyi Zhang | 48f2378 | 2020-09-28 12:11:24 -0700 | [diff] [blame] | 96 | BOOST_AUTO_TEST_SUITE_END() // TestCaModule |
Zhiyi Zhang | ae123bf | 2017-04-14 12:24:53 -0700 | [diff] [blame] | 97 | |
Zhiyi Zhang | e4891b7 | 2020-10-10 15:11:57 -0700 | [diff] [blame] | 98 | } // namespace tests |
| 99 | } // namespace ndncert |
| 100 | } // namespace ndn |