1b89a7cc2SEnji Cooper // Copyright 2010, Google Inc.
2b89a7cc2SEnji Cooper // All rights reserved.
3b89a7cc2SEnji Cooper //
4b89a7cc2SEnji Cooper // Redistribution and use in source and binary forms, with or without
5b89a7cc2SEnji Cooper // modification, are permitted provided that the following conditions are
6b89a7cc2SEnji Cooper // met:
7b89a7cc2SEnji Cooper //
8b89a7cc2SEnji Cooper //     * Redistributions of source code must retain the above copyright
9b89a7cc2SEnji Cooper // notice, this list of conditions and the following disclaimer.
10b89a7cc2SEnji Cooper //     * Redistributions in binary form must reproduce the above
11b89a7cc2SEnji Cooper // copyright notice, this list of conditions and the following disclaimer
12b89a7cc2SEnji Cooper // in the documentation and/or other materials provided with the
13b89a7cc2SEnji Cooper // distribution.
14b89a7cc2SEnji Cooper //     * Neither the name of Google Inc. nor the names of its
15b89a7cc2SEnji Cooper // contributors may be used to endorse or promote products derived from
16b89a7cc2SEnji Cooper // this software without specific prior written permission.
17b89a7cc2SEnji Cooper //
18b89a7cc2SEnji Cooper // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19b89a7cc2SEnji Cooper // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20b89a7cc2SEnji Cooper // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21b89a7cc2SEnji Cooper // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22b89a7cc2SEnji Cooper // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23b89a7cc2SEnji Cooper // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24b89a7cc2SEnji Cooper // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25b89a7cc2SEnji Cooper // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26b89a7cc2SEnji Cooper // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27b89a7cc2SEnji Cooper // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28b89a7cc2SEnji Cooper // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29b89a7cc2SEnji Cooper 
30b89a7cc2SEnji Cooper //
31b89a7cc2SEnji Cooper // Tests that verify interaction of exceptions and death tests.
32b89a7cc2SEnji Cooper 
33b89a7cc2SEnji Cooper #include "gtest/gtest-death-test.h"
34b89a7cc2SEnji Cooper #include "gtest/gtest.h"
35b89a7cc2SEnji Cooper 
3628f6c2f2SEnji Cooper #ifdef GTEST_HAS_DEATH_TEST
37b89a7cc2SEnji Cooper 
38b89a7cc2SEnji Cooper #if GTEST_HAS_SEH
39b89a7cc2SEnji Cooper #include <windows.h>  // For RaiseException().
40b89a7cc2SEnji Cooper #endif
41b89a7cc2SEnji Cooper 
42b89a7cc2SEnji Cooper #include "gtest/gtest-spi.h"
43b89a7cc2SEnji Cooper 
44b89a7cc2SEnji Cooper #if GTEST_HAS_EXCEPTIONS
45b89a7cc2SEnji Cooper 
46b89a7cc2SEnji Cooper #include <exception>  // For std::exception.
47b89a7cc2SEnji Cooper 
48b89a7cc2SEnji Cooper // Tests that death tests report thrown exceptions as failures and that the
49b89a7cc2SEnji Cooper // exceptions do not escape death test macros.
TEST(CxxExceptionDeathTest,ExceptionIsFailure)50b89a7cc2SEnji Cooper TEST(CxxExceptionDeathTest, ExceptionIsFailure) {
51b89a7cc2SEnji Cooper   try {
52b89a7cc2SEnji Cooper     EXPECT_NONFATAL_FAILURE(EXPECT_DEATH(throw 1, ""), "threw an exception");
53b89a7cc2SEnji Cooper   } catch (...) {  // NOLINT
54b89a7cc2SEnji Cooper     FAIL() << "An exception escaped a death test macro invocation "
55b89a7cc2SEnji Cooper            << "with catch_exceptions "
5628f6c2f2SEnji Cooper            << (GTEST_FLAG_GET(catch_exceptions) ? "enabled" : "disabled");
57b89a7cc2SEnji Cooper   }
58b89a7cc2SEnji Cooper }
59b89a7cc2SEnji Cooper 
60b89a7cc2SEnji Cooper class TestException : public std::exception {
61b89a7cc2SEnji Cooper  public:
what() const6228f6c2f2SEnji Cooper   const char* what() const noexcept override { return "exceptional message"; }
63b89a7cc2SEnji Cooper };
64b89a7cc2SEnji Cooper 
TEST(CxxExceptionDeathTest,PrintsMessageForStdExceptions)65b89a7cc2SEnji Cooper TEST(CxxExceptionDeathTest, PrintsMessageForStdExceptions) {
66b89a7cc2SEnji Cooper   // Verifies that the exception message is quoted in the failure text.
67b89a7cc2SEnji Cooper   EXPECT_NONFATAL_FAILURE(EXPECT_DEATH(throw TestException(), ""),
68b89a7cc2SEnji Cooper                           "exceptional message");
69b89a7cc2SEnji Cooper   // Verifies that the location is mentioned in the failure text.
7028f6c2f2SEnji Cooper   EXPECT_NONFATAL_FAILURE(EXPECT_DEATH(throw TestException(), ""), __FILE__);
71b89a7cc2SEnji Cooper }
72b89a7cc2SEnji Cooper #endif  // GTEST_HAS_EXCEPTIONS
73b89a7cc2SEnji Cooper 
74b89a7cc2SEnji Cooper #if GTEST_HAS_SEH
75b89a7cc2SEnji Cooper // Tests that enabling interception of SEH exceptions with the
76b89a7cc2SEnji Cooper // catch_exceptions flag does not interfere with SEH exceptions being
77b89a7cc2SEnji Cooper // treated as death by death tests.
TEST(SehExceptionDeasTest,CatchExceptionsDoesNotInterfere)78b89a7cc2SEnji Cooper TEST(SehExceptionDeasTest, CatchExceptionsDoesNotInterfere) {
79b89a7cc2SEnji Cooper   EXPECT_DEATH(RaiseException(42, 0x0, 0, NULL), "")
80b89a7cc2SEnji Cooper       << "with catch_exceptions "
8128f6c2f2SEnji Cooper       << (GTEST_FLAG_GET(catch_exceptions) ? "enabled" : "disabled");
82b89a7cc2SEnji Cooper }
83b89a7cc2SEnji Cooper #endif
84b89a7cc2SEnji Cooper 
85b89a7cc2SEnji Cooper #endif  // GTEST_HAS_DEATH_TEST
86b89a7cc2SEnji Cooper 
main(int argc,char ** argv)87b89a7cc2SEnji Cooper int main(int argc, char** argv) {
88b89a7cc2SEnji Cooper   testing::InitGoogleTest(&argc, argv);
8928f6c2f2SEnji Cooper   GTEST_FLAG_SET(catch_exceptions, GTEST_ENABLE_CATCH_EXCEPTIONS_ != 0);
90b89a7cc2SEnji Cooper   return RUN_ALL_TESTS();
91b89a7cc2SEnji Cooper }
92