blob: f8e084830c54086fefc6a17092beb2fc2bd84f7a [file] [log] [blame]
Junxiao Shi727ed292014-02-19 23:26:45 -07001/* -*- 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
13namespace 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 */
20template<typename S>
21class StrategyTester : public S
22{
23public:
24 explicit
25 StrategyTester(Forwarder& forwarder)
26 : S(forwarder)
27 {
28 }
Junxiao Shi0b5fbbb2014-02-20 15:54:03 -070029
30 /// fires after each Action
31 EventEmitter<> onAction;
Junxiao Shi727ed292014-02-19 23:26:45 -070032
33protected:
34 virtual void
35 sendInterest(shared_ptr<pit::Entry> pitEntry,shared_ptr<Face> outFace);
36
37 virtual void
Junxiao Shi09498f02014-02-26 19:41:08 -070038 rejectPendingInterest(shared_ptr<pit::Entry> pitEntry);
Junxiao Shi727ed292014-02-19 23:26:45 -070039
40public:
41 typedef boost::tuple<shared_ptr<pit::Entry>, shared_ptr<Face> > SendInterestArgs;
42 std::vector<SendInterestArgs> m_sendInterestHistory;
43
Junxiao Shi09498f02014-02-26 19:41:08 -070044 typedef boost::tuple<shared_ptr<pit::Entry> > RejectPendingInterestArgs;
45 std::vector<RejectPendingInterestArgs> m_rejectPendingInterestHistory;
Junxiao Shi727ed292014-02-19 23:26:45 -070046};
47
48
49template<typename S>
50inline void
51StrategyTester<S>::sendInterest(shared_ptr<pit::Entry> pitEntry,
52 shared_ptr<Face> outFace)
53{
54 m_sendInterestHistory.push_back(SendInterestArgs(pitEntry, outFace));
Junxiao Shi0b5fbbb2014-02-20 15:54:03 -070055 pitEntry->insertOrUpdateOutRecord(outFace, pitEntry->getInterest());
56 onAction();
Junxiao Shi727ed292014-02-19 23:26:45 -070057}
58
59template<typename S>
60inline void
Junxiao Shi09498f02014-02-26 19:41:08 -070061StrategyTester<S>::rejectPendingInterest(shared_ptr<pit::Entry> pitEntry)
Junxiao Shi727ed292014-02-19 23:26:45 -070062{
Junxiao Shi09498f02014-02-26 19:41:08 -070063 m_rejectPendingInterestHistory.push_back(RejectPendingInterestArgs(pitEntry));
Junxiao Shi0b5fbbb2014-02-20 15:54:03 -070064 onAction();
Junxiao Shi727ed292014-02-19 23:26:45 -070065}
66
67
68} // namespace nfd
69
70#endif // TEST_FW_STRATEGY_TESTER_HPP