Eric Newberry | 3898262 | 2015-08-06 21:39:55 -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 | /* |
| 3 | * Copyright (c) 2013-2018 Regents of the University of California. |
Eric Newberry | 3898262 | 2015-08-06 21:39:55 -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/nack.hpp" |
Eric Newberry | 3898262 | 2015-08-06 21:39:55 -0700 | [diff] [blame] | 25 | |
Davide Pesavento | 7e78064 | 2018-11-24 15:51:34 -0500 | [diff] [blame] | 26 | #include "tests/boost-test.hpp" |
Eric Newberry | 3898262 | 2015-08-06 21:39:55 -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(TestNack) |
Eric Newberry | 3898262 | 2015-08-06 21:39:55 -0700 | [diff] [blame] | 34 | |
| 35 | BOOST_AUTO_TEST_CASE(Members) |
| 36 | { |
| 37 | Name name("ndn:/test"); |
| 38 | Interest interest(name); |
| 39 | Nack nack(interest); |
| 40 | |
| 41 | BOOST_CHECK_EQUAL(nack.getInterest().getName(), name); |
| 42 | |
| 43 | NackHeader header; |
| 44 | header.setReason(NackReason::CONGESTION); |
| 45 | nack.setHeader(header); |
| 46 | BOOST_CHECK_EQUAL(nack.getHeader().getReason(), header.getReason()); |
| 47 | |
| 48 | BOOST_CHECK_EQUAL(nack.getHeader().getReason(), nack.getReason()); |
| 49 | |
| 50 | nack.setReason(NackReason::DUPLICATE); |
| 51 | BOOST_CHECK_EQUAL(nack.getReason(), NackReason::DUPLICATE); |
| 52 | |
| 53 | nack.setReason(NackReason::NO_ROUTE); |
| 54 | BOOST_CHECK_EQUAL(nack.getReason(), NackReason::NO_ROUTE); |
| 55 | |
| 56 | Nack nack2(interest); |
| 57 | BOOST_CHECK_EQUAL(nack2.getReason(), NackReason::NONE); |
| 58 | } |
| 59 | |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 60 | BOOST_AUTO_TEST_SUITE_END() // TestNack |
| 61 | BOOST_AUTO_TEST_SUITE_END() // Lp |
Eric Newberry | 3898262 | 2015-08-06 21:39:55 -0700 | [diff] [blame] | 62 | |
| 63 | } // namespace tests |
| 64 | } // namespace lp |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 65 | } // namespace ndn |