gmock-spec-builders.h 80.1 KB
Newer Older
1
2
3
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
// 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
29

30
31
32
33
34
35
36
37
// Google Mock - a framework for writing C++ mock classes.
//
// This file implements the ON_CALL() and EXPECT_CALL() macros.
//
// A user can use the ON_CALL() macro to specify the default action of
// a mock method.  The syntax is:
//
//   ON_CALL(mock_object, Method(argument-matchers))
38
//       .With(multi-argument-matcher)
39
40
//       .WillByDefault(action);
//
41
//  where the .With() clause is optional.
42
43
44
45
46
//
// A user can use the EXPECT_CALL() macro to specify an expectation on
// a mock method.  The syntax is:
//
//   EXPECT_CALL(mock_object, Method(argument-matchers))
47
//       .With(multi-argument-matchers)
48
49
//       .Times(cardinality)
//       .InSequence(sequences)
50
//       .After(expectations)
51
52
53
54
//       .WillOnce(action)
//       .WillRepeatedly(action)
//       .RetiresOnSaturation();
//
55
56
// where all clauses are optional, and .InSequence()/.After()/
// .WillOnce() can appear any number of times.
57

58
59
60
// IWYU pragma: private, include "gmock/gmock.h"
// IWYU pragma: friend gmock/.*

Abseil Team's avatar
Abseil Team committed
61
62
#ifndef GOOGLEMOCK_INCLUDE_GMOCK_GMOCK_SPEC_BUILDERS_H_
#define GOOGLEMOCK_INCLUDE_GMOCK_GMOCK_SPEC_BUILDERS_H_
63

64
#include <cstdint>
Adam Badura's avatar
Adam Badura committed
65
#include <functional>
66
#include <map>
misterg's avatar
misterg committed
67
#include <memory>
Tom Hughes's avatar
Tom Hughes committed
68
#include <ostream>
69
70
71
#include <set>
#include <sstream>
#include <string>
72
#include <type_traits>
Abseil Team's avatar
Abseil Team committed
73
#include <utility>
74
#include <vector>
75

76
77
78
79
80
81
#include "gmock/gmock-actions.h"
#include "gmock/gmock-cardinalities.h"
#include "gmock/gmock-matchers.h"
#include "gmock/internal/gmock-internal-utils.h"
#include "gmock/internal/gmock-port.h"
#include "gtest/gtest.h"
82

Gennadiy Civil's avatar
Gennadiy Civil committed
83
#if GTEST_HAS_EXCEPTIONS
84
#include <stdexcept>  // NOLINT
Gennadiy Civil's avatar
Gennadiy Civil committed
85
86
#endif

misterg's avatar
misterg committed
87
88
89
GTEST_DISABLE_MSC_WARNINGS_PUSH_(4251 \
/* class A needs to have dll-interface to be used by clients of class B */)

90
91
namespace testing {

92
93
94
95
96
97
// An abstract handle of an expectation.
class Expectation;

// A set of expectation handles.
class ExpectationSet;

98
99
100
101
// Anything inside the 'internal' namespace IS INTERNAL IMPLEMENTATION
// and MUST NOT BE USED IN USER CODE!!!
namespace internal {

102
// Implements a mock function.
103
104
template <typename F>
class FunctionMocker;
105
106
107
108

// Base class for expectations.
class ExpectationBase;

109
// Implements an expectation.
110
111
template <typename F>
class TypedExpectation;
112

113
114
115
// Helper class for testing the Expectation class template.
class ExpectationTester;

Abseil Team's avatar
Abseil Team committed
116
117
118
119
120
121
122
123
// Helper classes for implementing NiceMock, StrictMock, and NaggyMock.
template <typename MockClass>
class NiceMockImpl;
template <typename MockClass>
class StrictMockImpl;
template <typename MockClass>
class NaggyMockImpl;

124
125
126
127
128
129
130
131
132
133
134
// Protects the mock object registry (in class Mock), all function
// mockers, and all expectations.
//
// The reason we don't use more fine-grained protection is: when a
// mock function Foo() is called, it needs to consult its expectations
// to see which one should be picked.  If another thread is allowed to
// call a mock function (either Foo() or a different one) at the same
// time, it could affect the "retired" attributes of Foo()'s
// expectations when InSequence() is used, and thus affect which
// expectation gets picked.  Therefore, we sequence all mock function
// calls to ensure the integrity of the mock objects' states.
135
GTEST_API_ GTEST_DECLARE_STATIC_MUTEX_(g_gmock_mutex);
136

Abseil Team's avatar
Abseil Team committed
137
// Abstract base class of FunctionMocker.  This is the
138
// type-agnostic part of the function mocker interface.  Its pure
Abseil Team's avatar
Abseil Team committed
139
// virtual methods are implemented by FunctionMocker.
140
class GTEST_API_ UntypedFunctionMockerBase {
141
 public:
142
143
  UntypedFunctionMockerBase();
  virtual ~UntypedFunctionMockerBase();
144
145
146
147

  // Verifies that all expectations on this mock function have been
  // satisfied.  Reports one or more Google Test non-fatal failures
  // and returns false if not.
148
149
  bool VerifyAndClearExpectationsLocked()
      GTEST_EXCLUSIVE_LOCK_REQUIRED_(g_gmock_mutex);
150
151

  // Clears the ON_CALL()s set on this mock function.
152
153
  virtual void ClearDefaultActionsLocked()
      GTEST_EXCLUSIVE_LOCK_REQUIRED_(g_gmock_mutex) = 0;
154
155
156
157
158
159
160
161

  // In all of the following Untyped* functions, it's the caller's
  // responsibility to guarantee the correctness of the arguments'
  // types.

  // Writes a message that the call is uninteresting (i.e. neither
  // explicitly expected nor explicitly unexpected) to the given
  // ostream.
162
163
164
  virtual void UntypedDescribeUninterestingCall(const void* untyped_args,
                                                ::std::ostream* os) const
      GTEST_LOCK_EXCLUDED_(g_gmock_mutex) = 0;
165
166
167
168
169
170
171
172

  // Returns the expectation that matches the given function arguments
  // (or NULL is there's no match); when a match is found,
  // untyped_action is set to point to the action that should be
  // performed (or NULL if the action is "do default"), and
  // is_excessive is modified to indicate whether the call exceeds the
  // expected number.
  virtual const ExpectationBase* UntypedFindMatchingExpectation(
173
      const void* untyped_args, const void** untyped_action, bool* is_excessive,
174
      ::std::ostream* what, ::std::ostream* why)
175
      GTEST_LOCK_EXCLUDED_(g_gmock_mutex) = 0;
176
177
178
179
180
181
182
183
184

  // Prints the given function arguments to the ostream.
  virtual void UntypedPrintArgs(const void* untyped_args,
                                ::std::ostream* os) const = 0;

  // Sets the mock object this mock method belongs to, and registers
  // this information in the global mock registry.  Will be called
  // whenever an EXPECT_CALL() or ON_CALL() is executed on this mock
  // method.
185
  void RegisterOwner(const void* mock_obj) GTEST_LOCK_EXCLUDED_(g_gmock_mutex);
186
187
188
189

  // Sets the mock object this mock method belongs to, and sets the
  // name of the mock function.  Will be called upon each invocation
  // of this mock function.
190
191
  void SetOwnerAndName(const void* mock_obj, const char* name)
      GTEST_LOCK_EXCLUDED_(g_gmock_mutex);
192
193
194
195

  // Returns the mock object this mock method belongs to.  Must be
  // called after RegisterOwner() or SetOwnerAndName() has been
  // called.
196
  const void* MockObject() const GTEST_LOCK_EXCLUDED_(g_gmock_mutex);
197
198
199

  // Returns the name of this mock method.  Must be called after
  // SetOwnerAndName() has been called.
200
  const char* Name() const GTEST_LOCK_EXCLUDED_(g_gmock_mutex);
201
202
203
204

 protected:
  typedef std::vector<const void*> UntypedOnCallSpecs;

misterg's avatar
misterg committed
205
  using UntypedExpectations = std::vector<std::shared_ptr<ExpectationBase>>;
206

207
208
209
  struct UninterestingCallCleanupHandler;
  struct FailureCleanupHandler;

210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
  // Returns an Expectation object that references and co-owns exp,
  // which must be an expectation on this mock function.
  Expectation GetHandleOf(ExpectationBase* exp);

  // Address of the mock object this mock method belongs to.  Only
  // valid after this mock method has been called or
  // ON_CALL/EXPECT_CALL has been invoked on it.
  const void* mock_obj_;  // Protected by g_gmock_mutex.

  // Name of the function being mocked.  Only valid after this mock
  // method has been called.
  const char* name_;  // Protected by g_gmock_mutex.

  // All default action specs for this function mocker.
  UntypedOnCallSpecs untyped_on_call_specs_;

  // All expectations for this function mocker.
Gennadiy Civil's avatar
Gennadiy Civil committed
227
228
229
230
231
232
233
234
  //
  // It's undefined behavior to interleave expectations (EXPECT_CALLs
  // or ON_CALLs) and mock function calls.  Also, the order of
  // expectations is important.  Therefore it's a logic race condition
  // to read/write untyped_expectations_ concurrently.  In order for
  // tools like tsan to catch concurrent read/write accesses to
  // untyped_expectations, we deliberately leave accesses to it
  // unprotected.
235
  UntypedExpectations untyped_expectations_;
236
237
};  // class UntypedFunctionMockerBase

238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
// Untyped base class for OnCallSpec<F>.
class UntypedOnCallSpecBase {
 public:
  // The arguments are the location of the ON_CALL() statement.
  UntypedOnCallSpecBase(const char* a_file, int a_line)
      : file_(a_file), line_(a_line), last_clause_(kNone) {}

  // Where in the source file was the default action spec defined?
  const char* file() const { return file_; }
  int line() const { return line_; }

 protected:
  // Gives each clause in the ON_CALL() statement a name.
  enum Clause {
    // Do not change the order of the enum members!  The run-time
    // syntax checking relies on it.
    kNone,
    kWith,
256
    kWillByDefault
257
258
259
  };

  // Asserts that the ON_CALL() statement has a certain property.
260
261
  void AssertSpecProperty(bool property,
                          const std::string& failure_message) const {
262
263
264
265
    Assert(property, file_, line_, failure_message);
  }

  // Expects that the ON_CALL() statement has a certain property.
266
267
  void ExpectSpecProperty(bool property,
                          const std::string& failure_message) const {
268
269
270
271
272
273
274
275
276
277
278
279
    Expect(property, file_, line_, failure_message);
  }

  const char* file_;
  int line_;

