2010-11-10 00:24:00 +01:00
|
|
|
/*
|
|
|
|
* Created by Phil on 09/11/2010.
|
|
|
|
* Copyright 2010 Two Blue Cubes Ltd. All rights reserved.
|
|
|
|
*
|
|
|
|
* Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
* file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
*/
|
|
|
|
|
2012-08-16 19:47:41 +02:00
|
|
|
#ifdef __clang__
|
2012-08-13 08:46:10 +02:00
|
|
|
#pragma clang diagnostic ignored "-Wpadded"
|
2012-08-16 19:47:41 +02:00
|
|
|
#endif
|
2012-08-13 08:46:10 +02:00
|
|
|
|
2011-04-26 09:32:40 +02:00
|
|
|
#include "catch.hpp"
|
2010-11-10 00:24:00 +01:00
|
|
|
|
|
|
|
#include <string>
|
2011-01-07 11:22:24 +01:00
|
|
|
#include <stdexcept>
|
2010-11-10 00:24:00 +01:00
|
|
|
|
2012-02-15 09:20:06 +01:00
|
|
|
#include "catch_self_test.hpp"
|
|
|
|
|
2010-11-10 00:24:00 +01:00
|
|
|
namespace
|
|
|
|
{
|
2012-08-13 08:46:10 +02:00
|
|
|
CATCH_ATTRIBUTE_NORETURN
|
2011-01-31 21:15:40 +01:00
|
|
|
int thisThrows();
|
|
|
|
|
2010-11-10 00:24:00 +01:00
|
|
|
int thisThrows()
|
|
|
|
{
|
|
|
|
throw std::domain_error( "expected exception" );
|
2011-01-31 21:15:40 +01:00
|
|
|
/*NOTREACHED*/
|
2010-11-10 00:24:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int thisDoesntThrow()
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-14 09:47:43 +01:00
|
|
|
TEST_CASE( "./succeeding/exceptions/explicit", "When checked exceptions are thrown they can be expected or unexpected" )
|
2010-11-10 00:24:00 +01:00
|
|
|
{
|
2010-12-14 10:00:09 +01:00
|
|
|
REQUIRE_THROWS_AS( thisThrows(), std::domain_error );
|
|
|
|
REQUIRE_NOTHROW( thisDoesntThrow() );
|
|
|
|
REQUIRE_THROWS( thisThrows() );
|
2010-11-10 00:24:00 +01:00
|
|
|
}
|
|
|
|
|
2012-08-13 08:46:10 +02:00
|
|
|
CATCH_ATTRIBUTE_NORETURN
|
2011-01-14 09:47:43 +01:00
|
|
|
TEST_CASE( "./failing/exceptions/explicit", "When checked exceptions are thrown they can be expected or unexpected" )
|
2010-11-10 00:24:00 +01:00
|
|
|
{
|
|
|
|
CHECK_THROWS_AS( thisThrows(), std::string );
|
|
|
|
CHECK_THROWS_AS( thisDoesntThrow(), std::domain_error );
|
|
|
|
CHECK_NOTHROW( thisThrows() );
|
|
|
|
}
|
|
|
|
|
2011-03-14 20:21:35 +01:00
|
|
|
TEST_CASE_NORETURN( "./failing/exceptions/implicit", "When unchecked exceptions are thrown they are always failures" )
|
2010-11-10 00:24:00 +01:00
|
|
|
{
|
|
|
|
throw std::domain_error( "unexpected exception" );
|
2011-01-31 21:15:40 +01:00
|
|
|
/*NOTREACHED*/
|
2010-11-10 00:24:00 +01:00
|
|
|
}
|
|
|
|
|
2011-01-14 09:47:43 +01:00
|
|
|
TEST_CASE( "./succeeding/exceptions/implicit", "When unchecked exceptions are thrown, but caught, they do not affect the test" )
|
2010-11-10 00:24:00 +01:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
throw std::domain_error( "unexpected exception" );
|
|
|
|
}
|
|
|
|
catch(...)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
2011-04-20 16:40:40 +02:00
|
|
|
|
|
|
|
class CustomException
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CustomException( const std::string& msg )
|
|
|
|
: m_msg( msg )
|
|
|
|
{}
|
|
|
|
|
|
|
|
std::string getMessage() const
|
|
|
|
{
|
|
|
|
return m_msg;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::string m_msg;
|
|
|
|
};
|
|
|
|
|
2011-04-20 20:09:41 +02:00
|
|
|
CATCH_TRANSLATE_EXCEPTION( CustomException& ex )
|
2011-04-20 16:40:40 +02:00
|
|
|
{
|
2011-04-20 20:09:41 +02:00
|
|
|
return ex.getMessage();
|
|
|
|
}
|
2011-04-20 16:40:40 +02:00
|
|
|
|
2011-04-20 20:09:41 +02:00
|
|
|
CATCH_TRANSLATE_EXCEPTION( double& ex )
|
|
|
|
{
|
|
|
|
return Catch::toString( ex );
|
2011-04-20 16:40:40 +02:00
|
|
|
}
|
|
|
|
|
2011-04-20 20:09:41 +02:00
|
|
|
TEST_CASE_NORETURN( "./failing/exceptions/custom", "Unexpected custom exceptions can be translated" )
|
2011-04-20 16:40:40 +02:00
|
|
|
{
|
|
|
|
throw CustomException( "custom exception" );
|
|
|
|
}
|
2011-04-20 20:09:41 +02:00
|
|
|
|
|
|
|
TEST_CASE( "./failing/exceptions/custom/nothrow", "Custom exceptions can be translated when testing for nothrow" )
|
|
|
|
{
|
|
|
|
REQUIRE_NOTHROW( throw CustomException( "unexpected custom exception" ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE( "./failing/exceptions/custom/throw", "Custom exceptions can be translated when testing for throwing as something else" )
|
|
|
|
{
|
|
|
|
REQUIRE_THROWS_AS( throw CustomException( "custom exception - not std" ), std::exception );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST_CASE_NORETURN( "./failing/exceptions/custom/double", "Unexpected custom exceptions can be translated" )
|
|
|
|
{
|
|
|
|
throw double( 3.14 );
|
|
|
|
}
|
2011-04-21 20:43:55 +02:00
|
|
|
|
2012-06-05 11:38:18 +02:00
|
|
|
#pragma GCC diagnostic push
|
|
|
|
#pragma GCC diagnostic ignored "-Wunused-variable"
|
|
|
|
|
2011-04-21 20:43:55 +02:00
|
|
|
TEST_CASE( "./failing/exceptions/in-section", "Exceptions thrown from sections report file/ line or section" )
|
|
|
|
{
|
|
|
|
SECTION( "the section", "" )
|
|
|
|
{
|
2012-02-15 09:20:06 +01:00
|
|
|
CATCH_REGISTER_LINE_INFO( "the section2" ) SECTION( "the section2", "" )
|
2011-04-21 20:43:55 +02:00
|
|
|
{
|
|
|
|
throw std::domain_error( "Exception from section" );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-02-15 09:20:06 +01:00
|
|
|
|
2012-06-05 11:38:18 +02:00
|
|
|
#pragma GCC diagnostic pop
|
|
|
|
|
2012-02-15 09:20:06 +01:00
|
|
|
TEST_CASE( "./succeeding/exceptions/error messages", "The error messages produced by exceptions caught by Catch matched the expected form" )
|
|
|
|
{
|
|
|
|
Catch::EmbeddedRunner runner;
|
2012-05-04 08:55:11 +02:00
|
|
|
using namespace Catch::Matchers;
|
2012-02-15 09:20:06 +01:00
|
|
|
|
|
|
|
SECTION( "custom, unexpected", "" )
|
|
|
|
{
|
|
|
|
runner.runMatching( "./failing/exceptions/custom" );
|
2012-05-04 08:55:11 +02:00
|
|
|
// CHECK_THAT( runner.getLog(), Contains( "Unexpected exception" ) ); // Mock reporter doesn't say this
|
|
|
|
CHECK_THAT( runner.getLog(), Contains( "custom exception" ) );
|
2012-02-15 09:20:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
SECTION( "in section", "" )
|
|
|
|
{
|
|
|
|
runner.runMatching( "./failing/exceptions/in-section" );
|
2012-05-04 08:55:11 +02:00
|
|
|
INFO( runner.getLog() );
|
|
|
|
// CHECK( runner.getLog().find( "Unexpected exception" ) != std::string::npos ); // Mock reporter doesn't say this
|
|
|
|
CHECK_THAT( runner.getLog(), Contains( "Exception from section" ) );
|
|
|
|
// CHECK( runner.getLog().find( CATCH_GET_LINE_INFO( "the section2" ) ) != std::string::npos ); // Mock reporter doesn't say this
|
2012-02-15 09:20:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2012-07-05 19:37:58 +02:00
|
|
|
|
|
|
|
inline int thisFunctionNotImplemented( int ) {
|
|
|
|
CATCH_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE( "./succeeding/exceptions/notimplemented", "" )
|
|
|
|
{
|
|
|
|
REQUIRE_THROWS( thisFunctionNotImplemented( 7 ) );
|
|
|
|
}
|