gmock-generated-function-mockers.h.pump 11.5 KB
Newer Older
1
$$ -*- mode: c++; -*-
Gennadiy Civil's avatar
Gennadiy Civil committed
2
3
$$ This is a Pump source file.  Please use Pump to convert
$$ it to gmock-generated-function-mockers.h.
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
$$
$var n = 10  $$ The maximum arity we support.
// Copyright 2007, Google Inc.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
//     * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//     * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following disclaimer
// in the documentation and/or other materials provided with the
// distribution.
//     * Neither the name of Google Inc. nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Gennadiy Civil's avatar
 
Gennadiy Civil committed
34

35
36
37
38
39

// Google Mock - a framework for writing C++ mock classes.
//
// This file implements function mockers of various arities.

Gennadiy Civil's avatar
 
Gennadiy Civil committed
40
41
// GOOGLETEST_CM0002 DO NOT DELETE

42
43
44
#ifndef GMOCK_INCLUDE_GMOCK_GMOCK_GENERATED_FUNCTION_MOCKERS_H_
#define GMOCK_INCLUDE_GMOCK_GMOCK_GENERATED_FUNCTION_MOCKERS_H_

Abseil Team's avatar
Abseil Team committed
45
46
#include <utility>

47
48
#include "gmock/gmock-spec-builders.h"
#include "gmock/internal/gmock-internal-utils.h"
49

50
51
52
53
#if GTEST_HAS_STD_FUNCTION_
# include <functional>
#endif