  // The last clause in the ON_CALL() statement as seen so far.
  // Initially kNone and changes as the statement is parsed.
  Clause last_clause_;
};  // class UntypedOnCallSpecBase

// This template class implements an ON_CALL spec.
280
template <typename F>
281
class OnCallSpec : public UntypedOnCallSpecBase {
282
283
284
285
 public:
  typedef typename Function<F>::ArgumentTuple ArgumentTuple;
  typedef typename Function<F>::ArgumentMatcherTuple ArgumentMatcherTuple;

286
  // Constructs an OnCallSpec object from the information inside
287
  // the parenthesis of an ON_CALL() statement.
288
289
290
  OnCallSpec(const char* a_file, int a_line,
             const ArgumentMatcherTuple& matchers)
      : UntypedOnCallSpecBase(a_file, a_line),
291
        matchers_(matchers),
Abseil Team's avatar
Abseil Team committed
292
293
294
295
        // By default, extra_matcher_ should match anything.  However,
        // we cannot initialize it with _ as that causes ambiguity between
        // Matcher's copy and move constructor for some argument types.
        extra_matcher_(A<const ArgumentTuple&>()) {}
296

297
  // Implements the .With() clause.
298
  OnCallSpec& With(const Matcher<const ArgumentTuple&>& m) {
299
    // Makes sure this is called at most once.
300
301
    ExpectSpecProperty(last_clause_ < kWith,
                       ".With() cannot appear "
302
                       "more than once in an ON_CALL().");
303
    last_clause_ = kWith;
304
305
306
307
308
309

    extra_matcher_ = m;
    return *this;
  }

  // Implements the .WillByDefault() clause.
310
  OnCallSpec& WillByDefault(const Action<F>& action) {
311
    ExpectSpecProperty(last_clause_ < kWillByDefault,
312
313
                       ".WillByDefault() must appear "
                       "exactly once in an ON_CALL().");
314
    last_clause_ = kWillByDefault;
315
316
317
318
319
320
321

    ExpectSpecProperty(!action.IsDoDefault(),
                       "DoDefault() cannot be used in ON_CALL().");
    action_ = action;
    return *this;
  }

322
  // Returns true if and only if the given arguments match the matchers.
323
324
325
326
327
328
  bool Matches(const ArgumentTuple& args) const {
    return TupleMatches(matchers_, args) && extra_matcher_.Matches(args);
  }

  // Returns the action specified by the user.
  const Action<F>& GetAction() const {
329
    AssertSpecProperty(last_clause_ == kWillByDefault,
330
331
332
333
                       ".WillByDefault() must appear exactly "
                       "once in an ON_CALL().");
    return action_;
  }
334

335
336
337
338
 private:
  // The information in statement
  //
  //   ON_CALL(mock_object, Method(matchers))
339
  //       .With(multi-argument-matcher)
340
341
342
343
344
345
346
347
348
349
350
351
  //       .WillByDefault(action);
  //
  // is recorded in the data members like this:
  //
  //   source file that contains the statement => file_
  //   line number of the statement            => line_
  //   matchers                                => matchers_
  //   multi-argument-matcher                  => extra_matcher_
  //   action                                  => action_
  ArgumentMatcherTuple matchers_;
  Matcher<const ArgumentTuple&> extra_matcher_;
  Action<F> action_;
352
};  // class OnCallSpec
353

zhanyong.wan's avatar
zhanyong.wan committed
354
// Possible reactions on uninteresting calls.
355
enum CallReaction {
zhanyong.wan's avatar
zhanyong.wan committed
356
357
  kAllow,
  kWarn,
358
  kFail,
359
360
361
362
363
};

}  // namespace internal

// Utilities for manipulating mock objects.
364
class GTEST_API_ Mock {
365
366
367
 public:
  // The following public methods can be called concurrently.

368
369
  // Tells Google Mock to ignore mock_obj when checking for leaked
  // mock objects.
370
371
  static void AllowLeak(const void* mock_obj)
      GTEST_LOCK_EXCLUDED_(internal::g_gmock_mutex);
372

373
374
375
  // Verifies and clears all expectations on the given mock object.
  // If the expectations aren't satisfied, generates one or more
  // Google Test non-fatal failures and returns false.
376
377
  static bool VerifyAndClearExpectations(void* mock_obj)
      GTEST_LOCK_EXCLUDED_(internal::g_gmock_mutex);
378
379

  // Verifies all expectations on the given mock object and clears its
380
  // default actions and expectations.  Returns true if and only if the
381
  // verification was successful.
382
383
  static bool VerifyAndClear(void* mock_obj)
      GTEST_LOCK_EXCLUDED_(internal::g_gmock_mutex);
384

385
  // Returns whether the mock was created as a naggy mock (default)
386
387
  static bool IsNaggy(void* mock_obj)
      GTEST_LOCK_EXCLUDED_(internal::g_gmock_mutex);
388
  // Returns whether the mock was created as a nice mock
389
390
  static bool IsNice(void* mock_obj)
      GTEST_LOCK_EXCLUDED_(internal::g_gmock_mutex);
391
  // Returns whether the mock was created as a strict mock
392
393
394
  static bool IsStrict(void* mock_obj)
      GTEST_LOCK_EXCLUDED_(internal::g_gmock_mutex);

395
 private:
396
397
  friend class internal::UntypedFunctionMockerBase;

398
399
400
  // Needed for a function mocker to register itself (so that we know
  // how to clear a mock object).
  template <typename F>
Abseil Team's avatar
Abseil Team committed
401
  friend class internal::FunctionMocker;
402

Abseil Team's avatar
Abseil Team committed
403
404
405
406
407
408
  template <typename MockClass>
  friend class internal::NiceMockImpl;
  template <typename MockClass>
  friend class internal::NaggyMockImpl;
  template <typename MockClass>
  friend class internal::StrictMockImpl;
409
410
411

  // Tells Google Mock to allow uninteresting calls on the given mock
  // object.
412
  static void AllowUninterestingCalls(uintptr_t mock_obj)
413
      GTEST_LOCK_EXCLUDED_(internal::g_gmock_mutex);
414
415
416

  // Tells Google Mock to warn the user about uninteresting calls on
  // the given mock object.
417
  static void WarnUninterestingCalls(uintptr_t mock_obj)
418
      GTEST_LOCK_EXCLUDED_(internal::g_gmock_mutex);
419
420
421

  // Tells Google Mock to fail uninteresting calls on the given mock
  // object.
422
  static void FailUninterestingCalls(uintptr_t mock_obj)
423
      GTEST_LOCK_EXCLUDED_(internal::g_gmock_mutex);
424
425
426

  // Tells Google Mock the given mock object is being destroyed and
  // its entry in the call-reaction table should be removed.
427
  static void UnregisterCallReaction(uintptr_t mock_obj)
428
      GTEST_LOCK_EXCLUDED_(internal::g_gmock_mutex);
429
430
431
432

  // Returns the reaction Google Mock will have on uninteresting calls
  // made on the given mock object.
  static internal::CallReaction GetReactionOnUninterestingCalls(
433
      const void* mock_obj) GTEST_LOCK_EXCLUDED_(internal::g_gmock_mutex);
434
435
436
437

  // Verifies that all expectations on the given mock object have been
  // satisfied.  Reports one or more Google Test non-fatal failures
  // and returns false if not.
438
439
  static bool VerifyAndClearExpectationsLocked(void* mock_obj)
      GTEST_EXCLUSIVE_LOCK_REQUIRED_(internal::g_gmock_mutex);
440
441

  // Clears all ON_CALL()s set on the given mock object.
442
443
  static void ClearDefaultActionsLocked(void* mock_obj)
      GTEST_EXCLUSIVE_LOCK_REQUIRED_(internal::g_gmock_mutex);
444
445

  // Registers a mock object and a mock method it owns.
446
447
448
  static void Register(const void* mock_obj,
                       internal::UntypedFunctionMockerBase* mocker)
      GTEST_LOCK_EXCLUDED_(internal::g_gmock_mutex);
449

450
451
452
  // Tells Google Mock where in the source code mock_obj is used in an
  // ON_CALL or EXPECT_CALL.  In case mock_obj is leaked, this
  // information helps the user identify which object it is.
453
454
455
  static void RegisterUseByOnCallOrExpectCall(const void* mock_obj,
                                              const char* file, int line)
      GTEST_LOCK_EXCLUDED_(internal::g_gmock_mutex);
456

457
458
459
  // Unregisters a mock method; removes the owning mock object from
  // the registry when the last mock method associated with it has
  // been unregistered.  This is called only in the destructor of
Abseil Team's avatar
Abseil Team committed
460
  // FunctionMocker.
461
462
  static void UnregisterLocked(internal::UntypedFunctionMockerBase* mocker)
      GTEST_EXCLUSIVE_LOCK_REQUIRED_(internal::g_gmock_mutex);
463
464
};  // class Mock

465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
// An abstract handle of an expectation.  Useful in the .After()
// clause of EXPECT_CALL() for setting the (partial) order of
// expectations.  The syntax:
//
//   Expectation e1 = EXPECT_CALL(...)...;
//   EXPECT_CALL(...).After(e1)...;
//
// sets two expectations where the latter can only be matched after
// the former has been satisfied.
//
// Notes:
//   - This class is copyable and has value semantics.
//   - Constness is shallow: a const Expectation object itself cannot
//     be modified, but the mutable methods of the ExpectationBase
//     object it references can be called via expectation_base().
misterg's avatar
misterg committed
480

481
class GTEST_API_ Expectation {
482
483
 public:
  // Constructs a null object that doesn't reference any expectation.
484
  Expectation();
Arthur O'Dwyer's avatar
Arthur O'Dwyer committed
485
486
487
488
  Expectation(Expectation&&) = default;
  Expectation(const Expectation&) = default;
  Expectation& operator=(Expectation&&) = default;
  Expectation& operator=(const Expectation&) = default;
489
  ~Expectation();
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504

  // This single-argument ctor must not be explicit, in order to support the
  //   Expectation e = EXPECT_CALL(...);
  // syntax.
  //
  // A TypedExpectation object stores its pre-requisites as
  // Expectation objects, and needs to call the non-const Retire()
  // method on the ExpectationBase objects they reference.  Therefore
  // Expectation must receive a *non-const* reference to the
  // ExpectationBase object.
  Expectation(internal::ExpectationBase& exp);  // NOLINT

  // The compiler-generated copy ctor and operator= work exactly as
  // intended, so we don't need to define our own.

505
506
  // Returns true if and only if rhs references the same expectation as this
  // object does.
507
508
509
510
511
512
513
514
515
516
  bool operator==(const Expectation& rhs) const {
    return expectation_base_ == rhs.expectation_base_;
  }

  bool operator!=(const Expectation& rhs) const { return !(*this == rhs); }

 private:
  friend class ExpectationSet;
  friend class Sequence;
  friend class ::testing::internal::ExpectationBase;
517
  friend class ::testing::internal::UntypedFunctionMockerBase;
518
519

  template <typename F>
Abseil Team's avatar
Abseil Team committed
520
  friend class ::testing::internal::FunctionMocker;
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535

  template <typename F>
  friend class ::testing::internal::TypedExpectation;

  // This comparator is needed for putting Expectation objects into a set.
  class Less {
   public:
    bool operator()(const Expectation& lhs, const Expectation& rhs) const {
      return lhs.expectation_base_.get() < rhs.expectation_base_.get();
    }
  };

  typedef ::std::set<Expectation, Less> Set;

  Expectation(
misterg's avatar
misterg committed
536
      const std::shared_ptr<internal::ExpectationBase>& expectation_base);
537
538

