gtest-internal.h 46.3 KB
Newer Older
shiqian's avatar
shiqian committed
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
29
30
31
32
33
34
35
36
37
38
39
// Copyright 2005, 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.
//
// Authors: wan@google.com (Zhanyong Wan), eefacm@gmail.com (Sean Mcafee)
//
// The Google C++ Testing Framework (Google Test)
//
// This header file declares functions and macros used internally by
// Google Test.  They are subject to change without notice.

#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_INTERNAL_H_
#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_INTERNAL_H_

40
#include "gtest/internal/gtest-port.h"
shiqian's avatar
shiqian committed
41

zhanyong.wan's avatar
zhanyong.wan committed
42
#if GTEST_OS_LINUX
43
44
45
46
# include <stdlib.h>
# include <sys/types.h>
# include <sys/wait.h>
# include <unistd.h>
shiqian's avatar
shiqian committed
47
48
#endif  // GTEST_OS_LINUX

49
50
51
52
#if GTEST_HAS_EXCEPTIONS
# include <stdexcept>
#endif

53
#include <ctype.h>
54
#include <float.h>
55
56
57
#include <string.h>
#include <iomanip>
#include <limits>
kosak's avatar
kosak committed
58
#include <map>
59
#include <set>
60
61
#include <string>
#include <vector>
shiqian's avatar
shiqian committed
62

63
#include "gtest/gtest-message.h"
64
65
66
#include "gtest/internal/gtest-string.h"
#include "gtest/internal/gtest-filepath.h"
#include "gtest/internal/gtest-type-util.h"
shiqian's avatar
shiqian committed
67
68
69
70
71
72
73
74
75

// Due to C++ preprocessor weirdness, we need double indirection to
// concatenate two tokens when one of them is __LINE__.  Writing
//
//   foo ## __LINE__
//
// will result in the token foo__LINE__, instead of foo followed by
// the current line number.  For more details, see
// http://www.parashift.com/c++-faq-lite/misc-technical-issues.html#faq-39.6
shiqian's avatar
shiqian committed
76
77
#define GTEST_CONCAT_TOKEN_(foo, bar) GTEST_CONCAT_TOKEN_IMPL_(foo, bar)
#define GTEST_CONCAT_TOKEN_IMPL_(foo, bar) foo ## bar
shiqian's avatar
shiqian committed
78

79
80
81
class ProtocolMessage;
namespace proto2 { class Message; }

shiqian's avatar
shiqian committed
82
83
namespace testing {

84
// Forward declarations.
shiqian's avatar
shiqian committed
85

86
class AssertionResult;                 // Result of an assertion.
shiqian's avatar
shiqian committed
87
class Message;                         // Represents a failure message.
88
class Test;                            // Represents a test.
shiqian's avatar
shiqian committed
89
class TestInfo;                        // Information about a test.
90
class TestPartResult;                  // Result of a test part.
shiqian's avatar
shiqian committed
91
92
class UnitTest;                        // A collection of test cases.

93
94
95
template <typename T>
::std::string PrintToString(const T& value);

shiqian's avatar
shiqian committed
96
97
98
99
100
101
102
namespace internal {

struct TraceInfo;                      // Information about a trace point.
class ScopedTrace;                     // Implements scoped trace.
class TestInfoImpl;                    // Opaque implementation of TestInfo
class UnitTestImpl;                    // Opaque implementation of UnitTest

103
// How many times InitGoogleTest() has been called.
104
GTEST_API_ extern int g_init_gtest_count;
105

shiqian's avatar
shiqian committed
106
107
// The text used in failure messages to indicate the start of the
// stack trace.
zhanyong.wan's avatar
zhanyong.wan committed
108
GTEST_API_ extern const char kStackTraceMarker[];
shiqian's avatar
shiqian committed
109

shiqian's avatar
shiqian committed
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
// Two overloaded helpers for checking at compile time whether an
// expression is a null pointer literal (i.e. NULL or any 0-valued
// compile-time integral constant).  Their return values have
// different sizes, so we can use sizeof() to test which version is
// picked by the compiler.  These helpers have no implementations, as
// we only need their signatures.
//
// Given IsNullLiteralHelper(x), the compiler will pick the first
// version if x can be implicitly converted to Secret*, and pick the
// second version otherwise.  Since Secret is a secret and incomplete
// type, the only expression a user can write that has type Secret* is
// a null pointer literal.  Therefore, we know that x is a null
// pointer literal if and only if the first version is picked by the
// compiler.
char IsNullLiteralHelper(Secret* p);
char (&IsNullLiteralHelper(...))[2];  // NOLINT

// A compile-time bool constant that is true if and only if x is a
// null pointer literal (i.e. NULL or any 0-valued compile-time
// integral constant).
130
131
132
#ifdef GTEST_ELLIPSIS_NEEDS_POD_
// We lose support for NULL detection where the compiler doesn't like
// passing non-POD classes through ellipsis (...).
133
# define GTEST_IS_NULL_LITERAL_(x) false
134
#else
135
# define GTEST_IS_NULL_LITERAL_(x) \
shiqian's avatar
shiqian committed
136
    (sizeof(::testing::internal::IsNullLiteralHelper(x)) == 1)
137
#endif  // GTEST_ELLIPSIS_NEEDS_POD_
shiqian's avatar
shiqian committed
138
139

// Appends the user-supplied message to the Google-Test-generated message.
140
141
GTEST_API_ std::string AppendUserMessage(
    const std::string& gtest_msg, const Message& user_msg);
shiqian's avatar
shiqian committed
142

143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
#if GTEST_HAS_EXCEPTIONS

// This exception is thrown by (and only by) a failed Google Test
// assertion when GTEST_FLAG(throw_on_failure) is true (if exceptions
// are enabled).  We derive it from std::runtime_error, which is for
// errors presumably detectable only at run time.  Since
// std::runtime_error inherits from std::exception, many testing
// frameworks know how to extract and print the message inside it.
class GTEST_API_ GoogleTestFailureException : public ::std::runtime_error {
 public:
  explicit GoogleTestFailureException(const TestPartResult& failure);
};

#endif  // GTEST_HAS_EXCEPTIONS

shiqian's avatar
shiqian committed
158
// A helper class for creating scoped traces in user programs.
159
class GTEST_API_ ScopedTrace {
shiqian's avatar
shiqian committed
160
161
162
163
164
165
166
167
168
169
170
171
 public:
  // The c'tor pushes the given source file location and message onto
  // a trace stack maintained by Google Test.
  ScopedTrace(const char* file, int line, const Message& message);

  // The d'tor pops the info pushed by the c'tor.
  //
  // Note that the d'tor is not virtual in order to be efficient.
  // Don't inherit from ScopedTrace!
  ~ScopedTrace();

