googletest-test-part-test.cc 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. // Copyright 2008 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. #include "gtest/gtest-test-part.h"
  30. #include "gtest/gtest.h"
  31. using testing::Message;
  32. using testing::Test;
  33. using testing::TestPartResult;
  34. using testing::TestPartResultArray;
  35. namespace {
  36. // Tests the TestPartResult class.
  37. // The test fixture for testing TestPartResult.
  38. class TestPartResultTest : public Test {
  39. protected:
  40. TestPartResultTest()
  41. : r1_(TestPartResult::kSuccess, "foo/bar.cc", 10, "Success!"),
  42. r2_(TestPartResult::kNonFatalFailure, "foo/bar.cc", -1, "Failure!"),
  43. r3_(TestPartResult::kFatalFailure, nullptr, -1, "Failure!"),
  44. r4_(TestPartResult::kSkip, "foo/bar.cc", 2, "Skipped!") {}
  45. TestPartResult r1_, r2_, r3_, r4_;
  46. };
  47. TEST_F(TestPartResultTest, ConstructorWorks) {
  48. Message message;
  49. message << "something is terribly wrong";
  50. message << static_cast<const char*>(testing::internal::kStackTraceMarker);
  51. message << "some unimportant stack trace";
  52. const TestPartResult result(TestPartResult::kNonFatalFailure,
  53. "some_file.cc",
  54. 42,
  55. message.GetString().c_str());
  56. EXPECT_EQ(TestPartResult::kNonFatalFailure, result.type());
  57. EXPECT_STREQ("some_file.cc", result.file_name());
  58. EXPECT_EQ(42, result.line_number());
  59. EXPECT_STREQ(message.GetString().c_str(), result.message());
  60. EXPECT_STREQ("something is terribly wrong", result.summary());
  61. }
  62. TEST_F(TestPartResultTest, ResultAccessorsWork) {
  63. const TestPartResult success(TestPartResult::kSuccess,
  64. "file.cc",
  65. 42,
  66. "message");
  67. EXPECT_TRUE(success.passed());
  68. EXPECT_FALSE(success.failed());
  69. EXPECT_FALSE(success.nonfatally_failed());
  70. EXPECT_FALSE(success.fatally_failed());
  71. EXPECT_FALSE(success.skipped());
  72. const TestPartResult nonfatal_failure(TestPartResult::kNonFatalFailure,
  73. "file.cc",
  74. 42,
  75. "message");
  76. EXPECT_FALSE(nonfatal_failure.passed());
  77. EXPECT_TRUE(nonfatal_failure.failed());
  78. EXPECT_TRUE(nonfatal_failure.nonfatally_failed());
  79. EXPECT_FALSE(nonfatal_failure.fatally_failed());
  80. EXPECT_FALSE(nonfatal_failure.skipped());
  81. const TestPartResult fatal_failure(TestPartResult::kFatalFailure,
  82. "file.cc",
  83. 42,
  84. "message");
  85. EXPECT_FALSE(fatal_failure.passed());
  86. EXPECT_TRUE(fatal_failure.failed());
  87. EXPECT_FALSE(fatal_failure.nonfatally_failed());
  88. EXPECT_TRUE(fatal_failure.fatally_failed());
  89. EXPECT_FALSE(fatal_failure.skipped());
  90. const TestPartResult skip(TestPartResult::kSkip, "file.cc", 42, "message");
  91. EXPECT_FALSE(skip.passed());
  92. EXPECT_FALSE(skip.failed());
  93. EXPECT_FALSE(skip.nonfatally_failed());
  94. EXPECT_FALSE(skip.fatally_failed());
  95. EXPECT_TRUE(skip.skipped());
  96. }
  97. // Tests TestPartResult::type().
  98. TEST_F(TestPartResultTest, type) {
  99. EXPECT_EQ(TestPartResult::kSuccess, r1_.type());
  100. EXPECT_EQ(TestPartResult::kNonFatalFailure, r2_.type());
  101. EXPECT_EQ(TestPartResult::kFatalFailure, r3_.type());
  102. EXPECT_EQ(TestPartResult::kSkip, r4_.type());
  103. }
  104. // Tests TestPartResult::file_name().
  105. TEST_F(TestPartResultTest, file_name) {
  106. EXPECT_STREQ("foo/bar.cc", r1_.file_name());
  107. EXPECT_STREQ(nullptr, r3_.file_name());
  108. EXPECT_STREQ("foo/bar.cc", r4_.file_name());
  109. }
  110. // Tests TestPartResult::line_number().
  111. TEST_F(TestPartResultTest, line_number) {
  112. EXPECT_EQ(10, r1_.line_number());
  113. EXPECT_EQ(-1, r2_.line_number());
  114. EXPECT_EQ(2, r4_.line_number());
  115. }
  116. // Tests TestPartResult::message().
  117. TEST_F(TestPartResultTest, message) {
  118. EXPECT_STREQ("Success!", r1_.message());
  119. EXPECT_STREQ("Skipped!", r4_.message());
  120. }
  121. // Tests TestPartResult::passed().
  122. TEST_F(TestPartResultTest, Passed) {
  123. EXPECT_TRUE(r1_.passed());
  124. EXPECT_FALSE(r2_.passed());
  125. EXPECT_FALSE(r3_.passed());
  126. EXPECT_FALSE(r4_.passed());
  127. }
  128. // Tests TestPartResult::failed().
  129. TEST_F(TestPartResultTest, Failed) {
  130. EXPECT_FALSE(r1_.failed());
  131. EXPECT_TRUE(r2_.failed());
  132. EXPECT_TRUE(r3_.failed());
  133. EXPECT_FALSE(r4_.failed());
  134. }
  135. // Tests TestPartResult::failed().
  136. TEST_F(TestPartResultTest, Skipped) {
  137. EXPECT_FALSE(r1_.skipped());
  138. EXPECT_FALSE(r2_.skipped());
  139. EXPECT_FALSE(r3_.skipped());
  140. EXPECT_TRUE(r4_.skipped());
  141. }
  142. // Tests TestPartResult::fatally_failed().
  143. TEST_F(TestPartResultTest, FatallyFailed) {
  144. EXPECT_FALSE(r1_.fatally_failed());
  145. EXPECT_FALSE(r2_.fatally_failed());
  146. EXPECT_TRUE(r3_.fatally_failed());
  147. EXPECT_FALSE(r4_.fatally_failed());
  148. }
  149. // Tests TestPartResult::nonfatally_failed().
  150. TEST_F(TestPartResultTest, NonfatallyFailed) {
  151. EXPECT_FALSE(r1_.nonfatally_failed());
  152. EXPECT_TRUE(r2_.nonfatally_failed());
  153. EXPECT_FALSE(r3_.nonfatally_failed());
  154. EXPECT_FALSE(r4_.nonfatally_failed());
  155. }
  156. // Tests the TestPartResultArray class.
  157. class TestPartResultArrayTest : public Test {
  158. protected:
  159. TestPartResultArrayTest()
  160. : r1_(TestPartResult::kNonFatalFailure, "foo/bar.cc", -1, "Failure 1"),
  161. r2_(TestPartResult::kFatalFailure, "foo/bar.cc", -1, "Failure 2") {}
  162. const TestPartResult r1_, r2_;
  163. };
  164. // Tests that TestPartResultArray initially has size 0.
  165. TEST_F(TestPartResultArrayTest, InitialSizeIsZero) {
  166. TestPartResultArray results;
  167. EXPECT_EQ(0, results.size());
  168. }
  169. // Tests that TestPartResultArray contains the given TestPartResult
  170. // after one Append() operation.
  171. TEST_F(TestPartResultArrayTest, ContainsGivenResultAfterAppend) {
  172. TestPartResultArray results;
  173. results.Append(r1_);
  174. EXPECT_EQ(1, results.size());
  175. EXPECT_STREQ("Failure 1", results.GetTestPartResult(0).message());
  176. }
  177. // Tests that TestPartResultArray contains the given TestPartResults
  178. // after two Append() operations.
  179. TEST_F(TestPartResultArrayTest, ContainsGivenResultsAfterTwoAppends) {
  180. TestPartResultArray results;
  181. results.Append(r1_);
  182. results.Append(r2_);
  183. EXPECT_EQ(2, results.size());
  184. EXPECT_STREQ("Failure 1", results.GetTestPartResult(0).message());
  185. EXPECT_STREQ("Failure 2", results.GetTestPartResult(1).message());
  186. }
  187. typedef TestPartResultArrayTest TestPartResultArrayDeathTest;
  188. // Tests that the program dies when GetTestPartResult() is called with
  189. // an invalid index.
  190. TEST_F(TestPartResultArrayDeathTest, DiesWhenIndexIsOutOfBound) {
  191. TestPartResultArray results;
  192. results.Append(r1_);
  193. EXPECT_DEATH_IF_SUPPORTED(results.GetTestPartResult(-1), "");
  194. EXPECT_DEATH_IF_SUPPORTED(results.GetTestPartResult(1), "");
  195. }
  196. } // namespace