  // Returns the expectation this object references.
misterg's avatar
misterg committed
539
  const std::shared_ptr<internal::ExpectationBase>& expectation_base() const {
540
541
542
    return expectation_base_;
  }

misterg's avatar
misterg committed
543
544
  // A shared_ptr that co-owns the expectation this handle references.
  std::shared_ptr<internal::ExpectationBase> expectation_base_;
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
};

// A set of expectation handles.  Useful in the .After() clause of
// EXPECT_CALL() for setting the (partial) order of expectations.  The
// syntax:
//
//   ExpectationSet es;
//   es += EXPECT_CALL(...)...;
//   es += EXPECT_CALL(...)...;
//   EXPECT_CALL(...).After(es)...;
//
// sets three expectations where the last one can only be matched
// after the first two have both been satisfied.
//
// This class is copyable and has value semantics.
class ExpectationSet {
 public:
  // A bidirectional iterator that can read a const element in the set.
  typedef Expectation::Set::const_iterator const_iterator;

  // An object stored in the set.  This is an alias of Expectation.
  typedef Expectation::Set::value_type value_type;

  // Constructs an empty set.
  ExpectationSet() {}

  // This single-argument ctor must not be explicit, in order to support the
  //   ExpectationSet es = EXPECT_CALL(...);
  // syntax.
  ExpectationSet(internal::ExpectationBase& exp) {  // NOLINT
    *this += Expectation(exp);
  }

  // This single-argument ctor implements implicit conversion from
  // Expectation and thus must not be explicit.  This allows either an
  // Expectation or an ExpectationSet to be used in .After().
  ExpectationSet(const Expectation& e) {  // NOLINT
    *this += e;
  }

  // The compiler-generator ctor and operator= works exactly as
  // intended, so we don't need to define our own.

588
589
  // Returns true if and only if rhs contains the same set of Expectation
  // objects as this does.
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
  bool operator==(const ExpectationSet& rhs) const {
    return expectations_ == rhs.expectations_;
  }

  bool operator!=(const ExpectationSet& rhs) const { return !(*this == rhs); }

  // Implements the syntax
  //   expectation_set += EXPECT_CALL(...);
  ExpectationSet& operator+=(const Expectation& e) {
    expectations_.insert(e);
    return *this;
  }

  int size() const { return static_cast<int>(expectations_.size()); }

  const_iterator begin() const { return expectations_.begin(); }
  const_iterator end() const { return expectations_.end(); }

 private:
  Expectation::Set expectations_;
};

612
613
614
// Sequence objects are used by a user to specify the relative order
// in which the expectations should match.  They are copyable (we rely
// on the compiler-defined copy constructor and assignment operator).
615
class GTEST_API_ Sequence {
616
617
 public:
  // Constructs an empty sequence.
618
  Sequence() : last_expectation_(new Expectation) {}
619
620
621

  // Adds an expectation to this sequence.  The caller must ensure
  // that no other thread is accessing this Sequence object.
622
623
  void AddExpectation(const Expectation& expectation) const;

624
 private:
misterg's avatar
misterg committed
625
626
  // The last expectation in this sequence.
  std::shared_ptr<Expectation> last_expectation_;
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
};  // class Sequence

// An object of this type causes all EXPECT_CALL() statements
// encountered in its scope to be put in an anonymous sequence.  The
// work is done in the constructor and destructor.  You should only
// create an InSequence object on the stack.
//
// The sole purpose for this class is to support easy definition of
// sequential expectations, e.g.
//
//   {
//     InSequence dummy;  // The name of the object doesn't matter.
//
//     // The following expectations must match in the order they appear.
//     EXPECT_CALL(a, Bar())...;
//     EXPECT_CALL(a, Baz())...;
//     ...
//     EXPECT_CALL(b, Xyz())...;
//   }
//
// You can create InSequence objects in multiple threads, as long as
// they are used to affect different mock objects.  The idea is that
// each thread can create and set up its own mocks as if it's the only
// thread.  However, for clarity of your tests we recommend you to set
// up mocks in the main thread unless you have a good reason not to do
// so.
653
class GTEST_API_ InSequence {
654
655
656
 public:
  InSequence();
  ~InSequence();
657

658
659
660
 private:
  bool sequence_created_;

661
662
  InSequence(const InSequence&) = delete;
  InSequence& operator=(const InSequence&) = delete;
663
};
664
665
666
667
668

namespace internal {

// Points to the implicit sequence introduced by a living InSequence
// object (if any) in the current thread or NULL.
669
GTEST_API_ extern ThreadLocal<Sequence*> g_gmock_implicit_sequence;
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684

// Base class for implementing expectations.
//
// There are two reasons for having a type-agnostic base class for
// Expectation:
//
//   1. We need to store collections of expectations of different
//   types (e.g. all pre-requisites of a particular expectation, all
//   expectations in a sequence).  Therefore these expectation objects
//   must share a common base class.
//
//   2. We can avoid binary code bloat by moving methods not depending
//   on the template argument of Expectation to the base class.
//
// This class is internal and mustn't be used by user code directly.
685
class GTEST_API_ ExpectationBase {
686
 public:
687
  // source_text is the EXPECT_CALL(...) source that created this Expectation.
688
  ExpectationBase(const char* file, int line, const std::string& source_text);
689
690
691
692
693
694

  virtual ~ExpectationBase();

  // Where in the source file was the expectation spec defined?
  const char* file() const { return file_; }
  int line() const { return line_; }
695
  const char* source_text() const { return source_text_.c_str(); }
696
697
698
699
700
  // Returns the cardinality specified in the expectation spec.
  const Cardinality& cardinality() const { return cardinality_; }

  // Describes the source file location of this expectation.
  void DescribeLocationTo(::std::ostream* os) const {
701
    *os << FormatFileLocation(file(), line()) << " ";
702
703
704
705
  }

  // Describes how many times a function call matching this
  // expectation has occurred.
706
707
  void DescribeCallCountTo(::std::ostream* os) const
      GTEST_EXCLUSIVE_LOCK_REQUIRED_(g_gmock_mutex);
708
709
710
711

  // If this mock method has an extra matcher (i.e. .With(matcher)),
  // describes it to the ostream.
  virtual void MaybeDescribeExtraMatcherTo(::std::ostream* os) = 0;
712

713
714
715
716
717
718
  // Do not rely on this for correctness.
  // This is only for making human-readable test output easier to understand.
  void UntypedDescription(std::string description) {
    description_ = std::move(description);
  }

719
 protected:
720
  friend class ::testing::Expectation;
721
  friend class UntypedFunctionMockerBase;
722
723
724

  enum Clause {
    // Don't change the order of the enum members!
725
726
727
728
    kNone,
    kWith,
    kTimes,
    kInSequence,
729
    kAfter,
730
731
    kWillOnce,
    kWillRepeatedly,
732
    kRetiresOnSaturation
733
734
  };

735
736
  typedef std::vector<const void*> UntypedActions;

737
738
739
740
  // Returns an Expectation object that references and co-owns this
  // expectation.
  virtual Expectation GetHandle() = 0;

741
  // Asserts that the EXPECT_CALL() statement has the given property.
742
743
  void AssertSpecProperty(bool property,
                          const std::string& failure_message) const {
744
745
746
747
    Assert(property, file_, line_, failure_message);
  }

  // Expects that the EXPECT_CALL() statement has the given property.
748
749
  void ExpectSpecProperty(bool property,
                          const std::string& failure_message) const {
750
751
752
753
754
755
756
    Expect(property, file_, line_, failure_message);
  }

  // Explicitly specifies the cardinality of this expectation.  Used
  // by the subclasses to implement the .Times() clause.
  void SpecifyCardinality(const Cardinality& cardinality);

757
758
  // Returns true if and only if the user specified the cardinality
  // explicitly using a .Times().
759
760
761
  bool cardinality_specified() const { return cardinality_specified_; }

  // Sets the cardinality of this expectation spec.
762
763
  void set_cardinality(const Cardinality& a_cardinality) {
    cardinality_ = a_cardinality;
764
765
766
767
768
769
770
  }

  // The following group of methods should only be called after the
  // EXPECT_CALL() statement, and only when g_gmock_mutex is held by
  // the current thread.

  // Retires all pre-requisites of this expectation.
771
  void RetireAllPreRequisites() GTEST_EXCLUSIVE_LOCK_REQUIRED_(g_gmock_mutex);
772

773
  // Returns true if and only if this expectation is retired.
774
  bool is_retired() const GTEST_EXCLUSIVE_LOCK_REQUIRED_(g_gmock_mutex) {
775
776
777
778
779
    g_gmock_mutex.AssertHeld();
    return retired_;
  }

  // Retires this expectation.
780
  void Retire() GTEST_EXCLUSIVE_LOCK_REQUIRED_(g_gmock_mutex) {
781
782
783
784
    g_gmock_mutex.AssertHeld();
    retired_ = true;
  }

785
786
787
  // Returns a human-readable description of this expectation.
  // Do not rely on this for correctness. It is only for human readability.
  const std::string& GetDescription() const { return description_; }
788

789
  // Returns true if and only if this expectation is satisfied.
790
  bool IsSatisfied() const GTEST_EXCLUSIVE_LOCK_REQUIRED_(g_gmock_mutex) {
791
792
793
794
    g_gmock_mutex.AssertHeld();
    return cardinality().IsSatisfiedByCallCount(call_count_);
  }

795
  // Returns true if and only if this expectation is saturated.
796
  bool IsSaturated() const GTEST_EXCLUSIVE_LOCK_REQUIRED_(g_gmock_mutex) {
797
798
799
800
    g_gmock_mutex.AssertHeld();
    return cardinality().IsSaturatedByCallCount(call_count_);
  }

801
  // Returns true if and only if this expectation is over-saturated.
802
  bool IsOverSaturated() const GTEST_EXCLUSIVE_LOCK_REQUIRED_(g_gmock_mutex) {
803
804
805
806
    g_gmock_mutex.AssertHeld();
    return cardinality().IsOverSaturatedByCallCount(call_count_);
  }

807
808
  // Returns true if and only if all pre-requisites of this expectation are
  // satisfied.
809
810
  bool AllPrerequisitesAreSatisfied() const
      GTEST_EXCLUSIVE_LOCK_REQUIRED_(g_gmock_mutex);
811
812

  // Adds unsatisfied pre-requisites of this expectation to 'result'.
813
814
  void FindUnsatisfiedPrerequisites(ExpectationSet* result) const
      GTEST_EXCLUSIVE_LOCK_REQUIRED_(g_gmock_mutex);
815
816

  // Returns the number this expectation has been invoked.
817
  int call_count() const GTEST_EXCLUSIVE_LOCK_REQUIRED_(g_gmock_mutex) {
818
819
820
821
822
    g_gmock_mutex.AssertHeld();
    return call_count_;
  }

  // Increments the number this expectation has been invoked.
823
  void IncrementCallCount() GTEST_EXCLUSIVE_LOCK_REQUIRED_(g_gmock_mutex) {
824
825
826
827
    g_gmock_mutex.AssertHeld();
    call_count_++;
  }

828
829
830
831
  // Checks the action count (i.e. the number of WillOnce() and
  // WillRepeatedly() clauses) against the cardinality if this hasn't
  // been done before.  Prints a warning if there are too many or too
  // few actions.
832
  void CheckActionCountIfNotDone() const GTEST_LOCK_EXCLUDED_(mutex_);
833

834
835
836
837
  friend class ::testing::Sequence;
  friend class ::testing::internal::ExpectationTester;