 private:
shiqian's avatar
shiqian committed
172
173
174
175
  GTEST_DISALLOW_COPY_AND_ASSIGN_(ScopedTrace);
} GTEST_ATTRIBUTE_UNUSED_;  // A ScopedTrace object does its job in its
                            // c'tor and d'tor.  Therefore it doesn't
                            // need to be used otherwise.
shiqian's avatar
shiqian committed
176

177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
namespace edit_distance {
// Returns the optimal edits to go from 'left' to 'right'.
// All edits cost the same, with replace having lower priority than
// add/remove.
// Simple implementation of the Wagner–Fischer algorithm.
// See http://en.wikipedia.org/wiki/Wagner-Fischer_algorithm
enum EditType { kMatch, kAdd, kRemove, kReplace };
GTEST_API_ std::vector<EditType> CalculateOptimalEdits(
    const std::vector<size_t>& left, const std::vector<size_t>& right);

// Same as above, but the input is represented as strings.
GTEST_API_ std::vector<EditType> CalculateOptimalEdits(
    const std::vector<std::string>& left,
    const std::vector<std::string>& right);

// Create a diff of the input strings in Unified diff format.
GTEST_API_ std::string CreateUnifiedDiff(const std::vector<std::string>& left,
                                         const std::vector<std::string>& right,
                                         size_t context = 2);

}  // namespace edit_distance

// Calculate the diff between 'left' and 'right' and return it in unified diff
// format.
// If not null, stores in 'total_line_count' the total number of lines found
// in left + right.
GTEST_API_ std::string DiffStrings(const std::string& left,
                                   const std::string& right,
                                   size_t* total_line_count);

shiqian's avatar
shiqian committed
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
// Constructs and returns the message for an equality assertion
// (e.g. ASSERT_EQ, EXPECT_STREQ, etc) failure.
//
// The first four parameters are the expressions used in the assertion
// and their values, as strings.  For example, for ASSERT_EQ(foo, bar)
// where foo is 5 and bar is 6, we have:
//
//   expected_expression: "foo"
//   actual_expression:   "bar"
//   expected_value:      "5"
//   actual_value:        "6"
//
// The ignoring_case parameter is true iff the assertion is a
// *_STRCASEEQ*.  When it's true, the string " (ignoring case)" will
// be inserted into the message.
222
223
GTEST_API_ AssertionResult EqFailure(const char* expected_expression,
                                     const char* actual_expression,
224
225
                                     const std::string& expected_value,
                                     const std::string& actual_value,
226
                                     bool ignoring_case);
shiqian's avatar
shiqian committed
227

228
// Constructs a failure message for Boolean assertions such as EXPECT_TRUE.
229
GTEST_API_ std::string GetBoolAssertionFailureMessage(
230
231
232
233
    const AssertionResult& assertion_result,
    const char* expression_text,
    const char* actual_predicate_value,
    const char* expected_predicate_value);
shiqian's avatar
shiqian committed
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303

// This template class represents an IEEE floating-point number
// (either single-precision or double-precision, depending on the
// template parameters).
//
// The purpose of this class is to do more sophisticated number
// comparison.  (Due to round-off error, etc, it's very unlikely that
// two floating-points will be equal exactly.  Hence a naive
// comparison by the == operation often doesn't work.)
//
// Format of IEEE floating-point:
//
//   The most-significant bit being the leftmost, an IEEE
//   floating-point looks like
//
//     sign_bit exponent_bits fraction_bits
//
//   Here, sign_bit is a single bit that designates the sign of the
//   number.
//
//   For float, there are 8 exponent bits and 23 fraction bits.
//
//   For double, there are 11 exponent bits and 52 fraction bits.
//
//   More details can be found at
//   http://en.wikipedia.org/wiki/IEEE_floating-point_standard.
//
// Template parameter:
//
//   RawType: the raw floating-point type (either float or double)
template <typename RawType>
class FloatingPoint {
 public:
  // Defines the unsigned integer type that has the same size as the
  // floating point number.
  typedef typename TypeWithSize<sizeof(RawType)>::UInt Bits;

  // Constants.

  // # of bits in a number.
  static const size_t kBitCount = 8*sizeof(RawType);

  // # of fraction bits in a number.
  static const size_t kFractionBitCount =
    std::numeric_limits<RawType>::digits - 1;

  // # of exponent bits in a number.
  static const size_t kExponentBitCount = kBitCount - 1 - kFractionBitCount;

  // The mask for the sign bit.
  static const Bits kSignBitMask = static_cast<Bits>(1) << (kBitCount - 1);

  // The mask for the fraction bits.
  static const Bits kFractionBitMask =
    ~static_cast<Bits>(0) >> (kExponentBitCount + 1);

  // The mask for the exponent bits.
  static const Bits kExponentBitMask = ~(kSignBitMask | kFractionBitMask);

  // How many ULP's (Units in the Last Place) we want to tolerate when
  // comparing two numbers.  The larger the value, the more error we
  // allow.  A 0 value means that two numbers must be exactly the same
  // to be considered equal.
  //
  // The maximum error of a single floating-point operation is 0.5
  // units in the last place.  On Intel CPU's, all floating-point
  // calculations are done with 80-bit precision, while double has 64
  // bits.  Therefore, 4 should be enough for ordinary use.
  //
  // See the following article for more details on ULP:
zhanyong.wan's avatar
zhanyong.wan committed
304
  // http://randomascii.wordpress.com/2012/02/25/comparing-floating-point-numbers-2012-edition/
shiqian's avatar
shiqian committed
305
306
307
308
309
310
311
312
  static const size_t kMaxUlps = 4;

  // Constructs a FloatingPoint from a raw floating-point number.
  //
  // On an Intel CPU, passing a non-normalized NAN (Not a Number)
  // around may change its bits, although the new value is guaranteed
  // to be also a NAN.  Therefore, don't expect this constructor to
  // preserve the bits in x when x is a NAN.
313
  explicit FloatingPoint(const RawType& x) { u_.value_ = x; }
shiqian's avatar
shiqian committed
314
315
316
317
318
319
320
321

  // Static methods

  // Reinterprets a bit pattern as a floating-point number.
  //
  // This function is needed to test the AlmostEquals() method.
  static RawType ReinterpretBits(const Bits bits) {
    FloatingPoint fp(0);
322
323
    fp.u_.bits_ = bits;
    return fp.u_.value_;
shiqian's avatar
shiqian committed
324
325
326
327
328
329
330
  }

  // Returns the floating-point number that represent positive infinity.
  static RawType Infinity() {
    return ReinterpretBits(kExponentBitMask);
  }

331
332
333
  // Returns the maximum representable finite floating-point number.
  static RawType Max();

shiqian's avatar
shiqian committed
334
335
336
  // Non-static methods

  // Returns the bits that represents this number.
337
  const Bits &bits() const { return u_.bits_; }
shiqian's avatar
shiqian committed
338
339

  // Returns the exponent bits of this number.
340
  Bits exponent_bits() const { return kExponentBitMask & u_.bits_; }
shiqian's avatar
shiqian committed
341
342

