gtest_assert_by_exception_test.cc 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. // Copyright 2009, Google Inc.
  2. // All rights reserved.
  3. //
  4. // Redistribution and use in source and binary forms, with or without
  5. // modification, are permitted provided that the following conditions are
  6. // met:
  7. //
  8. // * Redistributions of source code must retain the above copyright
  9. // notice, this list of conditions and the following disclaimer.
  10. // * Redistributions in binary form must reproduce the above
  11. // copyright notice, this list of conditions and the following disclaimer
  12. // in the documentation and/or other materials provided with the
  13. // distribution.
  14. // * Neither the name of Google Inc. nor the names of its
  15. // contributors may be used to endorse or promote products derived from
  16. // this software without specific prior written permission.
  17. //
  18. // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  19. // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  20. // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  21. // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  22. // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  23. // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  24. // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  25. // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  26. // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  27. // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  28. // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  29. // Tests Google Test's assert-by-exception mode with exceptions enabled.
  30. #include "gtest/gtest.h"
  31. #include <stdlib.h>
  32. #include <stdio.h>
  33. #include <string.h>
  34. #include <stdexcept>
  35. class ThrowListener : public testing::EmptyTestEventListener {
  36. void OnTestPartResult(const testing::TestPartResult& result) override {
  37. if (result.type() == testing::TestPartResult::kFatalFailure) {
  38. throw testing::AssertionException(result);
  39. }
  40. }
  41. };
  42. // Prints the given failure message and exits the program with
  43. // non-zero. We use this instead of a Google Test assertion to
  44. // indicate a failure, as the latter is been tested and cannot be
  45. // relied on.
  46. void Fail(const char* msg) {
  47. printf("FAILURE: %s\n", msg);
  48. fflush(stdout);
  49. exit(1);
  50. }
  51. static void AssertFalse() {
  52. ASSERT_EQ(2, 3) << "Expected failure";
  53. }
  54. // Tests that an assertion failure throws a subclass of
  55. // std::runtime_error.
  56. TEST(Test, Test) {
  57. // A successful assertion shouldn't throw.
  58. try {
  59. EXPECT_EQ(3, 3);
  60. } catch(...) {
  61. Fail("A successful assertion wrongfully threw.");
  62. }
  63. // A successful assertion shouldn't throw.
  64. try {
  65. EXPECT_EQ(3, 4);
  66. } catch(...) {
  67. Fail("A failed non-fatal assertion wrongfully threw.");
  68. }
  69. // A failed assertion should throw.
  70. try {
  71. AssertFalse();
  72. } catch(const testing::AssertionException& e) {
  73. if (strstr(e.what(), "Expected failure") != NULL)
  74. throw;
  75. printf("%s",
  76. "A failed assertion did throw an exception of the right type, "
  77. "but the message is incorrect. Instead of containing \"Expected "
  78. "failure\", it is:\n");
  79. Fail(e.what());
  80. } catch(...) {
  81. Fail("A failed assertion threw the wrong type of exception.");
  82. }
  83. Fail("A failed assertion should've thrown but didn't.");
  84. }
  85. int kTestForContinuingTest = 0;
  86. TEST(Test, Test2) {
  87. // FIXME: how to force Test2 to be after Test?
  88. kTestForContinuingTest = 1;
  89. }
  90. int main(int argc, char** argv) {
  91. testing::InitGoogleTest(&argc, argv);
  92. testing::UnitTest::GetInstance()->listeners().Append(new ThrowListener);
  93. int result = RUN_ALL_TESTS();
  94. if (result == 0) {
  95. printf("RUN_ALL_TESTS returned %d\n", result);
  96. Fail("Expected failure instead.");
  97. }
  98. if (kTestForContinuingTest == 0) {
  99. Fail("Should have continued with other tests, but did not.");
  100. }
  101. return 0;
  102. }