Junxiao Shi | 727ed29 | 2014-02-19 23:26:45 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Davide Pesavento | b84bd3a | 2016-04-22 02:21:45 +0200 | [diff] [blame] | 3 | * Copyright (c) 2014-2016, Regents of the University of California, |
Spyridon Mastorakis | d0381c0 | 2015-02-19 10:29:41 -0800 | [diff] [blame] | 4 | * Arizona Board of Regents, |
| 5 | * Colorado State University, |
| 6 | * University Pierre & Marie Curie, Sorbonne University, |
| 7 | * Washington University in St. Louis, |
| 8 | * Beijing Institute of Technology, |
| 9 | * The University of Memphis. |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 10 | * |
| 11 | * This file is part of NFD (Named Data Networking Forwarding Daemon). |
| 12 | * See AUTHORS.md for complete list of NFD authors and contributors. |
| 13 | * |
| 14 | * NFD is free software: you can redistribute it and/or modify it under the terms |
| 15 | * of the GNU General Public License as published by the Free Software Foundation, |
| 16 | * either version 3 of the License, or (at your option) any later version. |
| 17 | * |
| 18 | * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 19 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 20 | * PURPOSE. See the GNU General Public License for more details. |
| 21 | * |
| 22 | * You should have received a copy of the GNU General Public License along with |
| 23 | * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
Junxiao Shi | 82e7f58 | 2014-09-07 15:15:40 -0700 | [diff] [blame] | 24 | */ |
Junxiao Shi | 727ed29 | 2014-02-19 23:26:45 -0700 | [diff] [blame] | 25 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 26 | #ifndef NFD_TESTS_NFD_FW_STRATEGY_TESTER_HPP |
| 27 | #define NFD_TESTS_NFD_FW_STRATEGY_TESTER_HPP |
Junxiao Shi | 727ed29 | 2014-02-19 23:26:45 -0700 | [diff] [blame] | 28 | |
| 29 | #include <boost/tuple/tuple_comparison.hpp> |
| 30 | #include "fw/strategy.hpp" |
| 31 | |
| 32 | namespace nfd { |
Spyridon Mastorakis | d0381c0 | 2015-02-19 10:29:41 -0800 | [diff] [blame] | 33 | namespace fw { |
Junxiao Shi | d9ee45c | 2014-02-27 15:38:11 -0700 | [diff] [blame] | 34 | namespace tests { |
Junxiao Shi | 727ed29 | 2014-02-19 23:26:45 -0700 | [diff] [blame] | 35 | |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 36 | /** \brief extends strategy S for unit testing |
Junxiao Shi | 727ed29 | 2014-02-19 23:26:45 -0700 | [diff] [blame] | 37 | * |
| 38 | * Actions invoked by S are recorded but not passed to forwarder |
| 39 | */ |
| 40 | template<typename S> |
| 41 | class StrategyTester : public S |
| 42 | { |
| 43 | public: |
| 44 | explicit |
| 45 | StrategyTester(Forwarder& forwarder) |
Junxiao Shi | f3c0781 | 2014-03-11 21:48:49 -0700 | [diff] [blame] | 46 | : S(forwarder, Name(S::STRATEGY_NAME).append("tester")) |
Junxiao Shi | 727ed29 | 2014-02-19 23:26:45 -0700 | [diff] [blame] | 47 | { |
| 48 | } |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 49 | |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 50 | /// fires after each Action |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 51 | signal::Signal<StrategyTester<S>> afterAction; |
Junxiao Shi | 727ed29 | 2014-02-19 23:26:45 -0700 | [diff] [blame] | 52 | |
| 53 | protected: |
| 54 | virtual void |
Junxiao Shi | d938a6b | 2014-05-11 23:40:29 -0700 | [diff] [blame] | 55 | sendInterest(shared_ptr<pit::Entry> pitEntry, |
Junxiao Shi | a6de429 | 2016-07-12 02:08:10 +0000 | [diff] [blame] | 56 | Face& outFace, |
Davide Pesavento | b84bd3a | 2016-04-22 02:21:45 +0200 | [diff] [blame] | 57 | bool wantNewNonce = false) override; |
Junxiao Shi | 727ed29 | 2014-02-19 23:26:45 -0700 | [diff] [blame] | 58 | |
| 59 | virtual void |
Davide Pesavento | b84bd3a | 2016-04-22 02:21:45 +0200 | [diff] [blame] | 60 | rejectPendingInterest(shared_ptr<pit::Entry> pitEntry) override; |
Junxiao Shi | 727ed29 | 2014-02-19 23:26:45 -0700 | [diff] [blame] | 61 | |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 62 | virtual void |
| 63 | sendNack(shared_ptr<pit::Entry> pitEntry, const Face& outFace, |
Davide Pesavento | b84bd3a | 2016-04-22 02:21:45 +0200 | [diff] [blame] | 64 | const lp::NackHeader& header) override; |
Junxiao Shi | 727ed29 | 2014-02-19 23:26:45 -0700 | [diff] [blame] | 65 | |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 66 | public: |
| 67 | struct SendInterestArgs |
| 68 | { |
| 69 | shared_ptr<pit::Entry> pitEntry; |
| 70 | FaceId outFaceId; |
| 71 | bool wantNewNonce; |
| 72 | }; |
| 73 | std::vector<SendInterestArgs> sendInterestHistory; |
| 74 | |
| 75 | struct RejectPendingInterestArgs |
| 76 | { |
| 77 | shared_ptr<pit::Entry> pitEntry; |
| 78 | }; |
| 79 | std::vector<RejectPendingInterestArgs> rejectPendingInterestHistory; |
| 80 | |
| 81 | struct SendNackArgs |
| 82 | { |
| 83 | shared_ptr<pit::Entry> pitEntry; |
| 84 | FaceId outFaceId; |
| 85 | lp::NackHeader header; |
| 86 | }; |
| 87 | std::vector<SendNackArgs> sendNackHistory; |
Junxiao Shi | 727ed29 | 2014-02-19 23:26:45 -0700 | [diff] [blame] | 88 | }; |
| 89 | |
| 90 | |
| 91 | template<typename S> |
| 92 | inline void |
| 93 | StrategyTester<S>::sendInterest(shared_ptr<pit::Entry> pitEntry, |
Junxiao Shi | a6de429 | 2016-07-12 02:08:10 +0000 | [diff] [blame] | 94 | Face& outFace, |
Junxiao Shi | d938a6b | 2014-05-11 23:40:29 -0700 | [diff] [blame] | 95 | bool wantNewNonce) |
Junxiao Shi | 727ed29 | 2014-02-19 23:26:45 -0700 | [diff] [blame] | 96 | { |
Junxiao Shi | a6de429 | 2016-07-12 02:08:10 +0000 | [diff] [blame] | 97 | SendInterestArgs args{pitEntry, outFace.getId(), wantNewNonce}; |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 98 | sendInterestHistory.push_back(args); |
Junxiao Shi | 9cff779 | 2016-08-01 21:45:11 +0000 | [diff] [blame] | 99 | pitEntry->insertOrUpdateOutRecord(outFace, pitEntry->getInterest()); |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 100 | afterAction(); |
Junxiao Shi | 727ed29 | 2014-02-19 23:26:45 -0700 | [diff] [blame] | 101 | } |
| 102 | |
| 103 | template<typename S> |
| 104 | inline void |
Junxiao Shi | 09498f0 | 2014-02-26 19:41:08 -0700 | [diff] [blame] | 105 | StrategyTester<S>::rejectPendingInterest(shared_ptr<pit::Entry> pitEntry) |
Junxiao Shi | 727ed29 | 2014-02-19 23:26:45 -0700 | [diff] [blame] | 106 | { |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 107 | RejectPendingInterestArgs args{pitEntry}; |
| 108 | rejectPendingInterestHistory.push_back(args); |
| 109 | afterAction(); |
| 110 | } |
| 111 | |
| 112 | template<typename S> |
| 113 | inline void |
| 114 | StrategyTester<S>::sendNack(shared_ptr<pit::Entry> pitEntry, const Face& outFace, |
| 115 | const lp::NackHeader& header) |
| 116 | { |
| 117 | SendNackArgs args{pitEntry, outFace.getId(), header}; |
| 118 | sendNackHistory.push_back(args); |
| 119 | pitEntry->deleteInRecord(outFace); |
| 120 | afterAction(); |
Junxiao Shi | 727ed29 | 2014-02-19 23:26:45 -0700 | [diff] [blame] | 121 | } |
| 122 | |
Junxiao Shi | d9ee45c | 2014-02-27 15:38:11 -0700 | [diff] [blame] | 123 | } // namespace tests |
Spyridon Mastorakis | d0381c0 | 2015-02-19 10:29:41 -0800 | [diff] [blame] | 124 | } // namespace fw |
Junxiao Shi | 727ed29 | 2014-02-19 23:26:45 -0700 | [diff] [blame] | 125 | } // namespace nfd |
| 126 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 127 | #endif // NFD_TESTS_NFD_FW_STRATEGY_TESTER_HPP |