  // Returns the fraction bits of this number.
343
  Bits fraction_bits() const { return kFractionBitMask & u_.bits_; }
shiqian's avatar
shiqian committed
344
345

  // Returns the sign bit of this number.
346
  Bits sign_bit() const { return kSignBitMask & u_.bits_; }
shiqian's avatar
shiqian committed
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365

  // Returns true iff this is NAN (not a number).
  bool is_nan() const {
    // It's a NAN if the exponent bits are all ones and the fraction
    // bits are not entirely zeros.
    return (exponent_bits() == kExponentBitMask) && (fraction_bits() != 0);
  }

  // Returns true iff this number is at most kMaxUlps ULP's away from
  // rhs.  In particular, this function:
  //
  //   - returns false if either number is (or both are) NAN.
  //   - treats really large numbers as almost equal to infinity.
  //   - thinks +0.0 and -0.0 are 0 DLP's apart.
  bool AlmostEquals(const FloatingPoint& rhs) const {
    // The IEEE standard says that any comparison operation involving
    // a NAN must return false.
    if (is_nan() || rhs.is_nan()) return false;

366
367
    return DistanceBetweenSignAndMagnitudeNumbers(u_.bits_, rhs.u_.bits_)
        <= kMaxUlps;
shiqian's avatar
shiqian committed
368
369
370
  }

 private:
371
372
373
374
375
376
  // The data type used to store the actual floating-point number.
  union FloatingPointUnion {
    RawType value_;  // The raw floating-point number.
    Bits bits_;      // The bits that represent the number.
  };

shiqian's avatar
shiqian committed
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
  // Converts an integer from the sign-and-magnitude representation to
  // the biased representation.  More precisely, let N be 2 to the
  // power of (kBitCount - 1), an integer x is represented by the
  // unsigned number x + N.
  //
  // For instance,
  //
  //   -N + 1 (the most negative number representable using
  //          sign-and-magnitude) is represented by 1;
  //   0      is represented by N; and
  //   N - 1  (the biggest number representable using
  //          sign-and-magnitude) is represented by 2N - 1.
  //
  // Read http://en.wikipedia.org/wiki/Signed_number_representations
  // for more details on signed number representations.
  static Bits SignAndMagnitudeToBiased(const Bits &sam) {
    if (kSignBitMask & sam) {
      // sam represents a negative number.
      return ~sam + 1;
    } else {
      // sam represents a positive number.
      return kSignBitMask | sam;
    }
  }

  // Given two numbers in the sign-and-magnitude representation,
  // returns the distance between them as an unsigned number.
  static Bits DistanceBetweenSignAndMagnitudeNumbers(const Bits &sam1,
                                                     const Bits &sam2) {
    const Bits biased1 = SignAndMagnitudeToBiased(sam1);
    const Bits biased2 = SignAndMagnitudeToBiased(sam2);
    return (biased1 >= biased2) ? (biased1 - biased2) : (biased2 - biased1);
  }

411
  FloatingPointUnion u_;
shiqian's avatar
shiqian committed
412
413
};

414
415
416
417
418
419
420
// We cannot use std::numeric_limits<T>::max() as it clashes with the max()
// macro defined by <windows.h>.
template <>
inline float FloatingPoint<float>::Max() { return FLT_MAX; }
template <>
inline double FloatingPoint<double>::Max() { return DBL_MAX; }

shiqian's avatar
shiqian committed
421
422
423
424
425
426
427
428
429
430
431
// Typedefs the instances of the FloatingPoint template class that we
// care to use.
typedef FloatingPoint<float> Float;
typedef FloatingPoint<double> Double;

// In order to catch the mistake of putting tests that use different
// test fixture classes in the same test case, we need to assign
// unique IDs to fixture classes and compare them.  The TypeId type is
// used to hold such IDs.  The user should treat TypeId as an opaque
// type: the only operation allowed on TypeId values is to compare
// them for equality using the == operator.
432
433
434
435
436
437
438
439
440
441
442
443
444
typedef const void* TypeId;

template <typename T>
class TypeIdHelper {
 public:
  // dummy_ must not have a const type.  Otherwise an overly eager
  // compiler (e.g. MSVC 7.1 & 8.0) may try to merge
  // TypeIdHelper<T>::dummy_ for different Ts as an "optimization".
  static bool dummy_;
};

template <typename T>
bool TypeIdHelper<T>::dummy_ = false;
shiqian's avatar
shiqian committed
445
446
447
448
449

// GetTypeId<T>() returns the ID of type T.  Different values will be
// returned for different types.  Calling the function twice with the
// same type argument is guaranteed to return the same ID.
template <typename T>
450
451
452
453
454
455
TypeId GetTypeId() {
  // The compiler is required to allocate a different
  // TypeIdHelper<T>::dummy_ variable for each T used to instantiate
  // the template.  Therefore, the address of dummy_ is guaranteed to
  // be unique.
  return &(TypeIdHelper<T>::dummy_);
shiqian's avatar
shiqian committed
456
457
}

458
459
460
461
462
// Returns the type ID of ::testing::Test.  Always call this instead
// of GetTypeId< ::testing::Test>() to get the type ID of
// ::testing::Test, as the latter may give the wrong result due to a
// suspected linker bug when compiling Google Test as a Mac OS X
// framework.
463
GTEST_API_ TypeId GetTestTypeId();
464

465
466
467
468
469
470
471
472
473
474
475
476
477
478
// Defines the abstract factory interface that creates instances
// of a Test object.
class TestFactoryBase {
 public:
  virtual ~TestFactoryBase() {}

  // Creates a test instance to run. The instance is both created and destroyed
  // within TestInfoImpl::Run()
  virtual Test* CreateTest() = 0;

 protected:
  TestFactoryBase() {}

 private:
shiqian's avatar
shiqian committed
479
  GTEST_DISALLOW_COPY_AND_ASSIGN_(TestFactoryBase);
480
481
482
483
484
485
486
487
488
489
};

// This class provides implementation of TeastFactoryBase interface.
// It is used in TEST and TEST_F macros.
template <class TestClass>
class TestFactoryImpl : public TestFactoryBase {
 public:
  virtual Test* CreateTest() { return new TestClass; }
};

zhanyong.wan's avatar
zhanyong.wan committed
490
#if GTEST_OS_WINDOWS
shiqian's avatar
shiqian committed
491
492
493
494
495

// Predicate-formatters for implementing the HRESULT checking macros
// {ASSERT|EXPECT}_HRESULT_{SUCCEEDED|FAILED}
// We pass a long instead of HRESULT to avoid causing an
// include dependency for the HRESULT type.
496
497
498
499
GTEST_API_ AssertionResult IsHRESULTSuccess(const char* expr,
                                            long hr);  // NOLINT
GTEST_API_ AssertionResult IsHRESULTFailure(const char* expr,
                                            long hr);  // NOLINT
shiqian's avatar
shiqian committed
500
501
502

#endif  // GTEST_OS_WINDOWS

503
504
505
506
// Types of SetUpTestCase() and TearDownTestCase() functions.
typedef void (*SetUpTestCaseFunc)();
typedef void (*TearDownTestCaseFunc)();

kosak's avatar
kosak committed
507
508
509
510
511
512
513
struct CodeLocation {
  CodeLocation(const string& a_file, int a_line) : file(a_file), line(a_line) {}

