Qiuhan Ding | 0cfc151 | 2015-02-17 17:44:11 -0800 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */ |
| 2 | /* |
Varun Patil | a24bd3e | 2020-11-24 10:08:33 +0530 | [diff] [blame] | 3 | * Copyright (c) 2020, Regents of the University of California |
Qiuhan Ding | 0cfc151 | 2015-02-17 17:44:11 -0800 | [diff] [blame] | 4 | * |
| 5 | * BSD license, See the LICENSE file for more information |
| 6 | * |
| 7 | * Author: Qiuhan Ding <qiuhanding@cs.ucla.edu> |
| 8 | */ |
| 9 | |
Qiuhan Ding | 0cfc151 | 2015-02-17 17:44:11 -0800 | [diff] [blame] | 10 | #include "endorse-collection.hpp" |
Varun Patil | a24bd3e | 2020-11-24 10:08:33 +0530 | [diff] [blame] | 11 | |
| 12 | #include <boost/test/unit_test.hpp> |
Qiuhan Ding | 0cfc151 | 2015-02-17 17:44:11 -0800 | [diff] [blame] | 13 | #include <ndn-cxx/encoding/buffer-stream.hpp> |
| 14 | |
Varun Patil | a24bd3e | 2020-11-24 10:08:33 +0530 | [diff] [blame] | 15 | namespace chronochat { |
Qiuhan Ding | 0cfc151 | 2015-02-17 17:44:11 -0800 | [diff] [blame] | 16 | namespace tests { |
| 17 | |
| 18 | using std::string; |
| 19 | |
| 20 | BOOST_AUTO_TEST_SUITE(TestEndorseCollection) |
| 21 | |
| 22 | BOOST_AUTO_TEST_CASE(EncodeDecode) |
| 23 | { |
| 24 | EndorseCollection collection; |
| 25 | collection.addCollectionEntry(ndn::Name("/ndn/ucla/qiuhan"), "hash"); |
| 26 | Block collectionWire; |
| 27 | BOOST_REQUIRE_NO_THROW(collectionWire = collection.wireEncode()); |
| 28 | EndorseCollection decodedCollection; |
| 29 | BOOST_REQUIRE_NO_THROW(decodedCollection.wireDecode(collectionWire)); |
| 30 | |
| 31 | BOOST_CHECK_EQUAL(decodedCollection.getCollectionEntries().size(), 1); |
| 32 | BOOST_CHECK_EQUAL(decodedCollection.getCollectionEntries()[0].certName.toUri(), |
| 33 | string("/ndn/ucla/qiuhan")); |
| 34 | BOOST_CHECK_EQUAL(decodedCollection.getCollectionEntries()[0].hash, "hash"); |
| 35 | |
| 36 | } |
| 37 | |
| 38 | BOOST_AUTO_TEST_SUITE_END() |
| 39 | |
| 40 | } // namespace tests |
| 41 | } // namespace chronochat |