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 | af7c290 | 2019-03-14 22:13:21 -0700 | [diff] [blame] | 29 | BOOST_FIXTURE_TEST_SUITE(TestCaMemory, IdentityManagementFixture) |
Zhiyi Zhang | ae123bf | 2017-04-14 12:24:53 -0700 | [diff] [blame] | 30 | |
Zhiyi Zhang | ae123bf | 2017-04-14 12:24:53 -0700 | [diff] [blame] | 31 | BOOST_AUTO_TEST_CASE(RequestOperations) |
| 32 | { |
| 33 | CaMemory storage; |
| 34 | |
| 35 | auto identity1 = addIdentity(Name("/ndn/site1")); |
| 36 | auto key1 = identity1.getDefaultKey(); |
| 37 | auto cert1 = key1.getDefaultCertificate(); |
| 38 | |
| 39 | // add operation |
Zhiyi Zhang | 8fdb36b | 2020-10-18 11:58:51 -0700 | [diff] [blame] | 40 | RequestID requestId = {1,2,3,4,5,6,7,8}; |
| 41 | CaState request1(Name("/ndn/site1"), requestId, RequestType::NEW, Status::BEFORE_CHALLENGE, cert1, makeStringBlock(ndn::tlv::ContentType_Key, "PretendItIsAKey")); |
Zhiyi Zhang | ae123bf | 2017-04-14 12:24:53 -0700 | [diff] [blame] | 42 | BOOST_CHECK_NO_THROW(storage.addRequest(request1)); |
| 43 | |
| 44 | // get operation |
Zhiyi Zhang | 8fdb36b | 2020-10-18 11:58:51 -0700 | [diff] [blame] | 45 | auto result = storage.getRequest(requestId); |
Zhiyi Zhang | af7c290 | 2019-03-14 22:13:21 -0700 | [diff] [blame] | 46 | BOOST_CHECK_EQUAL(request1.m_cert, result.m_cert); |
Zhiyi Zhang | 48f2378 | 2020-09-28 12:11:24 -0700 | [diff] [blame] | 47 | BOOST_CHECK(request1.m_status == result.m_status); |
Suyong Won | 256c906 | 2020-05-11 02:45:56 -0700 | [diff] [blame] | 48 | BOOST_CHECK_EQUAL(request1.m_caPrefix, result.m_caPrefix); |
tylerliu | 8e170d6 | 2020-09-30 01:31:53 -0700 | [diff] [blame] | 49 | BOOST_CHECK_EQUAL(request1.m_encryptionKey, result.m_encryptionKey); |
Zhiyi Zhang | ae123bf | 2017-04-14 12:24:53 -0700 | [diff] [blame] | 50 | |
| 51 | JsonSection json; |
| 52 | json.put("code", "1234"); |
| 53 | |
| 54 | // update operation |
Zhiyi Zhang | 8fdb36b | 2020-10-18 11:58:51 -0700 | [diff] [blame] | 55 | CaState request2(Name("/ndn/site1"), requestId, RequestType::NEW, Status::CHALLENGE, cert1, |
Zhiyi Zhang | 222810b | 2020-10-16 21:50:35 -0700 | [diff] [blame] | 56 | "email", "test", time::system_clock::now(), 3, time::seconds(3600), |
| 57 | std::move(json), makeStringBlock(ndn::tlv::ContentType_Key, "PretendItIsAKey"), 0); |
Zhiyi Zhang | ae123bf | 2017-04-14 12:24:53 -0700 | [diff] [blame] | 58 | storage.updateRequest(request2); |
Zhiyi Zhang | 8fdb36b | 2020-10-18 11:58:51 -0700 | [diff] [blame] | 59 | result = storage.getRequest(requestId); |
Zhiyi Zhang | af7c290 | 2019-03-14 22:13:21 -0700 | [diff] [blame] | 60 | BOOST_CHECK_EQUAL(request2.m_cert, result.m_cert); |
Zhiyi Zhang | 48f2378 | 2020-09-28 12:11:24 -0700 | [diff] [blame] | 61 | BOOST_CHECK(request2.m_status == result.m_status); |
Suyong Won | 256c906 | 2020-05-11 02:45:56 -0700 | [diff] [blame] | 62 | BOOST_CHECK_EQUAL(request2.m_caPrefix, result.m_caPrefix); |
Zhiyi Zhang | ae123bf | 2017-04-14 12:24:53 -0700 | [diff] [blame] | 63 | |
| 64 | auto identity2 = addIdentity(Name("/ndn/site2")); |
| 65 | auto key2 = identity2.getDefaultKey(); |
| 66 | auto cert2 = key2.getDefaultCertificate(); |
Zhiyi Zhang | 8fdb36b | 2020-10-18 11:58:51 -0700 | [diff] [blame] | 67 | RequestID requestId2 = {8,7,6,5,4,3,2,1}; |
| 68 | CaState request3(Name("/ndn/site2"), requestId2, RequestType::NEW, Status::BEFORE_CHALLENGE, cert2, makeStringBlock(ndn::tlv::ContentType_Key, "PretendItIsAKey")); |
Zhiyi Zhang | ae123bf | 2017-04-14 12:24:53 -0700 | [diff] [blame] | 69 | storage.addRequest(request3); |
| 70 | |
| 71 | // list operation |
| 72 | auto allRequests = storage.listAllRequests(); |
| 73 | BOOST_CHECK_EQUAL(allRequests.size(), 2); |
| 74 | |
Zhiyi Zhang | 8fdb36b | 2020-10-18 11:58:51 -0700 | [diff] [blame] | 75 | storage.deleteRequest(requestId2); |
Zhiyi Zhang | ae123bf | 2017-04-14 12:24:53 -0700 | [diff] [blame] | 76 | allRequests = storage.listAllRequests(); |
| 77 | BOOST_CHECK_EQUAL(allRequests.size(), 1); |
| 78 | } |
| 79 | |
Zhiyi Zhang | 48f2378 | 2020-09-28 12:11:24 -0700 | [diff] [blame] | 80 | BOOST_AUTO_TEST_SUITE_END() // TestCaModule |
Zhiyi Zhang | ae123bf | 2017-04-14 12:24:53 -0700 | [diff] [blame] | 81 | |
Zhiyi Zhang | e4891b7 | 2020-10-10 15:11:57 -0700 | [diff] [blame] | 82 | } // namespace tests |
| 83 | } // namespace ndncert |
| 84 | } // namespace ndn |