  string file;
  int line;
};

514
515
516
517
518
519
520
// Creates a new TestInfo object and registers it with Google Test;
// returns the created object.
//
// Arguments:
//
//   test_case_name:   name of the test case
//   name:             name of the test
521
//   type_param        the name of the test's type parameter, or NULL if
522
//                     this is not a typed or a type-parameterized test.
523
524
//   value_param       text representation of the test's value parameter,
//                     or NULL if this is not a type-parameterized test.
kosak's avatar
kosak committed
525
//   code_location:    code location where the test is defined
526
527
528
529
530
531
//   fixture_class_id: ID of the test fixture class
//   set_up_tc:        pointer to the function that sets up the test case
//   tear_down_tc:     pointer to the function that tears down the test case
//   factory:          pointer to the factory that creates a test object.
//                     The newly created TestInfo instance will assume
//                     ownership of the factory object.
532
GTEST_API_ TestInfo* MakeAndRegisterTestInfo(
533
534
    const char* test_case_name,
    const char* name,
535
536
    const char* type_param,
    const char* value_param,
kosak's avatar
kosak committed
537
    CodeLocation code_location,
538
539
540
541
542
    TypeId fixture_class_id,
    SetUpTestCaseFunc set_up_tc,
    TearDownTestCaseFunc tear_down_tc,
    TestFactoryBase* factory);

543
544
545
// If *pstr starts with the given prefix, modifies *pstr to be right
// past the prefix and returns true; otherwise leaves *pstr unchanged
// and returns false.  None of pstr, *pstr, and prefix can be NULL.
zhanyong.wan's avatar
zhanyong.wan committed
546
GTEST_API_ bool SkipPrefix(const char* prefix, const char** pstr);
547

zhanyong.wan's avatar
zhanyong.wan committed
548
#if GTEST_HAS_TYPED_TEST || GTEST_HAS_TYPED_TEST_P
549
550

// State of the definition of a type-parameterized test case.
551
class GTEST_API_ TypedTestCasePState {
552
553
554
555
556
557
558
559
560
561
562
563
 public:
  TypedTestCasePState() : registered_(false) {}

  // Adds the given test name to defined_test_names_ and return true
  // if the test case hasn't been registered; otherwise aborts the
  // program.
  bool AddTestName(const char* file, int line, const char* case_name,
                   const char* test_name) {
    if (registered_) {
      fprintf(stderr, "%s Test %s must be defined before "
              "REGISTER_TYPED_TEST_CASE_P(%s, ...).\n",
              FormatFileLocation(file, line).c_str(), test_name, case_name);
564
      fflush(stderr);
565
      posix::Abort();
566
    }
kosak's avatar
kosak committed
567
568
    registered_tests_.insert(
        ::std::make_pair(test_name, CodeLocation(file, line)));
569
570
571
    return true;
  }

kosak's avatar
kosak committed
572
573
574
575
576
577
578
579
580
581
  bool TestExists(const std::string& test_name) const {
    return registered_tests_.count(test_name) > 0;
  }

  const CodeLocation& GetCodeLocation(const std::string& test_name) const {
    RegisteredTestsMap::const_iterator it = registered_tests_.find(test_name);
    GTEST_CHECK_(it != registered_tests_.end());
    return it->second;
  }

582
583
584
585
586
587
588
  // Verifies that registered_tests match the test names in
  // defined_test_names_; returns registered_tests if successful, or
  // aborts the program otherwise.
  const char* VerifyRegisteredTestNames(
      const char* file, int line, const char* registered_tests);