  template <typename Function>
838
  friend class TypedExpectation;
839

840
841
842
  // Implements the .Times() clause.
  void UntypedTimes(const Cardinality& a_cardinality);

843
844
  // This group of fields are part of the spec and won't change after
  // an EXPECT_CALL() statement finishes.
845
846
  const char* file_;               // The file that contains the expectation.
  int line_;                       // The line number of the expectation.
847
  const std::string source_text_;  // The EXPECT_CALL(...) source text.
848
  std::string description_;        // User-readable name for the expectation.
849
  // True if and only if the cardinality is specified explicitly.
850
  bool cardinality_specified_;
851
  Cardinality cardinality_;  // The cardinality of the expectation.
852
853
  // The immediate pre-requisites (i.e. expectations that must be
  // satisfied before this expectation can be matched) of this
misterg's avatar
misterg committed
854
  // expectation.  We use std::shared_ptr in the set because we want an
855
856
857
858
  // Expectation object to be co-owned by its FunctionMocker and its
  // successors.  This allows multiple mock objects to be deleted at
  // different times.
  ExpectationSet immediate_prerequisites_;
859
860
861
862

  // This group of fields are the current state of the expectation,
  // and can change as the mock function is called.
  int call_count_;  // How many times this expectation has been invoked.
863
  bool retired_;    // True if and only if this expectation has retired.
864
865
866
867
868
869
  UntypedActions untyped_actions_;
  bool extra_matcher_specified_;
  bool repeated_action_specified_;  // True if a WillRepeatedly() was specified.
  bool retires_on_saturation_;
  Clause last_clause_;
  mutable bool action_count_checked_;  // Under mutex_.
870
871
  mutable Mutex mutex_;                // Protects action_count_checked_.
};                                     // class ExpectationBase
872
873

template <typename F>
874
875
876
877
878
879
880
881
class TypedExpectation;

// Implements an expectation for the given function type.
template <typename R, typename... Args>
class TypedExpectation<R(Args...)> : public ExpectationBase {
 private:
  using F = R(Args...);

882
883
884
885
886
 public:
  typedef typename Function<F>::ArgumentTuple ArgumentTuple;
  typedef typename Function<F>::ArgumentMatcherTuple ArgumentMatcherTuple;
  typedef typename Function<F>::Result Result;

Abseil Team's avatar
Abseil Team committed
887
  TypedExpectation(FunctionMocker<F>* owner, const char* a_file, int a_line,
888
                   const std::string& a_source_text,
889
                   const ArgumentMatcherTuple& m)
890
      : ExpectationBase(a_file, a_line, a_source_text),
891
892
        owner_(owner),
        matchers_(m),
Abseil Team's avatar
Abseil Team committed
893
894
895
896
        // By default, extra_matcher_ should match anything.  However,
        // we cannot initialize it with _ as that causes ambiguity between
        // Matcher's copy and move constructor for some argument types.
        extra_matcher_(A<const ArgumentTuple&>()),
897
        repeated_action_(DoDefault()) {}
898

Abseil Team's avatar
Abseil Team committed
899
  ~TypedExpectation() override {
900
901
902
    // Check the validity of the action count if it hasn't been done
    // yet (for example, if the expectation was never used).
    CheckActionCountIfNotDone();
903
904
905
906
    for (UntypedActions::const_iterator it = untyped_actions_.begin();
         it != untyped_actions_.end(); ++it) {
      delete static_cast<const Action<F>*>(*it);
    }
907
908
  }

909
  // Implements the .With() clause.
910
  TypedExpectation& With(const Matcher<const ArgumentTuple&>& m) {
911
    if (last_clause_ == kWith) {
912
      ExpectSpecProperty(false,
913
                         ".With() cannot appear "
914
915
                         "more than once in an EXPECT_CALL().");
    } else {
916
917
      ExpectSpecProperty(last_clause_ < kWith,
                         ".With() must be the first "
918
919
                         "clause in an EXPECT_CALL().");
    }
920
    last_clause_ = kWith;
921
922

    extra_matcher_ = m;
923
    extra_matcher_specified_ = true;
924
925
926
    return *this;
  }

927
928
929
930
  // Do not rely on this for correctness.
  // This is only for making human-readable test output easier to understand.
  TypedExpectation& Description(std::string name) {
    ExpectationBase::UntypedDescription(std::move(name));
931
932
933
    return *this;
  }

934
  // Implements the .Times() clause.
935
  TypedExpectation& Times(const Cardinality& a_cardinality) {
936
    ExpectationBase::UntypedTimes(a_cardinality);
937
938
939
940
    return *this;
  }

  // Implements the .Times() clause.
941
  TypedExpectation& Times(int n) { return Times(Exactly(n)); }
942
943

  // Implements the .InSequence() clause.
944
  TypedExpectation& InSequence(const Sequence& s) {
945
    ExpectSpecProperty(last_clause_ <= kInSequence,
946
947
                       ".InSequence() cannot appear after .After(),"
                       " .WillOnce(), .WillRepeatedly(), or "
948
                       ".RetiresOnSaturation().");
949
    last_clause_ = kInSequence;
950

951
    s.AddExpectation(GetHandle());
952
953
    return *this;
  }
954
  TypedExpectation& InSequence(const Sequence& s1, const Sequence& s2) {
955
956
    return InSequence(s1).InSequence(s2);
  }
957
958
  TypedExpectation& InSequence(const Sequence& s1, const Sequence& s2,
                               const Sequence& s3) {
959
960
    return InSequence(s1, s2).InSequence(s3);
  }
961
962
  TypedExpectation& InSequence(const Sequence& s1, const Sequence& s2,
                               const Sequence& s3, const Sequence& s4) {
963
964
    return InSequence(s1, s2, s3).InSequence(s4);
  }
965
966
967
  TypedExpectation& InSequence(const Sequence& s1, const Sequence& s2,
                               const Sequence& s3, const Sequence& s4,
                               const Sequence& s5) {
968
969
970
    return InSequence(s1, s2, s3, s4).InSequence(s5);
  }

971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
  // Implements that .After() clause.
  TypedExpectation& After(const ExpectationSet& s) {
    ExpectSpecProperty(last_clause_ <= kAfter,
                       ".After() cannot appear after .WillOnce(),"
                       " .WillRepeatedly(), or "
                       ".RetiresOnSaturation().");
    last_clause_ = kAfter;

    for (ExpectationSet::const_iterator it = s.begin(); it != s.end(); ++it) {
      immediate_prerequisites_ += *it;
    }
    return *this;
  }
  TypedExpectation& After(const ExpectationSet& s1, const ExpectationSet& s2) {
    return After(s1).After(s2);
  }
  TypedExpectation& After(const ExpectationSet& s1, const ExpectationSet& s2,
                          const ExpectationSet& s3) {
    return After(s1, s2).After(s3);
  }
  TypedExpectation& After(const ExpectationSet& s1, const ExpectationSet& s2,
                          const ExpectationSet& s3, const ExpectationSet& s4) {
    return After(s1, s2, s3).After(s4);
  }
  TypedExpectation& After(const ExpectationSet& s1, const ExpectationSet& s2,
                          const ExpectationSet& s3, const ExpectationSet& s4,
                          const ExpectationSet& s5) {
    return After(s1, s2, s3, s4).After(s5);
  }

1001
1002
  // Preferred, type-safe overload: consume anything that can be directly
  // converted to a OnceAction, except for Action<F> objects themselves.
1003
  TypedExpectation& WillOnce(OnceAction<F> once_action) {
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
    // Call the overload below, smuggling the OnceAction as a copyable callable.
    // We know this is safe because a WillOnce action will not be called more
    // than once.
    return WillOnce(Action<F>(ActionAdaptor{
        std::make_shared<OnceAction<F>>(std::move(once_action)),
    }));
  }

  // Fallback overload: accept Action<F> objects and those actions that define
  // `operator Action<F>` but not `operator OnceAction<F>`.
  //
  // This is templated in order to cause the overload above to be preferred
  // when the input is convertible to either type.
  template <int&... ExplicitArgumentBarrier, typename = void>
  TypedExpectation& WillOnce(Action<F> action) {
1019
    ExpectSpecProperty(last_clause_ <= kWillOnce,
1020
1021
                       ".WillOnce() cannot appear after "
                       ".WillRepeatedly() or .RetiresOnSaturation().");
1022
    last_clause_ = kWillOnce;
1023

1024
    untyped_actions_.push_back(new Action<F>(std::move(action)));
1025

1026
    if (!cardinality_specified()) {
1027
      set_cardinality(Exactly(static_cast<int>(untyped_actions_.size())));
1028
1029
1030
1031
1032
    }
    return *this;
  }

  // Implements the .WillRepeatedly() clause.
1033
  TypedExpectation& WillRepeatedly(const Action<F>& action) {
1034
    if (last_clause_ == kWillRepeatedly) {
1035
1036
1037
1038
      ExpectSpecProperty(false,
                         ".WillRepeatedly() cannot appear "
                         "more than once in an EXPECT_CALL().");
    } else {
1039
      ExpectSpecProperty(last_clause_ < kWillRepeatedly,
1040
1041
1042
                         ".WillRepeatedly() cannot appear "
                         "after .RetiresOnSaturation().");
    }
1043
    last_clause_ = kWillRepeatedly;
1044
1045
1046
1047
    repeated_action_specified_ = true;

    repeated_action_ = action;
    if (!cardinality_specified()) {
1048
      set_cardinality(AtLeast(static_cast<int>(untyped_actions_.size())));
1049
1050
1051
1052
1053
1054
1055
1056
1057
    }

    // Now that no more action clauses can be specified, we check
    // whether their count makes sense.
    CheckActionCountIfNotDone();
    return *this;
  }

  // Implements the .RetiresOnSaturation() clause.
1058
  TypedExpectation& RetiresOnSaturation() {
1059
    ExpectSpecProperty(last_clause_ < kRetiresOnSaturation,
1060
1061
                       ".RetiresOnSaturation() cannot appear "
                       "more than once.");
1062
    last_clause_ = kRetiresOnSaturation;
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
    retires_on_saturation_ = true;

    // Now that no more action clauses can be specified, we check
    // whether their count makes sense.
    CheckActionCountIfNotDone();
    return *this;
  }

  // Returns the matchers for the arguments as specified inside the
  // EXPECT_CALL() macro.
1073
  const ArgumentMatcherTuple& matchers() const { return matchers_; }
1074

1075
  // Returns the matcher specified by the .With() clause.
1076
1077
1078
1079
1080
1081
1082
  const Matcher<const ArgumentTuple&>& extra_matcher() const {
    return extra_matcher_;
  }

  // Returns the action specified by the .WillRepeatedly() clause.
  const Action<F>& repeated_action() const { return repeated_action_; }

1083
1084
  // If this mock method has an extra matcher (i.e. .With(matcher)),
  // describes it to the ostream.
Abseil Team's avatar
Abseil Team committed
1085
  void MaybeDescribeExtraMatcherTo(::std::ostream* os) override {
1086
1087
1088
1089
1090
1091
1092
    if (extra_matcher_specified_) {
      *os << "    Expected args: ";
      extra_matcher_.DescribeTo(os);
      *os << "\n";
    }
  }

1093
1094
 private:
  template <typename Function>
Abseil Team's avatar
Abseil Team committed
1095
  friend class FunctionMocker;
1096

1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
  // An adaptor that turns a OneAction<F> into something compatible with
  // Action<F>. Must be called at most once.
  struct ActionAdaptor {
    std::shared_ptr<OnceAction<R(Args...)>> once_action;

