2010-11-09 23:24:00 +00: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)
|
|
|
|
*/
|
|
|
|
|
2011-04-26 08:32:40 +01:00
|
|
|
#include "catch.hpp"
|
2014-05-28 18:53:01 +01:00
|
|
|
#include <iostream>
|
2010-11-09 23:24:00 +00:00
|
|
|
|
2014-05-19 18:57:14 +01:00
|
|
|
#ifdef __clang__
|
|
|
|
#pragma clang diagnostic ignored "-Wc++98-compat-pedantic"
|
|
|
|
#endif
|
|
|
|
|
2014-05-16 06:50:00 +01:00
|
|
|
TEST_CASE( "INFO and WARN do not abort tests", "[messages][.]" )
|
2010-11-09 23:24:00 +00:00
|
|
|
{
|
2010-12-27 22:05:13 +00:00
|
|
|
INFO( "this is a " << "message" ); // This should output the message if a failure occurs
|
|
|
|
WARN( "this is a " << "warning" ); // This should always output the message but then continue
|
2010-11-09 23:24:00 +00:00
|
|
|
}
|
2013-11-21 08:08:05 +00:00
|
|
|
TEST_CASE( "SUCCEED counts as a test pass", "[messages]" )
|
2012-11-21 08:49:20 +00:00
|
|
|
{
|
|
|
|
SUCCEED( "this is a " << "success" );
|
|
|
|
}
|
2010-11-09 23:24:00 +00:00
|
|
|
|
2013-11-19 07:21:03 +00:00
|
|
|
TEST_CASE( "INFO gets logged on failure", "[failing][messages][.]" )
|
2010-12-27 22:05:13 +00:00
|
|
|
{
|
|
|
|
INFO( "this message should be logged" );
|
2010-12-27 22:18:33 +00:00
|
|
|
INFO( "so should this" );
|
2010-12-27 22:05:13 +00:00
|
|
|
int a = 2;
|
|
|
|
REQUIRE( a == 1 );
|
|
|
|
}
|
|
|
|
|
2013-11-19 07:21:03 +00:00
|
|
|
TEST_CASE( "INFO gets logged on failure, even if captured before successful assertions", "[failing][messages][.]" )
|
2010-12-27 22:05:13 +00:00
|
|
|
{
|
2013-06-28 16:25:49 +01:00
|
|
|
INFO( "this message may be logged later" );
|
2010-12-27 22:05:13 +00:00
|
|
|
int a = 2;
|
2010-12-27 22:18:33 +00:00
|
|
|
CHECK( a == 2 );
|
2010-12-27 22:05:13 +00:00
|
|
|
|
2013-02-02 20:46:55 +00:00
|
|
|
INFO( "this message should be logged" );
|
2010-12-27 22:05:13 +00:00
|
|
|
|
2010-12-27 22:18:33 +00:00
|
|
|
CHECK( a == 1 );
|
|
|
|
|
|
|
|
INFO( "and this, but later" );
|
|
|
|
|
|
|
|
CHECK( a == 0 );
|
|
|
|
|
|
|
|
INFO( "but not this" );
|
|
|
|
|
|
|
|
CHECK( a == 2 );
|
2010-12-27 22:05:13 +00:00
|
|
|
}
|
|
|
|
|
2013-11-19 07:21:03 +00:00
|
|
|
TEST_CASE( "FAIL aborts the test", "[failing][messages][.]" )
|
2010-11-09 23:24:00 +00:00
|
|
|
{
|
2013-12-14 23:16:03 +00:00
|
|
|
FAIL( "This is a " << "failure" ); // This should output the message and abort
|
2011-02-16 19:02:09 +00:00
|
|
|
}
|
2011-12-28 10:23:32 +00:00
|
|
|
|
2013-12-14 14:30:58 +00:00
|
|
|
#ifdef CATCH_CONFIG_VARIADIC_MACROS
|
|
|
|
TEST_CASE( "FAIL does not require an argument", "[failing][messages][.]" )
|
|
|
|
{
|
2013-12-14 23:16:03 +00:00
|
|
|
FAIL();
|
|
|
|
}
|
|
|
|
TEST_CASE( "SUCCESS does not require an argument", "[messages][.]" )
|
|
|
|
{
|
|
|
|
SUCCEED();
|
2013-12-14 14:30:58 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-11-19 07:21:03 +00:00
|
|
|
TEST_CASE( "Output from all sections is reported", "[failing][messages][.]" )
|
2011-12-28 10:23:32 +00:00
|
|
|
{
|
|
|
|
SECTION( "one", "" )
|
|
|
|
{
|
|
|
|
FAIL( "Message from section one" );
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION( "two", "" )
|
|
|
|
{
|
|
|
|
FAIL( "Message from section two" );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-16 06:50:00 +01:00
|
|
|
TEST_CASE( "Standard output from all sections is reported", "[messages][.]" )
|
2011-12-28 10:23:32 +00:00
|
|
|
{
|
|
|
|
SECTION( "one", "" )
|
|
|
|
{
|
|
|
|
std::cout << "Message from section one" << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION( "two", "" )
|
|
|
|
{
|
|
|
|
std::cout << "Message from section two" << std::endl;
|
|
|
|
}
|
|
|
|
}
|
2012-05-22 22:21:17 +01:00
|
|
|
|
2013-11-19 07:21:03 +00:00
|
|
|
TEST_CASE( "SCOPED_INFO is reset for each loop", "[messages][failing][.]" )
|
2012-05-22 22:21:17 +01:00
|
|
|
{
|
|
|
|
for( int i=0; i<100; i++ )
|
|
|
|
{
|
2012-10-04 08:14:48 +01:00
|
|
|
SCOPED_INFO( "current counter " << i );
|
|
|
|
SCOPED_CAPTURE( i );
|
|
|
|
REQUIRE( i < 10 );
|
2012-05-22 22:21:17 +01:00
|
|
|
}
|
|
|
|
}
|
2012-11-13 09:44:52 +00:00
|
|
|
|
2013-11-19 07:21:03 +00:00
|
|
|
TEST_CASE( "The NO_FAIL macro reports a failure but does not fail the test", "[messages]" )
|
2012-11-13 09:44:52 +00:00
|
|
|
{
|
|
|
|
CHECK_NOFAIL( 1 == 2 );
|
|
|
|
}
|
2013-02-04 00:05:16 +00:00
|
|
|
|
2013-11-19 07:21:03 +00:00
|
|
|
TEST_CASE( "just info", "[info][isolated info][messages]" )
|
2013-02-04 00:05:16 +00:00
|
|
|
{
|
|
|
|
INFO( "this should never be seen" );
|
|
|
|
}
|
2013-11-19 07:21:03 +00:00
|
|
|
TEST_CASE( "just failure", "[fail][isolated info][.][messages]" )
|
2013-02-04 00:05:16 +00:00
|
|
|
{
|
|
|
|
FAIL( "Previous info should not be seen" );
|
|
|
|
}
|
2013-11-19 07:21:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
TEST_CASE( "sends information to INFO", "[.][failing]" )
|
|
|
|
{
|
|
|
|
INFO( "hi" );
|
|
|
|
int i = 7;
|
|
|
|
CAPTURE( i );
|
|
|
|
REQUIRE( false );
|
|
|
|
}
|
2014-05-23 18:41:02 +01:00
|
|
|
|
|
|
|
TEST_CASE( "Pointers can be converted to strings", "[messages][.]" )
|
|
|
|
{
|
|
|
|
int p;
|
|
|
|
WARN( "actual address of p: " << &p );
|
|
|
|
WARN( "toString(p): " << Catch::toString( &p ) );
|
|
|
|
}
|