 private:
kosak's avatar
kosak committed
589
590
  typedef ::std::map<std::string, CodeLocation> RegisteredTestsMap;

591
  bool registered_;
kosak's avatar
kosak committed
592
  RegisteredTestsMap registered_tests_;
593
594
595
596
597
598
599
600
601
};

// Skips to the first non-space char after the first comma in 'str';
// returns NULL if no comma is found in 'str'.
inline const char* SkipComma(const char* str) {
  const char* comma = strchr(str, ',');
  if (comma == NULL) {
    return NULL;
  }
602
  while (IsSpace(*(++comma))) {}
603
604
605
606
607
  return comma;
}

// Returns the prefix of 'str' before the first comma in it; returns
// the entire string if it contains no comma.
608
inline std::string GetPrefixUntilComma(const char* str) {
609
  const char* comma = strchr(str, ',');
610
  return comma == NULL ? str : std::string(str, comma);
611
612
}

kosak's avatar
kosak committed
613
614
615
616
617
// Splits a given string on a given delimiter, populating a given
// vector with the fields.
void SplitString(const ::std::string& str, char delimiter,
                 ::std::vector< ::std::string>* dest);

618
619
620
621
622
623
624
625
626
627
628
629
630
631
// TypeParameterizedTest<Fixture, TestSel, Types>::Register()
// registers a list of type-parameterized tests with Google Test.  The
// return value is insignificant - we just need to return something
// such that we can call this function in a namespace scope.
//
// Implementation note: The GTEST_TEMPLATE_ macro declares a template
// template parameter.  It's defined in gtest-type-util.h.
template <GTEST_TEMPLATE_ Fixture, class TestSel, typename Types>
class TypeParameterizedTest {
 public:
  // 'index' is the index of the test in the type list 'Types'
  // specified in INSTANTIATE_TYPED_TEST_CASE_P(Prefix, TestCase,
  // Types).  Valid values for 'index' are [0, N - 1] where N is the
  // length of Types.
kosak's avatar
kosak committed
632
633
634
635
  static bool Register(const char* prefix,
                       CodeLocation code_location,
                       const char* case_name, const char* test_names,
                       int index) {
636
637
638
639
640
641
642
    typedef typename Types::Head Type;
    typedef Fixture<Type> FixtureClass;
    typedef typename GTEST_BIND_(TestSel, Type) TestClass;

    // First, registers the first type-parameterized test in the type
    // list.
    MakeAndRegisterTestInfo(
643
644
        (std::string(prefix) + (prefix[0] == '\0' ? "" : "/") + case_name + "/"
         + StreamableToString(index)).c_str(),
645
        StripTrailingSpaces(GetPrefixUntilComma(test_names)).c_str(),
646
647
        GetTypeName<Type>().c_str(),
        NULL,  // No value parameter.
kosak's avatar
kosak committed
648
        code_location,
649
650
651
652
653
654
655
        GetTypeId<FixtureClass>(),
        TestClass::SetUpTestCase,
        TestClass::TearDownTestCase,
        new TestFactoryImpl<TestClass>);

    // Next, recurses (at compile time) with the tail of the type list.
    return TypeParameterizedTest<Fixture, TestSel, typename Types::Tail>
kosak's avatar
kosak committed
656
        ::Register(prefix, code_location, case_name, test_names, index + 1);
657
658
659
660
661
662
663
  }
};

// The base case for the compile time recursion.
template <GTEST_TEMPLATE_ Fixture, class TestSel>
class TypeParameterizedTest<Fixture, TestSel, Types0> {
 public:
kosak's avatar
kosak committed
664
665
666
  static bool Register(const char* /*prefix*/, CodeLocation,
                       const char* /*case_name*/, const char* /*test_names*/,
                       int /*index*/) {
667
668
669
670
671
672
673
674
675
676
677
    return true;
  }
};

// TypeParameterizedTestCase<Fixture, Tests, Types>::Register()
// registers *all combinations* of 'Tests' and 'Types' with Google
// Test.  The return value is insignificant - we just need to return
// something such that we can call this function in a namespace scope.
template <GTEST_TEMPLATE_ Fixture, typename Tests, typename Types>
class TypeParameterizedTestCase {
 public:
kosak's avatar
kosak committed
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
  static bool Register(const char* prefix, CodeLocation code_location,
                       const TypedTestCasePState* state,
                       const char* case_name, const char* test_names) {
    std::string test_name = StripTrailingSpaces(
        GetPrefixUntilComma(test_names));
    if (!state->TestExists(test_name)) {
      fprintf(stderr, "Failed to get code location for test %s.%s at %s.",
              case_name, test_name.c_str(),
              FormatFileLocation(code_location.file.c_str(),
                                 code_location.line).c_str());
      fflush(stderr);
      posix::Abort();
    }
    const CodeLocation& test_location = state->GetCodeLocation(test_name);

693
694
695
696
    typedef typename Tests::Head Head;

    // First, register the first test in 'Test' for each type in 'Types'.
    TypeParameterizedTest<Fixture, Head, Types>::Register(
kosak's avatar
kosak committed
697
        prefix, test_location, case_name, test_names, 0);
698
699
700

    // Next, recurses (at compile time) with the tail of the test list.
    return TypeParameterizedTestCase<Fixture, typename Tests::Tail, Types>
kosak's avatar
kosak committed
701
702
        ::Register(prefix, code_location, state,
                   case_name, SkipComma(test_names));
703
704
705
706
707
708
709
  }
};

// The base case for the compile time recursion.
template <GTEST_TEMPLATE_ Fixture, typename Types>
class TypeParameterizedTestCase<Fixture, Templates0, Types> {
 public:
kosak's avatar
kosak committed
710
711
712
  static bool Register(const char* /*prefix*/, CodeLocation,
                       const TypedTestCasePState* /*state*/,
                       const char* /*case_name*/, const char* /*test_names*/) {
713
714
715
716
717
718
    return true;
  }
};

#endif  // GTEST_HAS_TYPED_TEST || GTEST_HAS_TYPED_TEST_P

719
// Returns the current OS stack trace as an std::string.
720
721
722
723
724
725
726
727
728
//
// The maximum number of stack frames to be included is specified by
// the gtest_stack_trace_depth flag.  The skip_count parameter
// specifies the number of top frames to be skipped, which doesn't
// count against the number of frames to be included.
//
// For example, if Foo() calls Bar(), which in turn calls
// GetCurrentOsStackTraceExceptTop(..., 1), Foo() will be included in
// the trace but Bar() and GetCurrentOsStackTraceExceptTop() won't.
729
730
GTEST_API_ std::string GetCurrentOsStackTraceExceptTop(
    UnitTest* unit_test, int skip_count);
731

732
733
734
735
// Helpers for suppressing warnings on unreachable code or constant
// condition.

// Always returns true.
736
GTEST_API_ bool AlwaysTrue();
737

738
739
740
// Always returns false.
inline bool AlwaysFalse() { return !AlwaysTrue(); }

741
742
743
744
745
746
747
748
749
// Helper for suppressing false warning from Clang on a const char*
// variable declared in a conditional expression always being NULL in
// the else branch.
struct GTEST_API_ ConstCharPtr {
  ConstCharPtr(const char* str) : value(str) {}
  operator bool() const { return true; }
  const char* value;
};

750
751
752
753
754
// A simple Linear Congruential Generator for generating random
// numbers with a uniform distribution.  Unlike rand() and srand(), it
// doesn't use global state (and therefore can't interfere with user
// code).  Unlike rand_r(), it's portable.  An LCG isn't very random,
// but it's good enough for our purposes.
zhanyong.wan's avatar
zhanyong.wan committed
755
class GTEST_API_ Random {
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
 public:
  static const UInt32 kMaxRange = 1u << 31;

  explicit Random(UInt32 seed) : state_(seed) {}

  void Reseed(UInt32 seed) { state_ = seed; }

  // Generates a random number from [0, range).  Crashes if 'range' is
  // 0 or greater than kMaxRange.
  UInt32 Generate(UInt32 range);

