blob: b2de610d932dc7107d4be2eec9425446cb8f3df2 [file] [log] [blame]
Zhiyi Zhangae123bf2017-04-14 12:24:53 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
tylerliu182bc532020-09-25 01:54:45 -07003 * Copyright (c) 2017-2020, Regents of the University of California.
Zhiyi Zhangae123bf2017-04-14 12:24:53 -07004 *
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 Zhang062be6d2020-10-14 17:13:43 -070021#include "detail/ca-memory.hpp"
22#include "detail/ca-sqlite.hpp"
Zhiyi Zhang5d80e1e2020-09-25 11:34:54 -070023#include "test-common.hpp"
Zhiyi Zhangae123bf2017-04-14 12:24:53 -070024
25namespace ndn {
26namespace ndncert {
27namespace tests {
28
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -070029BOOST_FIXTURE_TEST_SUITE(TestCaMemory, IdentityManagementFixture)
Zhiyi Zhangae123bf2017-04-14 12:24:53 -070030
Zhiyi Zhangae123bf2017-04-14 12:24:53 -070031BOOST_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 Zhang8f1ade32020-10-14 16:42:57 -070040 CaState request1(Name("/ndn/site1"), "123", RequestType::NEW, Status::BEFORE_CHALLENGE, cert1, makeStringBlock(ndn::tlv::ContentType_Key, "PretendItIsAKey"));
Zhiyi Zhangae123bf2017-04-14 12:24:53 -070041 BOOST_CHECK_NO_THROW(storage.addRequest(request1));
42
43 // get operation
44 auto result = storage.getRequest("123");
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -070045 BOOST_CHECK_EQUAL(request1.m_cert, result.m_cert);
Zhiyi Zhang48f23782020-09-28 12:11:24 -070046 BOOST_CHECK(request1.m_status == result.m_status);
Suyong Won256c9062020-05-11 02:45:56 -070047 BOOST_CHECK_EQUAL(request1.m_caPrefix, result.m_caPrefix);
tylerliu8e170d62020-09-30 01:31:53 -070048 BOOST_CHECK_EQUAL(request1.m_encryptionKey, result.m_encryptionKey);
Zhiyi Zhangae123bf2017-04-14 12:24:53 -070049
50 JsonSection json;
51 json.put("code", "1234");
52
53 // update operation
tylerliu8704d032020-06-23 10:18:15 -070054 CaState request2(Name("/ndn/site1"), "123", RequestType::NEW, Status::CHALLENGE, cert1,
Zhiyi Zhang8f1ade32020-10-14 16:42:57 -070055 "email", "test", time::system_clock::now(), 3, time::seconds(3600), std::move(json), makeStringBlock(ndn::tlv::ContentType_Key, "PretendItIsAKey"));
Zhiyi Zhangae123bf2017-04-14 12:24:53 -070056 storage.updateRequest(request2);
57 result = storage.getRequest("123");
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -070058 BOOST_CHECK_EQUAL(request2.m_cert, result.m_cert);
Zhiyi Zhang48f23782020-09-28 12:11:24 -070059 BOOST_CHECK(request2.m_status == result.m_status);
Suyong Won256c9062020-05-11 02:45:56 -070060 BOOST_CHECK_EQUAL(request2.m_caPrefix, result.m_caPrefix);
Zhiyi Zhangae123bf2017-04-14 12:24:53 -070061
62 auto identity2 = addIdentity(Name("/ndn/site2"));
63 auto key2 = identity2.getDefaultKey();
64 auto cert2 = key2.getDefaultCertificate();
Zhiyi Zhang8f1ade32020-10-14 16:42:57 -070065 CaState request3(Name("/ndn/site2"), "456", RequestType::NEW, Status::BEFORE_CHALLENGE, cert2, makeStringBlock(ndn::tlv::ContentType_Key, "PretendItIsAKey"));
Zhiyi Zhangae123bf2017-04-14 12:24:53 -070066 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 Zhang48f23782020-09-28 12:11:24 -070077BOOST_AUTO_TEST_SUITE_END() // TestCaModule
Zhiyi Zhangae123bf2017-04-14 12:24:53 -070078
Zhiyi Zhange4891b72020-10-10 15:11:57 -070079} // namespace tests
80} // namespace ndncert
81} // namespace ndn