    R operator()(Args&&... args) const {
      return std::move(*once_action).Call(std::forward<Args>(args)...);
    }
  };

1107
1108
  // Returns an Expectation object that references and co-owns this
  // expectation.
Abseil Team's avatar
Abseil Team committed
1109
  Expectation GetHandle() override { return owner_->GetHandleOf(this); }
1110

1111
1112
1113
1114
  // The following methods will be called only after the EXPECT_CALL()
  // statement finishes and when the current thread holds
  // g_gmock_mutex.

1115
  // Returns true if and only if this expectation matches the given arguments.
1116
1117
  bool Matches(const ArgumentTuple& args) const
      GTEST_EXCLUSIVE_LOCK_REQUIRED_(g_gmock_mutex) {
1118
1119
1120
1121
    g_gmock_mutex.AssertHeld();
    return TupleMatches(matchers_, args) && extra_matcher_.Matches(args);
  }

1122
1123
  // Returns true if and only if this expectation should handle the given
  // arguments.
1124
1125
  bool ShouldHandleArguments(const ArgumentTuple& args) const
      GTEST_EXCLUSIVE_LOCK_REQUIRED_(g_gmock_mutex) {
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
    g_gmock_mutex.AssertHeld();

    // In case the action count wasn't checked when the expectation
    // was defined (e.g. if this expectation has no WillRepeatedly()
    // or RetiresOnSaturation() clause), we check it when the
    // expectation is used for the first time.
    CheckActionCountIfNotDone();
    return !is_retired() && AllPrerequisitesAreSatisfied() && Matches(args);
  }

  // Describes the result of matching the arguments against this
  // expectation to the given ostream.
1138
1139
  void ExplainMatchResultTo(const ArgumentTuple& args, ::std::ostream* os) const
      GTEST_EXCLUSIVE_LOCK_REQUIRED_(g_gmock_mutex) {
1140
1141
1142
1143
1144
1145
1146
    g_gmock_mutex.AssertHeld();

    if (is_retired()) {
      *os << "         Expected: the expectation is active\n"
          << "           Actual: it is retired\n";
    } else if (!Matches(args)) {
      if (!TupleMatches(matchers_, args)) {
1147
        ExplainMatchFailureTupleTo(matchers_, args, os);
1148
      }
zhanyong.wan's avatar
zhanyong.wan committed
1149
1150
      StringMatchResultListener listener;
      if (!extra_matcher_.MatchAndExplain(args, &listener)) {
1151
        *os << "    Expected args: ";
1152
        extra_matcher_.DescribeTo(os);
1153
        *os << "\n           Actual: don't match";
1154

1155
        internal::PrintIfNotEmpty(listener.str(), os);
1156
1157
1158
1159
1160
1161
        *os << "\n";
      }
    } else if (!AllPrerequisitesAreSatisfied()) {
      *os << "         Expected: all pre-requisites are satisfied\n"
          << "           Actual: the following immediate pre-requisites "
          << "are not satisfied:\n";
1162
      ExpectationSet unsatisfied_prereqs;
1163
1164
      FindUnsatisfiedPrerequisites(&unsatisfied_prereqs);
      int i = 0;
1165
      for (ExpectationSet::const_iterator it = unsatisfied_prereqs.begin();
1166
           it != unsatisfied_prereqs.end(); ++it) {
1167
        it->expectation_base()->DescribeLocationTo(os);
1168
1169
1170
1171
1172
        *os << "pre-requisite #" << i++ << "\n";
      }
      *os << "                   (end of pre-requisites)\n";
    } else {
      // This line is here just for completeness' sake.  It will never
1173
      // be executed as currently the ExplainMatchResultTo() function
1174
1175
1176
1177
1178
1179
1180
      // is called only when the mock function call does NOT match the
      // expectation.
      *os << "The call matches the expectation.\n";
    }
  }

  // Returns the action that should be taken for the current invocation.
Abseil Team's avatar
Abseil Team committed
1181
1182
1183
  const Action<F>& GetCurrentAction(const FunctionMocker<F>* mocker,
                                    const ArgumentTuple& args) const
      GTEST_EXCLUSIVE_LOCK_REQUIRED_(g_gmock_mutex) {
1184
1185
1186
1187
1188
1189
    g_gmock_mutex.AssertHeld();
    const int count = call_count();
    Assert(count >= 1, __FILE__, __LINE__,
           "call_count() is <= 0 when GetCurrentAction() is "
           "called - this should never happen.");

1190
    const int action_count = static_cast<int>(untyped_actions_.size());
1191
1192
1193
1194
1195
1196
    if (action_count > 0 && !repeated_action_specified_ &&
        count > action_count) {
      // If there is at least one WillOnce() and no WillRepeatedly(),
      // we warn the user when the WillOnce() clauses ran out.
      ::std::stringstream ss;
      DescribeLocationTo(&ss);
1197
      ss << "Actions ran out in " << source_text() << "...\n"
1198
1199
1200
         << "Called " << count << " times, but only " << action_count
         << " WillOnce()" << (action_count == 1 ? " is" : "s are")
         << " specified - ";
1201
      mocker->DescribeDefaultActionTo(args, &ss);
zhanyong.wan's avatar
zhanyong.wan committed
1202
      Log(kWarning, ss.str(), 1);
1203
1204
    }

1205
1206
1207
1208
    return count <= action_count
               ? *static_cast<const Action<F>*>(
                     untyped_actions_[static_cast<size_t>(count - 1)])
               : repeated_action();
1209
1210
1211
1212
1213
1214
1215
  }

  // Given the arguments of a mock function call, if the call will
  // over-saturate this expectation, returns the default action;
  // otherwise, returns the next action in this expectation.  Also
  // describes *what* happened to 'what', and explains *why* Google
  // Mock does it to 'why'.  This method is not const as it calls
1216
1217
  // IncrementCallCount().  A return value of NULL means the default
  // action.
Abseil Team's avatar
Abseil Team committed
1218
1219
1220
1221
1222
  const Action<F>* GetActionForArguments(const FunctionMocker<F>* mocker,
                                         const ArgumentTuple& args,
                                         ::std::ostream* what,
                                         ::std::ostream* why)
      GTEST_EXCLUSIVE_LOCK_REQUIRED_(g_gmock_mutex) {
1223
    g_gmock_mutex.AssertHeld();
1224
    const ::std::string& expectation_description = GetDescription();
1225
1226
1227
    if (IsSaturated()) {
      // We have an excessive call.
      IncrementCallCount();
1228
1229
1230
      *what << "Mock function ";
      if (!expectation_description.empty()) {
        *what << "\"" << expectation_description << "\" ";
1231
      }
1232
      *what << "called more times than expected - ";
1233
1234
1235
      mocker->DescribeDefaultActionTo(args, what);
      DescribeCallCountTo(why);

1236
      return nullptr;
1237
1238
1239
1240
1241
    }

    IncrementCallCount();
    RetireAllPreRequisites();

1242
    if (retires_on_saturation_ && IsSaturated()) {
1243
1244
1245
1246
      Retire();
    }

    // Must be done after IncrementCount()!
1247
1248
1249
    *what << "Mock function ";
    if (!expectation_description.empty()) {
      *what << "\"" << expectation_description << "\" ";
1250
    }
1251
    *what << "call matches " << source_text() << "...\n";
1252
    return &(GetCurrentAction(mocker, args));
1253
1254
1255
1256
  }

  // All the fields below won't change once the EXPECT_CALL()
  // statement finishes.
Abseil Team's avatar
Abseil Team committed
1257
  FunctionMocker<F>* const owner_;
1258
1259
1260
  ArgumentMatcherTuple matchers_;
  Matcher<const ArgumentTuple&> extra_matcher_;
  Action<F> repeated_action_;
1261

1262
1263
  TypedExpectation(const TypedExpectation&) = delete;
  TypedExpectation& operator=(const TypedExpectation&) = delete;
1264
};  // class TypedExpectation
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275

// A MockSpec object is used by ON_CALL() or EXPECT_CALL() for
// specifying the default behavior of, or expectation on, a mock
// function.

// Note: class MockSpec 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 MockSpec in
// ::testing::internal and import it into ::testing.

1276
// Logs a message including file and line number information.
1277
1278
GTEST_API_ void LogWithLocation(testing::internal::LogSeverity severity,
                                const char* file, int line,
1279
                                const std::string& message);
1280

1281
1282
1283
1284
template <typename F>
class MockSpec {
 public:
  typedef typename internal::Function<F>::ArgumentTuple ArgumentTuple;
1285
1286
  typedef
      typename internal::Function<F>::ArgumentMatcherTuple ArgumentMatcherTuple;
1287
1288
1289

  // Constructs a MockSpec object, given the function mocker object
  // that the spec is associated with.
Abseil Team's avatar
Abseil Team committed
1290
  MockSpec(internal::FunctionMocker<F>* function_mocker,
Gennadiy Civil's avatar
Gennadiy Civil committed
1291
1292
           const ArgumentMatcherTuple& matchers)
      : function_mocker_(function_mocker), matchers_(matchers) {}
1293
1294
1295

  // Adds a new default action spec to the function mocker and returns
  // the newly created spec.
1296
1297
1298
  internal::OnCallSpec<F>& InternalDefaultActionSetAt(const char* file,
                                                      int line, const char* obj,
                                                      const char* call) {
zhanyong.wan's avatar
zhanyong.wan committed
1299
    LogWithLocation(internal::kInfo, file, line,
1300
                    std::string("ON_CALL(") + obj + ", " + call + ") invoked");
1301
    return function_mocker_->AddNewOnCallSpec(file, line, matchers_);
1302
1303
1304
1305
  }

  // Adds a new expectation spec to the function mocker and returns
  // the newly created spec.
1306
1307
1308
  internal::TypedExpectation<F>& InternalExpectedAt(const char* file, int line,
                                                    const char* obj,
                                                    const char* call) {
1309
1310
    const std::string source_text(std::string("EXPECT_CALL(") + obj + ", " +
                                  call + ")");
zhanyong.wan's avatar
zhanyong.wan committed
1311
    LogWithLocation(internal::kInfo, file, line, source_text + " invoked");
1312
1313
    return function_mocker_->AddNewExpectation(file, line, source_text,
                                               matchers_);
1314
1315
  }

1316
1317
1318
1319
1320
1321
1322
  // This operator overload is used to swallow the superfluous parameter list
  // introduced by the ON/EXPECT_CALL macros. See the macro comments for more
  // explanation.
  MockSpec<F>& operator()(const internal::WithoutMatchers&, void* const) {
    return *this;
  }

1323
1324
1325
1326
1327
 private:
  template <typename Function>
  friend class internal::FunctionMocker;

  // The function mocker that owns this spec.
Abseil Team's avatar
Abseil Team committed
1328
  internal::FunctionMocker<F>* const function_mocker_;
1329
1330
1331
1332
  // The argument matchers specified in the spec.
  ArgumentMatcherTuple matchers_;
};  // class MockSpec

1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
// Wrapper type for generically holding an ordinary value or lvalue reference.
// If T is not a reference type, it must be copyable or movable.
// ReferenceOrValueWrapper<T> is movable, and will also be copyable unless
// T is a move-only value type (which means that it will always be copyable
// if the current platform does not support move semantics).
//
// The primary template defines handling for values, but function header
// comments describe the contract for the whole template (including
// specializations).
template <typename T>
class ReferenceOrValueWrapper {
 public:
  // Constructs a wrapper from the given value/reference.
1346
  explicit ReferenceOrValueWrapper(T value) : value_(std::move(value)) {}
1347
1348
1349
1350