 private:
  UInt32 state_;
  GTEST_DISALLOW_COPY_AND_ASSIGN_(Random);
};

772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
// Defining a variable of type CompileAssertTypesEqual<T1, T2> will cause a
// compiler error iff T1 and T2 are different types.
template <typename T1, typename T2>
struct CompileAssertTypesEqual;

template <typename T>
struct CompileAssertTypesEqual<T, T> {
};

// Removes the reference from a type if it is a reference type,
// otherwise leaves it unchanged.  This is the same as
// tr1::remove_reference, which is not widely available yet.
template <typename T>
struct RemoveReference { typedef T type; };  // NOLINT
template <typename T>
struct RemoveReference<T&> { typedef T type; };  // NOLINT

// A handy wrapper around RemoveReference that works when the argument
// T depends on template parameters.
#define GTEST_REMOVE_REFERENCE_(T) \
    typename ::testing::internal::RemoveReference<T>::type

// Removes const from a type if it is a const type, otherwise leaves
// it unchanged.  This is the same as tr1::remove_const, which is not
// widely available yet.
template <typename T>
struct RemoveConst { typedef T type; };  // NOLINT
template <typename T>
struct RemoveConst<const T> { typedef T type; };  // NOLINT

802
803
804
// MSVC 8.0, Sun C++, and IBM XL C++ have a bug which causes the above
// definition to fail to remove the const in 'const int[3]' and 'const
// char[3][4]'.  The following specialization works around the bug.
805
template <typename T, size_t N>
806
struct RemoveConst<const T[N]> {
807
808
809
  typedef typename RemoveConst<T>::type type[N];
};

vladlosev's avatar
vladlosev committed
810
811
812
813
814
815
816
817
818
819
#if defined(_MSC_VER) && _MSC_VER < 1400
// This is the only specialization that allows VC++ 7.1 to remove const in
// 'const int[3] and 'const int[3][4]'.  However, it causes trouble with GCC
// and thus needs to be conditionally compiled.
template <typename T, size_t N>
struct RemoveConst<T[N]> {
  typedef typename RemoveConst<T>::type type[N];
};
#endif

820
821
822
823
824
// A handy wrapper around RemoveConst that works when the argument
// T depends on template parameters.
#define GTEST_REMOVE_CONST_(T) \
    typename ::testing::internal::RemoveConst<T>::type

825
826
827
828
// Turns const U&, U&, const U, and U all into U.
#define GTEST_REMOVE_REFERENCE_AND_CONST_(T) \
    GTEST_REMOVE_CONST_(GTEST_REMOVE_REFERENCE_(T))

829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
// Adds reference to a type if it is not a reference type,
// otherwise leaves it unchanged.  This is the same as
// tr1::add_reference, which is not widely available yet.
template <typename T>
struct AddReference { typedef T& type; };  // NOLINT
template <typename T>
struct AddReference<T&> { typedef T& type; };  // NOLINT

// A handy wrapper around AddReference that works when the argument T
// depends on template parameters.
#define GTEST_ADD_REFERENCE_(T) \
    typename ::testing::internal::AddReference<T>::type

// Adds a reference to const on top of T as necessary.  For example,
// it transforms
//
//   char         ==> const char&
//   const char   ==> const char&
//   char&        ==> const char&
//   const char&  ==> const char&
//
// The argument T must depend on some template parameters.
#define GTEST_REFERENCE_TO_CONST_(T) \
    GTEST_ADD_REFERENCE_(const GTEST_REMOVE_REFERENCE_(T))

// ImplicitlyConvertible<From, To>::value is a compile-time bool
// constant that's true iff type From can be implicitly converted to
// type To.
template <typename From, typename To>
class ImplicitlyConvertible {
 private:
  // We need the following helper functions only for their types.
  // They have no implementations.

  // MakeFrom() is an expression whose type is From.  We cannot simply
  // use From(), as the type From may not have a public default
  // constructor.
866
  static typename AddReference<From>::type MakeFrom();
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883

  // These two functions are overloaded.  Given an expression
  // Helper(x), the compiler will pick the first version if x can be
  // implicitly converted to type To; otherwise it will pick the
  // second version.
  //
  // The first version returns a value of size 1, and the second
  // version returns a value of size 2.  Therefore, by checking the
  // size of Helper(x), which can be done at compile time, we can tell
  // which version of Helper() is used, and hence whether x can be
  // implicitly converted to type To.
  static char Helper(To);
  static char (&Helper(...))[2];  // NOLINT

  // We have to put the 'public' section after the 'private' section,
  // or MSVC refuses to compile the code.
 public:
billydonahue's avatar
billydonahue committed
884
#if defined(__BORLANDC__)
885
886
887
888
  // C++Builder cannot use member overload resolution during template
  // instantiation.  The simplest workaround is to use its C++0x type traits
  // functions (C++Builder 2009 and above only).
  static const bool value = __is_convertible(From, To);
889
#else
billydonahue's avatar
billydonahue committed
890
891
892
893
  // MSVC warns about implicitly converting from double to int for
  // possible loss of data, so we need to temporarily disable the
  // warning.
  GTEST_DISABLE_MSC_WARNINGS_PUSH_(4244)
894
895
  static const bool value =
      sizeof(Helper(ImplicitlyConvertible::MakeFrom())) == 1;
billydonahue's avatar
billydonahue committed
896
897
  GTEST_DISABLE_MSC_WARNINGS_POP_()
#endif  // __BORLANDC__
898
899
900
901
902
903
904
905
906
907
908
909
910
911
};
template <typename From, typename To>
const bool ImplicitlyConvertible<From, To>::value;

// IsAProtocolMessage<T>::value is a compile-time bool constant that's
// true iff T is type ProtocolMessage, proto2::Message, or a subclass
// of those.
template <typename T>
struct IsAProtocolMessage
    : public bool_constant<
  ImplicitlyConvertible<const T*, const ::ProtocolMessage*>::value ||
  ImplicitlyConvertible<const T*, const ::proto2::Message*>::value> {
};

912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
// When the compiler sees expression IsContainerTest<C>(0), if C is an
// STL-style container class, the first overload of IsContainerTest
// will be viable (since both C::iterator* and C::const_iterator* are
// valid types and NULL can be implicitly converted to them).  It will
// be picked over the second overload as 'int' is a perfect match for
// the type of argument 0.  If C::iterator or C::const_iterator is not
// a valid type, the first overload is not viable, and the second
// overload will be picked.  Therefore, we can determine whether C is
// a container class by checking the type of IsContainerTest<C>(0).
// The value of the expression is insignificant.
//
// Note that we look for both C::iterator and C::const_iterator.  The
// reason is that C++ injects the name of a class as a member of the
// class itself (e.g. you can refer to class iterator as either
// 'iterator' or 'iterator::iterator').  If we look for C::iterator
// only, for example, we would mistakenly think that a class named
// iterator is an STL container.
//
// Also note that the simpler approach of overloading
// IsContainerTest(typename C::const_iterator*) and
// IsContainerTest(...) doesn't work with Visual Age C++ and Sun C++.
933
934
typedef int IsContainer;
template <class C>
935
936
937
938
939
IsContainer IsContainerTest(int /* dummy */,
                            typename C::iterator* /* it */ = NULL,
                            typename C::const_iterator* /* const_it */ = NULL) {
  return 0;
}
940
941
942

typedef char IsNotContainer;
template <class C>
943
IsNotContainer IsContainerTest(long /* dummy */) { return '\0'; }
944

945
946
947
948
949
950
951
// EnableIf<condition>::type is void when 'Cond' is true, and
// undefined when 'Cond' is false.  To use SFINAE to make a function
// overload only apply when a particular expression is true, add
// "typename EnableIf<expression>::type* = 0" as the last parameter.
template<bool> struct EnableIf;
template<> struct EnableIf<true> { typedef void type; };  // NOLINT

952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
// Utilities for native arrays.

// ArrayEq() compares two k-dimensional native arrays using the
// elements' operator==, where k can be any integer >= 0.  When k is
// 0, ArrayEq() degenerates into comparing a single pair of values.

template <typename T, typename U>
bool ArrayEq(const T* lhs, size_t size, const U* rhs);

// This generic version is used when k is 0.
template <typename T, typename U>
inline bool ArrayEq(const T& lhs, const U& rhs) { return lhs == rhs; }

// This overload is used when k >= 1.
template <typename T, typename U, size_t N>
inline bool ArrayEq(const T(&lhs)[N], const U(&rhs)[N]) {
  return internal::ArrayEq(lhs, N, rhs);
}

// This helper reduces code bloat.  If we instead put its logic inside
// the previous ArrayEq() function, arrays with different sizes would
// lead to different copies of the template code.
template <typename T, typename U>
bool ArrayEq(const T* lhs, size_t size, const U* rhs) {
  for (size_t i = 0; i != size; i++) {
    if (!internal::ArrayEq(lhs[i], rhs[i]))
      return false;
  }
  return true;
}

// Finds the first element in the iterator range [begin, end) that
// equals elem.  Element may be a native array type itself.
template <typename Iter, typename Element>
Iter ArrayAwareFind(Iter begin, Iter end, const Element& elem) {
  for (Iter it = begin; it != end; ++it) {
    if (internal::ArrayEq(*it, elem))
      return it;
  }
  return end;
}

// CopyArray() copies a k-dimensional native array using the elements'
// operator=, where k can be any integer >= 0.  When k is 0,
// CopyArray() degenerates into copying a single value.

template <typename T, typename U>
void CopyArray(const T* from, size_t size, U* to);

// This generic version is used when k is 0.
template <typename T, typename U>
inline void CopyArray(const T& from, U* to) { *to = from; }

// This overload is used when k >= 1.
template <typename T, typename U, size_t N>
inline void CopyArray(const T(&from)[N], U(*to)[N]) {
  internal::CopyArray(from, N, *to);
}

// This helper reduces code bloat.  If we instead put its logic inside
// the previous CopyArray() function, arrays with different sizes
// would lead to different copies of the template code.
template <typename T, typename U>
void CopyArray(const T* from, size_t size, U* to) {
  for (size_t i = 0; i != size; i++) {
    internal::CopyArray(from[i], to + i);
  }
}

// The relation between an NativeArray object (see below) and the
// native array it represents.
billydonahue's avatar
billydonahue committed
1023
1024
1025
1026
// We use 2 different structs to allow non-copyable types to be used, as long
// as RelationToSourceReference() is passed.
struct RelationToSourceReference {};
struct RelationToSourceCopy {};
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040

// Adapts a native array to a read-only STL-style container.  Instead
// of the complete STL container concept, this adaptor only implements
// members useful for Google Mock's container matchers.  New members
// should be added as needed.  To simplify the implementation, we only
// support Element being a raw type (i.e. having no top-level const or
// reference modifier).  It's the client's responsibility to satisfy
// this requirement.  Element can be an array type itself (hence
// multi-dimensional arrays are supported).
template <typename Element>
class NativeArray {
 public:
  // STL-style container typedefs.
  typedef Element value_type;
1041
  typedef Element* iterator;
1042
1043
  typedef const Element* const_iterator;

billydonahue's avatar
billydonahue committed
1044
1045
1046
1047
1048
1049
1050
1051
  // Constructs from a native array. References the source.
  NativeArray(const Element* array, size_t count, RelationToSourceReference) {
    InitRef(array, count);
  }

