Junxiao Shi | 727ed29 | 2014-02-19 23:26:45 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 3 | * Copyright (c) 2014 Regents of the University of California, |
| 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 | * |
| 10 | * This file is part of NFD (Named Data Networking Forwarding Daemon). |
| 11 | * See AUTHORS.md for complete list of NFD authors and contributors. |
| 12 | * |
| 13 | * NFD is free software: you can redistribute it and/or modify it under the terms |
| 14 | * of the GNU General Public License as published by the Free Software Foundation, |
| 15 | * either version 3 of the License, or (at your option) any later version. |
| 16 | * |
| 17 | * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 18 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 19 | * PURPOSE. See the GNU General Public License for more details. |
| 20 | * |
| 21 | * You should have received a copy of the GNU General Public License along with |
| 22 | * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 23 | **/ |
Junxiao Shi | 727ed29 | 2014-02-19 23:26:45 -0700 | [diff] [blame] | 24 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 25 | #ifndef NFD_TESTS_NFD_FW_STRATEGY_TESTER_HPP |
| 26 | #define NFD_TESTS_NFD_FW_STRATEGY_TESTER_HPP |
Junxiao Shi | 727ed29 | 2014-02-19 23:26:45 -0700 | [diff] [blame] | 27 | |
| 28 | #include <boost/tuple/tuple_comparison.hpp> |
| 29 | #include "fw/strategy.hpp" |
| 30 | |
| 31 | namespace nfd { |
Junxiao Shi | d9ee45c | 2014-02-27 15:38:11 -0700 | [diff] [blame] | 32 | namespace tests { |
Junxiao Shi | 727ed29 | 2014-02-19 23:26:45 -0700 | [diff] [blame] | 33 | |
| 34 | /** \class StrategyTester |
| 35 | * \brief extends strategy S for unit testing |
| 36 | * |
| 37 | * Actions invoked by S are recorded but not passed to forwarder |
| 38 | */ |
| 39 | template<typename S> |
| 40 | class StrategyTester : public S |
| 41 | { |
| 42 | public: |
| 43 | explicit |
| 44 | StrategyTester(Forwarder& forwarder) |
Junxiao Shi | f3c0781 | 2014-03-11 21:48:49 -0700 | [diff] [blame] | 45 | : S(forwarder, Name(S::STRATEGY_NAME).append("tester")) |
Junxiao Shi | 727ed29 | 2014-02-19 23:26:45 -0700 | [diff] [blame] | 46 | { |
| 47 | } |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 48 | |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 49 | /// fires after each Action |
| 50 | EventEmitter<> onAction; |
Junxiao Shi | 727ed29 | 2014-02-19 23:26:45 -0700 | [diff] [blame] | 51 | |
| 52 | protected: |
| 53 | virtual void |
| 54 | sendInterest(shared_ptr<pit::Entry> pitEntry,shared_ptr<Face> outFace); |
| 55 | |
| 56 | virtual void |
Junxiao Shi | 09498f0 | 2014-02-26 19:41:08 -0700 | [diff] [blame] | 57 | rejectPendingInterest(shared_ptr<pit::Entry> pitEntry); |
Junxiao Shi | 727ed29 | 2014-02-19 23:26:45 -0700 | [diff] [blame] | 58 | |
| 59 | public: |
| 60 | typedef boost::tuple<shared_ptr<pit::Entry>, shared_ptr<Face> > SendInterestArgs; |
| 61 | std::vector<SendInterestArgs> m_sendInterestHistory; |
| 62 | |
Junxiao Shi | 09498f0 | 2014-02-26 19:41:08 -0700 | [diff] [blame] | 63 | typedef boost::tuple<shared_ptr<pit::Entry> > RejectPendingInterestArgs; |
| 64 | std::vector<RejectPendingInterestArgs> m_rejectPendingInterestHistory; |
Junxiao Shi | 727ed29 | 2014-02-19 23:26:45 -0700 | [diff] [blame] | 65 | }; |
| 66 | |
| 67 | |
| 68 | template<typename S> |
| 69 | inline void |
| 70 | StrategyTester<S>::sendInterest(shared_ptr<pit::Entry> pitEntry, |
| 71 | shared_ptr<Face> outFace) |
| 72 | { |
| 73 | m_sendInterestHistory.push_back(SendInterestArgs(pitEntry, outFace)); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 74 | pitEntry->insertOrUpdateOutRecord(outFace, pitEntry->getInterest()); |
| 75 | onAction(); |
Junxiao Shi | 727ed29 | 2014-02-19 23:26:45 -0700 | [diff] [blame] | 76 | } |
| 77 | |
| 78 | template<typename S> |
| 79 | inline void |
Junxiao Shi | 09498f0 | 2014-02-26 19:41:08 -0700 | [diff] [blame] | 80 | StrategyTester<S>::rejectPendingInterest(shared_ptr<pit::Entry> pitEntry) |
Junxiao Shi | 727ed29 | 2014-02-19 23:26:45 -0700 | [diff] [blame] | 81 | { |
Junxiao Shi | 09498f0 | 2014-02-26 19:41:08 -0700 | [diff] [blame] | 82 | m_rejectPendingInterestHistory.push_back(RejectPendingInterestArgs(pitEntry)); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 83 | onAction(); |
Junxiao Shi | 727ed29 | 2014-02-19 23:26:45 -0700 | [diff] [blame] | 84 | } |
| 85 | |
Junxiao Shi | d9ee45c | 2014-02-27 15:38:11 -0700 | [diff] [blame] | 86 | } // namespace tests |
Junxiao Shi | 727ed29 | 2014-02-19 23:26:45 -0700 | [diff] [blame] | 87 | } // namespace nfd |
| 88 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 89 | #endif // NFD_TESTS_NFD_FW_STRATEGY_TESTER_HPP |