  // Unwraps and returns the underlying value/reference, exactly as
  // originally passed. The behavior of calling this more than once on
  // the same object is unspecified.
Abseil Team's avatar
Abseil Team committed
1351
  T Unwrap() { return std::move(value_); }
1352
1353
1354

  // Provides nondestructive access to the underlying value/reference.
  // Always returns a const reference (more precisely,
kuzkry's avatar
kuzkry committed
1355
1356
  // const std::add_lvalue_reference<T>::type). The behavior of calling this
  // after calling Unwrap on the same object is unspecified.
1357
  const T& Peek() const { return value_; }
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370

 private:
  T value_;
};

// Specialization for lvalue reference types. See primary template
// for documentation.
template <typename T>
class ReferenceOrValueWrapper<T&> {
 public:
  // Workaround for debatable pass-by-reference lint warning (c-library-team
  // policy precludes NOLINT in this context)
  typedef T& reference;
1371
  explicit ReferenceOrValueWrapper(reference ref) : value_ptr_(&ref) {}
1372
1373
1374
1375
1376
1377
1378
  T& Unwrap() { return *value_ptr_; }
  const T& Peek() const { return *value_ptr_; }

 private:
  T* value_ptr_;
};

1379
// Prints the held value as an action's result to os.
1380
template <typename T>
1381
1382
1383
1384
1385
void PrintAsActionResult(const T& result, std::ostream& os) {
  os << "\n          Returns: ";
  // T may be a reference type, so we don't use UniversalPrint().
  UniversalPrinter<T>::Print(result, &os);
}
1386

1387
1388
1389
1390
// Reports an uninteresting call (whose description is in msg) in the
// manner specified by 'reaction'.
GTEST_API_ void ReportUninterestingCall(CallReaction reaction,
                                        const std::string& msg);
1391

1392
1393
// A generic RAII type that runs a user-provided function in its destructor.
class Cleanup final {
1394
 public:
1395
1396
  explicit Cleanup(std::function<void()> f) : f_(std::move(f)) {}
  ~Cleanup() { f_(); }
1397
1398

 private:
1399
  std::function<void()> f_;
1400
1401
};

1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
struct UntypedFunctionMockerBase::UninterestingCallCleanupHandler {
  CallReaction reaction;
  std::stringstream& ss;

  ~UninterestingCallCleanupHandler() {
    ReportUninterestingCall(reaction, ss.str());
  }
};

struct UntypedFunctionMockerBase::FailureCleanupHandler {
  std::stringstream& ss;
  std::stringstream& why;
  std::stringstream& loc;
  const ExpectationBase* untyped_expectation;
  bool found;
  bool is_excessive;

  ~FailureCleanupHandler() {
    ss << "\n" << why.str();

    if (!found) {
      // No expectation matches this call - reports a failure.
      Expect(false, nullptr, -1, ss.str());
    } else if (is_excessive) {
      // We had an upper-bound violation and the failure message is in ss.
      Expect(false, untyped_expectation->file(), untyped_expectation->line(),
             ss.str());
    } else {
      // We had an expected call and the matching expectation is
      // described in ss.
      Log(kInfo, loc.str() + ss.str(), 2);
    }
  }
};

1437
template <typename F>
Abseil Team's avatar
Abseil Team committed
1438
1439
1440
class FunctionMocker;

template <typename R, typename... Args>
Abseil Team's avatar
Abseil Team committed
1441
class FunctionMocker<R(Args...)> final : public UntypedFunctionMockerBase {
Abseil Team's avatar
Abseil Team committed
1442
1443
  using F = R(Args...);

1444
 public:
Abseil Team's avatar
Abseil Team committed
1445
1446
1447
  using Result = R;
  using ArgumentTuple = std::tuple<Args...>;
  using ArgumentMatcherTuple = std::tuple<Matcher<Args>...>;
1448

Abseil Team's avatar
Abseil Team committed
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
  FunctionMocker() {}

  // There is no generally useful and implementable semantics of
  // copying a mock object, so copying a mock is usually a user error.
  // Thus we disallow copying function mockers.  If the user really
  // wants to copy a mock object, they should implement their own copy
  // operation, for example:
  //
  //   class MockFoo : public Foo {
  //    public:
  //     // Defines a copy constructor explicitly.
  //     MockFoo(const MockFoo& src) {}
  //     ...
  //   };
  FunctionMocker(const FunctionMocker&) = delete;
  FunctionMocker& operator=(const FunctionMocker&) = delete;
1465
1466
1467
1468

  // The destructor verifies that all expectations on this mock
  // function have been satisfied.  If not, it will report Google Test
  // non-fatal failures for the violations.
Abseil Team's avatar
Abseil Team committed
1469
  ~FunctionMocker() override GTEST_LOCK_EXCLUDED_(g_gmock_mutex) {
1470
1471
1472
    MutexLock l(&g_gmock_mutex);
    VerifyAndClearExpectationsLocked();
    Mock::UnregisterLocked(this);
1473
    ClearDefaultActionsLocked();
1474
1475
1476
1477
1478
  }

  // Returns the ON_CALL spec that matches this mock function with the
  // given arguments; returns NULL if no matching ON_CALL is found.
  // L = *
1479
1480
1481
  const OnCallSpec<F>* FindOnCallSpec(const ArgumentTuple& args) const {
    for (UntypedOnCallSpecs::const_reverse_iterator it =
             untyped_on_call_specs_.rbegin();
1482
1483
         it != untyped_on_call_specs_.rend(); ++it) {
      const OnCallSpec<F>* spec = static_cast<const OnCallSpec<F>*>(*it);
1484
      if (spec->Matches(args)) return spec;
1485
1486
    }

1487
    return nullptr;
1488
1489
  }

1490
1491
  // Performs the default action of this mock function on the given
  // arguments and returns the result. Asserts (or throws if
1492
  // exceptions are enabled) with a helpful call description if there
1493
1494
1495
  // is no valid return value. This method doesn't depend on the
  // mutable state of this object, and thus can be called concurrently
  // without locking.
1496
  // L = *
Abseil Team's avatar
Abseil Team committed
1497
  Result PerformDefaultAction(ArgumentTuple&& args,
Abseil Team's avatar
Abseil Team committed
1498
                              const std::string& call_description) const {
1499
    const OnCallSpec<F>* const spec = this->FindOnCallSpec(args);
1500
    if (spec != nullptr) {
Abseil Team's avatar
Abseil Team committed
1501
      return spec->GetAction().Perform(std::move(args));
1502
    }
1503
1504
    const std::string message =
        call_description +
1505
1506
1507
1508
1509
1510
1511
1512
1513
        "\n    The mock function has no default action "
        "set, and its return type has no default value set.";
#if GTEST_HAS_EXCEPTIONS
    if (!DefaultValue<Result>::Exists()) {
      throw std::runtime_error(message);
    }
#else
    Assert(DefaultValue<Result>::Exists(), "", -1, message);
#endif
1514
    return DefaultValue<Result>::Get();
1515
1516
  }

1517
1518
  // Implements UntypedFunctionMockerBase::ClearDefaultActionsLocked():
  // clears the ON_CALL()s set on this mock function.
Abseil Team's avatar
Abseil Team committed
1519
  void ClearDefaultActionsLocked() override
1520
      GTEST_EXCLUSIVE_LOCK_REQUIRED_(g_gmock_mutex) {
1521
    g_gmock_mutex.AssertHeld();
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533

    // Deleting our default actions may trigger other mock objects to be
    // deleted, for example if an action contains a reference counted smart
    // pointer to that mock object, and that is the last reference. So if we
    // delete our actions within the context of the global mutex we may deadlock
    // when this method is called again. Instead, make a copy of the set of
    // actions to delete, clear our set within the mutex, and then delete the
    // actions outside of the mutex.
    UntypedOnCallSpecs specs_to_delete;
    untyped_on_call_specs_.swap(specs_to_delete);

    g_gmock_mutex.Unlock();
1534
    for (UntypedOnCallSpecs::const_iterator it = specs_to_delete.begin();
1535
         it != specs_to_delete.end(); ++it) {
1536
      delete static_cast<const OnCallSpec<F>*>(*it);
1537
    }
1538
1539
1540
1541

    // Lock the mutex again, since the caller expects it to be locked when we
    // return.
    g_gmock_mutex.Lock();
1542
  }
1543

1544
1545
1546
  // Returns the result of invoking this mock function with the given
  // arguments.  This function can be safely called from multiple
  // threads concurrently.
Abseil Team's avatar
Abseil Team committed
1547
  Result Invoke(Args... args) GTEST_LOCK_EXCLUDED_(g_gmock_mutex) {
1548
    return InvokeWith(ArgumentTuple(std::forward<Args>(args)...));
1549
  }
1550

Abseil Team's avatar
Abseil Team committed
1551
1552
1553
1554
1555
1556
1557
1558
  MockSpec<F> With(Matcher<Args>... m) {
    return MockSpec<F>(this, ::std::make_tuple(std::move(m)...));
  }

 protected:
  template <typename Function>
  friend class MockSpec;

1559
  // Adds and returns a default action spec for this mock function.
1560
1561
1562
  OnCallSpec<F>& AddNewOnCallSpec(const char* file, int line,
                                  const ArgumentMatcherTuple& m)
      GTEST_LOCK_EXCLUDED_(g_gmock_mutex) {
1563
    Mock::RegisterUseByOnCallOrExpectCall(MockObject(), file, line);
1564
1565
1566
    OnCallSpec<F>* const on_call_spec = new OnCallSpec<F>(file, line, m);
    untyped_on_call_specs_.push_back(on_call_spec);
    return *on_call_spec;
1567
1568
1569
  }

  // Adds and returns an expectation spec for this mock function.
1570
1571
1572
1573
  TypedExpectation<F>& AddNewExpectation(const char* file, int line,
                                         const std::string& source_text,
                                         const ArgumentMatcherTuple& m)
      GTEST_LOCK_EXCLUDED_(g_gmock_mutex) {
1574
    Mock::RegisterUseByOnCallOrExpectCall(MockObject(), file, line);
1575
1576
    TypedExpectation<F>* const expectation =
        new TypedExpectation<F>(this, file, line, source_text, m);
misterg's avatar
misterg committed
1577
    const std::shared_ptr<ExpectationBase> untyped_expectation(expectation);
Gennadiy Civil's avatar
Gennadiy Civil committed
1578
1579
    // See the definition of untyped_expectations_ for why access to
    // it is unprotected here.
1580
    untyped_expectations_.push_back(untyped_expectation);
1581
1582
1583

    // Adds this expectation into the implicit sequence if there is one.
    Sequence* const implicit_sequence = g_gmock_implicit_sequence.get();
1584
    if (implicit_sequence != nullptr) {
1585
      implicit_sequence->AddExpectation(Expectation(untyped_expectation));
1586
1587
1588
1589
1590
1591
    }

    return *expectation;
  }