54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
namespace testing {
namespace internal {

template <typename F>
class FunctionMockerBase;

// Note: class FunctionMocker really belongs to the ::testing
// namespace.  However if we define it in ::testing, MSVC will
// complain when classes in ::testing::internal declare it as a
// friend class template.  To workaround this compiler bug, we define
// FunctionMocker in ::testing::internal and import it into ::testing.
template <typename F>
class FunctionMocker;


$range i 0..n
$for i [[
$range j 1..i
$var typename_As = [[$for j [[, typename A$j]]]]
$var As = [[$for j, [[A$j]]]]
Abseil Team's avatar
Abseil Team committed
74
$var as = [[$for j, [[std::forward<A$j>(a$j)]]]]
75
76
77
78
79
80
81
82
83
84
$var Aas = [[$for j, [[A$j a$j]]]]
$var ms = [[$for j, [[m$j]]]]
$var matchers = [[$for j, [[const Matcher<A$j>& m$j]]]]
template <typename R$typename_As>
class FunctionMocker<R($As)> : public
    internal::FunctionMockerBase<R($As)> {
 public:
  typedef R F($As);
  typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple;

Gennadiy Civil's avatar
 
Gennadiy Civil committed
85
  MockSpec<F> With($matchers) {
Abseil Team's avatar
Abseil Team committed
86
    return MockSpec<F>(this, ::std::make_tuple($ms));
87
88
89
  }

  R Invoke($Aas) {
90
91
92
93
94
    // Even though gcc and MSVC don't enforce it, 'this->' is required
    // by the C++ standard [14.6.4] here, as the base class type is
    // dependent on the template argument (and thus shouldn't be
    // looked into when resolving InvokeWith).
    return this->InvokeWith(ArgumentTuple($as));
95
96
97
98
99
  }
};


]]
Gennadiy Civil's avatar
 
Gennadiy Civil committed
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
// Removes the given pointer; this is a helper for the expectation setter method
// for parameterless matchers.
//
// We want to make sure that the user cannot set a parameterless expectation on
// overloaded methods, including methods which are overloaded on const. Example:
//
//   class MockClass {
//     MOCK_METHOD0(GetName, string&());
//     MOCK_CONST_METHOD0(GetName, const string&());
//   };
//
//   TEST() {
//     // This should be an error, as it's not clear which overload is expected.
//     EXPECT_CALL(mock, GetName).WillOnce(ReturnRef(value));
//   }
//
// Here are the generated expectation-setter methods:
//
//   class MockClass {
//     // Overload 1
120
//     MockSpec<string&()> gmock_GetName() { ... }
Gennadiy Civil's avatar
 
Gennadiy Civil committed
121
122
123
124
//     // Overload 2. Declared const so that the compiler will generate an
//     // error when trying to resolve between this and overload 4 in
//     // 'gmock_GetName(WithoutMatchers(), nullptr)'.
//     MockSpec<string&()> gmock_GetName(
125
//         const WithoutMatchers&, const Function<string&()>*) const {
Gennadiy Civil's avatar
 
Gennadiy Civil committed
126
127
128
129
130
//       // Removes const from this, calls overload 1
//       return AdjustConstness_(this)->gmock_GetName();
//     }
//
//     // Overload 3
131
//     const string& gmock_GetName() const { ... }
Gennadiy Civil's avatar
 
Gennadiy Civil committed
132
133
//     // Overload 4
//     MockSpec<const string&()> gmock_GetName(
134
//         const WithoutMatchers&, const Function<const string&()>*) const {
Gennadiy Civil's avatar
 
Gennadiy Civil committed
135
136
137
138
139
140
141
142
143
144
//       // Does not remove const, calls overload 3
//       return AdjustConstness_const(this)->gmock_GetName();
//     }
//   }
//
template <typename MockType>
const MockType* AdjustConstness_const(const MockType* mock) {
  return mock;
}

Gennadiy Civil's avatar
 
Gennadiy Civil committed
145
// Removes const from and returns the given pointer; this is a helper for the
Gennadiy Civil's avatar
 
Gennadiy Civil committed
146
147
148
149
150
151
// expectation setter method for parameterless matchers.
template <typename MockType>
MockType* AdjustConstness_(const MockType* mock) {
  return const_cast<MockType*>(mock);
}

152
153
154
155
156
157
158
159
160
}  // namespace internal

// The style guide prohibits "using" statements in a namespace scope
// inside a header file.  However, the FunctionMocker class template
// is meant to be defined in the ::testing namespace.  The following
// line is just a trick for working around a bug in MSVC 8.0, which
// cannot handle it if we define FunctionMocker in ::testing.
using internal::FunctionMocker;

161
162
163
164
// GMOCK_RESULT_(tn, F) expands to the result type of function type F.
// We define this as a variadic macro in case F contains unprotected
// commas (the same reason that we use variadic macros in other places
// in this file).
165
// INTERNAL IMPLEMENTATION - DON'T USE IN USER CODE!!!
166
167
#define GMOCK_RESULT_(tn, ...) \
    tn ::testing::internal::Function<__VA_ARGS__>::Result
168

169
// The type of argument N of the given function type.
170
// INTERNAL IMPLEMENTATION - DON'T USE IN USER CODE!!!
171
172
#define GMOCK_ARG_(tn, N, ...) \
    tn ::testing::internal::Function<__VA_ARGS__>::Argument##N
173

174
// The matcher type for argument N of the given function type.
175
// INTERNAL IMPLEMENTATION - DON'T USE IN USER CODE!!!
176
177
#define GMOCK_MATCHER_(tn, N, ...) \
    const ::testing::Matcher<GMOCK_ARG_(tn, N, __VA_ARGS__)>&
178
179
180

// The variable for mocking the given method.
// INTERNAL IMPLEMENTATION - DON'T USE IN USER CODE!!!
181
#define GMOCK_MOCKER_(arity, constness, Method) \
182
    GTEST_CONCAT_TOKEN_(gmock##constness##arity##_##Method##_, __LINE__)
183
184
185
186


$for i [[
$range j 1..i
Gennadiy Civil's avatar
 
Gennadiy Civil committed
187
188
$var arg_as = [[$for j, [[GMOCK_ARG_(tn, $j, __VA_ARGS__) gmock_a$j]]]]
$var as = [[$for j, \
Abseil Team's avatar
Abseil Team committed
189
  [[::std::forward<GMOCK_ARG_(tn, $j, __VA_ARGS__)>(gmock_a$j)]]]]
Gennadiy Civil's avatar
 
Gennadiy Civil committed
190
$var matcher_arg_as = [[$for j, \
191
                     [[GMOCK_MATCHER_(tn, $j, __VA_ARGS__) gmock_a$j]]]]
Gennadiy Civil's avatar
 
Gennadiy Civil committed
192
$var matcher_as = [[$for j, [[gmock_a$j]]]]
Gennadiy Civil's avatar
 
Gennadiy Civil committed
193
194
$var anything_matchers = [[$for j, \
                     [[::testing::A<GMOCK_ARG_(tn, $j, __VA_ARGS__)>()]]]]
195
// INTERNAL IMPLEMENTATION - DON'T USE IN USER CODE!!!
196
197
198
#define GMOCK_METHOD$i[[]]_(tn, constness, ct, Method, ...) \
  GMOCK_RESULT_(tn, __VA_ARGS__) ct Method( \
      $arg_as) constness { \
Abseil Team's avatar
Abseil Team committed
199
    GTEST_COMPILE_ASSERT_((::std::tuple_size<                          \
200
        tn ::testing::internal::Function<__VA_ARGS__>::ArgumentTuple>::value == $i), \
201
        this_method_does_not_take_$i[[]]_argument[[$if i != 1 [[s]]]]); \
202
203
    GMOCK_MOCKER_($i, constness, Method).SetOwnerAndName(this, #Method); \
    return GMOCK_MOCKER_($i, constness, Method).Invoke($as); \
204
  } \
Gennadiy Civil's avatar
 
Gennadiy Civil committed
205
206
  ::testing::MockSpec<__VA_ARGS__> \
      gmock_##Method($matcher_arg_as) constness { \
207
    GMOCK_MOCKER_($i, constness, Method).RegisterOwner(this); \
Gennadiy Civil's avatar
 
Gennadiy Civil committed
208
    return GMOCK_MOCKER_($i, constness, Method).With($matcher_as); \
209
  } \
Gennadiy Civil's avatar
 
Gennadiy Civil committed
210
211
212
213
214
215
  ::testing::MockSpec<__VA_ARGS__> gmock_##Method( \
      const ::testing::internal::WithoutMatchers&, \
      constness ::testing::internal::Function<__VA_ARGS__>* ) const { \
        return ::testing::internal::AdjustConstness_##constness(this)-> \
            gmock_##Method($anything_matchers); \
      } \
216
  mutable ::testing::FunctionMocker<__VA_ARGS__> GMOCK_MOCKER_($i, constness, Method)
217
218
219
220


]]
$for i [[
221
#define MOCK_METHOD$i(m, ...) GMOCK_METHOD$i[[]]_(, , , m, __VA_ARGS__)
222
223
224
225
226

]]


$for i [[
227
#define MOCK_CONST_METHOD$i(m, ...) GMOCK_METHOD$i[[]]_(, const, , m, __VA_ARGS__)
228
229
230
231
232

]]


$for i [[
233
#define MOCK_METHOD$i[[]]_T(m, ...) GMOCK_METHOD$i[[]]_(typename, , , m, __VA_ARGS__)
234
235
236
237
238

]]


$for i [[
239
240
#define MOCK_CONST_METHOD$i[[]]_T(m, ...) \
    GMOCK_METHOD$i[[]]_(typename, const, , m, __VA_ARGS__)
241
242
243
244
245

]]


$for i [[
246
247
#define MOCK_METHOD$i[[]]_WITH_CALLTYPE(ct, m, ...) \
    GMOCK_METHOD$i[[]]_(, , ct, m, __VA_ARGS__)
248
249
250
251
252

]]


$for i [[
253
254
#define MOCK_CONST_METHOD$i[[]]_WITH_CALLTYPE(ct, m, ...) \
    GMOCK_METHOD$i[[]]_(, const, ct, m, __VA_ARGS__)
255
256
257
258
259

]]


$for i [[
260
261
#define MOCK_METHOD$i[[]]_T_WITH_CALLTYPE(ct, m, ...) \
    GMOCK_METHOD$i[[]]_(typename, , ct, m, __VA_ARGS__)
262
263
264
265
266

]]


$for i [[
267
268
#define MOCK_CONST_METHOD$i[[]]_T_WITH_CALLTYPE(ct, m, ...) \
    GMOCK_METHOD$i[[]]_(typename, const, ct, m, __VA_ARGS__)
269
270
271

]]

272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
// A MockFunction<F> class has one mock method whose type is F.  It is
// useful when you just want your test code to emit some messages and
// have Google Mock verify the right messages are sent (and perhaps at
// the right times).  For example, if you are exercising code:
//
//   Foo(1);
//   Foo(2);
//   Foo(3);
//
// and want to verify that Foo(1) and Foo(3) both invoke
// mock.Bar("a"), but Foo(2) doesn't invoke anything, you can write:
//
// TEST(FooTest, InvokesBarCorrectly) {
//   MyMock mock;
//   MockFunction<void(string check_point_name)> check;
//   {
//     InSequence s;
//
//     EXPECT_CALL(mock, Bar("a"));
//     EXPECT_CALL(check, Call("1"));
//     EXPECT_CALL(check, Call("2"));
//     EXPECT_CALL(mock, Bar("a"));
//   }
//   Foo(1);
//   check.Call("1");
//   Foo(2);
//   check.Call("2");
//   Foo(3);
// }
//
// The expectation spec says that the first Bar("a") must happen
// before check point "1", the second Bar("a") must happen after check
// point "2", and nothing should happen between the two check
// points. The explicit check points make it easy to tell which
// Bar("a") is called by which call to Foo().
307
308
309
310
311
312
313
314
315
316
317
//
// MockFunction<F> can also be used to exercise code that accepts
// std::function<F> callbacks. To do so, use AsStdFunction() method
// to create std::function proxy forwarding to original object's Call.
// Example:
//
// TEST(FooTest, RunsCallbackWithBarArgument) {
//   MockFunction<int(string)> callback;
//   EXPECT_CALL(callback, Call("bar")).WillOnce(Return(1));
//   Foo(callback.AsStdFunction());
// }
318
319
320
321
322
323
template <typename F>
class MockFunction;


$for i [[
$range j 0..i-1
324
$var ArgTypes = [[$for j, [[A$j]]]]
325
$var ArgValues = [[$for j, [[::std::forward<A$j>(a$j)]]]]
326
$var ArgDecls = [[$for j, [[A$j a$j]]]]
327
template <typename R$for j [[, typename A$j]]>
328
class MockFunction<R($ArgTypes)> {
329
 public:
330
331
  MockFunction() {}

332
333
  MOCK_METHOD$i[[]]_T(Call, R($ArgTypes));

334
#if GTEST_HAS_STD_FUNCTION_
Gennadiy Civil's avatar
 
Gennadiy Civil committed
335
  ::std::function<R($ArgTypes)> AsStdFunction() {
336
    return [this]($ArgDecls) -> R {
Gennadiy Civil's avatar
 
Gennadiy Civil committed
337
      return this->Call($ArgValues);
338
339
    };
  }
340
#endif  // GTEST_HAS_STD_FUNCTION_
341
342
343

 private:
  GTEST_DISALLOW_COPY_AND_ASSIGN_(MockFunction);
344
345
346
347
};


]]
348
349
350
}  // namespace testing

#endif  // GMOCK_INCLUDE_GMOCK_GMOCK_GENERATED_FUNCTION_MOCKERS_H_