| #include "../../config.h" |
| #ifndef UNITTEST_NO_EXCEPTIONS |
| |
| #include "../../unittestpp.h" |
| #include "../CurrentTest.h" |
| #include "RecordingReporter.h" |
| #include "ScopedCurrentTest.h" |
| |
| #include <stdexcept> |
| |
| using namespace std; |
| |
| namespace { |
| |
| int ThrowingFunction() |
| { |
| throw "Doh"; |
| } |
| |
| int ThrowingStdExceptionFunction() |
| { |
| throw std::logic_error("Doh"); |
| } |
| |
| struct CheckFixture |
| { |
| CheckFixture() |
| : reporter() |
| , testResults(&reporter) |
| { |
| } |
| |
| void PerformCheckWithNonStdThrow() |
| { |
| ScopedCurrentTest scopedResults(testResults); |
| CHECK(ThrowingFunction() == 1); |
| } |
| |
| void PerformCheckWithStdThrow() |
| { |
| ScopedCurrentTest scopedResults(testResults); |
| CHECK(ThrowingStdExceptionFunction() == 1); |
| } |
| |
| RecordingReporter reporter; |
| UnitTest::TestResults testResults; |
| }; |
| |
| TEST_FIXTURE(CheckFixture, CheckFailsOnException) |
| { |
| PerformCheckWithNonStdThrow(); |
| CHECK(testResults.GetFailureCount() > 0); |
| } |
| |
| TEST_FIXTURE(CheckFixture, CheckFailsOnStdException) |
| { |
| PerformCheckWithStdThrow(); |
| CHECK(testResults.GetFailureCount() > 0); |
| } |
| |
| TEST_FIXTURE(CheckFixture, CheckFailureBecauseOfExceptionIncludesCheckContents) |
| { |
| PerformCheckWithNonStdThrow(); |
| CHECK(strstr(reporter.lastFailedMessage, "ThrowingFunction() == 1")); |
| } |
| |
| TEST_FIXTURE(CheckFixture, CheckFailureBecauseOfStdExceptionIncludesCheckContents) |
| { |
| PerformCheckWithStdThrow(); |
| CHECK(strstr(reporter.lastFailedMessage, "ThrowingStdExceptionFunction() == 1")); |
| } |
| |
| TEST_FIXTURE(CheckFixture, CheckFailureBecauseOfStandardExceptionIncludesWhat) |
| { |
| PerformCheckWithStdThrow(); |
| CHECK(strstr(reporter.lastFailedMessage, "exception (Doh)")); |
| } |
| |
| struct CheckEqualFixture |
| { |
| CheckEqualFixture() |
| : reporter() |
| , testResults(&reporter) |
| , line(-1) |
| { |
| } |
| |
| void PerformCheckWithNonStdThrow() |
| { |
| UnitTest::TestDetails const testDetails("testName", "suiteName", "filename", -1); |
| ScopedCurrentTest scopedResults(testResults, &testDetails); |
| CHECK_EQUAL(ThrowingFunction(), 123); line = __LINE__; |
| } |
| |
| void PerformCheckWithStdThrow() |
| { |
| UnitTest::TestDetails const testDetails("testName", "suiteName", "filename", -1); |
| ScopedCurrentTest scopedResults(testResults, &testDetails); |
| CHECK_EQUAL(ThrowingStdExceptionFunction(), 123); line = __LINE__; |
| } |
| |
| RecordingReporter reporter; |
| UnitTest::TestResults testResults; |
| int line; |
| }; |
| |
| TEST_FIXTURE(CheckEqualFixture, CheckEqualFailsOnException) |
| { |
| PerformCheckWithNonStdThrow(); |
| CHECK(testResults.GetFailureCount() > 0); |
| } |
| |
| TEST_FIXTURE(CheckEqualFixture, CheckEqualFailsOnStdException) |
| { |
| PerformCheckWithStdThrow(); |
| CHECK(testResults.GetFailureCount() > 0); |
| } |
| |
| TEST_FIXTURE(CheckEqualFixture, CheckEqualFailureBecauseOfExceptionContainsCorrectDetails) |
| { |
| PerformCheckWithNonStdThrow(); |
| |
| CHECK_EQUAL("testName", reporter.lastFailedTest); |
| CHECK_EQUAL("suiteName", reporter.lastFailedSuite); |
| CHECK_EQUAL("filename", reporter.lastFailedFile); |
| CHECK_EQUAL(line, reporter.lastFailedLine); |
| } |
| |
| TEST_FIXTURE(CheckEqualFixture, CheckEqualFailureBecauseOfStdExceptionContainsCorrectDetails) |
| { |
| PerformCheckWithStdThrow(); |
| |
| CHECK_EQUAL("testName", reporter.lastFailedTest); |
| CHECK_EQUAL("suiteName", reporter.lastFailedSuite); |
| CHECK_EQUAL("filename", reporter.lastFailedFile); |
| CHECK_EQUAL(line, reporter.lastFailedLine); |
| } |
| |
| TEST_FIXTURE(CheckEqualFixture, CheckEqualFailureBecauseOfExceptionIncludesCheckContents) |
| { |
| PerformCheckWithNonStdThrow(); |
| |
| CHECK(strstr(reporter.lastFailedMessage, "ThrowingFunction()")); |
| CHECK(strstr(reporter.lastFailedMessage, "123")); |
| } |
| |
| TEST_FIXTURE(CheckEqualFixture, CheckEqualFailureBecauseOfStdExceptionIncludesCheckContents) |
| { |
| PerformCheckWithStdThrow(); |
| |
| CHECK(strstr(reporter.lastFailedMessage, "ThrowingStdExceptionFunction()")); |
| CHECK(strstr(reporter.lastFailedMessage, "123")); |
| } |
| |
| TEST_FIXTURE(CheckEqualFixture, CheckEqualFailureBecauseOfStandardExceptionIncludesWhat) |
| { |
| PerformCheckWithStdThrow(); |
| |
| CHECK(strstr(reporter.lastFailedMessage, "exception (Doh)")); |
| } |
| |
| TEST(CheckCloseFailsOnException) |
| { |
| bool failure = false; |
| { |
| RecordingReporter reporter; |
| UnitTest::TestResults testResults(&reporter); |
| ScopedCurrentTest scopedResults(testResults); |
| CHECK_CLOSE((float)ThrowingFunction(), 1.0001f, 0.1f); |
| failure = (testResults.GetFailureCount() > 0); |
| } |
| |
| CHECK(failure); |
| } |
| |
| TEST(CheckCloseFailureBecauseOfExceptionContainsCorrectDetails) |
| { |
| int line = 0; |
| RecordingReporter reporter; |
| { |
| UnitTest::TestResults testResults(&reporter); |
| UnitTest::TestDetails testDetails("closeTest", "closeSuite", "filename", -1); |
| ScopedCurrentTest scopedResults(testResults, &testDetails); |
| CHECK_CLOSE((float)ThrowingFunction(), 1.0001f, 0.1f); line = __LINE__; |
| } |
| |
| CHECK_EQUAL("closeTest", reporter.lastFailedTest); |
| CHECK_EQUAL("closeSuite", reporter.lastFailedSuite); |
| CHECK_EQUAL("filename", reporter.lastFailedFile); |
| CHECK_EQUAL(line, reporter.lastFailedLine); |
| } |
| |
| TEST(CheckCloseFailureBecauseOfExceptionIncludesCheckContents) |
| { |
| RecordingReporter reporter; |
| { |
| UnitTest::TestResults testResults(&reporter); |
| ScopedCurrentTest scopedResults(testResults); |
| CHECK_CLOSE((float)ThrowingFunction(), 1.0001f, 0.1f); |
| } |
| |
| CHECK(strstr(reporter.lastFailedMessage, "(float)ThrowingFunction()")); |
| CHECK(strstr(reporter.lastFailedMessage, "1.0001f")); |
| } |
| |
| TEST(CheckCloseFailureBecauseOfStandardExceptionIncludesWhat) |
| { |
| RecordingReporter reporter; |
| { |
| UnitTest::TestResults testResults(&reporter); |
| ScopedCurrentTest scopedResults(testResults); |
| CHECK_CLOSE((float)ThrowingStdExceptionFunction(), 1.0001f, 0.1f); |
| } |
| |
| CHECK(strstr(reporter.lastFailedMessage, "exception (Doh)")); |
| } |
| |
| class ThrowingObject |
| { |
| public: |
| float operator[](int) const |
| { |
| throw "Test throw"; |
| } |
| }; |
| |
| TEST(CheckArrayCloseFailureBecauseOfExceptionContainsCorrectDetails) |
| { |
| int line = 0; |
| RecordingReporter reporter; |
| { |
| UnitTest::TestResults testResults(&reporter); |
| UnitTest::TestDetails testDetails("arrayCloseTest", "arrayCloseSuite", "filename", -1); |
| ScopedCurrentTest scopedResults(testResults, &testDetails); |
| |
| int const data[4] = { 0, 1, 2, 3 }; |
| CHECK_ARRAY_CLOSE(data, ThrowingObject(), 4, 0.01f); line = __LINE__; |
| } |
| |
| CHECK_EQUAL("arrayCloseTest", reporter.lastFailedTest); |
| CHECK_EQUAL("arrayCloseSuite", reporter.lastFailedSuite); |
| CHECK_EQUAL("filename", reporter.lastFailedFile); |
| CHECK_EQUAL(line, reporter.lastFailedLine); |
| } |
| |
| TEST(CheckArrayCloseFailsOnException) |
| { |
| bool failure = false; |
| { |
| RecordingReporter reporter; |
| UnitTest::TestResults testResults(&reporter); |
| ScopedCurrentTest scopedResults(testResults); |
| |
| const float data[4] = { 0, 1, 2, 3 }; |
| ThrowingObject obj; |
| CHECK_ARRAY_CLOSE(data, obj, 3, 0.01f); |
| |
| failure = (testResults.GetFailureCount() > 0); |
| } |
| |
| CHECK(failure); |
| } |
| |
| TEST(CheckArrayCloseFailureOnExceptionIncludesCheckContents) |
| { |
| RecordingReporter reporter; |
| { |
| UnitTest::TestResults testResults(&reporter); |
| ScopedCurrentTest scopedResults(testResults); |
| |
| const float data[4] = { 0, 1, 2, 3 }; |
| ThrowingObject obj; |
| CHECK_ARRAY_CLOSE(data, obj, 3, 0.01f); |
| } |
| |
| CHECK(strstr(reporter.lastFailedMessage, "data")); |
| CHECK(strstr(reporter.lastFailedMessage, "obj")); |
| } |
| |
| TEST(CheckArrayEqualFailsOnException) |
| { |
| bool failure = false; |
| { |
| RecordingReporter reporter; |
| UnitTest::TestResults testResults(&reporter); |
| ScopedCurrentTest scopedResults(testResults); |
| |
| const float data[4] = { 0, 1, 2, 3 }; |
| ThrowingObject obj; |
| CHECK_ARRAY_EQUAL (data, obj, 3); |
| |
| failure = (testResults.GetFailureCount() > 0); |
| } |
| |
| CHECK(failure); |
| } |
| |
| TEST(CheckArrayEqualFailureOnExceptionIncludesCheckContents) |
| { |
| RecordingReporter reporter; |
| { |
| UnitTest::TestResults testResults(&reporter); |
| ScopedCurrentTest scopedResults(testResults); |
| |
| const float data[4] = { 0, 1, 2, 3 }; |
| ThrowingObject obj; |
| CHECK_ARRAY_EQUAL (data, obj, 3); |
| } |
| |
| CHECK(strstr(reporter.lastFailedMessage, "data")); |
| CHECK(strstr(reporter.lastFailedMessage, "obj")); |
| } |
| |
| class ThrowingObject2D |
| { |
| public: |
| float* operator[](int) const |
| { |
| throw "Test throw"; |
| } |
| }; |
| |
| TEST(CheckArray2DCloseFailureBecauseOfExceptionContainsCorrectDetails) |
| { |
| int line = 0; |
| RecordingReporter reporter; |
| { |
| UnitTest::TestResults testResults(&reporter); |
| UnitTest::TestDetails testDetails("array2DCloseTest", "array2DCloseSuite", "filename", -1); |
| ScopedCurrentTest scopedResults(testResults, &testDetails); |
| |
| const float data[2][2] = { {0, 1}, {2, 3} }; |
| CHECK_ARRAY2D_CLOSE(data, ThrowingObject2D(), 2, 2, 0.01f); line = __LINE__; |
| } |
| |
| CHECK_EQUAL("array2DCloseTest", reporter.lastFailedTest); |
| CHECK_EQUAL("array2DCloseSuite", reporter.lastFailedSuite); |
| CHECK_EQUAL("filename", reporter.lastFailedFile); |
| CHECK_EQUAL(line, reporter.lastFailedLine); |
| } |
| |
| TEST(CheckArray2DCloseFailsOnException) |
| { |
| bool failure = false; |
| { |
| RecordingReporter reporter; |
| UnitTest::TestResults testResults(&reporter); |
| ScopedCurrentTest scopedResults(testResults); |
| |
| const float data[2][2] = { {0, 1}, {2, 3} }; |
| ThrowingObject2D obj; |
| CHECK_ARRAY2D_CLOSE(data, obj, 2, 2, 0.01f); |
| |
| failure = (testResults.GetFailureCount() > 0); |
| } |
| |
| CHECK(failure); |
| } |
| |
| TEST(CheckArray2DCloseFailureOnExceptionIncludesCheckContents) |
| { |
| RecordingReporter reporter; |
| { |
| UnitTest::TestResults testResults(&reporter); |
| ScopedCurrentTest scopedResults(testResults); |
| |
| const float data[2][2] = { {0, 1}, {2, 3} }; |
| ThrowingObject2D obj; |
| CHECK_ARRAY2D_CLOSE(data, obj, 2, 2, 0.01f); |
| } |
| |
| CHECK(strstr(reporter.lastFailedMessage, "data")); |
| CHECK(strstr(reporter.lastFailedMessage, "obj")); |
| } |
| |
| } |
| |
| #endif |