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 | dbd9d43 | 2020-10-07 15:56:27 -0700 | [diff] [blame] | 21 | #include "ca-storage/ca-memory.hpp" |
| 22 | #include "ca-storage/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 |
tylerliu | 8704d03 | 2020-06-23 10:18:15 -0700 | [diff] [blame] | 40 | CaState request1(Name("/ndn/site1"), "123", RequestType::NEW, Status::BEFORE_CHALLENGE, cert1, makeStringBlock(tlv::ContentType_Key, "PretendItIsAKey")); |
Zhiyi Zhang | ae123bf | 2017-04-14 12:24:53 -0700 | [diff] [blame] | 41 | BOOST_CHECK_NO_THROW(storage.addRequest(request1)); |
| 42 | |
| 43 | // get operation |
| 44 | auto result = storage.getRequest("123"); |
Zhiyi Zhang | af7c290 | 2019-03-14 22:13:21 -0700 | [diff] [blame] | 45 | BOOST_CHECK_EQUAL(request1.m_cert, result.m_cert); |
Zhiyi Zhang | 48f2378 | 2020-09-28 12:11:24 -0700 | [diff] [blame] | 46 | BOOST_CHECK(request1.m_status == result.m_status); |
Suyong Won | 256c906 | 2020-05-11 02:45:56 -0700 | [diff] [blame] | 47 | BOOST_CHECK_EQUAL(request1.m_caPrefix, result.m_caPrefix); |
tylerliu | 8e170d6 | 2020-09-30 01:31:53 -0700 | [diff] [blame] | 48 | BOOST_CHECK_EQUAL(request1.m_encryptionKey, result.m_encryptionKey); |
Zhiyi Zhang | ae123bf | 2017-04-14 12:24:53 -0700 | [diff] [blame] | 49 | |
| 50 | JsonSection json; |
| 51 | json.put("code", "1234"); |
| 52 | |
| 53 | // update operation |
tylerliu | 8704d03 | 2020-06-23 10:18:15 -0700 | [diff] [blame] | 54 | CaState request2(Name("/ndn/site1"), "123", RequestType::NEW, Status::CHALLENGE, cert1, |
| 55 | "email", "test", time::system_clock::now(), 3, time::seconds(3600), std::move(json), makeStringBlock(tlv::ContentType_Key, "PretendItIsAKey")); |
Zhiyi Zhang | ae123bf | 2017-04-14 12:24:53 -0700 | [diff] [blame] | 56 | storage.updateRequest(request2); |
| 57 | result = storage.getRequest("123"); |
Zhiyi Zhang | af7c290 | 2019-03-14 22:13:21 -0700 | [diff] [blame] | 58 | BOOST_CHECK_EQUAL(request2.m_cert, result.m_cert); |
Zhiyi Zhang | 48f2378 | 2020-09-28 12:11:24 -0700 | [diff] [blame] | 59 | BOOST_CHECK(request2.m_status == result.m_status); |
Suyong Won | 256c906 | 2020-05-11 02:45:56 -0700 | [diff] [blame] | 60 | BOOST_CHECK_EQUAL(request2.m_caPrefix, result.m_caPrefix); |
Zhiyi Zhang | ae123bf | 2017-04-14 12:24:53 -0700 | [diff] [blame] | 61 | |
| 62 | auto identity2 = addIdentity(Name("/ndn/site2")); |
| 63 | auto key2 = identity2.getDefaultKey(); |
| 64 | auto cert2 = key2.getDefaultCertificate(); |
tylerliu | 8704d03 | 2020-06-23 10:18:15 -0700 | [diff] [blame] | 65 | CaState request3(Name("/ndn/site2"), "456", RequestType::NEW, Status::BEFORE_CHALLENGE, cert2, makeStringBlock(tlv::ContentType_Key, "PretendItIsAKey")); |
Zhiyi Zhang | ae123bf | 2017-04-14 12:24:53 -0700 | [diff] [blame] | 66 | storage.addRequest(request3); |
| 67 | |
| 68 | // list operation |
| 69 | auto allRequests = storage.listAllRequests(); |
| 70 | BOOST_CHECK_EQUAL(allRequests.size(), 2); |
| 71 | |
| 72 | storage.deleteRequest("456"); |
| 73 | allRequests = storage.listAllRequests(); |
| 74 | BOOST_CHECK_EQUAL(allRequests.size(), 1); |
| 75 | } |
| 76 | |
Zhiyi Zhang | 48f2378 | 2020-09-28 12:11:24 -0700 | [diff] [blame] | 77 | BOOST_AUTO_TEST_SUITE_END() // TestCaModule |
Zhiyi Zhang | ae123bf | 2017-04-14 12:24:53 -0700 | [diff] [blame] | 78 | |
Zhiyi Zhang | e4891b7 | 2020-10-10 15:11:57 -0700 | [diff] [blame^] | 79 | } // namespace tests |
| 80 | } // namespace ndncert |
| 81 | } // namespace ndn |