Wire Sysio Wire Sysion 1.0.0
Loading...
Searching...
No Matches
gmock-generated-actions_test.cc
Go to the documentation of this file.
1// 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 tests the built-in actions generated by a script.
35
37
38#include <functional>
39#include <sstream>
40#include <string>
41#include "gmock/gmock.h"
42#include "gtest/gtest.h"
43
44namespace testing {
45namespace gmock_generated_actions_test {
46
47using ::std::plus;
48using ::std::string;
49using testing::get;
50using testing::make_tuple;
51using testing::tuple;
52using testing::tuple_element;
53using testing::_;
54using testing::Action;
56using testing::ByRef;
57using testing::DoAll;
58using testing::Invoke;
59using testing::Return;
60using testing::ReturnNew;
63using testing::Unused;
65
66// For suppressing compiler warnings on conversion possibly losing precision.
67inline short Short(short n) { return n; } // NOLINT
68inline char Char(char ch) { return ch; }
69
70// Sample functions and functors for testing various actions.
71int Nullary() { return 1; }
72
74 public:
75 int operator()() { return 2; }
76};
77
78bool g_done = false;
79
80bool Unary(int x) { return x < 0; }
81
82const char* Plus1(const char* s) { return s + 1; }
83
84bool ByConstRef(const std::string& s) { return s == "Hi"; }
85
86const double g_double = 0;
87bool ReferencesGlobalDouble(const double& x) { return &x == &g_double; }
88
89std::string ByNonConstRef(std::string& s) { return s += "+"; } // NOLINT
90
92 int operator()(bool x) { return x ? 1 : -1; }
93};
94
95const char* Binary(const char* input, short n) { return input + n; } // NOLINT
96
97void VoidBinary(int, char) { g_done = true; }
98
99int Ternary(int x, char y, short z) { return x + y + z; } // NOLINT
100
101void VoidTernary(int, char, bool) { g_done = true; }
102
103int SumOf4(int a, int b, int c, int d) { return a + b + c + d; }
104
105std::string Concat4(const char* s1, const char* s2, const char* s3,
106 const char* s4) {
107 return std::string(s1) + s2 + s3 + s4;
108}
109
110int SumOf5(int a, int b, int c, int d, int e) { return a + b + c + d + e; }
111
113 int operator()(int a, int b, int c, int d, int e) {
114 return a + b + c + d + e;
115 }
116};
117
118std::string Concat5(const char* s1, const char* s2, const char* s3,
119 const char* s4, const char* s5) {
120 return std::string(s1) + s2 + s3 + s4 + s5;
121}
122
123int SumOf6(int a, int b, int c, int d, int e, int f) {
124 return a + b + c + d + e + f;
125}
126
128 int operator()(int a, int b, int c, int d, int e, int f) {
129 return a + b + c + d + e + f;
130 }
131};
132
133std::string Concat6(const char* s1, const char* s2, const char* s3,
134 const char* s4, const char* s5, const char* s6) {
135 return std::string(s1) + s2 + s3 + s4 + s5 + s6;
136}
137
138std::string Concat7(const char* s1, const char* s2, const char* s3,
139 const char* s4, const char* s5, const char* s6,
140 const char* s7) {
141 return std::string(s1) + s2 + s3 + s4 + s5 + s6 + s7;
142}
143
144std::string Concat8(const char* s1, const char* s2, const char* s3,
145 const char* s4, const char* s5, const char* s6,
146 const char* s7, const char* s8) {
147 return std::string(s1) + s2 + s3 + s4 + s5 + s6 + s7 + s8;
148}
149
150std::string Concat9(const char* s1, const char* s2, const char* s3,
151 const char* s4, const char* s5, const char* s6,
152 const char* s7, const char* s8, const char* s9) {
153 return std::string(s1) + s2 + s3 + s4 + s5 + s6 + s7 + s8 + s9;
154}
155
156std::string Concat10(const char* s1, const char* s2, const char* s3,
157 const char* s4, const char* s5, const char* s6,
158 const char* s7, const char* s8, const char* s9,
159 const char* s10) {
160 return std::string(s1) + s2 + s3 + s4 + s5 + s6 + s7 + s8 + s9 + s10;
161}
162
163// A helper that turns the type of a C-string literal from const
164// char[N] to const char*.
165inline const char* CharPtr(const char* s) { return s; }
166
167// Tests InvokeArgument<N>(...).
168
169// Tests using InvokeArgument with a nullary function.
170TEST(InvokeArgumentTest, Function0) {
171 Action<int(int, int(*)())> a = InvokeArgument<1>(); // NOLINT
172 EXPECT_EQ(1, a.Perform(make_tuple(2, &Nullary)));
173}
174
175// Tests using InvokeArgument with a unary function.
176TEST(InvokeArgumentTest, Functor1) {
177 Action<int(UnaryFunctor)> a = InvokeArgument<0>(true); // NOLINT
178 EXPECT_EQ(1, a.Perform(make_tuple(UnaryFunctor())));
179}
180
181// Tests using InvokeArgument with a 5-ary function.
182TEST(InvokeArgumentTest, Function5) {
183 Action<int(int(*)(int, int, int, int, int))> a = // NOLINT
184 InvokeArgument<0>(10000, 2000, 300, 40, 5);
185 EXPECT_EQ(12345, a.Perform(make_tuple(&SumOf5)));
186}
187
188// Tests using InvokeArgument with a 5-ary functor.
189TEST(InvokeArgumentTest, Functor5) {
190 Action<int(SumOf5Functor)> a = // NOLINT
191 InvokeArgument<0>(10000, 2000, 300, 40, 5);
192 EXPECT_EQ(12345, a.Perform(make_tuple(SumOf5Functor())));
193}
194
195// Tests using InvokeArgument with a 6-ary function.
196TEST(InvokeArgumentTest, Function6) {
197 Action<int(int(*)(int, int, int, int, int, int))> a = // NOLINT
198 InvokeArgument<0>(100000, 20000, 3000, 400, 50, 6);
199 EXPECT_EQ(123456, a.Perform(make_tuple(&SumOf6)));
200}
201
202// Tests using InvokeArgument with a 6-ary functor.
203TEST(InvokeArgumentTest, Functor6) {
204 Action<int(SumOf6Functor)> a = // NOLINT
205 InvokeArgument<0>(100000, 20000, 3000, 400, 50, 6);
206 EXPECT_EQ(123456, a.Perform(make_tuple(SumOf6Functor())));
207}
208
209// Tests using InvokeArgument with a 7-ary function.
210TEST(InvokeArgumentTest, Function7) {
211 Action<std::string(std::string(*)(const char*, const char*, const char*,
212 const char*, const char*, const char*,
213 const char*))>
214 a = InvokeArgument<0>("1", "2", "3", "4", "5", "6", "7");
215 EXPECT_EQ("1234567", a.Perform(make_tuple(&Concat7)));
216}
217
218// Tests using InvokeArgument with a 8-ary function.
219TEST(InvokeArgumentTest, Function8) {
220 Action<std::string(std::string(*)(const char*, const char*, const char*,
221 const char*, const char*, const char*,
222 const char*, const char*))>
223 a = InvokeArgument<0>("1", "2", "3", "4", "5", "6", "7", "8");
224 EXPECT_EQ("12345678", a.Perform(make_tuple(&Concat8)));
225}
226
227// Tests using InvokeArgument with a 9-ary function.
228TEST(InvokeArgumentTest, Function9) {
229 Action<std::string(std::string(*)(const char*, const char*, const char*,
230 const char*, const char*, const char*,
231 const char*, const char*, const char*))>
232 a = InvokeArgument<0>("1", "2", "3", "4", "5", "6", "7", "8", "9");
233 EXPECT_EQ("123456789", a.Perform(make_tuple(&Concat9)));
234}
235
236// Tests using InvokeArgument with a 10-ary function.
237TEST(InvokeArgumentTest, Function10) {
238 Action<std::string(std::string(*)(
239 const char*, const char*, const char*, const char*, const char*,
240 const char*, const char*, const char*, const char*, const char*))>
241 a = InvokeArgument<0>("1", "2", "3", "4", "5", "6", "7", "8", "9", "0");
242 EXPECT_EQ("1234567890", a.Perform(make_tuple(&Concat10)));
243}
244
245// Tests using InvokeArgument with a function that takes a pointer argument.
246TEST(InvokeArgumentTest, ByPointerFunction) {
247 Action<const char*(const char*(*)(const char* input, short n))> a = // NOLINT
248 InvokeArgument<0>(static_cast<const char*>("Hi"), Short(1));
249 EXPECT_STREQ("i", a.Perform(make_tuple(&Binary)));
250}
251
252// Tests using InvokeArgument with a function that takes a const char*
253// by passing it a C-string literal.
254TEST(InvokeArgumentTest, FunctionWithCStringLiteral) {
255 Action<const char*(const char*(*)(const char* input, short n))> a = // NOLINT
256 InvokeArgument<0>("Hi", Short(1));
257 EXPECT_STREQ("i", a.Perform(make_tuple(&Binary)));
258}
259
260// Tests using InvokeArgument with a function that takes a const reference.
261TEST(InvokeArgumentTest, ByConstReferenceFunction) {
262 Action<bool(bool (*function)(const std::string& s))> a = // NOLINT
263 InvokeArgument<0>(std::string("Hi"));
264 // When action 'a' is constructed, it makes a copy of the temporary
265 // string object passed to it, so it's OK to use 'a' later, when the
266 // temporary object has already died.
267 EXPECT_TRUE(a.Perform(make_tuple(&ByConstRef)));
268}
269
270// Tests using InvokeArgument with ByRef() and a function that takes a
271// const reference.
272TEST(InvokeArgumentTest, ByExplicitConstReferenceFunction) {
273 Action<bool(bool(*)(const double& x))> a = // NOLINT
274 InvokeArgument<0>(ByRef(g_double));
275 // The above line calls ByRef() on a const value.
276 EXPECT_TRUE(a.Perform(make_tuple(&ReferencesGlobalDouble)));
277
278 double x = 0;
279 a = InvokeArgument<0>(ByRef(x)); // This calls ByRef() on a non-const.
280 EXPECT_FALSE(a.Perform(make_tuple(&ReferencesGlobalDouble)));
281}
282
283// Tests using WithArgs and with an action that takes 1 argument.
284TEST(WithArgsTest, OneArg) {
285 Action<bool(double x, int n)> a = WithArgs<1>(Invoke(Unary)); // NOLINT
286 EXPECT_TRUE(a.Perform(make_tuple(1.5, -1)));
287 EXPECT_FALSE(a.Perform(make_tuple(1.5, 1)));
288}
289
290// Tests using WithArgs with an action that takes 2 arguments.
291TEST(WithArgsTest, TwoArgs) {
292 Action<const char*(const char* s, double x, short n)> a =
293 WithArgs<0, 2>(Invoke(Binary));
294 const char s[] = "Hello";
295 EXPECT_EQ(s + 2, a.Perform(make_tuple(CharPtr(s), 0.5, Short(2))));
296}
297
298// Tests using WithArgs with an action that takes 3 arguments.
299TEST(WithArgsTest, ThreeArgs) {
300 Action<int(int, double, char, short)> a = // NOLINT
302 EXPECT_EQ(123, a.Perform(make_tuple(100, 6.5, Char(20), Short(3))));
303}
304
305// Tests using WithArgs with an action that takes 4 arguments.
306TEST(WithArgsTest, FourArgs) {
307 Action<std::string(const char*, const char*, double, const char*,
308 const char*)>
310 EXPECT_EQ("4310", a.Perform(make_tuple(CharPtr("0"), CharPtr("1"), 2.5,
311 CharPtr("3"), CharPtr("4"))));
312}
313
314// Tests using WithArgs with an action that takes 5 arguments.
315TEST(WithArgsTest, FiveArgs) {
316 Action<std::string(const char*, const char*, const char*, const char*,
317 const char*)>
319 EXPECT_EQ("43210",
320 a.Perform(make_tuple(CharPtr("0"), CharPtr("1"), CharPtr("2"),
321 CharPtr("3"), CharPtr("4"))));
322}
323
324// Tests using WithArgs with an action that takes 6 arguments.
325TEST(WithArgsTest, SixArgs) {
326 Action<std::string(const char*, const char*, const char*)> a =
328 EXPECT_EQ("012210",
329 a.Perform(make_tuple(CharPtr("0"), CharPtr("1"), CharPtr("2"))));
330}
331
332// Tests using WithArgs with an action that takes 7 arguments.
333TEST(WithArgsTest, SevenArgs) {
334 Action<std::string(const char*, const char*, const char*, const char*)> a =
336 EXPECT_EQ("0123210",
337 a.Perform(make_tuple(CharPtr("0"), CharPtr("1"), CharPtr("2"),
338 CharPtr("3"))));
339}
340
341// Tests using WithArgs with an action that takes 8 arguments.
342TEST(WithArgsTest, EightArgs) {
343 Action<std::string(const char*, const char*, const char*, const char*)> a =
345 EXPECT_EQ("01230123",
346 a.Perform(make_tuple(CharPtr("0"), CharPtr("1"), CharPtr("2"),
347 CharPtr("3"))));
348}
349
350// Tests using WithArgs with an action that takes 9 arguments.
351TEST(WithArgsTest, NineArgs) {
352 Action<std::string(const char*, const char*, const char*, const char*)> a =
354 EXPECT_EQ("012312323",
355 a.Perform(make_tuple(CharPtr("0"), CharPtr("1"), CharPtr("2"),
356 CharPtr("3"))));
357}
358
359// Tests using WithArgs with an action that takes 10 arguments.
360TEST(WithArgsTest, TenArgs) {
361 Action<std::string(const char*, const char*, const char*, const char*)> a =
363 EXPECT_EQ("0123210123",
364 a.Perform(make_tuple(CharPtr("0"), CharPtr("1"), CharPtr("2"),
365 CharPtr("3"))));
366}
367
368// Tests using WithArgs with an action that is not Invoke().
369class SubstractAction : public ActionInterface<int(int, int)> { // NOLINT
370 public:
371 virtual int Perform(const tuple<int, int>& args) {
372 return get<0>(args) - get<1>(args);
373 }
374};
375
376TEST(WithArgsTest, NonInvokeAction) {
377 Action<int(const std::string&, int, int)> a = // NOLINT
379 tuple<std::string, int, int> dummy = make_tuple(std::string("hi"), 2, 10);
380 EXPECT_EQ(8, a.Perform(dummy));
381}
382
383// Tests using WithArgs to pass all original arguments in the original order.
384TEST(WithArgsTest, Identity) {
385 Action<int(int x, char y, short z)> a = // NOLINT
387 EXPECT_EQ(123, a.Perform(make_tuple(100, Char(20), Short(3))));
388}
389
390// Tests using WithArgs with repeated arguments.
391TEST(WithArgsTest, RepeatedArguments) {
392 Action<int(bool, int m, int n)> a = // NOLINT
394 EXPECT_EQ(4, a.Perform(make_tuple(false, 1, 10)));
395}
396
397// Tests using WithArgs with reversed argument order.
398TEST(WithArgsTest, ReversedArgumentOrder) {
399 Action<const char*(short n, const char* input)> a = // NOLINT
400 WithArgs<1, 0>(Invoke(Binary));
401 const char s[] = "Hello";
402 EXPECT_EQ(s + 2, a.Perform(make_tuple(Short(2), CharPtr(s))));
403}
404
405// Tests using WithArgs with compatible, but not identical, argument types.
406TEST(WithArgsTest, ArgsOfCompatibleTypes) {
407 Action<long(short x, char y, double z, char c)> a = // NOLINT
409 EXPECT_EQ(123, a.Perform(make_tuple(Short(100), Char(20), 5.6, Char(3))));
410}
411
412// Tests using WithArgs with an action that returns void.
413TEST(WithArgsTest, VoidAction) {
414 Action<void(double x, char c, int n)> a = WithArgs<2, 1>(Invoke(VoidBinary));
415 g_done = false;
416 a.Perform(make_tuple(1.5, 'a', 3));
418}
419
420// Tests DoAll(a1, a2).
421TEST(DoAllTest, TwoActions) {
422 int n = 0;
423 Action<int(int*)> a = DoAll(SetArgPointee<0>(1), // NOLINT
424 Return(2));
425 EXPECT_EQ(2, a.Perform(make_tuple(&n)));
426 EXPECT_EQ(1, n);
427}
428
429// Tests DoAll(a1, a2, a3).
430TEST(DoAllTest, ThreeActions) {
431 int m = 0, n = 0;
432 Action<int(int*, int*)> a = DoAll(SetArgPointee<0>(1), // NOLINT
433 SetArgPointee<1>(2),
434 Return(3));
435 EXPECT_EQ(3, a.Perform(make_tuple(&m, &n)));
436 EXPECT_EQ(1, m);
437 EXPECT_EQ(2, n);
438}
439
440// Tests DoAll(a1, a2, a3, a4).
441TEST(DoAllTest, FourActions) {
442 int m = 0, n = 0;
443 char ch = '\0';
444 Action<int(int*, int*, char*)> a = // NOLINT
445 DoAll(SetArgPointee<0>(1),
446 SetArgPointee<1>(2),
447 SetArgPointee<2>('a'),
448 Return(3));
449 EXPECT_EQ(3, a.Perform(make_tuple(&m, &n, &ch)));
450 EXPECT_EQ(1, m);
451 EXPECT_EQ(2, n);
452 EXPECT_EQ('a', ch);
453}
454
455// Tests DoAll(a1, a2, a3, a4, a5).
456TEST(DoAllTest, FiveActions) {
457 int m = 0, n = 0;
458 char a = '\0', b = '\0';
459 Action<int(int*, int*, char*, char*)> action = // NOLINT
460 DoAll(SetArgPointee<0>(1),
461 SetArgPointee<1>(2),
462 SetArgPointee<2>('a'),
463 SetArgPointee<3>('b'),
464 Return(3));
465 EXPECT_EQ(3, action.Perform(make_tuple(&m, &n, &a, &b)));
466 EXPECT_EQ(1, m);
467 EXPECT_EQ(2, n);
468 EXPECT_EQ('a', a);
469 EXPECT_EQ('b', b);
470}
471
472// Tests DoAll(a1, a2, ..., a6).
473TEST(DoAllTest, SixActions) {
474 int m = 0, n = 0;
475 char a = '\0', b = '\0', c = '\0';
476 Action<int(int*, int*, char*, char*, char*)> action = // NOLINT
477 DoAll(SetArgPointee<0>(1),
478 SetArgPointee<1>(2),
479 SetArgPointee<2>('a'),
480 SetArgPointee<3>('b'),
481 SetArgPointee<4>('c'),
482 Return(3));
483 EXPECT_EQ(3, action.Perform(make_tuple(&m, &n, &a, &b, &c)));
484 EXPECT_EQ(1, m);
485 EXPECT_EQ(2, n);
486 EXPECT_EQ('a', a);
487 EXPECT_EQ('b', b);
488 EXPECT_EQ('c', c);
489}
490
491// Tests DoAll(a1, a2, ..., a7).
492TEST(DoAllTest, SevenActions) {
493 int m = 0, n = 0;
494 char a = '\0', b = '\0', c = '\0', d = '\0';
495 Action<int(int*, int*, char*, char*, char*, char*)> action = // NOLINT
496 DoAll(SetArgPointee<0>(1),
497 SetArgPointee<1>(2),
498 SetArgPointee<2>('a'),
499 SetArgPointee<3>('b'),
500 SetArgPointee<4>('c'),
501 SetArgPointee<5>('d'),
502 Return(3));
503 EXPECT_EQ(3, action.Perform(make_tuple(&m, &n, &a, &b, &c, &d)));
504 EXPECT_EQ(1, m);
505 EXPECT_EQ(2, n);
506 EXPECT_EQ('a', a);
507 EXPECT_EQ('b', b);
508 EXPECT_EQ('c', c);
509 EXPECT_EQ('d', d);
510}
511
512// Tests DoAll(a1, a2, ..., a8).
513TEST(DoAllTest, EightActions) {
514 int m = 0, n = 0;
515 char a = '\0', b = '\0', c = '\0', d = '\0', e = '\0';
516 Action<int(int*, int*, char*, char*, char*, char*, // NOLINT
517 char*)> action =
518 DoAll(SetArgPointee<0>(1),
519 SetArgPointee<1>(2),
520 SetArgPointee<2>('a'),
521 SetArgPointee<3>('b'),
522 SetArgPointee<4>('c'),
523 SetArgPointee<5>('d'),
524 SetArgPointee<6>('e'),
525 Return(3));
526 EXPECT_EQ(3, action.Perform(make_tuple(&m, &n, &a, &b, &c, &d, &e)));
527 EXPECT_EQ(1, m);
528 EXPECT_EQ(2, n);
529 EXPECT_EQ('a', a);
530 EXPECT_EQ('b', b);
531 EXPECT_EQ('c', c);
532 EXPECT_EQ('d', d);
533 EXPECT_EQ('e', e);
534}
535
536// Tests DoAll(a1, a2, ..., a9).
537TEST(DoAllTest, NineActions) {
538 int m = 0, n = 0;
539 char a = '\0', b = '\0', c = '\0', d = '\0', e = '\0', f = '\0';
540 Action<int(int*, int*, char*, char*, char*, char*, // NOLINT
541 char*, char*)> action =
542 DoAll(SetArgPointee<0>(1),
543 SetArgPointee<1>(2),
544 SetArgPointee<2>('a'),
545 SetArgPointee<3>('b'),
546 SetArgPointee<4>('c'),
547 SetArgPointee<5>('d'),
548 SetArgPointee<6>('e'),
549 SetArgPointee<7>('f'),
550 Return(3));
551 EXPECT_EQ(3, action.Perform(make_tuple(&m, &n, &a, &b, &c, &d, &e, &f)));
552 EXPECT_EQ(1, m);
553 EXPECT_EQ(2, n);
554 EXPECT_EQ('a', a);
555 EXPECT_EQ('b', b);
556 EXPECT_EQ('c', c);
557 EXPECT_EQ('d', d);
558 EXPECT_EQ('e', e);
559 EXPECT_EQ('f', f);
560}
561
562// Tests DoAll(a1, a2, ..., a10).
563TEST(DoAllTest, TenActions) {
564 int m = 0, n = 0;
565 char a = '\0', b = '\0', c = '\0', d = '\0';
566 char e = '\0', f = '\0', g = '\0';
567 Action<int(int*, int*, char*, char*, char*, char*, // NOLINT
568 char*, char*, char*)> action =
569 DoAll(SetArgPointee<0>(1),
570 SetArgPointee<1>(2),
571 SetArgPointee<2>('a'),
572 SetArgPointee<3>('b'),
573 SetArgPointee<4>('c'),
574 SetArgPointee<5>('d'),
575 SetArgPointee<6>('e'),
576 SetArgPointee<7>('f'),
577 SetArgPointee<8>('g'),
578 Return(3));
579 EXPECT_EQ(3, action.Perform(make_tuple(&m, &n, &a, &b, &c, &d, &e, &f, &g)));
580 EXPECT_EQ(1, m);
581 EXPECT_EQ(2, n);
582 EXPECT_EQ('a', a);
583 EXPECT_EQ('b', b);
584 EXPECT_EQ('c', c);
585 EXPECT_EQ('d', d);
586 EXPECT_EQ('e', e);
587 EXPECT_EQ('f', f);
588 EXPECT_EQ('g', g);
589}
590
591// The ACTION*() macros trigger warning C4100 (unreferenced formal
592// parameter) in MSVC with -W4. Unfortunately they cannot be fixed in
593// the macro definition, as the warnings are generated when the macro
594// is expanded and macro expansion cannot contain #pragma. Therefore
595// we suppress them here.
596#ifdef _MSC_VER
597# pragma warning(push)
598# pragma warning(disable:4100)
599#endif
600
601// Tests the ACTION*() macro family.
602
603// Tests that ACTION() can define an action that doesn't reference the
604// mock function arguments.
605ACTION(Return5) { return 5; }
606
607TEST(ActionMacroTest, WorksWhenNotReferencingArguments) {
608 Action<double()> a1 = Return5();
609 EXPECT_DOUBLE_EQ(5, a1.Perform(make_tuple()));
610
611 Action<int(double, bool)> a2 = Return5();
612 EXPECT_EQ(5, a2.Perform(make_tuple(1, true)));
613}
614
615// Tests that ACTION() can define an action that returns void.
616ACTION(IncrementArg1) { (*arg1)++; }
617
618TEST(ActionMacroTest, WorksWhenReturningVoid) {
619 Action<void(int, int*)> a1 = IncrementArg1();
620 int n = 0;
621 a1.Perform(make_tuple(5, &n));
622 EXPECT_EQ(1, n);
623}
624
625// Tests that the body of ACTION() can reference the type of the
626// argument.
627ACTION(IncrementArg2) {
629 arg2_type temp = arg2;
630 (*temp)++;
631}
632
633TEST(ActionMacroTest, CanReferenceArgumentType) {
634 Action<void(int, bool, int*)> a1 = IncrementArg2();
635 int n = 0;
636 a1.Perform(make_tuple(5, false, &n));
637 EXPECT_EQ(1, n);
638}
639
640// Tests that the body of ACTION() can reference the argument tuple
641// via args_type and args.
642ACTION(Sum2) {
643 StaticAssertTypeEq<tuple<int, char, int*>, args_type>();
644 args_type args_copy = args;
645 return get<0>(args_copy) + get<1>(args_copy);
646}
647
648TEST(ActionMacroTest, CanReferenceArgumentTuple) {
649 Action<int(int, char, int*)> a1 = Sum2();
650 int dummy = 0;
651 EXPECT_EQ(11, a1.Perform(make_tuple(5, Char(6), &dummy)));
652}
653
654// Tests that the body of ACTION() can reference the mock function
655// type.
656int Dummy(bool flag) { return flag? 1 : 0; }
657
658ACTION(InvokeDummy) {
660 function_type* fp = &Dummy;
661 return (*fp)(true);
662}
663
664TEST(ActionMacroTest, CanReferenceMockFunctionType) {
665 Action<int(bool)> a1 = InvokeDummy();
666 EXPECT_EQ(1, a1.Perform(make_tuple(true)));
667 EXPECT_EQ(1, a1.Perform(make_tuple(false)));
668}
669
670// Tests that the body of ACTION() can reference the mock function's
671// return type.
672ACTION(InvokeDummy2) {
674 return_type result = Dummy(true);
675 return result;
676}
677
678TEST(ActionMacroTest, CanReferenceMockFunctionReturnType) {
679 Action<int(bool)> a1 = InvokeDummy2();
680 EXPECT_EQ(1, a1.Perform(make_tuple(true)));
681 EXPECT_EQ(1, a1.Perform(make_tuple(false)));
682}
683
684// Tests that ACTION() works for arguments passed by const reference.
685ACTION(ReturnAddrOfConstBoolReferenceArg) {
687 return &arg1;
688}
689
690TEST(ActionMacroTest, WorksForConstReferenceArg) {
691 Action<const bool*(int, const bool&)> a = ReturnAddrOfConstBoolReferenceArg();
692 const bool b = false;
693 EXPECT_EQ(&b, a.Perform(tuple<int, const bool&>(0, b)));
694}
695
696// Tests that ACTION() works for arguments passed by non-const reference.
697ACTION(ReturnAddrOfIntReferenceArg) {
699 return &arg0;
700}
701
702TEST(ActionMacroTest, WorksForNonConstReferenceArg) {
703 Action<int*(int&, bool, int)> a = ReturnAddrOfIntReferenceArg();
704 int n = 0;
705 EXPECT_EQ(&n, a.Perform(tuple<int&, bool, int>(n, true, 1)));
706}
707
708// Tests that ACTION() can be used in a namespace.
709namespace action_test {
710ACTION(Sum) { return arg0 + arg1; }
711} // namespace action_test
712
713TEST(ActionMacroTest, WorksInNamespace) {
714 Action<int(int, int)> a1 = action_test::Sum();
715 EXPECT_EQ(3, a1.Perform(make_tuple(1, 2)));
716}
717
718// Tests that the same ACTION definition works for mock functions with
719// different argument numbers.
720ACTION(PlusTwo) { return arg0 + 2; }
721
722TEST(ActionMacroTest, WorksForDifferentArgumentNumbers) {
723 Action<int(int)> a1 = PlusTwo();
724 EXPECT_EQ(4, a1.Perform(make_tuple(2)));
725
726 Action<double(float, void*)> a2 = PlusTwo();
727 int dummy;
728 EXPECT_DOUBLE_EQ(6, a2.Perform(make_tuple(4.0f, &dummy)));
729}
730
731// Tests that ACTION_P can define a parameterized action.
732ACTION_P(Plus, n) { return arg0 + n; }
733
734TEST(ActionPMacroTest, DefinesParameterizedAction) {
735 Action<int(int m, bool t)> a1 = Plus(9);
736 EXPECT_EQ(10, a1.Perform(make_tuple(1, true)));
737}
738
739// Tests that the body of ACTION_P can reference the argument types
740// and the parameter type.
741ACTION_P(TypedPlus, n) {
742 arg0_type t1 = arg0;
743 n_type t2 = n;
744 return t1 + t2;
745}
746
747TEST(ActionPMacroTest, CanReferenceArgumentAndParameterTypes) {
748 Action<int(char m, bool t)> a1 = TypedPlus(9);
749 EXPECT_EQ(10, a1.Perform(make_tuple(Char(1), true)));
750}
751
752// Tests that a parameterized action can be used in any mock function
753// whose type is compatible.
754TEST(ActionPMacroTest, WorksInCompatibleMockFunction) {
755 Action<std::string(const std::string& s)> a1 = Plus("tail");
756 const std::string re = "re";
757 tuple<const std::string> dummy = make_tuple(re);
758 EXPECT_EQ("retail", a1.Perform(dummy));
759}
760
761// Tests that we can use ACTION*() to define actions overloaded on the
762// number of parameters.
763
764ACTION(OverloadedAction) { return arg0 ? arg1 : "hello"; }
765
766ACTION_P(OverloadedAction, default_value) {
767 return arg0 ? arg1 : default_value;
768}
769
770ACTION_P2(OverloadedAction, true_value, false_value) {
771 return arg0 ? true_value : false_value;
772}
773
774TEST(ActionMacroTest, CanDefineOverloadedActions) {
775 typedef Action<const char*(bool, const char*)> MyAction;
776
777 const MyAction a1 = OverloadedAction();
778 EXPECT_STREQ("hello", a1.Perform(make_tuple(false, CharPtr("world"))));
779 EXPECT_STREQ("world", a1.Perform(make_tuple(true, CharPtr("world"))));
780
781 const MyAction a2 = OverloadedAction("hi");
782 EXPECT_STREQ("hi", a2.Perform(make_tuple(false, CharPtr("world"))));
783 EXPECT_STREQ("world", a2.Perform(make_tuple(true, CharPtr("world"))));
784
785 const MyAction a3 = OverloadedAction("hi", "you");
786 EXPECT_STREQ("hi", a3.Perform(make_tuple(true, CharPtr("world"))));
787 EXPECT_STREQ("you", a3.Perform(make_tuple(false, CharPtr("world"))));
788}
789
790// Tests ACTION_Pn where n >= 3.
791
792ACTION_P3(Plus, m, n, k) { return arg0 + m + n + k; }
793
794TEST(ActionPnMacroTest, WorksFor3Parameters) {
795 Action<double(int m, bool t)> a1 = Plus(100, 20, 3.4);
796 EXPECT_DOUBLE_EQ(3123.4, a1.Perform(make_tuple(3000, true)));
797
798 Action<std::string(const std::string& s)> a2 = Plus("tail", "-", ">");
799 const std::string re = "re";
800 tuple<const std::string> dummy = make_tuple(re);
801 EXPECT_EQ("retail->", a2.Perform(dummy));
802}
803
804ACTION_P4(Plus, p0, p1, p2, p3) { return arg0 + p0 + p1 + p2 + p3; }
805
806TEST(ActionPnMacroTest, WorksFor4Parameters) {
807 Action<int(int)> a1 = Plus(1, 2, 3, 4);
808 EXPECT_EQ(10 + 1 + 2 + 3 + 4, a1.Perform(make_tuple(10)));
809}
810
811ACTION_P5(Plus, p0, p1, p2, p3, p4) { return arg0 + p0 + p1 + p2 + p3 + p4; }
812
813TEST(ActionPnMacroTest, WorksFor5Parameters) {
814 Action<int(int)> a1 = Plus(1, 2, 3, 4, 5);
815 EXPECT_EQ(10 + 1 + 2 + 3 + 4 + 5, a1.Perform(make_tuple(10)));
816}
817
818ACTION_P6(Plus, p0, p1, p2, p3, p4, p5) {
819 return arg0 + p0 + p1 + p2 + p3 + p4 + p5;
820}
821
822TEST(ActionPnMacroTest, WorksFor6Parameters) {
823 Action<int(int)> a1 = Plus(1, 2, 3, 4, 5, 6);
824 EXPECT_EQ(10 + 1 + 2 + 3 + 4 + 5 + 6, a1.Perform(make_tuple(10)));
825}
826
827ACTION_P7(Plus, p0, p1, p2, p3, p4, p5, p6) {
828 return arg0 + p0 + p1 + p2 + p3 + p4 + p5 + p6;
829}
830
831TEST(ActionPnMacroTest, WorksFor7Parameters) {
832 Action<int(int)> a1 = Plus(1, 2, 3, 4, 5, 6, 7);
833 EXPECT_EQ(10 + 1 + 2 + 3 + 4 + 5 + 6 + 7, a1.Perform(make_tuple(10)));
834}
835
836ACTION_P8(Plus, p0, p1, p2, p3, p4, p5, p6, p7) {
837 return arg0 + p0 + p1 + p2 + p3 + p4 + p5 + p6 + p7;
838}
839
840TEST(ActionPnMacroTest, WorksFor8Parameters) {
841 Action<int(int)> a1 = Plus(1, 2, 3, 4, 5, 6, 7, 8);
842 EXPECT_EQ(10 + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8, a1.Perform(make_tuple(10)));
843}
844
845ACTION_P9(Plus, p0, p1, p2, p3, p4, p5, p6, p7, p8) {
846 return arg0 + p0 + p1 + p2 + p3 + p4 + p5 + p6 + p7 + p8;
847}
848
849TEST(ActionPnMacroTest, WorksFor9Parameters) {
850 Action<int(int)> a1 = Plus(1, 2, 3, 4, 5, 6, 7, 8, 9);
851 EXPECT_EQ(10 + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9, a1.Perform(make_tuple(10)));
852}
853
854ACTION_P10(Plus, p0, p1, p2, p3, p4, p5, p6, p7, p8, last_param) {
855 arg0_type t0 = arg0;
856 last_param_type t9 = last_param;
857 return t0 + p0 + p1 + p2 + p3 + p4 + p5 + p6 + p7 + p8 + t9;
858}
859
860TEST(ActionPnMacroTest, WorksFor10Parameters) {
861 Action<int(int)> a1 = Plus(1, 2, 3, 4, 5, 6, 7, 8, 9, 10);
862 EXPECT_EQ(10 + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10,
863 a1.Perform(make_tuple(10)));
864}
865
866// Tests that the action body can promote the parameter types.
867
868ACTION_P2(PadArgument, prefix, suffix) {
869 // The following lines promote the two parameters to desired types.
870 std::string prefix_str(prefix);
871 char suffix_char = static_cast<char>(suffix);
872 return prefix_str + arg0 + suffix_char;
873}
874
875TEST(ActionPnMacroTest, SimpleTypePromotion) {
876 Action<std::string(const char*)> no_promo =
877 PadArgument(std::string("foo"), 'r');
878 Action<std::string(const char*)> promo =
879 PadArgument("foo", static_cast<int>('r'));
880 EXPECT_EQ("foobar", no_promo.Perform(make_tuple(CharPtr("ba"))));
881 EXPECT_EQ("foobar", promo.Perform(make_tuple(CharPtr("ba"))));
882}
883
884// Tests that we can partially restrict parameter types using a
885// straight-forward pattern.
886
887// Defines a generic action that doesn't restrict the types of its
888// parameters.
889ACTION_P3(ConcatImpl, a, b, c) {
890 std::stringstream ss;
891 ss << a << b << c;
892 return ss.str();
893}
894
895// Next, we try to restrict that either the first parameter is a
896// string, or the second parameter is an int.
897
898// Defines a partially specialized wrapper that restricts the first
899// parameter to std::string.
900template <typename T1, typename T2>
901// ConcatImplActionP3 is the class template ACTION_P3 uses to
902// implement ConcatImpl. We shouldn't change the name as this
903// pattern requires the user to use it directly.
904ConcatImplActionP3<std::string, T1, T2>
905Concat(const std::string& a, T1 b, T2 c) {
907 if (true) {
909 // This branch verifies that ConcatImpl() can be invoked without
910 // explicit template arguments.
911 return ConcatImpl(a, b, c);
912 } else {
913 // This branch verifies that ConcatImpl() can also be invoked with
914 // explicit template arguments. It doesn't really need to be
915 // executed as this is a compile-time verification.
916 return ConcatImpl<std::string, T1, T2>(a, b, c);
917 }
918}
919
920// Defines another partially specialized wrapper that restricts the
921// second parameter to int.
922template <typename T1, typename T2>
923ConcatImplActionP3<T1, int, T2>
924Concat(T1 a, int b, T2 c) {
925 return ConcatImpl(a, b, c);
926}
927
928TEST(ActionPnMacroTest, CanPartiallyRestrictParameterTypes) {
929 Action<const std::string()> a1 = Concat("Hello", "1", 2);
930 EXPECT_EQ("Hello12", a1.Perform(make_tuple()));
931
932 a1 = Concat(1, 2, 3);
933 EXPECT_EQ("123", a1.Perform(make_tuple()));
934}
935
936// Verifies the type of an ACTION*.
937
938ACTION(DoFoo) {}
939ACTION_P(DoFoo, p) {}
940ACTION_P2(DoFoo, p0, p1) {}
941
942TEST(ActionPnMacroTest, TypesAreCorrect) {
943 // DoFoo() must be assignable to a DoFooAction variable.
944 DoFooAction a0 = DoFoo();
945
946 // DoFoo(1) must be assignable to a DoFooActionP variable.
947 DoFooActionP<int> a1 = DoFoo(1);
948
949 // DoFoo(p1, ..., pk) must be assignable to a DoFooActionPk
950 // variable, and so on.
951 DoFooActionP2<int, char> a2 = DoFoo(1, '2');
952 PlusActionP3<int, int, char> a3 = Plus(1, 2, '3');
953 PlusActionP4<int, int, int, char> a4 = Plus(1, 2, 3, '4');
954 PlusActionP5<int, int, int, int, char> a5 = Plus(1, 2, 3, 4, '5');
955 PlusActionP6<int, int, int, int, int, char> a6 = Plus(1, 2, 3, 4, 5, '6');
956 PlusActionP7<int, int, int, int, int, int, char> a7 =
957 Plus(1, 2, 3, 4, 5, 6, '7');
958 PlusActionP8<int, int, int, int, int, int, int, char> a8 =
959 Plus(1, 2, 3, 4, 5, 6, 7, '8');
960 PlusActionP9<int, int, int, int, int, int, int, int, char> a9 =
961 Plus(1, 2, 3, 4, 5, 6, 7, 8, '9');
962 PlusActionP10<int, int, int, int, int, int, int, int, int, char> a10 =
963 Plus(1, 2, 3, 4, 5, 6, 7, 8, 9, '0');
964
965 // Avoid "unused variable" warnings.
966 (void)a0;
967 (void)a1;
968 (void)a2;
969 (void)a3;
970 (void)a4;
971 (void)a5;
972 (void)a6;
973 (void)a7;
974 (void)a8;
975 (void)a9;
976 (void)a10;
977}
978
979// Tests that an ACTION_P*() action can be explicitly instantiated
980// with reference-typed parameters.
981
982ACTION_P(Plus1, x) { return x; }
983ACTION_P2(Plus2, x, y) { return x + y; }
984ACTION_P3(Plus3, x, y, z) { return x + y + z; }
985ACTION_P10(Plus10, a0, a1, a2, a3, a4, a5, a6, a7, a8, a9) {
986 return a0 + a1 + a2 + a3 + a4 + a5 + a6 + a7 + a8 + a9;
987}
988
989TEST(ActionPnMacroTest, CanExplicitlyInstantiateWithReferenceTypes) {
990 int x = 1, y = 2, z = 3;
991 const tuple<> empty = make_tuple();
992
993 Action<int()> a = Plus1<int&>(x);
994 EXPECT_EQ(1, a.Perform(empty));
995
996 a = Plus2<const int&, int&>(x, y);
997 EXPECT_EQ(3, a.Perform(empty));
998
999 a = Plus3<int&, const int&, int&>(x, y, z);
1000 EXPECT_EQ(6, a.Perform(empty));
1001
1002 int n[10] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
1003 a = Plus10<const int&, int&, const int&, int&, const int&, int&, const int&,
1004 int&, const int&, int&>(n[0], n[1], n[2], n[3], n[4], n[5], n[6], n[7],
1005 n[8], n[9]);
1006 EXPECT_EQ(55, a.Perform(empty));
1007}
1008
1010 public:
1013};
1014
1015// Tests using ReturnNew() with a nullary constructor.
1016TEST(ReturnNewTest, NoArgs) {
1017 Action<NullaryConstructorClass*()> a = ReturnNew<NullaryConstructorClass>();
1018 NullaryConstructorClass* c = a.Perform(make_tuple());
1019 EXPECT_EQ(123, c->value_);
1020 delete c;
1021}
1022
1024 public:
1027};
1028
1029// Tests using ReturnNew() with a unary constructor.
1030TEST(ReturnNewTest, Unary) {
1031 Action<UnaryConstructorClass*()> a = ReturnNew<UnaryConstructorClass>(4000);
1032 UnaryConstructorClass* c = a.Perform(make_tuple());
1033 EXPECT_EQ(4000, c->value_);
1034 delete c;
1035}
1036
1037TEST(ReturnNewTest, UnaryWorksWhenMockMethodHasArgs) {
1038 Action<UnaryConstructorClass*(bool, int)> a =
1039 ReturnNew<UnaryConstructorClass>(4000);
1040 UnaryConstructorClass* c = a.Perform(make_tuple(false, 5));
1041 EXPECT_EQ(4000, c->value_);
1042 delete c;
1043}
1044
1045TEST(ReturnNewTest, UnaryWorksWhenMockMethodReturnsPointerToConst) {
1046 Action<const UnaryConstructorClass*()> a =
1047 ReturnNew<UnaryConstructorClass>(4000);
1048 const UnaryConstructorClass* c = a.Perform(make_tuple());
1049 EXPECT_EQ(4000, c->value_);
1050 delete c;
1051}
1052
1054 public:
1055 TenArgConstructorClass(int a1, int a2, int a3, int a4, int a5,
1056 int a6, int a7, int a8, int a9, int a10)
1057 : value_(a1 + a2 + a3 + a4 + a5 + a6 + a7 + a8 + a9 + a10) {
1058 }
1060};
1061
1062// Tests using ReturnNew() with a 10-argument constructor.
1063TEST(ReturnNewTest, ConstructorThatTakes10Arguments) {
1065 ReturnNew<TenArgConstructorClass>(1000000000, 200000000, 30000000,
1066 4000000, 500000, 60000,
1067 7000, 800, 90, 0);
1068 TenArgConstructorClass* c = a.Perform(make_tuple());
1069 EXPECT_EQ(1234567890, c->value_);
1070 delete c;
1071}
1072
1073// Tests that ACTION_TEMPLATE works when there is no value parameter.
1075 HAS_1_TEMPLATE_PARAMS(typename, T),
1076 AND_0_VALUE_PARAMS()) {
1077 return new T;
1078}
1079
1080TEST(ActionTemplateTest, WorksWithoutValueParam) {
1081 const Action<int*()> a = CreateNew<int>();
1082 int* p = a.Perform(make_tuple());
1083 delete p;
1084}
1085
1086// Tests that ACTION_TEMPLATE works when there are value parameters.
1088 HAS_1_TEMPLATE_PARAMS(typename, T),
1089 AND_1_VALUE_PARAMS(a0)) {
1090 return new T(a0);
1091}
1092
1093TEST(ActionTemplateTest, WorksWithValueParams) {
1094 const Action<int*()> a = CreateNew<int>(42);
1095 int* p = a.Perform(make_tuple());
1096 EXPECT_EQ(42, *p);
1097 delete p;
1098}
1099
1100// Tests that ACTION_TEMPLATE works for integral template parameters.
1102 HAS_1_TEMPLATE_PARAMS(int, k),
1103 AND_0_VALUE_PARAMS()) {
1104 delete get<k>(args);
1105}
1106
1107// Resets a bool variable in the destructor.
1109 public:
1110 explicit BoolResetter(bool* value) : value_(value) {}
1111 ~BoolResetter() { *value_ = false; }
1112 private:
1113 bool* value_;
1114};
1115
1116TEST(ActionTemplateTest, WorksForIntegralTemplateParams) {
1117 const Action<void(int*, BoolResetter*)> a = MyDeleteArg<1>();
1118 int n = 0;
1119 bool b = true;
1120 BoolResetter* resetter = new BoolResetter(&b);
1121 a.Perform(make_tuple(&n, resetter));
1122 EXPECT_FALSE(b); // Verifies that resetter is deleted.
1123}
1124
1125// Tests that ACTION_TEMPLATES works for template template parameters.
1126ACTION_TEMPLATE(ReturnSmartPointer,
1127 HAS_1_TEMPLATE_PARAMS(template <typename Pointee> class,
1128 Pointer),
1129 AND_1_VALUE_PARAMS(pointee)) {
1130 return Pointer<pointee_type>(new pointee_type(pointee));
1131}
1132
1133TEST(ActionTemplateTest, WorksForTemplateTemplateParameters) {
1134 using ::testing::internal::linked_ptr;
1135 const Action<linked_ptr<int>()> a = ReturnSmartPointer<linked_ptr>(42);
1136 linked_ptr<int> p = a.Perform(make_tuple());
1137 EXPECT_EQ(42, *p);
1138}
1139
1140// Tests that ACTION_TEMPLATE works for 10 template parameters.
1141template <typename T1, typename T2, typename T3, int k4, bool k5,
1142 unsigned int k6, typename T7, typename T8, typename T9>
1144 public:
1145 explicit GiantTemplate(int a_value) : value(a_value) {}
1147};
1148
1150 HAS_10_TEMPLATE_PARAMS(
1151 typename, T1,
1152 typename, T2,
1153 typename, T3,
1154 int, k4,
1155 bool, k5,
1156 unsigned int, k6,
1157 class, T7,
1158 class, T8,
1159 class, T9,
1160 template <typename T> class, T10),
1161 AND_1_VALUE_PARAMS(value)) {
1162 return GiantTemplate<T10<T1>, T2, T3, k4, k5, k6, T7, T8, T9>(value);
1163}
1164
1165TEST(ActionTemplateTest, WorksFor10TemplateParameters) {
1166 using ::testing::internal::linked_ptr;
1167 typedef GiantTemplate<linked_ptr<int>, bool, double, 5,
1168 true, 6, char, unsigned, int> Giant;
1169 const Action<Giant()> a = ReturnGiant<
1170 int, bool, double, 5, true, 6, char, unsigned, int, linked_ptr>(42);
1171 Giant giant = a.Perform(make_tuple());
1172 EXPECT_EQ(42, giant.value);
1173}
1174
1175// Tests that ACTION_TEMPLATE works for 10 value parameters.
1177 HAS_1_TEMPLATE_PARAMS(typename, Number),
1178 AND_10_VALUE_PARAMS(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10)) {
1179 return static_cast<Number>(v1) + v2 + v3 + v4 + v5 + v6 + v7 + v8 + v9 + v10;
1180}
1181
1182TEST(ActionTemplateTest, WorksFor10ValueParameters) {
1183 const Action<int()> a = ReturnSum<int>(1, 2, 3, 4, 5, 6, 7, 8, 9, 10);
1184 EXPECT_EQ(55, a.Perform(make_tuple()));
1185}
1186
1187// Tests that ACTION_TEMPLATE and ACTION/ACTION_P* can be overloaded
1188// on the number of value parameters.
1189
1190ACTION(ReturnSum) { return 0; }
1191
1192ACTION_P(ReturnSum, x) { return x; }
1193
1195 HAS_1_TEMPLATE_PARAMS(typename, Number),
1196 AND_2_VALUE_PARAMS(v1, v2)) {
1197 return static_cast<Number>(v1) + v2;
1198}
1199
1201 HAS_1_TEMPLATE_PARAMS(typename, Number),
1202 AND_3_VALUE_PARAMS(v1, v2, v3)) {
1203 return static_cast<Number>(v1) + v2 + v3;
1204}
1205
1207 HAS_2_TEMPLATE_PARAMS(typename, Number, int, k),
1208 AND_4_VALUE_PARAMS(v1, v2, v3, v4)) {
1209 return static_cast<Number>(v1) + v2 + v3 + v4 + k;
1210}
1211
1212TEST(ActionTemplateTest, CanBeOverloadedOnNumberOfValueParameters) {
1213 const Action<int()> a0 = ReturnSum();
1214 const Action<int()> a1 = ReturnSum(1);
1215 const Action<int()> a2 = ReturnSum<int>(1, 2);
1216 const Action<int()> a3 = ReturnSum<int>(1, 2, 3);
1217 const Action<int()> a4 = ReturnSum<int, 10000>(2000, 300, 40, 5);
1218 EXPECT_EQ(0, a0.Perform(make_tuple()));
1219 EXPECT_EQ(1, a1.Perform(make_tuple()));
1220 EXPECT_EQ(3, a2.Perform(make_tuple()));
1221 EXPECT_EQ(6, a3.Perform(make_tuple()));
1222 EXPECT_EQ(12345, a4.Perform(make_tuple()));
1223}
1224
1225#ifdef _MSC_VER
1226# pragma warning(pop)
1227#endif
1228
1229} // namespace gmock_generated_actions_test
1230} // namespace testing
const mie::Vuint & p
Definition bn.cpp:27
Represents a JSON Pointer. Use Pointer for UTF8 encoding and default allocator.
Definition pointer.h:79
Result Perform(ArgumentTuple args) const
TenArgConstructorClass(int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8, int a9, int a10)
GenericPointer< Value, CrtAllocator > Pointer
Definition fwd.h:128
#define ACTION_P8(name, p0, p1, p2, p3, p4, p5, p6, p7)
#define ACTION_P6(name, p0, p1, p2, p3, p4, p5)
#define ACTION_P2(name, p0, p1)
#define ACTION_P9(name, p0, p1, p2, p3, p4, p5, p6, p7, p8)
#define ACTION(name)
#define ACTION_P7(name, p0, p1, p2, p3, p4, p5, p6)
#define ACTION_P(name, p0)
#define ACTION_P3(name, p0, p1, p2)
#define ACTION_TEMPLATE(name, template_params, value_params)
#define ACTION_P5(name, p0, p1, p2, p3, p4)
#define ACTION_P4(name, p0, p1, p2, p3)
#define ACTION_P10(name, p0, p1, p2, p3, p4, p5, p6, p7, p8, p9)
#define GTEST_INTENTIONAL_CONST_COND_PUSH_()
Definition gtest-port.h:940
#define GTEST_INTENTIONAL_CONST_COND_POP_()
Definition gtest-port.h:942
#define EXPECT_EQ(val1, val2)
Definition gtest.h:1954
#define EXPECT_DOUBLE_EQ(val1, val2)
Definition gtest.h:2063
#define EXPECT_TRUE(condition)
Definition gtest.h:1895
#define EXPECT_STREQ(s1, s2)
Definition gtest.h:2027
#define TEST(test_case_name, test_name)
Definition gtest.h:2275
#define EXPECT_FALSE(condition)
Definition gtest.h:1898
std::string Concat8(const char *s1, const char *s2, const char *s3, const char *s4, const char *s5, const char *s6, const char *s7, const char *s8)
std::string Concat6(const char *s1, const char *s2, const char *s3, const char *s4, const char *s5, const char *s6)
int SumOf6(int a, int b, int c, int d, int e, int f)
std::string Concat5(const char *s1, const char *s2, const char *s3, const char *s4, const char *s5)
int SumOf5(int a, int b, int c, int d, int e)
std::string Concat9(const char *s1, const char *s2, const char *s3, const char *s4, const char *s5, const char *s6, const char *s7, const char *s8, const char *s9)
std::string Concat10(const char *s1, const char *s2, const char *s3, const char *s4, const char *s5, const char *s6, const char *s7, const char *s8, const char *s9, const char *s10)
std::string Concat4(const char *s1, const char *s2, const char *s3, const char *s4)
std::string Concat7(const char *s1, const char *s2, const char *s3, const char *s4, const char *s5, const char *s6, const char *s7)
ConcatImplActionP3< std::string, T1, T2 > Concat(const std::string &a, T1 b, T2 c)
const char * Binary(const char *input, short n)
internal::WithArgsAction< InnerAction, k1 > WithArgs(const InnerAction &action)
PolymorphicAction< internal::ReturnVoidAction > Return()
const internal::AnythingMatcher _
bool StaticAssertTypeEq()
Definition gtest.h:2238
Action< F > MakeAction(ActionInterface< F > *impl)
internal::ReferenceWrapper< T > ByRef(T &l_value)
PolymorphicAction< internal::InvokeAction< FunctionImpl > > Invoke(FunctionImpl function_impl)
internal::DoBothAction< Action1, Action2 > DoAll(Action1 a1, Action2 a2)
PolymorphicAction< internal::SetArgumentPointeeAction< N, T, internal::IsAProtocolMessage< T >::value > > SetArgPointee(const T &x)
#define value
Definition pkcs11.h:157
const GenericPointer< typename T::ValueType > T2 T::AllocatorType & a
Definition pointer.h:1181
#define T(meth, val, expected)
int operator()(int a, int b, int c, int d, int e, int f)
CK_ULONG d
char * s
yubihsm_pkcs11_object_template template