blob: fc5e5ca818e602b24f683c60bd470bda53235806 [file] [log] [blame]
zhanyong.wana18423e2009-07-22 23:58:19 +00001// Copyright 2007, Google Inc.
2// All rights reserved.
3//
4// Redistribution and use in source and binary forms, with or without
5// modification, are permitted provided that the following conditions are
6// met:
7//
8// * Redistributions of source code must retain the above copyright
9// notice, this list of conditions and the following disclaimer.
10// * Redistributions in binary form must reproduce the above
11// copyright notice, this list of conditions and the following disclaimer
12// in the documentation and/or other materials provided with the
13// distribution.
14// * Neither the name of Google Inc. nor the names of its
15// contributors may be used to endorse or promote products derived from
16// this software without specific prior written permission.
17//
18// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29//
30// Author: wan@google.com (Zhanyong Wan)
31
32// Google Mock - a framework for writing C++ mock classes.
33//
34// This file implements some actions that depend on gmock-generated-actions.h.
35
36#ifndef GMOCK_INCLUDE_GMOCK_GMOCK_MORE_ACTIONS_H_
37#define GMOCK_INCLUDE_GMOCK_GMOCK_MORE_ACTIONS_H_
38
zhanyong.wan2321b2a2010-10-14 06:51:27 +000039#include <algorithm>
40
zhanyong.wan53e08c42010-09-14 05:38:21 +000041#include "gmock/gmock-generated-actions.h"
zhanyong.wana18423e2009-07-22 23:58:19 +000042
43namespace testing {
44namespace internal {
45
46// Implements the Invoke(f) action. The template argument
47// FunctionImpl is the implementation type of f, which can be either a
48// function pointer or a functor. Invoke(f) can be used as an
49// Action<F> as long as f's type is compatible with F (i.e. f can be
50// assigned to a tr1::function<F>).
51template <typename FunctionImpl>
52class InvokeAction {
53 public:
54 // The c'tor makes a copy of function_impl (either a function
55 // pointer or a functor).
56 explicit InvokeAction(FunctionImpl function_impl)
57 : function_impl_(function_impl) {}
58
59 template <typename Result, typename ArgumentTuple>
60 Result Perform(const ArgumentTuple& args) {
61 return InvokeHelper<Result, ArgumentTuple>::Invoke(function_impl_, args);
62 }
zhanyong.wan32de5f52009-12-23 00:13:23 +000063
zhanyong.wana18423e2009-07-22 23:58:19 +000064 private:
65 FunctionImpl function_impl_;
zhanyong.wan32de5f52009-12-23 00:13:23 +000066
67 GTEST_DISALLOW_ASSIGN_(InvokeAction);
zhanyong.wana18423e2009-07-22 23:58:19 +000068};
69
70// Implements the Invoke(object_ptr, &Class::Method) action.
71template <class Class, typename MethodPtr>
72class InvokeMethodAction {
73 public:
74 InvokeMethodAction(Class* obj_ptr, MethodPtr method_ptr)
75 : obj_ptr_(obj_ptr), method_ptr_(method_ptr) {}
76
77 template <typename Result, typename ArgumentTuple>
78 Result Perform(const ArgumentTuple& args) const {
79 return InvokeHelper<Result, ArgumentTuple>::InvokeMethod(
80 obj_ptr_, method_ptr_, args);
81 }
zhanyong.wan32de5f52009-12-23 00:13:23 +000082
zhanyong.wana18423e2009-07-22 23:58:19 +000083 private:
84 Class* const obj_ptr_;
85 const MethodPtr method_ptr_;
zhanyong.wan32de5f52009-12-23 00:13:23 +000086
87 GTEST_DISALLOW_ASSIGN_(InvokeMethodAction);
zhanyong.wana18423e2009-07-22 23:58:19 +000088};
89
90} // namespace internal
91
92// Various overloads for Invoke().
93
94// Creates an action that invokes 'function_impl' with the mock
95// function's arguments.
96template <typename FunctionImpl>
97PolymorphicAction<internal::InvokeAction<FunctionImpl> > Invoke(
98 FunctionImpl function_impl) {
99 return MakePolymorphicAction(
100 internal::InvokeAction<FunctionImpl>(function_impl));
101}
102
103// Creates an action that invokes the given method on the given object
104// with the mock function's arguments.
105template <class Class, typename MethodPtr>
106PolymorphicAction<internal::InvokeMethodAction<Class, MethodPtr> > Invoke(
107 Class* obj_ptr, MethodPtr method_ptr) {
108 return MakePolymorphicAction(
109 internal::InvokeMethodAction<Class, MethodPtr>(obj_ptr, method_ptr));
110}
111
112// WithoutArgs(inner_action) can be used in a mock function with a
113// non-empty argument list to perform inner_action, which takes no
114// argument. In other words, it adapts an action accepting no
115// argument to one that accepts (and ignores) arguments.
116template <typename InnerAction>
117inline internal::WithArgsAction<InnerAction>
118WithoutArgs(const InnerAction& action) {
119 return internal::WithArgsAction<InnerAction>(action);
120}
121
122// WithArg<k>(an_action) creates an action that passes the k-th
123// (0-based) argument of the mock function to an_action and performs
124// it. It adapts an action accepting one argument to one that accepts
125// multiple arguments. For convenience, we also provide
126// WithArgs<k>(an_action) (defined below) as a synonym.
127template <int k, typename InnerAction>
128inline internal::WithArgsAction<InnerAction, k>
129WithArg(const InnerAction& action) {
130 return internal::WithArgsAction<InnerAction, k>(action);
131}
132
zhanyong.wan32de5f52009-12-23 00:13:23 +0000133// The ACTION*() macros trigger warning C4100 (unreferenced formal
134// parameter) in MSVC with -W4. Unfortunately they cannot be fixed in
135// the macro definition, as the warnings are generated when the macro
136// is expanded and macro expansion cannot contain #pragma. Therefore
137// we suppress them here.
138#ifdef _MSC_VER
zhanyong.wan658ac0b2011-02-24 07:29:13 +0000139# pragma warning(push)
140# pragma warning(disable:4100)
zhanyong.wan32de5f52009-12-23 00:13:23 +0000141#endif
142
zhanyong.wana18423e2009-07-22 23:58:19 +0000143// Action ReturnArg<k>() returns the k-th argument of the mock function.
144ACTION_TEMPLATE(ReturnArg,
145 HAS_1_TEMPLATE_PARAMS(int, k),
146 AND_0_VALUE_PARAMS()) {
147 return std::tr1::get<k>(args);
148}
149
150// Action SaveArg<k>(pointer) saves the k-th (0-based) argument of the
151// mock function to *pointer.
152ACTION_TEMPLATE(SaveArg,
153 HAS_1_TEMPLATE_PARAMS(int, k),
154 AND_1_VALUE_PARAMS(pointer)) {
155 *pointer = ::std::tr1::get<k>(args);
156}
157
zhanyong.wan2321b2a2010-10-14 06:51:27 +0000158// Action SaveArgPointee<k>(pointer) saves the value pointed to
159// by the k-th (0-based) argument of the mock function to *pointer.
160ACTION_TEMPLATE(SaveArgPointee,
161 HAS_1_TEMPLATE_PARAMS(int, k),
162 AND_1_VALUE_PARAMS(pointer)) {
163 *pointer = *::std::tr1::get<k>(args);
164}
165
zhanyong.wana18423e2009-07-22 23:58:19 +0000166// Action SetArgReferee<k>(value) assigns 'value' to the variable
167// referenced by the k-th (0-based) argument of the mock function.
168ACTION_TEMPLATE(SetArgReferee,
169 HAS_1_TEMPLATE_PARAMS(int, k),
170 AND_1_VALUE_PARAMS(value)) {
171 typedef typename ::std::tr1::tuple_element<k, args_type>::type argk_type;
172 // Ensures that argument #k is a reference. If you get a compiler
173 // error on the next line, you are using SetArgReferee<k>(value) in
174 // a mock function whose k-th (0-based) argument is not a reference.
zhanyong.wan02f71062010-05-10 17:14:29 +0000175 GTEST_COMPILE_ASSERT_(internal::is_reference<argk_type>::value,
zhanyong.wana18423e2009-07-22 23:58:19 +0000176 SetArgReferee_must_be_used_with_a_reference_argument);
177 ::std::tr1::get<k>(args) = value;
178}
179
180// Action SetArrayArgument<k>(first, last) copies the elements in
181// source range [first, last) to the array pointed to by the k-th
182// (0-based) argument, which can be either a pointer or an
183// iterator. The action does not take ownership of the elements in the
184// source range.
185ACTION_TEMPLATE(SetArrayArgument,
186 HAS_1_TEMPLATE_PARAMS(int, k),
187 AND_2_VALUE_PARAMS(first, last)) {
188 // Microsoft compiler deprecates ::std::copy, so we want to suppress warning
189 // 4996 (Function call with parameters that may be unsafe) there.
190#ifdef _MSC_VER
zhanyong.wan658ac0b2011-02-24 07:29:13 +0000191# pragma warning(push) // Saves the current warning state.
192# pragma warning(disable:4996) // Temporarily disables warning 4996.
zhanyong.wana18423e2009-07-22 23:58:19 +0000193#endif
194 ::std::copy(first, last, ::std::tr1::get<k>(args));
195#ifdef _MSC_VER
zhanyong.wan658ac0b2011-02-24 07:29:13 +0000196# pragma warning(pop) // Restores the warning state.
zhanyong.wana18423e2009-07-22 23:58:19 +0000197#endif
198}
199
200// Action DeleteArg<k>() deletes the k-th (0-based) argument of the mock
201// function.
202ACTION_TEMPLATE(DeleteArg,
203 HAS_1_TEMPLATE_PARAMS(int, k),
204 AND_0_VALUE_PARAMS()) {
205 delete ::std::tr1::get<k>(args);
206}
207
zhanyong.wane3bd0982010-07-03 00:16:42 +0000208// This action returns the value pointed to by 'pointer'.
209ACTION_P(ReturnPointee, pointer) { return *pointer; }
210
zhanyong.wana18423e2009-07-22 23:58:19 +0000211// Action Throw(exception) can be used in a mock function of any type
212// to throw the given exception. Any copyable value can be thrown.
213#if GTEST_HAS_EXCEPTIONS
vladloseve2e8ba42010-05-13 18:16:03 +0000214
215// Suppresses the 'unreachable code' warning that VC generates in opt modes.
zhanyong.wan658ac0b2011-02-24 07:29:13 +0000216# ifdef _MSC_VER
217# pragma warning(push) // Saves the current warning state.
218# pragma warning(disable:4702) // Temporarily disables warning 4702.
219# endif
zhanyong.wana18423e2009-07-22 23:58:19 +0000220ACTION_P(Throw, exception) { throw exception; }
zhanyong.wan658ac0b2011-02-24 07:29:13 +0000221# ifdef _MSC_VER
222# pragma warning(pop) // Restores the warning state.
223# endif
vladloseve2e8ba42010-05-13 18:16:03 +0000224
zhanyong.wana18423e2009-07-22 23:58:19 +0000225#endif // GTEST_HAS_EXCEPTIONS
226
zhanyong.wan32de5f52009-12-23 00:13:23 +0000227#ifdef _MSC_VER
zhanyong.wan658ac0b2011-02-24 07:29:13 +0000228# pragma warning(pop)
zhanyong.wan32de5f52009-12-23 00:13:23 +0000229#endif
230
zhanyong.wana18423e2009-07-22 23:58:19 +0000231} // namespace testing
232
233#endif // GMOCK_INCLUDE_GMOCK_GMOCK_MORE_ACTIONS_H_