Zhiyi Zhang | 23564c8 | 2017-03-01 10:22:22 -0800 | [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 | /* |
swa770 | de007bc | 2020-03-24 21:26:21 -0700 | [diff] [blame] | 3 | * Copyright (c) 2017-2020, Regents of the University of California. |
Zhiyi Zhang | 23564c8 | 2017-03-01 10:22:22 -0800 | [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 | 23564c8 | 2017-03-01 10:22:22 -0800 | [diff] [blame] | 21 | #include "client-module.hpp" |
| 22 | #include "challenge-module.hpp" |
Zhiyi Zhang | af7c290 | 2019-03-14 22:13:21 -0700 | [diff] [blame] | 23 | #include "ca-module.hpp" |
Zhiyi Zhang | 5d80e1e | 2020-09-25 11:34:54 -0700 | [diff] [blame^] | 24 | #include "test-common.hpp" |
Zhiyi Zhang | 23564c8 | 2017-03-01 10:22:22 -0800 | [diff] [blame] | 25 | |
| 26 | namespace ndn { |
| 27 | namespace ndncert { |
| 28 | namespace tests { |
| 29 | |
Zhiyi Zhang | af7c290 | 2019-03-14 22:13:21 -0700 | [diff] [blame] | 30 | BOOST_FIXTURE_TEST_SUITE(TestClientModule, IdentityManagementTimeFixture) |
Zhiyi Zhang | 23564c8 | 2017-03-01 10:22:22 -0800 | [diff] [blame] | 31 | |
| 32 | BOOST_AUTO_TEST_CASE(ClientModuleInitialize) |
| 33 | { |
Zhiyi Zhang | af7c290 | 2019-03-14 22:13:21 -0700 | [diff] [blame] | 34 | ClientModule client(m_keyChain); |
Zhiyi Zhang | 23564c8 | 2017-03-01 10:22:22 -0800 | [diff] [blame] | 35 | client.getClientConf().load("tests/unit-tests/client.conf.test"); |
| 36 | BOOST_CHECK_EQUAL(client.getClientConf().m_caItems.size(), 2); |
| 37 | } |
| 38 | |
Zhiyi Zhang | af7c290 | 2019-03-14 22:13:21 -0700 | [diff] [blame] | 39 | BOOST_AUTO_TEST_CASE(Probe) |
Zhiyi Zhang | 23564c8 | 2017-03-01 10:22:22 -0800 | [diff] [blame] | 40 | { |
Zhiyi Zhang | af7c290 | 2019-03-14 22:13:21 -0700 | [diff] [blame] | 41 | ClientModule client(m_keyChain); |
Zhiyi Zhang | 23564c8 | 2017-03-01 10:22:22 -0800 | [diff] [blame] | 42 | client.getClientConf().load("tests/unit-tests/client.conf.test"); |
| 43 | |
Zhiyi Zhang | 1013078 | 2018-02-01 18:28:49 -0800 | [diff] [blame] | 44 | auto identity = addIdentity(Name("/site")); |
Zhiyi Zhang | 23564c8 | 2017-03-01 10:22:22 -0800 | [diff] [blame] | 45 | auto key = identity.getDefaultKey(); |
| 46 | auto cert = key.getDefaultCertificate(); |
| 47 | |
| 48 | ClientCaItem item; |
Yufeng Zhang | 424d036 | 2019-06-12 16:48:27 -0700 | [diff] [blame] | 49 | item.m_probe = "email:uid:name"; |
Suyong Won | 256c906 | 2020-05-11 02:45:56 -0700 | [diff] [blame] | 50 | item.m_caPrefix = Name("/site"); |
Zhiyi Zhang | 23564c8 | 2017-03-01 10:22:22 -0800 | [diff] [blame] | 51 | item.m_anchor = cert; |
| 52 | client.getClientConf().m_caItems.push_back(item); |
| 53 | |
Yufeng Zhang | 424d036 | 2019-06-12 16:48:27 -0700 | [diff] [blame] | 54 | auto firstInterest = client.generateProbeInterest(item, "zhiyi@cs.ucla.edu:987654321:Zhiyi Zhang"); |
Davide Pesavento | 914d05f | 2019-07-13 16:20:19 -0400 | [diff] [blame] | 55 | BOOST_CHECK(firstInterest->getName().at(-1).isParametersSha256Digest()); |
| 56 | // ignore the last name component (ParametersSha256Digest) |
swa770 | de007bc | 2020-03-24 21:26:21 -0700 | [diff] [blame] | 57 | BOOST_CHECK_EQUAL(firstInterest->getName().getPrefix(-1), "/site/CA/PROBE"); |
Suyong Won | 7968f7a | 2020-05-12 01:01:25 -0700 | [diff] [blame] | 58 | BOOST_CHECK_EQUAL(readString(firstInterest->getApplicationParameters().get(tlv_parameter_value)), |
Zhiyi Zhang | af7c290 | 2019-03-14 22:13:21 -0700 | [diff] [blame] | 59 | "zhiyi@cs.ucla.edu"); |
Zhiyi Zhang | 23564c8 | 2017-03-01 10:22:22 -0800 | [diff] [blame] | 60 | } |
| 61 | |
Zhiyi Zhang | ef6b36a | 2020-09-22 21:20:59 -0700 | [diff] [blame] | 62 | // BOOST_AUTO_TEST_CASE(GenProbeRequestJson) |
| 63 | // { |
| 64 | // ClientModule client(m_keyChain); |
| 65 | // client.getClientConf().load("tests/unit-tests/client.conf.test"); |
Yufeng Zhang | 424d036 | 2019-06-12 16:48:27 -0700 | [diff] [blame] | 66 | |
Zhiyi Zhang | ef6b36a | 2020-09-22 21:20:59 -0700 | [diff] [blame] | 67 | // auto identity = addIdentity(Name("/site")); |
| 68 | // auto key = identity.getDefaultKey(); |
| 69 | // auto cert = key.getDefaultCertificate(); |
Yufeng Zhang | 424d036 | 2019-06-12 16:48:27 -0700 | [diff] [blame] | 70 | |
Zhiyi Zhang | ef6b36a | 2020-09-22 21:20:59 -0700 | [diff] [blame] | 71 | // ClientCaItem item; |
| 72 | // item.m_probe = "email:uid:name"; |
| 73 | // item.m_caPrefix = Name("/site"); |
| 74 | // item.m_anchor = cert; |
| 75 | // client.getClientConf().m_caItems.push_back(item); |
Yufeng Zhang | 424d036 | 2019-06-12 16:48:27 -0700 | [diff] [blame] | 76 | |
Zhiyi Zhang | ef6b36a | 2020-09-22 21:20:59 -0700 | [diff] [blame] | 77 | // auto interestPacket = client.genProbeRequestJson(item, "yufeng@ucla.edu:123456789:Yufeng Zhang"); |
| 78 | // BOOST_CHECK_EQUAL(interestPacket.get("email", ""), "yufeng@ucla.edu"); |
| 79 | // BOOST_CHECK_EQUAL(interestPacket.get("uid", ""), "123456789"); |
| 80 | // BOOST_CHECK_EQUAL(interestPacket.get("name", ""), "Yufeng Zhang"); |
| 81 | // } |
Yufeng Zhang | 424d036 | 2019-06-12 16:48:27 -0700 | [diff] [blame] | 82 | |
Zhiyi Zhang | 23564c8 | 2017-03-01 10:22:22 -0800 | [diff] [blame] | 83 | BOOST_AUTO_TEST_SUITE_END() // TestClientModule |
| 84 | |
| 85 | } // namespace tests |
| 86 | } // namespace ndncert |
| 87 | } // namespace ndn |