Wire Sysio Wire Sysion 1.0.0
Loading...
Searching...
No Matches
gmock-more-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 in gmock-more-actions.h.
35
37
38#include <functional>
39#include <sstream>
40#include <string>
41#include "gmock/gmock.h"
42#include "gtest/gtest.h"
44
45namespace testing {
46namespace gmock_more_actions_test {
47
48using ::std::plus;
49using ::std::string;
50using testing::get;
51using testing::make_tuple;
52using testing::tuple;
53using testing::tuple_element;
54using testing::_;
55using testing::Action;
57using testing::DeleteArg;
58using testing::Invoke;
59using testing::Return;
60using testing::ReturnArg;
61using testing::ReturnPointee;
62using testing::SaveArg;
63using testing::SaveArgPointee;
64using testing::SetArgReferee;
66using testing::Unused;
70
71// For suppressing compiler warnings on conversion possibly losing precision.
72inline short Short(short n) { return n; } // NOLINT
73inline char Char(char ch) { return ch; }
74
75// Sample functions and functors for testing Invoke() and etc.
76int Nullary() { return 1; }
77
79 public:
80 int operator()() { return 2; }
81};
82
83bool g_done = false;
84void VoidNullary() { g_done = true; }
85
87 public:
88 void operator()() { g_done = true; }
89};
90
91bool Unary(int x) { return x < 0; }
92
93const char* Plus1(const char* s) { return s + 1; }
94
95void VoidUnary(int /* n */) { g_done = true; }
96
97bool ByConstRef(const std::string& s) { return s == "Hi"; }
98
99const double g_double = 0;
100bool ReferencesGlobalDouble(const double& x) { return &x == &g_double; }
101
102std::string ByNonConstRef(std::string& s) { return s += "+"; } // NOLINT
103
105 int operator()(bool x) { return x ? 1 : -1; }
106};
107
108const char* Binary(const char* input, short n) { return input + n; } // NOLINT
109
110void VoidBinary(int, char) { g_done = true; }
111
112int Ternary(int x, char y, short z) { return x + y + z; } // NOLINT
113
114void VoidTernary(int, char, bool) { g_done = true; }
115
116int SumOf4(int a, int b, int c, int d) { return a + b + c + d; }
117
118int SumOfFirst2(int a, int b, Unused, Unused) { return a + b; }
119
120void VoidFunctionWithFourArguments(char, int, float, double) { g_done = true; }
121
122std::string Concat4(const char* s1, const char* s2, const char* s3,
123 const char* s4) {
124 return std::string(s1) + s2 + s3 + s4;
125}
126
127int SumOf5(int a, int b, int c, int d, int e) { return a + b + c + d + e; }
128
130 int operator()(int a, int b, int c, int d, int e) {
131 return a + b + c + d + e;
132 }
133};
134
135std::string Concat5(const char* s1, const char* s2, const char* s3,
136 const char* s4, const char* s5) {
137 return std::string(s1) + s2 + s3 + s4 + s5;
138}
139
140int SumOf6(int a, int b, int c, int d, int e, int f) {
141 return a + b + c + d + e + f;
142}
143
145 int operator()(int a, int b, int c, int d, int e, int f) {
146 return a + b + c + d + e + f;
147 }
148};
149
150std::string Concat6(const char* s1, const char* s2, const char* s3,
151 const char* s4, const char* s5, const char* s6) {
152 return std::string(s1) + s2 + s3 + s4 + s5 + s6;
153}
154
155std::string Concat7(const char* s1, const char* s2, const char* s3,
156 const char* s4, const char* s5, const char* s6,
157 const char* s7) {
158 return std::string(s1) + s2 + s3 + s4 + s5 + s6 + s7;
159}
160
161std::string Concat8(const char* s1, const char* s2, const char* s3,
162 const char* s4, const char* s5, const char* s6,
163 const char* s7, const char* s8) {
164 return std::string(s1) + s2 + s3 + s4 + s5 + s6 + s7 + s8;
165}
166
167std::string Concat9(const char* s1, const char* s2, const char* s3,
168 const char* s4, const char* s5, const char* s6,
169 const char* s7, const char* s8, const char* s9) {
170 return std::string(s1) + s2 + s3 + s4 + s5 + s6 + s7 + s8 + s9;
171}
172
173std::string Concat10(const char* s1, const char* s2, const char* s3,
174 const char* s4, const char* s5, const char* s6,
175 const char* s7, const char* s8, const char* s9,
176 const char* s10) {
177 return std::string(s1) + s2 + s3 + s4 + s5 + s6 + s7 + s8 + s9 + s10;
178}
179
180class Foo {
181 public:
182 Foo() : value_(123) {}
183
184 int Nullary() const { return value_; }
185
186 short Unary(long x) { return static_cast<short>(value_ + x); } // NOLINT
187
188 std::string Binary(const std::string& str, char c) const { return str + c; }
189
190 int Ternary(int x, bool y, char z) { return value_ + x + y*z; }
191
192 int SumOf4(int a, int b, int c, int d) const {
193 return a + b + c + d + value_;
194 }
195
196 int SumOfLast2(Unused, Unused, int a, int b) const { return a + b; }
197
198 int SumOf5(int a, int b, int c, int d, int e) { return a + b + c + d + e; }
199
200 int SumOf6(int a, int b, int c, int d, int e, int f) {
201 return a + b + c + d + e + f;
202 }
203
204 std::string Concat7(const char* s1, const char* s2, const char* s3,
205 const char* s4, const char* s5, const char* s6,
206 const char* s7) {
207 return std::string(s1) + s2 + s3 + s4 + s5 + s6 + s7;
208 }
209
210 std::string Concat8(const char* s1, const char* s2, const char* s3,
211 const char* s4, const char* s5, const char* s6,
212 const char* s7, const char* s8) {
213 return std::string(s1) + s2 + s3 + s4 + s5 + s6 + s7 + s8;
214 }
215
216 std::string Concat9(const char* s1, const char* s2, const char* s3,
217 const char* s4, const char* s5, const char* s6,
218 const char* s7, const char* s8, const char* s9) {
219 return std::string(s1) + s2 + s3 + s4 + s5 + s6 + s7 + s8 + s9;
220 }
221
222 std::string Concat10(const char* s1, const char* s2, const char* s3,
223 const char* s4, const char* s5, const char* s6,
224 const char* s7, const char* s8, const char* s9,
225 const char* s10) {
226 return std::string(s1) + s2 + s3 + s4 + s5 + s6 + s7 + s8 + s9 + s10;
227 }
228
229 private:
230 int value_;
231};
232
233// Tests using Invoke() with a nullary function.
234TEST(InvokeTest, Nullary) {
235 Action<int()> a = Invoke(Nullary); // NOLINT
236 EXPECT_EQ(1, a.Perform(make_tuple()));
237}
238
239// Tests using Invoke() with a unary function.
240TEST(InvokeTest, Unary) {
241 Action<bool(int)> a = Invoke(Unary); // NOLINT
242 EXPECT_FALSE(a.Perform(make_tuple(1)));
243 EXPECT_TRUE(a.Perform(make_tuple(-1)));
244}
245
246// Tests using Invoke() with a binary function.
247TEST(InvokeTest, Binary) {
248 Action<const char*(const char*, short)> a = Invoke(Binary); // NOLINT
249 const char* p = "Hello";
250 EXPECT_EQ(p + 2, a.Perform(make_tuple(p, Short(2))));
251}
252
253// Tests using Invoke() with a ternary function.
254TEST(InvokeTest, Ternary) {
255 Action<int(int, char, short)> a = Invoke(Ternary); // NOLINT
256 EXPECT_EQ(6, a.Perform(make_tuple(1, '\2', Short(3))));
257}
258
259// Tests using Invoke() with a 4-argument function.
260TEST(InvokeTest, FunctionThatTakes4Arguments) {
261 Action<int(int, int, int, int)> a = Invoke(SumOf4); // NOLINT
262 EXPECT_EQ(1234, a.Perform(make_tuple(1000, 200, 30, 4)));
263}
264
265// Tests using Invoke() with a 5-argument function.
266TEST(InvokeTest, FunctionThatTakes5Arguments) {
267 Action<int(int, int, int, int, int)> a = Invoke(SumOf5); // NOLINT
268 EXPECT_EQ(12345, a.Perform(make_tuple(10000, 2000, 300, 40, 5)));
269}
270
271// Tests using Invoke() with a 6-argument function.
272TEST(InvokeTest, FunctionThatTakes6Arguments) {
273 Action<int(int, int, int, int, int, int)> a = Invoke(SumOf6); // NOLINT
274 EXPECT_EQ(123456, a.Perform(make_tuple(100000, 20000, 3000, 400, 50, 6)));
275}
276
277// A helper that turns the type of a C-string literal from const
278// char[N] to const char*.
279inline const char* CharPtr(const char* s) { return s; }
280
281// Tests using Invoke() with a 7-argument function.
282TEST(InvokeTest, FunctionThatTakes7Arguments) {
283 Action<std::string(const char*, const char*, const char*, const char*,
284 const char*, const char*, const char*)>
285 a = Invoke(Concat7);
286 EXPECT_EQ("1234567",
287 a.Perform(make_tuple(CharPtr("1"), CharPtr("2"), CharPtr("3"),
288 CharPtr("4"), CharPtr("5"), CharPtr("6"),
289 CharPtr("7"))));
290}
291
292// Tests using Invoke() with a 8-argument function.
293TEST(InvokeTest, FunctionThatTakes8Arguments) {
294 Action<std::string(const char*, const char*, const char*, const char*,
295 const char*, const char*, const char*, const char*)>
296 a = Invoke(Concat8);
297 EXPECT_EQ("12345678",
298 a.Perform(make_tuple(CharPtr("1"), CharPtr("2"), CharPtr("3"),
299 CharPtr("4"), CharPtr("5"), CharPtr("6"),
300 CharPtr("7"), CharPtr("8"))));
301}
302
303// Tests using Invoke() with a 9-argument function.
304TEST(InvokeTest, FunctionThatTakes9Arguments) {
305 Action<std::string(const char*, const char*, const char*, const char*,
306 const char*, const char*, const char*, const char*,
307 const char*)>
308 a = Invoke(Concat9);
309 EXPECT_EQ("123456789",
310 a.Perform(make_tuple(CharPtr("1"), CharPtr("2"), CharPtr("3"),
311 CharPtr("4"), CharPtr("5"), CharPtr("6"),
312 CharPtr("7"), CharPtr("8"), CharPtr("9"))));
313}
314
315// Tests using Invoke() with a 10-argument function.
316TEST(InvokeTest, FunctionThatTakes10Arguments) {
317 Action<std::string(const char*, const char*, const char*, const char*,
318 const char*, const char*, const char*, const char*,
319 const char*, const char*)>
320 a = Invoke(Concat10);
321 EXPECT_EQ("1234567890",
322 a.Perform(make_tuple(CharPtr("1"), CharPtr("2"), CharPtr("3"),
323 CharPtr("4"), CharPtr("5"), CharPtr("6"),
324 CharPtr("7"), CharPtr("8"), CharPtr("9"),
325 CharPtr("0"))));
326}
327
328// Tests using Invoke() with functions with parameters declared as Unused.
329TEST(InvokeTest, FunctionWithUnusedParameters) {
330 Action<int(int, int, double, const std::string&)> a1 = Invoke(SumOfFirst2);
331 tuple<int, int, double, std::string> dummy =
332 make_tuple(10, 2, 5.6, std::string("hi"));
333 EXPECT_EQ(12, a1.Perform(dummy));
334
335 Action<int(int, int, bool, int*)> a2 =
337 EXPECT_EQ(23, a2.Perform(make_tuple(20, 3, true, static_cast<int*>(NULL))));
338}
339
340// Tests using Invoke() with methods with parameters declared as Unused.
341TEST(InvokeTest, MethodWithUnusedParameters) {
342 Foo foo;
343 Action<int(std::string, bool, int, int)> a1 = Invoke(&foo, &Foo::SumOfLast2);
344 EXPECT_EQ(12, a1.Perform(make_tuple(CharPtr("hi"), true, 10, 2)));
345
346 Action<int(char, double, int, int)> a2 =
348 EXPECT_EQ(23, a2.Perform(make_tuple('a', 2.5, 20, 3)));
349}
350
351// Tests using Invoke() with a functor.
352TEST(InvokeTest, Functor) {
353 Action<long(long, int)> a = Invoke(plus<long>()); // NOLINT
354 EXPECT_EQ(3L, a.Perform(make_tuple(1, 2)));
355}
356
357// Tests using Invoke(f) as an action of a compatible type.
358TEST(InvokeTest, FunctionWithCompatibleType) {
359 Action<long(int, short, char, bool)> a = Invoke(SumOf4); // NOLINT
360 EXPECT_EQ(4321, a.Perform(make_tuple(4000, Short(300), Char(20), true)));
361}
362
363// Tests using Invoke() with an object pointer and a method pointer.
364
365// Tests using Invoke() with a nullary method.
366TEST(InvokeMethodTest, Nullary) {
367 Foo foo;
368 Action<int()> a = Invoke(&foo, &Foo::Nullary); // NOLINT
369 EXPECT_EQ(123, a.Perform(make_tuple()));
370}
371
372// Tests using Invoke() with a unary method.
373TEST(InvokeMethodTest, Unary) {
374 Foo foo;
375 Action<short(long)> a = Invoke(&foo, &Foo::Unary); // NOLINT
376 EXPECT_EQ(4123, a.Perform(make_tuple(4000)));
377}
378
379// Tests using Invoke() with a binary method.
380TEST(InvokeMethodTest, Binary) {
381 Foo foo;
382 Action<std::string(const std::string&, char)> a = Invoke(&foo, &Foo::Binary);
383 std::string s("Hell");
384 tuple<std::string, char> dummy = make_tuple(s, 'o');
385 EXPECT_EQ("Hello", a.Perform(dummy));
386}
387
388// Tests using Invoke() with a ternary method.
389TEST(InvokeMethodTest, Ternary) {
390 Foo foo;
391 Action<int(int, bool, char)> a = Invoke(&foo, &Foo::Ternary); // NOLINT
392 EXPECT_EQ(1124, a.Perform(make_tuple(1000, true, Char(1))));
393}
394
395// Tests using Invoke() with a 4-argument method.
396TEST(InvokeMethodTest, MethodThatTakes4Arguments) {
397 Foo foo;
398 Action<int(int, int, int, int)> a = Invoke(&foo, &Foo::SumOf4); // NOLINT
399 EXPECT_EQ(1357, a.Perform(make_tuple(1000, 200, 30, 4)));
400}
401
402// Tests using Invoke() with a 5-argument method.
403TEST(InvokeMethodTest, MethodThatTakes5Arguments) {
404 Foo foo;
405 Action<int(int, int, int, int, int)> a = Invoke(&foo, &Foo::SumOf5); // NOLINT
406 EXPECT_EQ(12345, a.Perform(make_tuple(10000, 2000, 300, 40, 5)));
407}
408
409// Tests using Invoke() with a 6-argument method.
410TEST(InvokeMethodTest, MethodThatTakes6Arguments) {
411 Foo foo;
412 Action<int(int, int, int, int, int, int)> a = // NOLINT
414 EXPECT_EQ(123456, a.Perform(make_tuple(100000, 20000, 3000, 400, 50, 6)));
415}
416
417// Tests using Invoke() with a 7-argument method.
418TEST(InvokeMethodTest, MethodThatTakes7Arguments) {
419 Foo foo;
420 Action<std::string(const char*, const char*, const char*, const char*,
421 const char*, const char*, const char*)>
422 a = Invoke(&foo, &Foo::Concat7);
423 EXPECT_EQ("1234567",
424 a.Perform(make_tuple(CharPtr("1"), CharPtr("2"), CharPtr("3"),
425 CharPtr("4"), CharPtr("5"), CharPtr("6"),
426 CharPtr("7"))));
427}
428
429// Tests using Invoke() with a 8-argument method.
430TEST(InvokeMethodTest, MethodThatTakes8Arguments) {
431 Foo foo;
432 Action<std::string(const char*, const char*, const char*, const char*,
433 const char*, const char*, const char*, const char*)>
434 a = Invoke(&foo, &Foo::Concat8);
435 EXPECT_EQ("12345678",
436 a.Perform(make_tuple(CharPtr("1"), CharPtr("2"), CharPtr("3"),
437 CharPtr("4"), CharPtr("5"), CharPtr("6"),
438 CharPtr("7"), CharPtr("8"))));
439}
440
441// Tests using Invoke() with a 9-argument method.
442TEST(InvokeMethodTest, MethodThatTakes9Arguments) {
443 Foo foo;
444 Action<std::string(const char*, const char*, const char*, const char*,
445 const char*, const char*, const char*, const char*,
446 const char*)>
447 a = Invoke(&foo, &Foo::Concat9);
448 EXPECT_EQ("123456789",
449 a.Perform(make_tuple(CharPtr("1"), CharPtr("2"), CharPtr("3"),
450 CharPtr("4"), CharPtr("5"), CharPtr("6"),
451 CharPtr("7"), CharPtr("8"), CharPtr("9"))));
452}
453
454// Tests using Invoke() with a 10-argument method.
455TEST(InvokeMethodTest, MethodThatTakes10Arguments) {
456 Foo foo;
457 Action<std::string(const char*, const char*, const char*, const char*,
458 const char*, const char*, const char*, const char*,
459 const char*, const char*)>
461 EXPECT_EQ("1234567890",
462 a.Perform(make_tuple(CharPtr("1"), CharPtr("2"), CharPtr("3"),
463 CharPtr("4"), CharPtr("5"), CharPtr("6"),
464 CharPtr("7"), CharPtr("8"), CharPtr("9"),
465 CharPtr("0"))));
466}
467
468// Tests using Invoke(f) as an action of a compatible type.
469TEST(InvokeMethodTest, MethodWithCompatibleType) {
470 Foo foo;
471 Action<long(int, short, char, bool)> a = // NOLINT
473 EXPECT_EQ(4444, a.Perform(make_tuple(4000, Short(300), Char(20), true)));
474}
475
476// Tests using WithoutArgs with an action that takes no argument.
477TEST(WithoutArgsTest, NoArg) {
478 Action<int(int n)> a = WithoutArgs(Invoke(Nullary)); // NOLINT
479 EXPECT_EQ(1, a.Perform(make_tuple(2)));
480}
481
482// Tests using WithArg with an action that takes 1 argument.
483TEST(WithArgTest, OneArg) {
484 Action<bool(double x, int n)> b = WithArg<1>(Invoke(Unary)); // NOLINT
485 EXPECT_TRUE(b.Perform(make_tuple(1.5, -1)));
486 EXPECT_FALSE(b.Perform(make_tuple(1.5, 1)));
487}
488
489TEST(ReturnArgActionTest, WorksForOneArgIntArg0) {
490 const Action<int(int)> a = ReturnArg<0>();
491 EXPECT_EQ(5, a.Perform(make_tuple(5)));
492}
493
494TEST(ReturnArgActionTest, WorksForMultiArgBoolArg0) {
495 const Action<bool(bool, bool, bool)> a = ReturnArg<0>();
496 EXPECT_TRUE(a.Perform(make_tuple(true, false, false)));
497}
498
499TEST(ReturnArgActionTest, WorksForMultiArgStringArg2) {
500 const Action<std::string(int, int, std::string, int)> a = ReturnArg<2>();
501 EXPECT_EQ("seven", a.Perform(make_tuple(5, 6, std::string("seven"), 8)));
502}
503
504TEST(SaveArgActionTest, WorksForSameType) {
505 int result = 0;
506 const Action<void(int n)> a1 = SaveArg<0>(&result);
507 a1.Perform(make_tuple(5));
508 EXPECT_EQ(5, result);
509}
510
511TEST(SaveArgActionTest, WorksForCompatibleType) {
512 int result = 0;
513 const Action<void(bool, char)> a1 = SaveArg<1>(&result);
514 a1.Perform(make_tuple(true, 'a'));
515 EXPECT_EQ('a', result);
516}
517
518TEST(SaveArgPointeeActionTest, WorksForSameType) {
519 int result = 0;
520 const int value = 5;
521 const Action<void(const int*)> a1 = SaveArgPointee<0>(&result);
522 a1.Perform(make_tuple(&value));
523 EXPECT_EQ(5, result);
524}
525
526TEST(SaveArgPointeeActionTest, WorksForCompatibleType) {
527 int result = 0;
528 char value = 'a';
529 const Action<void(bool, char*)> a1 = SaveArgPointee<1>(&result);
530 a1.Perform(make_tuple(true, &value));
531 EXPECT_EQ('a', result);
532}
533
534TEST(SaveArgPointeeActionTest, WorksForLinkedPtr) {
535 int result = 0;
536 linked_ptr<int> value(new int(5));
537 const Action<void(linked_ptr<int>)> a1 = SaveArgPointee<0>(&result);
538 a1.Perform(make_tuple(value));
539 EXPECT_EQ(5, result);
540}
541
542TEST(SetArgRefereeActionTest, WorksForSameType) {
543 int value = 0;
544 const Action<void(int&)> a1 = SetArgReferee<0>(1);
545 a1.Perform(tuple<int&>(value));
546 EXPECT_EQ(1, value);
547}
548
549TEST(SetArgRefereeActionTest, WorksForCompatibleType) {
550 int value = 0;
551 const Action<void(int, int&)> a1 = SetArgReferee<1>('a');
552 a1.Perform(tuple<int, int&>(0, value));
553 EXPECT_EQ('a', value);
554}
555
556TEST(SetArgRefereeActionTest, WorksWithExtraArguments) {
557 int value = 0;
558 const Action<void(bool, int, int&, const char*)> a1 = SetArgReferee<2>('a');
559 a1.Perform(tuple<bool, int, int&, const char*>(true, 0, value, "hi"));
560 EXPECT_EQ('a', value);
561}
562
563// A class that can be used to verify that its destructor is called: it will set
564// the bool provided to the constructor to true when destroyed.
566 public:
567 explicit DeletionTester(bool* is_deleted)
568 : is_deleted_(is_deleted) {
569 // Make sure the bit is set to false.
570 *is_deleted_ = false;
571 }
572
574 *is_deleted_ = true;
575 }
576
577 private:
578 bool* is_deleted_;
579};
580
581TEST(DeleteArgActionTest, OneArg) {
582 bool is_deleted = false;
583 DeletionTester* t = new DeletionTester(&is_deleted);
584 const Action<void(DeletionTester*)> a1 = DeleteArg<0>(); // NOLINT
585 EXPECT_FALSE(is_deleted);
586 a1.Perform(make_tuple(t));
587 EXPECT_TRUE(is_deleted);
588}
589
590TEST(DeleteArgActionTest, TenArgs) {
591 bool is_deleted = false;
592 DeletionTester* t = new DeletionTester(&is_deleted);
593 const Action<void(bool, int, int, const char*, bool,
594 int, int, int, int, DeletionTester*)> a1 = DeleteArg<9>();
595 EXPECT_FALSE(is_deleted);
596 a1.Perform(make_tuple(true, 5, 6, CharPtr("hi"), false, 7, 8, 9, 10, t));
597 EXPECT_TRUE(is_deleted);
598}
599
600#if GTEST_HAS_EXCEPTIONS
601
602TEST(ThrowActionTest, ThrowsGivenExceptionInVoidFunction) {
603 const Action<void(int n)> a = Throw('a');
604 EXPECT_THROW(a.Perform(make_tuple(0)), char);
605}
606
607class MyException {};
608
609TEST(ThrowActionTest, ThrowsGivenExceptionInNonVoidFunction) {
610 const Action<double(char ch)> a = Throw(MyException());
611 EXPECT_THROW(a.Perform(make_tuple('0')), MyException);
612}
613
614TEST(ThrowActionTest, ThrowsGivenExceptionInNullaryFunction) {
615 const Action<double()> a = Throw(MyException());
616 EXPECT_THROW(a.Perform(make_tuple()), MyException);
617}
618
619#endif // GTEST_HAS_EXCEPTIONS
620
621// Tests that SetArrayArgument<N>(first, last) sets the elements of the array
622// pointed to by the N-th (0-based) argument to values in range [first, last).
623TEST(SetArrayArgumentTest, SetsTheNthArray) {
624 typedef void MyFunction(bool, int*, char*);
625 int numbers[] = { 1, 2, 3 };
626 Action<MyFunction> a = SetArrayArgument<1>(numbers, numbers + 3);
627
628 int n[4] = {};
629 int* pn = n;
630 char ch[4] = {};
631 char* pch = ch;
632 a.Perform(make_tuple(true, pn, pch));
633 EXPECT_EQ(1, n[0]);
634 EXPECT_EQ(2, n[1]);
635 EXPECT_EQ(3, n[2]);
636 EXPECT_EQ(0, n[3]);
637 EXPECT_EQ('\0', ch[0]);
638 EXPECT_EQ('\0', ch[1]);
639 EXPECT_EQ('\0', ch[2]);
640 EXPECT_EQ('\0', ch[3]);
641
642 // Tests first and last are iterators.
643 std::string letters = "abc";
644 a = SetArrayArgument<2>(letters.begin(), letters.end());
645 std::fill_n(n, 4, 0);
646 std::fill_n(ch, 4, '\0');
647 a.Perform(make_tuple(true, pn, pch));
648 EXPECT_EQ(0, n[0]);
649 EXPECT_EQ(0, n[1]);
650 EXPECT_EQ(0, n[2]);
651 EXPECT_EQ(0, n[3]);
652 EXPECT_EQ('a', ch[0]);
653 EXPECT_EQ('b', ch[1]);
654 EXPECT_EQ('c', ch[2]);
655 EXPECT_EQ('\0', ch[3]);
656}
657
658// Tests SetArrayArgument<N>(first, last) where first == last.
659TEST(SetArrayArgumentTest, SetsTheNthArrayWithEmptyRange) {
660 typedef void MyFunction(bool, int*);
661 int numbers[] = { 1, 2, 3 };
662 Action<MyFunction> a = SetArrayArgument<1>(numbers, numbers);
663
664 int n[4] = {};
665 int* pn = n;
666 a.Perform(make_tuple(true, pn));
667 EXPECT_EQ(0, n[0]);
668 EXPECT_EQ(0, n[1]);
669 EXPECT_EQ(0, n[2]);
670 EXPECT_EQ(0, n[3]);
671}
672
673// Tests SetArrayArgument<N>(first, last) where *first is convertible
674// (but not equal) to the argument type.
675TEST(SetArrayArgumentTest, SetsTheNthArrayWithConvertibleType) {
676 typedef void MyFunction(bool, int*);
677 char chars[] = { 97, 98, 99 };
678 Action<MyFunction> a = SetArrayArgument<1>(chars, chars + 3);
679
680 int codes[4] = { 111, 222, 333, 444 };
681 int* pcodes = codes;
682 a.Perform(make_tuple(true, pcodes));
683 EXPECT_EQ(97, codes[0]);
684 EXPECT_EQ(98, codes[1]);
685 EXPECT_EQ(99, codes[2]);
686 EXPECT_EQ(444, codes[3]);
687}
688
689// Test SetArrayArgument<N>(first, last) with iterator as argument.
690TEST(SetArrayArgumentTest, SetsTheNthArrayWithIteratorArgument) {
691 typedef void MyFunction(bool, std::back_insert_iterator<std::string>);
692 std::string letters = "abc";
693 Action<MyFunction> a = SetArrayArgument<1>(letters.begin(), letters.end());
694
695 std::string s;
696 a.Perform(make_tuple(true, back_inserter(s)));
697 EXPECT_EQ(letters, s);
698}
699
700TEST(ReturnPointeeTest, Works) {
701 int n = 42;
702 const Action<int()> a = ReturnPointee(&n);
703 EXPECT_EQ(42, a.Perform(make_tuple()));
704
705 n = 43;
706 EXPECT_EQ(43, a.Perform(make_tuple()));
707}
708
709} // namespace gmock_generated_actions_test
710} // namespace testing
const mie::Vuint & p
Definition bn.cpp:27
Result Perform(ArgumentTuple args) const
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)
int SumOf6(int a, int b, int c, int d, int e, int f)
int SumOf5(int a, int b, int c, int d, int e)
std::string Concat7(const char *s1, const char *s2, const char *s3, const char *s4, const char *s5, const char *s6, const char *s7)
int SumOf4(int a, int b, int c, int d) const
std::string Binary(const std::string &str, char c) const
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)
int SumOfLast2(Unused, Unused, int a, int b) const
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)
#define EXPECT_EQ(val1, val2)
Definition gtest.h:1954
#define EXPECT_THROW(statement, expected_exception)
Definition gtest.h:1879
#define EXPECT_TRUE(condition)
Definition gtest.h:1895
#define TEST(test_case_name, test_name)
Definition gtest.h:2275
#define EXPECT_FALSE(condition)
Definition gtest.h:1898
@ Throw
Throw an error if any extra arguments were given.
int SumOf6(int a, int b, int c, int d, int e, int f)
std::string Concat7(const char *s1, const char *s2, const char *s3, const char *s4, const char *s5, const char *s6, const char *s7)
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)
int SumOf5(int a, int b, int c, int d, int e)
int SumOf4(int a, int b, int c, int d)
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 Concat6(const char *s1, const char *s2, const char *s3, const char *s4, const char *s5, const char *s6)
std::string Concat4(const char *s1, const char *s2, const char *s3, const char *s4)
void VoidFunctionWithFourArguments(char, int, float, double)
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)
int SumOfFirst2(int a, int b, Unused, Unused)
std::string ByNonConstRef(std::string &s)
const char * Binary(const char *input, short n)
std::string Concat5(const char *s1, const char *s2, const char *s3, const char *s4, const char *s5)
internal::WithArgsAction< InnerAction, k > WithArg(const InnerAction &action)
PolymorphicAction< internal::ReturnVoidAction > Return()
const internal::AnythingMatcher _
bool StaticAssertTypeEq()
Definition gtest.h:2238
internal::WithArgsAction< InnerAction > WithoutArgs(const InnerAction &action)
PolymorphicAction< internal::InvokeAction< FunctionImpl > > Invoke(FunctionImpl function_impl)
#define value
Definition pkcs11.h:157
const GenericPointer< typename T::ValueType > T2 T::AllocatorType & a
Definition pointer.h:1181
int operator()(int a, int b, int c, int d, int e)
int operator()(int a, int b, int c, int d, int e, int f)
CK_ULONG d
char * s