Junxiao Shi | 85d9083 | 2016-08-04 03:19:46 +0000 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Junxiao Shi | d701e5b | 2017-07-26 01:30:41 +0000 | [diff] [blame] | 2 | /* |
Junxiao Shi | b55e5d3 | 2018-07-18 13:32:00 -0600 | [diff] [blame] | 3 | * Copyright (c) 2013-2018 Regents of the University of California. |
Junxiao Shi | 85d9083 | 2016-08-04 03:19:46 +0000 | [diff] [blame] | 4 | * |
| 5 | * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions). |
| 6 | * |
| 7 | * ndn-cxx library is free software: you can redistribute it and/or modify it under the |
| 8 | * terms of the GNU Lesser General Public License as published by the Free Software |
| 9 | * Foundation, either version 3 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | * ndn-cxx library 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 Lesser General Public License for more details. |
| 14 | * |
| 15 | * You should have received copies of the GNU General Public License and GNU Lesser |
| 16 | * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see |
| 17 | * <http://www.gnu.org/licenses/>. |
| 18 | * |
| 19 | * See AUTHORS.md for complete list of ndn-cxx authors and contributors. |
| 20 | */ |
| 21 | |
| 22 | #include "make-interest-data.hpp" |
| 23 | #include "security/signature-sha256-with-rsa.hpp" |
| 24 | |
| 25 | namespace ndn { |
| 26 | namespace tests { |
| 27 | |
| 28 | shared_ptr<Interest> |
Junxiao Shi | b55e5d3 | 2018-07-18 13:32:00 -0600 | [diff] [blame] | 29 | makeInterest(const Name& name, bool canBePrefix, time::milliseconds lifetime, uint32_t nonce) |
Junxiao Shi | 85d9083 | 2016-08-04 03:19:46 +0000 | [diff] [blame] | 30 | { |
Junxiao Shi | b55e5d3 | 2018-07-18 13:32:00 -0600 | [diff] [blame] | 31 | auto interest = make_shared<Interest>(name, lifetime); |
| 32 | interest->setCanBePrefix(canBePrefix); |
Junxiao Shi | 85d9083 | 2016-08-04 03:19:46 +0000 | [diff] [blame] | 33 | if (nonce != 0) { |
| 34 | interest->setNonce(nonce); |
| 35 | } |
| 36 | return interest; |
| 37 | } |
| 38 | |
| 39 | shared_ptr<Data> |
| 40 | makeData(const Name& name) |
| 41 | { |
| 42 | auto data = make_shared<Data>(name); |
| 43 | return signData(data); |
| 44 | } |
| 45 | |
| 46 | Data& |
| 47 | signData(Data& data) |
| 48 | { |
| 49 | ndn::SignatureSha256WithRsa fakeSignature; |
| 50 | fakeSignature.setValue(ndn::encoding::makeEmptyBlock(tlv::SignatureValue)); |
| 51 | data.setSignature(fakeSignature); |
| 52 | data.wireEncode(); |
| 53 | return data; |
| 54 | } |
| 55 | |
Junxiao Shi | 85d9083 | 2016-08-04 03:19:46 +0000 | [diff] [blame] | 56 | lp::Nack |
| 57 | makeNack(const Interest& interest, lp::NackReason reason) |
| 58 | { |
| 59 | lp::Nack nack(interest); |
| 60 | nack.setReason(reason); |
| 61 | return nack; |
| 62 | } |
| 63 | |
| 64 | lp::Nack |
| 65 | makeNack(const Name& name, uint32_t nonce, lp::NackReason reason) |
| 66 | { |
| 67 | Interest interest(name); |
| 68 | interest.setNonce(nonce); |
| 69 | return makeNack(interest, reason); |
| 70 | } |
| 71 | |
| 72 | } // namespace tests |
| 73 | } // namespace ndn |