  // Constructs from a native array. Copies the source.
  NativeArray(const Element* array, size_t count, RelationToSourceCopy) {
    InitCopy(array, count);
1052
1053
1054
1055
  }

  // Copy constructor.
  NativeArray(const NativeArray& rhs) {
billydonahue's avatar
billydonahue committed
1056
    (this->*rhs.clone_)(rhs.array_, rhs.size_);
1057
1058
1059
  }

  ~NativeArray() {
billydonahue's avatar
billydonahue committed
1060
    if (clone_ != &NativeArray::InitRef)
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
      delete[] array_;
  }

  // STL-style container methods.
  size_t size() const { return size_; }
  const_iterator begin() const { return array_; }
  const_iterator end() const { return array_ + size_; }
  bool operator==(const NativeArray& rhs) const {
    return size() == rhs.size() &&
        ArrayEq(begin(), size(), rhs.begin());
  }

 private:
billydonahue's avatar
billydonahue committed
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
  enum {
    kCheckTypeIsNotConstOrAReference = StaticAssertTypeEqHelper<
        Element, GTEST_REMOVE_REFERENCE_AND_CONST_(Element)>::value,
  };

  // Initializes this object with a copy of the input.
  void InitCopy(const Element* array, size_t a_size) {
    Element* const copy = new Element[a_size];
    CopyArray(array, a_size, copy);
    array_ = copy;
1084
    size_ = a_size;
billydonahue's avatar
billydonahue committed
1085
1086
1087
1088
1089
1090
1091
1092
    clone_ = &NativeArray::InitCopy;
  }

  // Initializes this object with a reference of the input.
  void InitRef(const Element* array, size_t a_size) {
    array_ = array;
    size_ = a_size;
    clone_ = &NativeArray::InitRef;
1093
1094
1095
1096
  }

  const Element* array_;
  size_t size_;
billydonahue's avatar
billydonahue committed
1097
  void (NativeArray::*clone_)(const Element*, size_t);
1098
1099
1100
1101

  GTEST_DISALLOW_ASSIGN_(NativeArray);
};

shiqian's avatar
shiqian committed
1102
1103
1104
}  // namespace internal
}  // namespace testing

1105
1106
#define GTEST_MESSAGE_AT_(file, line, message, result_type) \
  ::testing::internal::AssertHelper(result_type, file, line, message) \
shiqian's avatar
shiqian committed
1107
1108
    = ::testing::Message()

1109
1110
1111
#define GTEST_MESSAGE_(message, result_type) \
  GTEST_MESSAGE_AT_(__FILE__, __LINE__, message, result_type)

shiqian's avatar
shiqian committed
1112
#define GTEST_FATAL_FAILURE_(message) \
1113
  return GTEST_MESSAGE_(message, ::testing::TestPartResult::kFatalFailure)
shiqian's avatar
shiqian committed
1114

shiqian's avatar
shiqian committed
1115
#define GTEST_NONFATAL_FAILURE_(message) \
1116
  GTEST_MESSAGE_(message, ::testing::TestPartResult::kNonFatalFailure)
shiqian's avatar
shiqian committed
1117

shiqian's avatar
shiqian committed
1118
#define GTEST_SUCCESS_(message) \
1119
  GTEST_MESSAGE_(message, ::testing::TestPartResult::kSuccess)
shiqian's avatar
shiqian committed
1120

1121
1122
1123
// Suppresses MSVC warnings 4072 (unreachable code) for the code following
// statement if it returns or throws (or doesn't return or throw in some
// situations).
1124
#define GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement) \
1125
1126
  if (::testing::internal::AlwaysTrue()) { statement; }

shiqian's avatar
shiqian committed
1127
1128
#define GTEST_TEST_THROW_(statement, expected_exception, fail) \
  GTEST_AMBIGUOUS_ELSE_BLOCKER_ \