 private:
1592
1593
  template <typename Func>
  friend class TypedExpectation;
1594

1595
  // Some utilities needed for implementing UntypedInvokeWith().
1596
1597
1598
1599
1600
1601

  // Describes what default action will be performed for the given
  // arguments.
  // L = *
  void DescribeDefaultActionTo(const ArgumentTuple& args,
                               ::std::ostream* os) const {
1602
    const OnCallSpec<F>* const spec = FindOnCallSpec(args);
1603

1604
    if (spec == nullptr) {
1605
1606
      *os << (std::is_void<Result>::value ? "returning directly.\n"
                                          : "returning default value.\n");
1607
1608
    } else {
      *os << "taking default action specified at:\n"
1609
          << FormatFileLocation(spec->file(), spec->line()) << "\n";
1610
1611
1612
1613
1614
1615
    }
  }

  // Writes a message that the call is uninteresting (i.e. neither
  // explicitly expected nor explicitly unexpected) to the given
  // ostream.
Abseil Team's avatar
Abseil Team committed
1616
1617
1618
  void UntypedDescribeUninterestingCall(const void* untyped_args,
                                        ::std::ostream* os) const override
      GTEST_LOCK_EXCLUDED_(g_gmock_mutex) {
1619
1620
    const ArgumentTuple& args =
        *static_cast<const ArgumentTuple*>(untyped_args);
1621
1622
1623
    *os << "Uninteresting mock function call - ";
    DescribeDefaultActionTo(args, os);
    *os << "    Function call: " << Name();
vladlosev's avatar
vladlosev committed
1624
    UniversalPrint(args, os);
1625
1626
  }

1627
1628
1629
1630
1631
1632
1633
  // Returns the expectation that matches the given function arguments
  // (or NULL is there's no match); when a match is found,
  // untyped_action is set to point to the action that should be
  // performed (or NULL if the action is "do default"), and
  // is_excessive is modified to indicate whether the call exceeds the
  // expected number.
  //
1634
1635
1636
1637
1638
1639
1640
1641
1642
  // Critical section: We must find the matching expectation and the
  // corresponding action that needs to be taken in an ATOMIC
  // transaction.  Otherwise another thread may call this mock
  // method in the middle and mess up the state.
  //
  // However, performing the action has to be left out of the critical
  // section.  The reason is that we have no control on what the
  // action does (it can invoke an arbitrary user function or even a
  // mock function) and excessive locking could cause a dead lock.
Abseil Team's avatar
Abseil Team committed
1643
1644
1645
1646
  const ExpectationBase* UntypedFindMatchingExpectation(
      const void* untyped_args, const void** untyped_action, bool* is_excessive,
      ::std::ostream* what, ::std::ostream* why) override
      GTEST_LOCK_EXCLUDED_(g_gmock_mutex) {
1647
1648
    const ArgumentTuple& args =
        *static_cast<const ArgumentTuple*>(untyped_args);
1649
    MutexLock l(&g_gmock_mutex);
1650
    TypedExpectation<F>* exp = this->FindMatchingExpectationLocked(args);
1651
    if (exp == nullptr) {  // A match wasn't found.
1652
      this->FormatUnexpectedCallMessageLocked(args, what, why);
1653
      return nullptr;
1654
1655
1656
1657
1658
    }

    // This line must be done before calling GetActionForArguments(),
    // which will increment the call count for *exp and thus affect
    // its saturation status.
1659
1660
    *is_excessive = exp->IsSaturated();
    const Action<F>* action = exp->GetActionForArguments(this, args, what, why);
1661
1662
    if (action != nullptr && action->IsDoDefault())
      action = nullptr;  // Normalize "do default" to NULL.
1663
1664
1665
1666
1667
    *untyped_action = action;
    return exp;
  }

  // Prints the given function arguments to the ostream.
Abseil Team's avatar
Abseil Team committed
1668
1669
  void UntypedPrintArgs(const void* untyped_args,
                        ::std::ostream* os) const override {
1670
1671
1672
    const ArgumentTuple& args =
        *static_cast<const ArgumentTuple*>(untyped_args);
    UniversalPrint(args, os);
1673
1674
1675
1676
  }

  // Returns the expectation that matches the arguments, or NULL if no
  // expectation matches them.
1677
1678
  TypedExpectation<F>* FindMatchingExpectationLocked(const ArgumentTuple& args)
      const GTEST_EXCLUSIVE_LOCK_REQUIRED_(g_gmock_mutex) {
1679
    g_gmock_mutex.AssertHeld();
Gennadiy Civil's avatar
Gennadiy Civil committed
1680
1681
    // See the definition of untyped_expectations_ for why access to
    // it is unprotected here.
1682
1683
1684
1685
1686
    for (typename UntypedExpectations::const_reverse_iterator it =
             untyped_expectations_.rbegin();
         it != untyped_expectations_.rend(); ++it) {
      TypedExpectation<F>* const exp =
          static_cast<TypedExpectation<F>*>(it->get());
1687
1688
1689
1690
      if (exp->ShouldHandleArguments(args)) {
        return exp;
      }
    }
1691
    return nullptr;
1692
1693
1694
  }

  // Returns a message that the arguments don't match any expectation.
1695
1696
1697
1698
  void FormatUnexpectedCallMessageLocked(const ArgumentTuple& args,
                                         ::std::ostream* os,
                                         ::std::ostream* why) const
      GTEST_EXCLUSIVE_LOCK_REQUIRED_(g_gmock_mutex) {
1699
1700
1701
1702
1703
1704
1705
1706
    g_gmock_mutex.AssertHeld();
    *os << "\nUnexpected mock function call - ";
    DescribeDefaultActionTo(args, os);
    PrintTriedExpectationsLocked(args, why);
  }

  // Prints a list of expectations that have been tried against the
  // current mock function call.
1707
1708
1709
  void PrintTriedExpectationsLocked(const ArgumentTuple& args,
                                    ::std::ostream* why) const
      GTEST_EXCLUSIVE_LOCK_REQUIRED_(g_gmock_mutex) {
1710
    g_gmock_mutex.AssertHeld();
1711
    const size_t count = untyped_expectations_.size();
1712
    *why << "Google Mock tried the following " << count << " "
1713
1714
         << (count == 1 ? "expectation, but it didn't match"
                        : "expectations, but none matched")
1715
         << ":\n";
1716
    for (size_t i = 0; i < count; i++) {
1717
1718
      TypedExpectation<F>* const expectation =
          static_cast<TypedExpectation<F>*>(untyped_expectations_[i].get());
1719
      *why << "\n";
1720
      expectation->DescribeLocationTo(why);
1721
      if (count > 1) {
1722
        *why << "tried expectation #" << i << ": ";
1723
      }
1724
1725
1726
      *why << expectation->source_text() << "...\n";
      expectation->ExplainMatchResultTo(args, why);
      expectation->DescribeCallCountTo(why);
1727
1728
    }
  }
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775

  // Performs the given action (or the default if it's null) with the given
  // arguments and returns the action's result.
  // L = *
  R PerformAction(const void* untyped_action, ArgumentTuple&& args,
                  const std::string& call_description) const {
    if (untyped_action == nullptr) {
      return PerformDefaultAction(std::move(args), call_description);
    }

    // Make a copy of the action before performing it, in case the
    // action deletes the mock object (and thus deletes itself).
    const Action<F> action = *static_cast<const Action<F>*>(untyped_action);
    return action.Perform(std::move(args));
  }

  // Is it possible to store an object of the supplied type in a local variable
  // for the sake of printing it, then return it on to the caller?
  template <typename T>
  using can_print_result = internal::conjunction<
      // void can't be stored as an object (and we also don't need to print it).
      internal::negation<std::is_void<T>>,
      // Non-moveable types can't be returned on to the user, so there's no way
      // for us to intercept and print them.
      std::is_move_constructible<T>>;

  // Perform the supplied action, printing the result to os.
  template <typename T = R,
            typename std::enable_if<can_print_result<T>::value, int>::type = 0>
  R PerformActionAndPrintResult(const void* const untyped_action,
                                ArgumentTuple&& args,
                                const std::string& call_description,
                                std::ostream& os) {
    R result = PerformAction(untyped_action, std::move(args), call_description);

    PrintAsActionResult(result, os);
    return std::forward<R>(result);
  }

  // An overload for when it's not possible to print the result. In this case we
  // simply perform the action.
  template <typename T = R,
            typename std::enable_if<
                internal::negation<can_print_result<T>>::value, int>::type = 0>
  R PerformActionAndPrintResult(const void* const untyped_action,
                                ArgumentTuple&& args,
                                const std::string& call_description,
1776
                                std::ostream&) {
1777
1778
1779
1780
1781
1782
1783
    return PerformAction(untyped_action, std::move(args), call_description);
  }

  // Returns the result of invoking this mock function with the given
  // arguments. This function can be safely called from multiple
  // threads concurrently.
  R InvokeWith(ArgumentTuple&& args) GTEST_LOCK_EXCLUDED_(g_gmock_mutex);
Abseil Team's avatar
Abseil Team committed
1784
};  // class FunctionMocker
1785

1786
// Calculates the result of invoking this mock function with the given
1787
1788
1789
// arguments, prints it, and returns it.
template <typename R, typename... Args>
R FunctionMocker<R(Args...)>::InvokeWith(ArgumentTuple&& args)
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
    GTEST_LOCK_EXCLUDED_(g_gmock_mutex) {
  // See the definition of untyped_expectations_ for why access to it
  // is unprotected here.
  if (untyped_expectations_.size() == 0) {
    // No expectation is set on this mock method - we have an
    // uninteresting call.

    // We must get Google Mock's reaction on uninteresting calls
    // made on this mock object BEFORE performing the action,
    // because the action may DELETE the mock object and make the
    // following expression meaningless.
    const CallReaction reaction =
        Mock::GetReactionOnUninterestingCalls(MockObject());

    // True if and only if we need to print this call's arguments and return
    // value.  This definition must be kept in sync with
    // the behavior of ReportUninterestingCall().
    const bool need_to_report_uninteresting_call =
        // If the user allows this uninteresting call, we print it
        // only when they want informational messages.
        reaction == kAllow ? LogIsVisible(kInfo) :
                           // If the user wants this to be a warning, we print
                           // it only when they want to see warnings.
            reaction == kWarn
            ? LogIsVisible(kWarning)
            :
            // Otherwise, the user wants this to be an error, and we
            // should always print detailed information in the error.
            true;

    if (!need_to_report_uninteresting_call) {
      // Perform the action without printing the call information.
1822
1823
      return this->PerformDefaultAction(
          std::move(args), "Function call: " + std::string(Name()));
1824
1825
1826
1827
    }

    // Warns about the uninteresting call.
    ::std::stringstream ss;
1828
    this->UntypedDescribeUninterestingCall(&args, &ss);
1829

1830
1831
1832
1833
1834
    // Perform the action, print the result, and then report the uninteresting
    // call.
    //
    // We use RAII to do the latter in case R is void or a non-moveable type. In
    // either case we can't assign it to a local variable.
1835
1836
1837
1838
1839
1840
1841
1842
1843
    //
    // Note that std::bind() is essential here.
    // We *don't* use any local callback types (like lambdas).
    // Doing so slows down compilation dramatically because the *constructor* of
    // std::function<T> is re-instantiated with different template
    // parameters each time.
    const UninterestingCallCleanupHandler report_uninteresting_call = {
        reaction, ss
    };
1844

1845
    return PerformActionAndPrintResult(nullptr, std::move(args), ss.str(), ss);
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
  }

  bool is_excessive = false;
  ::std::stringstream ss;
  ::std::stringstream why;
  ::std::stringstream loc;
  const void* untyped_action = nullptr;

  // The UntypedFindMatchingExpectation() function acquires and
  // releases g_gmock_mutex.

  const ExpectationBase* const untyped_expectation =
1858
      this->UntypedFindMatchingExpectation(&args, &untyped_action,
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
                                           &is_excessive, &ss, &why);
  const bool found = untyped_expectation != nullptr;

  // True if and only if we need to print the call's arguments
  // and return value.
  // This definition must be kept in sync with the uses of Expect()
  // and Log() in this function.
  const bool need_to_report_call =
      !found || is_excessive || LogIsVisible(kInfo);
  if (!need_to_report_call) {
    // Perform the action without printing the call information.
1870
    return PerformAction(untyped_action, std::move(args), "");
1871
1872
1873
  }

  ss << "    Function call: " << Name();
1874
  this->UntypedPrintArgs(&args, &ss);
1875
1876
1877
1878
1879
1880
1881

  // In case the action deletes a piece of the expectation, we
  // generate the message beforehand.
  if (found && !is_excessive) {
    untyped_expectation->DescribeLocationTo(&loc);
  }

1882
1883
1884
1885
1886
  // Perform the action, print the result, and then fail or log in whatever way
  // is appropriate.
  //
  // We use RAII to do the latter in case R is void or a non-moveable type. In
  // either case we can't assign it to a local variable.
1887
1888
1889
1890
1891
1892
1893
1894
  //
  // Note that we *don't* use any local callback types (like lambdas) here.
  // Doing so slows down compilation dramatically because the *constructor* of
  // std::function<T> is re-instantiated with different template
  // parameters each time.
  const FailureCleanupHandler handle_failures = {
      ss, why, loc, untyped_expectation, found, is_excessive
  };
1895

1896
1897
  return PerformActionAndPrintResult(untyped_action, std::move(args), ss.str(),
                                     ss);
1898
}
1899
1900
1901

}  // namespace internal

1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
namespace internal {

template <typename F>
class MockFunction;

template <typename R, typename... Args>
class MockFunction<R(Args...)> {
 public:
  MockFunction(const MockFunction&) = delete;
  MockFunction& operator=(const MockFunction&) = delete;

