Eric Newberry | 4b5a5cf | 2015-08-06 22:00:43 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | 74daf74 | 2018-11-23 18:14:13 -0500 | [diff] [blame] | 2 | /* |
Davide Pesavento | fbea4fc | 2022-02-08 07:26:04 -0500 | [diff] [blame] | 3 | * Copyright (c) 2013-2022 Regents of the University of California. |
Eric Newberry | 4b5a5cf | 2015-08-06 22:00:43 -0700 | [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 | * @author Eric Newberry <enewberry@email.arizona.edu> |
| 22 | */ |
| 23 | |
Davide Pesavento | 7e78064 | 2018-11-24 15:51:34 -0500 | [diff] [blame] | 24 | #include "ndn-cxx/lp/cache-policy.hpp" |
Eric Newberry | 4b5a5cf | 2015-08-06 22:00:43 -0700 | [diff] [blame] | 25 | |
Davide Pesavento | 7e78064 | 2018-11-24 15:51:34 -0500 | [diff] [blame] | 26 | #include "tests/boost-test.hpp" |
Eric Newberry | 4b5a5cf | 2015-08-06 22:00:43 -0700 | [diff] [blame] | 27 | |
| 28 | namespace ndn { |
| 29 | namespace lp { |
| 30 | namespace tests { |
| 31 | |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 32 | BOOST_AUTO_TEST_SUITE(Lp) |
| 33 | BOOST_AUTO_TEST_SUITE(TestCachePolicy) |
Eric Newberry | 4b5a5cf | 2015-08-06 22:00:43 -0700 | [diff] [blame] | 34 | |
| 35 | BOOST_AUTO_TEST_CASE(Encode) |
| 36 | { |
| 37 | CachePolicy policy; |
| 38 | policy.setPolicy(CachePolicyType::NO_CACHE); |
| 39 | |
| 40 | Block wire; |
Davide Pesavento | fbea4fc | 2022-02-08 07:26:04 -0500 | [diff] [blame] | 41 | BOOST_CHECK_NO_THROW(wire = policy.wireEncode()); |
Eric Newberry | 4b5a5cf | 2015-08-06 22:00:43 -0700 | [diff] [blame] | 42 | |
| 43 | // Sample encoded value obtained with: |
Davide Pesavento | fbea4fc | 2022-02-08 07:26:04 -0500 | [diff] [blame] | 44 | // for (auto it = wire.begin(); it != wire.end(); ++it) { |
Eric Newberry | 4b5a5cf | 2015-08-06 22:00:43 -0700 | [diff] [blame] | 45 | // printf("0x%02x, ", *it); |
| 46 | // } |
| 47 | |
| 48 | // Contains CachePolicyType::NO_CACHE |
| 49 | static const uint8_t expectedBlock[] = { |
| 50 | 0xfd, 0x03, 0x34, 0x05, 0xfd, 0x03, 0x35, 0x01, 0x01 |
| 51 | }; |
| 52 | |
| 53 | BOOST_CHECK_EQUAL_COLLECTIONS(expectedBlock, expectedBlock + sizeof(expectedBlock), |
| 54 | wire.begin(), wire.end()); |
| 55 | |
Davide Pesavento | fbea4fc | 2022-02-08 07:26:04 -0500 | [diff] [blame] | 56 | BOOST_CHECK_NO_THROW(policy.wireDecode(wire)); |
Eric Newberry | 4b5a5cf | 2015-08-06 22:00:43 -0700 | [diff] [blame] | 57 | } |
| 58 | |
| 59 | BOOST_AUTO_TEST_CASE(DecodeUnknownPolicyError) |
| 60 | { |
Davide Pesavento | fbea4fc | 2022-02-08 07:26:04 -0500 | [diff] [blame] | 61 | const Block wire({0xfd, 0x03, 0x34, 0x08, 0xfd, 0x03, 0x35, 0x04, 0x1f, 0xff, 0xff, 0xff}); |
Eric Newberry | 4b5a5cf | 2015-08-06 22:00:43 -0700 | [diff] [blame] | 62 | |
| 63 | CachePolicy policy; |
Davide Pesavento | fbea4fc | 2022-02-08 07:26:04 -0500 | [diff] [blame] | 64 | BOOST_CHECK_THROW(policy.wireDecode(wire), CachePolicy::Error); |
Eric Newberry | 4b5a5cf | 2015-08-06 22:00:43 -0700 | [diff] [blame] | 65 | } |
| 66 | |
| 67 | BOOST_AUTO_TEST_CASE(DecodeMissingPolicyError) |
| 68 | { |
Davide Pesavento | fbea4fc | 2022-02-08 07:26:04 -0500 | [diff] [blame] | 69 | const Block wire({0xfd, 0x03, 0x34, 0x00}); |
Eric Newberry | 4b5a5cf | 2015-08-06 22:00:43 -0700 | [diff] [blame] | 70 | |
| 71 | CachePolicy policy; |
Davide Pesavento | fbea4fc | 2022-02-08 07:26:04 -0500 | [diff] [blame] | 72 | BOOST_CHECK_THROW(policy.wireDecode(wire), CachePolicy::Error); |
Eric Newberry | 4b5a5cf | 2015-08-06 22:00:43 -0700 | [diff] [blame] | 73 | } |
| 74 | |
| 75 | BOOST_AUTO_TEST_CASE(DecodeInvalidPolicyError) |
| 76 | { |
Davide Pesavento | fbea4fc | 2022-02-08 07:26:04 -0500 | [diff] [blame] | 77 | const Block wire({0xfd, 0x03, 0x34, 0x05, 0xfd, 0x03, 0x35, 0x01, 0x00}); |
Eric Newberry | 4b5a5cf | 2015-08-06 22:00:43 -0700 | [diff] [blame] | 78 | |
| 79 | CachePolicy policy; |
Davide Pesavento | fbea4fc | 2022-02-08 07:26:04 -0500 | [diff] [blame] | 80 | BOOST_CHECK_THROW(policy.wireDecode(wire), CachePolicy::Error); |
Eric Newberry | 4b5a5cf | 2015-08-06 22:00:43 -0700 | [diff] [blame] | 81 | } |
| 82 | |
| 83 | BOOST_AUTO_TEST_CASE(Policy) |
| 84 | { |
| 85 | CachePolicy policy; |
| 86 | BOOST_CHECK_EQUAL(policy.getPolicy(), CachePolicyType::NONE); |
| 87 | |
| 88 | policy.setPolicy(CachePolicyType::NO_CACHE); |
| 89 | BOOST_CHECK_EQUAL(policy.getPolicy(), CachePolicyType::NO_CACHE); |
| 90 | } |
| 91 | |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 92 | BOOST_AUTO_TEST_SUITE_END() // TestCachePolicy |
| 93 | BOOST_AUTO_TEST_SUITE_END() // Lp |
Eric Newberry | 4b5a5cf | 2015-08-06 22:00:43 -0700 | [diff] [blame] | 94 | |
| 95 | } // namespace tests |
| 96 | } // namespace lp |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 97 | } // namespace ndn |