Junxiao Shi | 727ed29 | 2014-02-19 23:26:45 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
| 3 | * Copyright (C) 2014 Named Data Networking Project |
| 4 | * See COPYING for copyright and distribution information. |
| 5 | */ |
| 6 | |
| 7 | #ifndef NFD_TEST_FW_STRATEGY_TESTER_HPP |
| 8 | #define NFD_TEST_FW_STRATEGY_TESTER_HPP |
| 9 | |
| 10 | #include <boost/tuple/tuple_comparison.hpp> |
| 11 | #include "fw/strategy.hpp" |
| 12 | |
| 13 | namespace nfd { |
| 14 | |
| 15 | /** \class StrategyTester |
| 16 | * \brief extends strategy S for unit testing |
| 17 | * |
| 18 | * Actions invoked by S are recorded but not passed to forwarder |
| 19 | */ |
| 20 | template<typename S> |
| 21 | class StrategyTester : public S |
| 22 | { |
| 23 | public: |
| 24 | explicit |
| 25 | StrategyTester(Forwarder& forwarder) |
| 26 | : S(forwarder) |
| 27 | { |
| 28 | } |
| 29 | |
| 30 | protected: |
| 31 | virtual void |
| 32 | sendInterest(shared_ptr<pit::Entry> pitEntry,shared_ptr<Face> outFace); |
| 33 | |
| 34 | virtual void |
| 35 | rebuffPendingInterest(shared_ptr<pit::Entry> pitEntry); |
| 36 | |
| 37 | public: |
| 38 | typedef boost::tuple<shared_ptr<pit::Entry>, shared_ptr<Face> > SendInterestArgs; |
| 39 | std::vector<SendInterestArgs> m_sendInterestHistory; |
| 40 | |
| 41 | typedef boost::tuple<shared_ptr<pit::Entry> > RebuffPendingInterestArgs; |
| 42 | std::vector<RebuffPendingInterestArgs> m_rebuffPendingInterestHistory; |
| 43 | }; |
| 44 | |
| 45 | |
| 46 | template<typename S> |
| 47 | inline void |
| 48 | StrategyTester<S>::sendInterest(shared_ptr<pit::Entry> pitEntry, |
| 49 | shared_ptr<Face> outFace) |
| 50 | { |
| 51 | m_sendInterestHistory.push_back(SendInterestArgs(pitEntry, outFace)); |
| 52 | } |
| 53 | |
| 54 | template<typename S> |
| 55 | inline void |
| 56 | StrategyTester<S>::rebuffPendingInterest(shared_ptr<pit::Entry> pitEntry) |
| 57 | { |
| 58 | m_rebuffPendingInterestHistory.push_back(RebuffPendingInterestArgs(pitEntry)); |
| 59 | } |
| 60 | |
| 61 | |
| 62 | } // namespace nfd |
| 63 | |
| 64 | #endif // TEST_FW_STRATEGY_TESTER_HPP |