| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-13 09:20:37 +01:00
										 |  |  | TEST_CASE( "INFO and WARN do not abort tests", "[messages][.]" ) { | 
					
						
							| 
									
										
										
										
											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
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-07-13 09:20:37 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-10 20:15:42 +02:00
										 |  |  | TEST_CASE( "#1455 - INFO and WARN can start with a linebreak", "[messages][.]" ) { | 
					
						
							|  |  |  |     // Previously these would be hidden from the console reporter output,
 | 
					
						
							|  |  |  |     // because it would fail at properly reflowing the text
 | 
					
						
							|  |  |  |     INFO( "\nThis info message starts with a linebreak" ); | 
					
						
							|  |  |  |     WARN( "\nThis warning message starts with a linebreak" ); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-13 09:20:37 +01: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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-13 09:20:37 +01: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 ); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-13 09:20:37 +01:00
										 |  |  | TEST_CASE( "INFO gets logged on failure, even if captured before successful assertions", "[failing][messages][.]" ) { | 
					
						
							| 
									
										
										
										
											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" ); | 
					
						
							| 
									
										
										
										
											2015-11-04 18:01:28 +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
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-13 09:20:37 +01:00
										 |  |  | TEST_CASE( "FAIL aborts the test", "[failing][messages][.]" ) { | 
					
						
							| 
									
										
										
										
											2013-12-14 23:16:03 +00:00
										 |  |  |     FAIL( "This is a " << "failure" );    // This should output the message and abort
 | 
					
						
							| 
									
										
										
										
											2017-03-08 15:40:20 +00:00
										 |  |  |     WARN( "We should never see this"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-13 09:20:37 +01:00
										 |  |  | TEST_CASE( "FAIL_CHECK does not abort the test", "[failing][messages][.]" ) { | 
					
						
							| 
									
										
										
										
											2017-03-08 15:40:20 +00:00
										 |  |  |     FAIL_CHECK( "This is a " << "failure" );    // This should output the message then continue
 | 
					
						
							|  |  |  |     WARN( "This message appears in the output"); | 
					
						
							| 
									
										
										
										
											2011-02-16 19:02:09 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2011-12-28 10:23:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-13 09:20:37 +01:00
										 |  |  | TEST_CASE( "FAIL does not require an argument", "[failing][messages][.]" ) { | 
					
						
							| 
									
										
										
										
											2013-12-14 23:16:03 +00:00
										 |  |  |     FAIL(); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-07-13 09:20:37 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-30 16:17:23 +01:00
										 |  |  | TEST_CASE( "SUCCEED does not require an argument", "[messages][.]" ) { | 
					
						
							| 
									
										
										
										
											2013-12-14 23:16:03 +00:00
										 |  |  |    SUCCEED(); | 
					
						
							| 
									
										
										
										
											2013-12-14 14:30:58 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-13 09:20:37 +01:00
										 |  |  | TEST_CASE( "Output from all sections is reported", "[failing][messages][.]" ) { | 
					
						
							|  |  |  |     SECTION( "one" ) { | 
					
						
							| 
									
										
										
										
											2011-12-28 10:23:32 +00:00
										 |  |  |         FAIL( "Message from section one" ); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-13 09:20:37 +01:00
										 |  |  |     SECTION( "two" ) { | 
					
						
							| 
									
										
										
										
											2011-12-28 10:23:32 +00:00
										 |  |  |         FAIL( "Message from section two" ); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-13 09:20:37 +01:00
										 |  |  | TEST_CASE( "Standard output from all sections is reported", "[messages][.]" ) { | 
					
						
							|  |  |  |     SECTION( "one" ) { | 
					
						
							| 
									
										
										
										
											2011-12-28 10:23:32 +00:00
										 |  |  |         std::cout << "Message from section one" << std::endl; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-11-04 18:01:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-13 09:20:37 +01:00
										 |  |  |     SECTION( "two" ) { | 
					
						
							| 
									
										
										
										
											2011-12-28 10:23:32 +00:00
										 |  |  |         std::cout << "Message from section two" << std::endl; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2012-05-22 22:21:17 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-01 20:28:49 +02:00
										 |  |  | TEST_CASE( "Standard error is reported and redirected", "[messages][.][approvals]" ) { | 
					
						
							| 
									
										
										
										
											2017-08-09 15:28:40 +02:00
										 |  |  |     SECTION( "std::cerr" ) { | 
					
						
							|  |  |  |         std::cerr << "Write to std::cerr" << std::endl; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     SECTION( "std::clog" ) { | 
					
						
							|  |  |  |         std::clog << "Write to std::clog" << std::endl; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     SECTION( "Interleaved writes to cerr and clog" ) { | 
					
						
							|  |  |  |         std::cerr << "Inter"; | 
					
						
							|  |  |  |         std::clog << "leaved"; | 
					
						
							|  |  |  |         std::cerr << ' '; | 
					
						
							|  |  |  |         std::clog << "writes"; | 
					
						
							|  |  |  |         std::cerr << " to error"; | 
					
						
							| 
									
										
										
										
											2017-09-01 20:28:49 +02:00
										 |  |  |         std::clog << " streams" << std::endl; | 
					
						
							| 
									
										
										
										
											2017-08-09 15:28:40 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-10 17:06:32 +02:00
										 |  |  | TEST_CASE( "INFO is reset for each loop", "[messages][failing][.]" ) { | 
					
						
							| 
									
										
										
										
											2012-05-22 22:21:17 +01:00
										 |  |  |     for( int i=0; i<100; i++ ) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2017-08-10 17:06:32 +02:00
										 |  |  |         INFO( "current counter " << i ); | 
					
						
							|  |  |  |         CAPTURE( i ); | 
					
						
							| 
									
										
										
										
											2012-10-04 08:14:48 +01:00
										 |  |  |         REQUIRE( i < 10 ); | 
					
						
							| 
									
										
										
										
											2012-05-22 22:21:17 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2012-11-13 09:44:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-13 09:20:37 +01: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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-13 09:20:37 +01:00
										 |  |  | TEST_CASE( "just info", "[info][isolated info][messages]" ) { | 
					
						
							| 
									
										
										
										
											2013-02-04 00:05:16 +00:00
										 |  |  |     INFO( "this should never be seen" ); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-07-13 09:20:37 +01: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
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-13 09:20:37 +01:00
										 |  |  | TEST_CASE( "sends information to INFO", "[.][failing]" ) { | 
					
						
							| 
									
										
										
										
											2013-11-19 07:21:03 +00:00
										 |  |  |     INFO( "hi" ); | 
					
						
							|  |  |  |     int i = 7; | 
					
						
							|  |  |  |     CAPTURE( i ); | 
					
						
							|  |  |  |     REQUIRE( false ); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-05-23 18:41:02 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-01 20:28:49 +02:00
										 |  |  | TEST_CASE( "Pointers can be converted to strings", "[messages][.][approvals]" ) { | 
					
						
							| 
									
										
										
										
											2014-05-23 18:41:02 +01:00
										 |  |  |     int p; | 
					
						
							|  |  |  |     WARN( "actual address of p: " << &p ); | 
					
						
							| 
									
										
										
										
											2017-05-02 23:51:03 +02:00
										 |  |  |     WARN( "toString(p): " << ::Catch::Detail::stringify( &p ) ); | 
					
						
							| 
									
										
										
										
											2014-05-23 18:41:02 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2018-11-19 23:06:06 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-01 09:36:35 -06:00
										 |  |  | template <typename T> | 
					
						
							|  |  |  | static void unscoped_info( T msg ) { | 
					
						
							|  |  |  |     UNSCOPED_INFO( msg ); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST_CASE( "just unscoped info", "[unscoped][info]" ) { | 
					
						
							|  |  |  |     unscoped_info( "this should NOT be seen" ); | 
					
						
							|  |  |  |     unscoped_info( "this also should NOT be seen" ); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST_CASE( "just failure after unscoped info", "[failing][.][unscoped][info]" ) { | 
					
						
							|  |  |  |     FAIL( "previous unscoped info SHOULD not be seen" ); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST_CASE( "print unscoped info if passing unscoped info is printed", "[unscoped][info]" ) { | 
					
						
							|  |  |  |     unscoped_info( "this MAY be seen IF info is printed for passing assertions" ); | 
					
						
							|  |  |  |     REQUIRE( true ); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST_CASE( "prints unscoped info on failure", "[failing][.][unscoped][info]" ) { | 
					
						
							|  |  |  |     unscoped_info( "this SHOULD be seen" ); | 
					
						
							|  |  |  |     unscoped_info( "this SHOULD also be seen" ); | 
					
						
							|  |  |  |     REQUIRE( false ); | 
					
						
							|  |  |  |     unscoped_info( "but this should NOT be seen" ); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST_CASE( "not prints unscoped info from previous failures", "[failing][.][unscoped][info]" ) { | 
					
						
							|  |  |  |     unscoped_info( "this MAY be seen only for the FIRST assertion IF info is printed for passing assertions" ); | 
					
						
							|  |  |  |     REQUIRE( true ); | 
					
						
							|  |  |  |     unscoped_info( "this MAY be seen only for the SECOND assertion IF info is printed for passing assertions" ); | 
					
						
							|  |  |  |     REQUIRE( true ); | 
					
						
							|  |  |  |     unscoped_info( "this SHOULD be seen" ); | 
					
						
							|  |  |  |     REQUIRE( false ); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST_CASE( "prints unscoped info only for the first assertion", "[failing][.][unscoped][info]" ) { | 
					
						
							|  |  |  |     unscoped_info( "this SHOULD be seen only ONCE" ); | 
					
						
							|  |  |  |     CHECK( false ); | 
					
						
							|  |  |  |     CHECK( true ); | 
					
						
							|  |  |  |     unscoped_info( "this MAY also be seen only ONCE IF info is printed for passing assertions" ); | 
					
						
							|  |  |  |     CHECK( true ); | 
					
						
							|  |  |  |     CHECK( true ); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST_CASE( "stacks unscoped info in loops", "[failing][.][unscoped][info]" ) { | 
					
						
							|  |  |  |     UNSCOPED_INFO("Count 1 to 3..."); | 
					
						
							|  |  |  |     for (int i = 1; i <= 3; i++) { | 
					
						
							|  |  |  |         unscoped_info(i); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     CHECK( false ); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     UNSCOPED_INFO("Count 4 to 6..."); | 
					
						
							|  |  |  |     for (int i = 4; i <= 6; i++) { | 
					
						
							|  |  |  |         unscoped_info(i); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     CHECK( false ); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST_CASE( "mix info, unscoped info and warning", "[unscoped][info]" ) { | 
					
						
							|  |  |  |     INFO("info"); | 
					
						
							|  |  |  |     unscoped_info("unscoped info"); | 
					
						
							|  |  |  |     WARN("and warn may mix"); | 
					
						
							|  |  |  |     WARN("they are not cleared after warnings"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-19 23:06:06 +01:00
										 |  |  | TEST_CASE( "CAPTURE can deal with complex expressions", "[messages][capture]" ) { | 
					
						
							|  |  |  |     int a = 1; | 
					
						
							|  |  |  |     int b = 2; | 
					
						
							|  |  |  |     int c = 3; | 
					
						
							|  |  |  |     CAPTURE( a, b, c, a + b, a+b, c > b, a == 1 ); | 
					
						
							|  |  |  |     SUCCEED(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef __clang__
 | 
					
						
							|  |  |  | #pragma clang diagnostic push
 | 
					
						
							|  |  |  | #pragma clang diagnostic ignored "-Wunused-value" // In (1, 2), the "1" is unused ...
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #ifdef __GNUC__
 | 
					
						
							|  |  |  | #pragma GCC diagnostic push
 | 
					
						
							|  |  |  | #pragma GCC diagnostic ignored "-Wunused-value" // All the comma operators are side-effect free
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #ifdef _MSC_VER
 | 
					
						
							|  |  |  | #pragma warning(push)
 | 
					
						
							|  |  |  | #pragma warning(disable:4709) // comma in indexing operator
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template <typename T1, typename T2> | 
					
						
							|  |  |  | struct helper_1436 { | 
					
						
							| 
									
										
										
										
											2019-01-13 08:54:23 -07:00
										 |  |  |     helper_1436(T1 t1_, T2 t2_): | 
					
						
							|  |  |  |         t1{ t1_ }, | 
					
						
							|  |  |  |         t2{ t2_ } | 
					
						
							| 
									
										
										
										
											2018-11-19 23:06:06 +01:00
										 |  |  |     {} | 
					
						
							|  |  |  |     T1 t1; | 
					
						
							|  |  |  |     T2 t2; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template <typename T1, typename T2> | 
					
						
							|  |  |  | std::ostream& operator<<(std::ostream& out, helper_1436<T1, T2> const& helper) { | 
					
						
							|  |  |  |     out << "{ " << helper.t1 << ", " << helper.t2 << " }"; | 
					
						
							|  |  |  |     return out; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST_CASE("CAPTURE can deal with complex expressions involving commas", "[messages][capture]") { | 
					
						
							|  |  |  |     CAPTURE(std::vector<int>{1, 2, 3}[0, 1, 2], | 
					
						
							|  |  |  |             std::vector<int>{1, 2, 3}[(0, 1)], | 
					
						
							|  |  |  |             std::vector<int>{1, 2, 3}[0]); | 
					
						
							|  |  |  |     CAPTURE((helper_1436<int, int>{12, -12}), | 
					
						
							|  |  |  |             (helper_1436<int, int>(-12, 12))); | 
					
						
							|  |  |  |     CAPTURE( (1, 2), (2, 3) ); | 
					
						
							|  |  |  |     SUCCEED(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-01 19:12:44 +02:00
										 |  |  | TEST_CASE("CAPTURE parses string and character constants", "[messages][capture]") { | 
					
						
							|  |  |  |     CAPTURE(("comma, in string", "escaped, \", "), "single quote in string,',", "some escapes, \\,\\\\"); | 
					
						
							|  |  |  |     CAPTURE("some, ), unmatched, } prenheses {[<"); | 
					
						
							|  |  |  |     CAPTURE('"', '\'', ',', '}', ')', '(', '{'); | 
					
						
							|  |  |  |     SUCCEED(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-19 23:06:06 +01:00
										 |  |  | #ifdef __clang__
 | 
					
						
							|  |  |  | #pragma clang diagnostic pop
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #ifdef __GNUC__
 | 
					
						
							|  |  |  | #pragma GCC diagnostic pop
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #ifdef _MSC_VER
 | 
					
						
							|  |  |  | #pragma warning(pop)
 | 
					
						
							|  |  |  | #endif
 |