47 #ifdef GTEST_IS_THREADSAFE
48 using testing::ScopedFakeTestPartResultReporter;
49 using testing::TestPartResultArray;
51 using testing::internal::Notification;
52 using testing::internal::ThreadWithParam;
55 namespace posix = ::testing::internal::posix;
75 FAIL() <<
"This should never be reached.";
78 TEST(PassingTest, PassingTest1) {}
80 TEST(PassingTest, PassingTest2) {}
103 TEST(NonfatalFailureTest, EscapesStringOperands) {
104 std::string actual =
"actual \"string\"";
111 TEST(NonfatalFailureTest, DiffForLongStrings) {
112 std::string golden_str(kGoldenString,
sizeof(kGoldenString) - 1);
117 TEST(FatalFailureTest, FatalFailureInSubroutine) {
118 printf(
"(expecting a failure that x should be 1)\n");
124 TEST(FatalFailureTest, FatalFailureInNestedSubroutine) {
125 printf(
"(expecting a failure that x should be 1)\n");
134 if (HasFatalFailure())
return;
137 FAIL() <<
"This should never be reached.";
141 TEST(FatalFailureTest, NonfatalFailureInSubroutine) {
142 printf(
"(expecting a failure on false)\n");
148 TEST(LoggingTest, InterleavingLoggingAndAssertions) {
149 static const int a[4] = {3, 9, 2, 6};
151 printf(
"(expecting 2 failures on (3) >= (a[i]))\n");
152 for (
int i = 0; i < static_cast<int>(
sizeof(
a) /
sizeof(*a));
i++) {
153 printf(
"i == %d\n",
i);
173 TEST(SCOPED_TRACETest, AcceptedValues) {
177 const char* null_value =
nullptr;
180 ADD_FAILURE() <<
"Just checking that all these values work fine.";
184 TEST(SCOPED_TRACETest, ObeysScopes) {
185 printf(
"(expected to fail)\n");
188 ADD_FAILURE() <<
"This failure is expected, and shouldn't have a trace.";
194 ADD_FAILURE() <<
"This failure is expected, and should have a trace.";
199 ADD_FAILURE() <<
"This failure is expected, and shouldn't have a trace.";
203 TEST(SCOPED_TRACETest, WorksInLoop) {
204 printf(
"(expected to fail)\n");
206 for (
int i = 1;
i <= 2;
i++) {
214 TEST(SCOPED_TRACETest, WorksInSubroutine) {
215 printf(
"(expected to fail)\n");
222 TEST(SCOPED_TRACETest, CanBeNested) {
223 printf(
"(expected to fail)\n");
231 TEST(SCOPED_TRACETest, CanBeRepeated) {
232 printf(
"(expected to fail)\n");
236 <<
"This failure is expected, and should contain trace point A.";
240 <<
"This failure is expected, and should contain trace point A and B.";
244 ADD_FAILURE() <<
"This failure is expected, and should "
245 <<
"contain trace point A, B, and C.";
249 ADD_FAILURE() <<
"This failure is expected, and should "
250 <<
"contain trace point A, B, and D.";
253 #ifdef GTEST_IS_THREADSAFE
289 static void ThreadWithScopedTrace(CheckPoints* check_points) {
292 ADD_FAILURE() <<
"Expected failure #1 (in thread B, only trace B alive).";
293 check_points->n1.Notify();
294 check_points->n2.WaitForNotification();
297 <<
"Expected failure #3 (in thread B, trace A & B both alive).";
299 ADD_FAILURE() <<
"Expected failure #4 (in thread B, only trace A alive).";
300 check_points->n3.Notify();
303 TEST(SCOPED_TRACETest, WorksConcurrently) {
304 printf(
"(expecting 6 failures)\n");
306 CheckPoints check_points;
307 ThreadWithParam<CheckPoints*> thread(&ThreadWithScopedTrace, &check_points,
309 check_points.n1.WaitForNotification();
314 <<
"Expected failure #2 (in thread A, trace A & B both alive).";
315 check_points.n2.Notify();
316 check_points.n3.WaitForNotification();
318 ADD_FAILURE() <<
"Expected failure #5 (in thread A, only trace A alive).";
320 ADD_FAILURE() <<
"Expected failure #6 (in thread A, no trace alive).";
323 #endif // GTEST_IS_THREADSAFE
327 TEST(ScopedTraceTest, WithExplicitFileAndLine) {
329 ADD_FAILURE() <<
"Check that the trace is attached to a particular location.";
333 DISABLED_AlsoRunDisabledTestsFlagSuppressesWarning) {
344 printf(
"The non-test part of the code is expected to have 2 failures.\n\n");
359 printf(
"(expecting 5 failures)\n");
360 ADD_FAILURE() <<
"Expected failure #1, in the test fixture c'tor.";
364 ADD_FAILURE() <<
"Expected failure #5, in the test fixture d'tor.";
370 ADD_FAILURE() <<
"Expected failure #4, in TearDown.";
375 ADD_FAILURE() <<
"Expected failure #3, in the test body.";
382 printf(
"(expecting 2 failures)\n");
387 ADD_FAILURE() <<
"Expected failure #2, in the test fixture d'tor.";
392 <<
"We should never get here, as the test fixture c'tor "
393 <<
"had a fatal failure.";
397 ADD_FAILURE() <<
"UNEXPECTED failure in TearDown(). "
398 <<
"We should never get here, as the test fixture c'tor "
399 <<
"had a fatal failure.";
403 void Init() {
FAIL() <<
"Expected failure #1, in the test fixture c'tor."; }
407 ADD_FAILURE() <<
"UNEXPECTED failure in the test body. "
408 <<
"We should never get here, as the test fixture c'tor "
409 <<
"had a fatal failure.";
418 printf(
"(expecting 4 failures)\n");
419 ADD_FAILURE() <<
"Expected failure #1, in SetUp().";
422 void TearDown()
override {
FAIL() <<
"Expected failure #3, in TearDown()."; }
425 void Deinit() {
FAIL() <<
"Expected failure #4, in the test fixture d'tor."; }
429 FAIL() <<
"Expected failure #2, in the test function.";
438 printf(
"(expecting 3 failures)\n");
439 FAIL() <<
"Expected failure #1, in SetUp().";
442 void TearDown()
override {
FAIL() <<
"Expected failure #2, in TearDown()."; }
445 void Deinit() {
FAIL() <<
"Expected failure #3, in the test fixture d'tor."; }
449 FAIL() <<
"UNEXPECTED failure in the test function. "
450 <<
"We should never get here, as SetUp() failed.";
453 TEST(AddFailureAtTest, MessageContainsSpecifiedFileAndLineNumber) {
454 ADD_FAILURE_AT(
"foo.cc", 42) <<
"Expected nonfatal failure in foo.cc";
457 TEST(GtestFailAtTest, MessageContainsSpecifiedFileAndLineNumber) {
458 GTEST_FAIL_AT(
"foo.cc", 42) <<
"Expected fatal failure in foo.cc";
481 TheSecondTestWithThisNameShouldFail) {}
499 TheSecondTestWithThisNameShouldFail) {}
528 TEST(ExpectNonfatalFailureTest, CanReferenceGlobalVariables) {
531 {
EXPECT_EQ(1, global_integer) <<
"Expected non-fatal failure."; },
532 "Expected non-fatal failure.");
537 TEST(ExpectNonfatalFailureTest, CanReferenceLocalVariables) {
542 "Expected non-fatal failure.");
547 TEST(ExpectNonfatalFailureTest, SucceedsWhenThereIsOneNonfatalFailure) {
549 "Expected non-fatal failure.");
554 TEST(ExpectNonfatalFailureTest, FailsWhenThereIsNoNonfatalFailure) {
555 printf(
"(expecting a failure)\n");
561 TEST(ExpectNonfatalFailureTest, FailsWhenThereAreTwoNonfatalFailures) {
562 printf(
"(expecting a failure)\n");
573 TEST(ExpectNonfatalFailureTest, FailsWhenThereIsOneFatalFailure) {
574 printf(
"(expecting a failure)\n");
580 TEST(ExpectNonfatalFailureTest, FailsWhenStatementReturns) {
581 printf(
"(expecting a failure)\n");
585 #if GTEST_HAS_EXCEPTIONS
589 TEST(ExpectNonfatalFailureTest, FailsWhenStatementThrows) {
590 printf(
"(expecting a failure)\n");
597 #endif // GTEST_HAS_EXCEPTIONS
600 TEST(ExpectFatalFailureTest, CanReferenceGlobalVariables) {
603 {
ASSERT_EQ(1, global_integer) <<
"Expected fatal failure."; },
604 "Expected fatal failure.");
609 TEST(ExpectFatalFailureTest, CanReferenceLocalStaticVariables) {
613 "Expected fatal failure.");
618 TEST(ExpectFatalFailureTest, SucceedsWhenThereIsOneFatalFailure) {
620 "Expected fatal failure.");
625 TEST(ExpectFatalFailureTest, FailsWhenThereIsNoFatalFailure) {
626 printf(
"(expecting a failure)\n");
635 TEST(ExpectFatalFailureTest, FailsWhenThereAreTwoFatalFailures) {
636 printf(
"(expecting a failure)\n");
647 TEST(ExpectFatalFailureTest, FailsWhenThereIsOneNonfatalFailure) {
648 printf(
"(expecting a failure)\n");
654 TEST(ExpectFatalFailureTest, FailsWhenStatementReturns) {
655 printf(
"(expecting a failure)\n");
659 #if GTEST_HAS_EXCEPTIONS
663 TEST(ExpectFatalFailureTest, FailsWhenStatementThrows) {
664 printf(
"(expecting a failure)\n");
671 #endif // GTEST_HAS_EXCEPTIONS
699 template <
typename T>
707 EXPECT_EQ(1, TypeParam()) <<
"Expected failure";
712 template <
typename T>
717 template <
typename T>
732 template <
typename T>
740 EXPECT_EQ(1U, TypeParam()) <<
"Expected failure";
750 template <
typename T>
764 template <
typename T>
768 TypeParam instantiate;
779 #ifdef GTEST_HAS_DEATH_TEST
784 TEST(ADeathTest, ShouldRunFirst) {}
789 template <
typename T>
795 TYPED_TEST(ATypedDeathTest, ShouldRunFirst) {}
800 template <
typename T>
811 #endif // GTEST_HAS_DEATH_TEST
820 FAIL() <<
"Expected fatal failure.";
829 printf(
"(expecting 1 failure)\n");
832 printf(
"(expecting 1 failure)\n");
834 "Expected non-fatal "
837 printf(
"(expecting 1 failure)\n");
839 "Some other fatal failure "
845 printf(
"(expecting 1 failure)\n");
848 printf(
"(expecting 1 failure)\n");
851 printf(
"(expecting 1 failure)\n");
853 "Some other non-fatal "
857 #ifdef GTEST_IS_THREADSAFE
861 static void AddFailureInOtherThread(FailureMode failure) {
862 ThreadWithParam<FailureMode> thread(&AddFailure, failure,
nullptr);
867 TEST_F(ExpectFailureWithThreadsTest, ExpectFatalFailure) {
869 printf(
"(expecting 2 failures)\n");
871 "Expected fatal failure.");
874 TEST_F(ExpectFailureWithThreadsTest, ExpectNonFatalFailure) {
876 printf(
"(expecting 2 failures)\n");
878 "Expected non-fatal failure.");
881 typedef ExpectFailureWithThreadsTest ScopedFakeTestPartResultReporterTest;
885 TEST_F(ScopedFakeTestPartResultReporterTest, InterceptOnlyCurrentThread) {
886 printf(
"(expecting 2 failures)\n");
887 TestPartResultArray results;
889 ScopedFakeTestPartResultReporter reporter(
890 ScopedFakeTestPartResultReporter::INTERCEPT_ONLY_CURRENT_THREAD,
892 AddFailureInOtherThread(FATAL_FAILURE);
893 AddFailureInOtherThread(NONFATAL_FAILURE);
896 EXPECT_EQ(0, results.size()) <<
"This shouldn't fail.";
899 #endif // GTEST_IS_THREADSAFE
903 printf(
"(expecting 1 failure)\n");
906 printf(
"(expecting 1 failure)\n");
908 "Expected non-fatal failure.");
910 printf(
"(expecting 1 failure)\n");
912 "Some other fatal failure expected.");
917 printf(
"(expecting 1 failure)\n");
919 "Expected non-fatal "
922 printf(
"(expecting 1 failure)\n");
924 "Expected fatal failure.");
926 printf(
"(expecting 1 failure)\n");
928 "Some other non-fatal failure.");
935 void SetUp()
override { printf(
"DynamicFixture::SetUp\n"); }
936 void TearDown()
override { printf(
"DynamicFixture::TearDown\n"); }
940 printf(
"DynamicFixture::TearDownTestSuite\n");
953 "DynamicFixture",
"DynamicTestPass",
nullptr,
nullptr, __FILE__,
956 "DynamicFixture",
"DynamicTestFail",
nullptr,
nullptr, __FILE__,
961 "DynamicFixtureAnotherName",
"DynamicTestPass",
nullptr,
nullptr,
967 "BadDynamicFixture1",
"FixtureBase",
nullptr,
nullptr, __FILE__,
970 "BadDynamicFixture1",
"TestBase",
nullptr,
nullptr, __FILE__, __LINE__,
976 "BadDynamicFixture2",
"FixtureBase",
nullptr,
nullptr, __FILE__,
986 void SetUp()
override { printf(
"%s",
"FooEnvironment::SetUp() called.\n"); }
989 printf(
"%s",
"FooEnvironment::TearDown() called.\n");
990 FAIL() <<
"Expected fatal failure.";
996 void SetUp()
override { printf(
"%s",
"BarEnvironment::SetUp() called.\n"); }
999 printf(
"%s",
"BarEnvironment::TearDown() called.\n");
1032 bool internal_skip_environment_and_ad_hoc_tests =
1034 std::string(
"internal_skip_environment_and_ad_hoc_tests")) > 0;
1036 #ifdef GTEST_HAS_DEATH_TEST
1040 #if defined(GTEST_OS_WINDOWS)
1044 #endif // GTEST_OS_WINDOWS
1047 #endif // GTEST_HAS_DEATH_TEST
1049 if (internal_skip_environment_and_ad_hoc_tests)
return RUN_ALL_TESTS();
FILE * FReopen(const char *path, const char *mode, FILE *stream)
testing::Types< unsigned char, unsigned int > UnsignedTypes
#define TYPED_TEST_P(SuiteName, TestName)
internal::ValueArray< T...> Values(T...v)
Environment * AddGlobalTestEnvironment(Environment *env)
static bool HasFatalFailure()
GTEST_DISABLE_MSC_WARNINGS_POP_() TEST(LinkTest
static void SetUpTestSuite()
#define EXPECT_NONFATAL_FAILURE(statement, substr)
~FatalFailureInSetUpTest() override
::std::string PrintToString(const T &value)
NonFatalFailureInFixtureConstructorTest()
static void SetUpTestSuite()
#define TEST_F(test_fixture, test_name)
#define EXPECT_GE(val1, val2)
static std::string GetName(int i)
#define ADD_FAILURE_AT(file, line)
#define TEST(test_suite_name, test_name)
#define ASSERT_EQ(val1, val2)
~NonFatalFailureInSetUpTest() override
#define EXPECT_FATAL_FAILURE_ON_ALL_THREADS(statement, substr)
#define EXPECT_FATAL_FAILURE(statement, substr)
#define GTEST_FAIL_AT(file, line)
~NonFatalFailureInFixtureConstructorTest() override
void SubWithoutTrace(int n)
#define TYPED_TEST_SUITE(CaseName, Types,...)
TEST_F(MixedUpTestSuiteTest, FirstTestFromNamespaceFoo)
#define GTEST_DISABLE_MSC_WARNINGS_PUSH_(warnings)
#define INSTANTIATE_TYPED_TEST_SUITE_P(Prefix, SuiteName, Types,...)
ADVar foo(double d, ADVar x, ADVar y)
#define GTEST_FLAG_SET(name, value)
static std::string GetName(int i)
TEST_F(MixedUpTestSuiteTest, ThisShouldFail)
#define GTEST_FLAG_GET(name)
Types< int, long > NumericTypes
static void AddFailure(FailureMode failure)
static const char kGoldenString[]
~FatalFailureInFixtureConstructorTest() override
#define SCOPED_TRACE(message)
static void SetUpTestSuite()
FatalFailureInFixtureConstructorTest()
#define EXPECT_EQ(val1, val2)
#define TEST_P(test_suite_name, test_name)
static void TearDownTestSuite()
#define TYPED_TEST(CaseName, TestName)
int RUN_ALL_TESTS() GTEST_MUST_USE_RESULT_
#define EXPECT_NONFATAL_FAILURE_ON_ALL_THREADS(statement, substr)
GTEST_API_ void InitGoogleTest(int *argc, char **argv)
#define EXPECT_TRUE(condition)
Factory TestInfo * RegisterTest(const char *test_suite_name, const char *test_name, const char *type_param, const char *value_param, const char *file, int line, Factory factory)
#define TYPED_TEST_SUITE_P(SuiteName)
#define REGISTER_TYPED_TEST_SUITE_P(SuiteName,...)
std::string ParamNameFunc(const testing::TestParamInfo< std::string > &info)
#define INSTANTIATE_TEST_SUITE_P(prefix, test_suite_name,...)
#define ASSERT_FALSE(condition)
testing::Types< char, int > TypesForTestWithNames
~DynamicFixture() override