  std::function<R(Args...)> AsStdFunction() {
    return [this](Args... args) -> R {
      return this->Call(std::forward<Args>(args)...);
    };
  }

  // Implementation detail: the expansion of the MOCK_METHOD macro.
  R Call(Args... args) {
    mock_.SetOwnerAndName(this, "Call");
    return mock_.Invoke(std::forward<Args>(args)...);
  }

  MockSpec<R(Args...)> gmock_Call(Matcher<Args>... m) {
    mock_.RegisterOwner(this);
    return mock_.With(std::move(m)...);
  }

1930
  MockSpec<R(Args...)> gmock_Call(const WithoutMatchers&, R (*)(Args...)) {
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
    return this->gmock_Call(::testing::A<Args>()...);
  }

 protected:
  MockFunction() = default;
  ~MockFunction() = default;

 private:
  FunctionMocker<R(Args...)> mock_;
};

/*
The SignatureOf<F> struct is a meta-function returning function signature
corresponding to the provided F argument.

It makes use of MockFunction easier by allowing it to accept more F arguments
than just function signatures.

Abseil Team's avatar
Abseil Team committed
1949
1950
1951
Specializations provided here cover a signature type itself and any template
that can be parameterized with a signature, including std::function and
boost::function.
1952
1953
*/

Abseil Team's avatar
Abseil Team committed
1954
template <typename F, typename = void>
1955
1956
1957
1958
1959
1960
1961
struct SignatureOf;

template <typename R, typename... Args>
struct SignatureOf<R(Args...)> {
  using type = R(Args...);
};

Abseil Team's avatar
Abseil Team committed
1962
1963
1964
1965
template <template <typename> class C, typename F>
struct SignatureOf<C<F>,
                   typename std::enable_if<std::is_function<F>::value>::type>
    : SignatureOf<F> {};
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976

template <typename F>
using SignatureOfT = typename SignatureOf<F>::type;

}  // namespace internal

// A MockFunction<F> type has one mock method whose type is
// internal::SignatureOfT<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:
Abseil Team's avatar
Abseil Team committed
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
//
//   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().
//
// MockFunction<F> can also be used to exercise code that accepts
2010
2011
2012
// std::function<internal::SignatureOfT<F>> callbacks. To do so, use
// AsStdFunction() method to create std::function proxy forwarding to
// original object's Call. Example:
Abseil Team's avatar
Abseil Team committed
2013
2014
2015
2016
2017
2018
//
// TEST(FooTest, RunsCallbackWithBarArgument) {
//   MockFunction<int(string)> callback;
//   EXPECT_CALL(callback, Call("bar")).WillOnce(Return(1));
//   Foo(callback.AsStdFunction());
// }
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
//
// The internal::SignatureOfT<F> indirection allows to use other types
// than just function signature type. This is typically useful when
// providing a mock for a predefined std::function type. Example:
//
// using FilterPredicate = std::function<bool(string)>;
// void MyFilterAlgorithm(FilterPredicate predicate);
//
// TEST(FooTest, FilterPredicateAlwaysAccepts) {
//   MockFunction<FilterPredicate> predicateMock;
//   EXPECT_CALL(predicateMock, Call(_)).WillRepeatedly(Return(true));
//   MyFilterAlgorithm(predicateMock.AsStdFunction());
// }
Abseil Team's avatar
Abseil Team committed
2032
template <typename F>
2033
2034
class MockFunction : public internal::MockFunction<internal::SignatureOfT<F>> {
  using Base = internal::MockFunction<internal::SignatureOfT<F>>;
Abseil Team's avatar
Abseil Team committed
2035
2036

 public:
2037
  using Base::Base;
Abseil Team's avatar
Abseil Team committed
2038
2039
};

2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
// The style guide prohibits "using" statements in a namespace scope
// inside a header file.  However, the MockSpec 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 MockSpec in ::testing.
using internal::MockSpec;

// Const(x) is a convenient function for obtaining a const reference
// to x.  This is useful for setting expectations on an overloaded
// const mock method, e.g.
//
//   class MockFoo : public FooInterface {
//    public:
//     MOCK_METHOD0(Bar, int());
//     MOCK_CONST_METHOD0(Bar, int&());
//   };
//
//   MockFoo foo;
//   // Expects a call to non-const MockFoo::Bar().
//   EXPECT_CALL(foo, Bar());
//   // Expects a call to const MockFoo::Bar().
//   EXPECT_CALL(Const(foo), Bar());
template <typename T>
2063
2064
2065
inline const T& Const(const T& x) {
  return x;
}
2066

2067
2068
2069
2070
// Constructs an Expectation object that references and co-owns exp.
inline Expectation::Expectation(internal::ExpectationBase& exp)  // NOLINT
    : expectation_base_(exp.GetHandle().expectation_base()) {}

2071
2072
}  // namespace testing

misterg's avatar
misterg committed
2073
2074
GTEST_DISABLE_MSC_WARNINGS_POP_()  //  4251

2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
// Implementation for ON_CALL and EXPECT_CALL macros. A separate macro is
// required to avoid compile errors when the name of the method used in call is
// a result of macro expansion. See CompilesWithMethodNameExpandedFromMacro
// tests in internal/gmock-spec-builders_test.cc for more details.
//
// This macro supports statements both with and without parameter matchers. If
// the parameter list is omitted, gMock will accept any parameters, which allows
// tests to be written that don't need to encode the number of method
// parameter. This technique may only be used for non-overloaded methods.
//
//   // These are the same:
2086
2087
//   ON_CALL(mock, NoArgsMethod()).WillByDefault(...);
//   ON_CALL(mock, NoArgsMethod).WillByDefault(...);
2088
2089
//
//   // As are these:
2090
2091
//   ON_CALL(mock, TwoArgsMethod(_, _)).WillByDefault(...);
//   ON_CALL(mock, TwoArgsMethod).WillByDefault(...);
2092
2093
//
//   // Can also specify args if you want, of course:
2094
//   ON_CALL(mock, TwoArgsMethod(_, 45)).WillByDefault(...);
2095
2096
//
//   // Overloads work as long as you specify parameters:
2097
2098
//   ON_CALL(mock, OverloadedMethod(_)).WillByDefault(...);
//   ON_CALL(mock, OverloadedMethod(_, _)).WillByDefault(...);
2099
2100
//
//   // Oops! Which overload did you want?
2101
//   ON_CALL(mock, OverloadedMethod).WillByDefault(...);
2102
2103
2104
2105
2106
2107
2108
//     => ERROR: call to member function 'gmock_OverloadedMethod' is ambiguous
//
// How this works: The mock class uses two overloads of the gmock_Method
// expectation setter method plus an operator() overload on the MockSpec object.
// In the matcher list form, the macro expands to:
//
//   // This statement:
2109
//   ON_CALL(mock, TwoArgsMethod(_, 45))...
2110
//
2111
2112
//   // ...expands to:
//   mock.gmock_TwoArgsMethod(_, 45)(WithoutMatchers(), nullptr)...
2113
2114
2115
//   |-------------v---------------||------------v-------------|
//       invokes first overload        swallowed by operator()
//
2116
2117
//   // ...which is essentially:
//   mock.gmock_TwoArgsMethod(_, 45)...
2118
2119
2120
2121
//
// Whereas the form without a matcher list:
//
//   // This statement:
2122
//   ON_CALL(mock, TwoArgsMethod)...
2123
//
2124
2125
//   // ...expands to:
//   mock.gmock_TwoArgsMethod(WithoutMatchers(), nullptr)...
2126
2127
2128
//   |-----------------------v--------------------------|
//                 invokes second overload
//
2129
2130
//   // ...which is essentially:
//   mock.gmock_TwoArgsMethod(_, _)...
2131
2132
2133
2134
2135
2136
//
// The WithoutMatchers() argument is used to disambiguate overloads and to
// block the caller from accidentally invoking the second overload directly. The
// second argument is an internal type derived from the method signature. The
// failure to disambiguate two overloads of this method in the ON_CALL statement
// is how we block callers from setting expectations on overloaded methods.
2137
2138
2139
#define GMOCK_ON_CALL_IMPL_(mock_expr, Setter, call)                    \
  ((mock_expr).gmock_##call)(::testing::internal::GetWithoutMatchers(), \
                             nullptr)                                   \
2140
2141
2142
2143
2144
2145
2146
      .Setter(__FILE__, __LINE__, #mock_expr, #call)

#define ON_CALL(obj, call) \
  GMOCK_ON_CALL_IMPL_(obj, InternalDefaultActionSetAt, call)

#define EXPECT_CALL(obj, call) \
  GMOCK_ON_CALL_IMPL_(obj, InternalExpectedAt, call)
2147

Abseil Team's avatar
Abseil Team committed
2148
#endif  // GOOGLEMOCK_INCLUDE_GMOCK_GMOCK_SPEC_BUILDERS_H_