1129
  if (::testing::internal::ConstCharPtr gtest_msg = "") { \
1130
1131
    bool gtest_caught_expected = false; \
    try { \
1132
      GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \
1133
1134
1135
1136
1137
    } \
    catch (expected_exception const&) { \
      gtest_caught_expected = true; \
    } \
    catch (...) { \
1138
1139
1140
      gtest_msg.value = \
          "Expected: " #statement " throws an exception of type " \
          #expected_exception ".\n  Actual: it throws a different type."; \
shiqian's avatar
shiqian committed
1141
      goto GTEST_CONCAT_TOKEN_(gtest_label_testthrow_, __LINE__); \
1142
1143
    } \
    if (!gtest_caught_expected) { \
1144
1145
1146
      gtest_msg.value = \
          "Expected: " #statement " throws an exception of type " \
          #expected_exception ".\n  Actual: it throws nothing."; \
shiqian's avatar
shiqian committed
1147
      goto GTEST_CONCAT_TOKEN_(gtest_label_testthrow_, __LINE__); \
1148
1149
    } \
  } else \
shiqian's avatar
shiqian committed
1150
    GTEST_CONCAT_TOKEN_(gtest_label_testthrow_, __LINE__): \
1151
      fail(gtest_msg.value)
1152

shiqian's avatar
shiqian committed
1153
1154
#define GTEST_TEST_NO_THROW_(statement, fail) \
  GTEST_AMBIGUOUS_ELSE_BLOCKER_ \
1155
  if (::testing::internal::AlwaysTrue()) { \
1156
    try { \
1157
      GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \
1158
1159
    } \
    catch (...) { \
shiqian's avatar
shiqian committed
1160
      goto GTEST_CONCAT_TOKEN_(gtest_label_testnothrow_, __LINE__); \
1161
1162
    } \
  } else \
shiqian's avatar
shiqian committed
1163
    GTEST_CONCAT_TOKEN_(gtest_label_testnothrow_, __LINE__): \
1164
1165
      fail("Expected: " #statement " doesn't throw an exception.\n" \
           "  Actual: it throws.")
1166

shiqian's avatar
shiqian committed
1167
1168
#define GTEST_TEST_ANY_THROW_(statement, fail) \
  GTEST_AMBIGUOUS_ELSE_BLOCKER_ \
1169
  if (::testing::internal::AlwaysTrue()) { \
1170
1171
    bool gtest_caught_any = false; \
    try { \
1172
      GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \
1173
1174
1175
1176
1177
    } \
    catch (...) { \
      gtest_caught_any = true; \
    } \
    if (!gtest_caught_any) { \
shiqian's avatar
shiqian committed
1178
      goto GTEST_CONCAT_TOKEN_(gtest_label_testanythrow_, __LINE__); \
1179
1180
    } \
  } else \
shiqian's avatar
shiqian committed
1181
    GTEST_CONCAT_TOKEN_(gtest_label_testanythrow_, __LINE__): \
1182
1183
      fail("Expected: " #statement " throws an exception.\n" \
           "  Actual: it doesn't.")
1184
1185


1186
1187
1188
1189
// Implements Boolean test assertions such as EXPECT_TRUE. expression can be
// either a boolean expression or an AssertionResult. text is a textual
// represenation of expression as it was passed into the EXPECT_TRUE.
#define GTEST_TEST_BOOLEAN_(expression, text, actual, expected, fail) \
shiqian's avatar
shiqian committed
1190
  GTEST_AMBIGUOUS_ELSE_BLOCKER_ \
1191
1192
  if (const ::testing::AssertionResult gtest_ar_ = \
      ::testing::AssertionResult(expression)) \
shiqian's avatar
shiqian committed
1193
1194
    ; \
  else \
1195
1196
    fail(::testing::internal::GetBoolAssertionFailureMessage(\
        gtest_ar_, text, #actual, #expected).c_str())
shiqian's avatar
shiqian committed
1197

shiqian's avatar
shiqian committed
1198
1199
#define GTEST_TEST_NO_FATAL_FAILURE_(statement, fail) \
  GTEST_AMBIGUOUS_ELSE_BLOCKER_ \
1200
  if (::testing::internal::AlwaysTrue()) { \
shiqian's avatar
shiqian committed
1201
    ::testing::internal::HasNewFatalFailureHelper gtest_fatal_failure_checker; \
1202
    GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \
shiqian's avatar
shiqian committed
1203
1204
1205
1206
1207
    if (gtest_fatal_failure_checker.has_new_fatal_failure()) { \
      goto GTEST_CONCAT_TOKEN_(gtest_label_testnofatal_, __LINE__); \
    } \
  } else \
    GTEST_CONCAT_TOKEN_(gtest_label_testnofatal_, __LINE__): \
1208
1209
1210
      fail("Expected: " #statement " doesn't generate new fatal " \
           "failures in the current thread.\n" \
           "  Actual: it does.")
shiqian's avatar
shiqian committed
1211

1212
1213
1214
1215
// Expands to the name of the class that implements the given test.
#define GTEST_TEST_CLASS_NAME_(test_case_name, test_name) \
  test_case_name##_##test_name##_Test

shiqian's avatar
shiqian committed
1216
// Helper macro for defining tests.
1217
#define GTEST_TEST_(test_case_name, test_name, parent_class, parent_id)\
1218
class GTEST_TEST_CLASS_NAME_(test_case_name, test_name) : public parent_class {\
shiqian's avatar
shiqian committed
1219
 public:\
1220
  GTEST_TEST_CLASS_NAME_(test_case_name, test_name)() {}\
shiqian's avatar
shiqian committed
1221
1222
 private:\
  virtual void TestBody();\
1223
  static ::testing::TestInfo* const test_info_ GTEST_ATTRIBUTE_UNUSED_;\
shiqian's avatar
shiqian committed
1224
  GTEST_DISALLOW_COPY_AND_ASSIGN_(\
1225
      GTEST_TEST_CLASS_NAME_(test_case_name, test_name));\
shiqian's avatar
shiqian committed
1226
1227
};\
\
1228
1229
1230
::testing::TestInfo* const GTEST_TEST_CLASS_NAME_(test_case_name, test_name)\
  ::test_info_ =\
    ::testing::internal::MakeAndRegisterTestInfo(\
1231
        #test_case_name, #test_name, NULL, NULL, \
kosak's avatar
kosak committed
1232
        ::testing::internal::CodeLocation(__FILE__, __LINE__), \
1233
        (parent_id), \
1234
1235
1236
        parent_class::SetUpTestCase, \
        parent_class::TearDownTestCase, \
        new ::testing::internal::TestFactoryImpl<\
1237
1238
            GTEST_TEST_CLASS_NAME_(test_case_name, test_name)>);\
void GTEST_TEST_CLASS_NAME_(test_case_name, test_name)::TestBody()
shiqian's avatar
shiqian committed
1239
1240

#endif  // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_INTERNAL_H_
billydonahue's avatar
billydonahue committed
1241