X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=testing%2F_PDCLIB_test.h;h=e6c0c75bb3f04cccf18030eef139af83544f32ae;hb=3c7e677c7a6b43ce8bd12021e0af280f08009777;hp=f39ce8a0ea5fd9fd7fa7d8a413ac91801f268ed9;hpb=eabb2c002a72fcb019ce81a86ba024bd48aceda3;p=pdclib diff --git a/testing/_PDCLIB_test.h b/testing/_PDCLIB_test.h index f39ce8a..e6c0c75 100644 --- a/testing/_PDCLIB_test.h +++ b/testing/_PDCLIB_test.h @@ -11,10 +11,15 @@ /* -------------------------------------------------------------------------- */ #include +#include +#include +/* Some strings used for and testing. */ static char const abcde[] = "abcde"; static char const abcdx[] = "abcdx"; static char const teststring[] = "1234567890\nABCDEFGHIJKLMNOPQRSTUVWXYZ\nabcdefghijklmnopqrstuvwxyz\n"; + +/* Temporary file names */ static char const testfile[]="testing/testfile"; static char const testfile1[]="testing/testfile1"; static char const testfile2[]="testing/testfile2"; @@ -23,23 +28,38 @@ static char const testfile2[]="testing/testfile2"; static int TEST_RESULTS = 0; +/* TESTCASE() - generic test */ #define TESTCASE( x ) if ( x ) {} \ else { TEST_RESULTS += 1; printf( "FAILED: " __FILE__ ", line %d - %s\n", __LINE__, #x ); } -#if defined( FPRINTF_FUNCTION ) -static char result_buffer[ 1000 ]; -#define RESULT_MISMATCH( act, exp ) \ - rewind( act ), \ - result_buffer[ fread( result_buffer, 1, strlen( exp ) + 1, act ) ] = '\0', \ - rewind( act ), \ - memcmp( result_buffer, exp, strlen( exp ) ) -#define RESULT_STRING( tgt ) result_buffer -#elif defined( SPRINTF_FUNCTION ) -#define RESULT_MISMATCH( act, exp ) strcmp( act, exp ) != 0 -#define RESULT_STRING( tgt ) tgt +/* TESTCASE_NOREG() - PDCLib-only test */ +#ifndef REGTEST + #define TESTCASE_NOREG( x ) TESTCASE( x ) +#else + #define TESTCASE_NOREG( x ) +#endif + +/* ...printf() tests */ +#if defined( _PDCLIB_FILEIO ) + #define RESULT_MISMATCH( act, exp ) \ + rewind( act ), \ + result_buffer[ fread( result_buffer, 1, strlen( exp ) + 1, act ) ] = '\0', \ + rewind( act ), \ + memcmp( result_buffer, exp, strlen( exp ) ) + #define RESULT_STRING( tgt ) result_buffer +#elif defined( _PDCLIB_STRINGIO ) + #define RESULT_MISMATCH( act, exp ) strcmp( act, exp ) != 0 + #define RESULT_STRING( tgt ) tgt +#endif + +#ifdef _PDCLIB_FILEIO +#define PREP_RESULT_BUFFER char result_buffer[100]; +#else +#define PREP_RESULT_BUFFER #endif -#define PRINTF_TEST( expected_rc, expected_string, format, ... ) { \ +#define PRINTF_TEST( expected_rc, expected_string, format, ... ) do { \ + PREP_RESULT_BUFFER \ int actual_rc = testprintf( target, format, __VA_ARGS__ ); \ if ( ( actual_rc != expected_rc ) || \ ( RESULT_MISMATCH( target, expected_string ) ) ) \ @@ -49,8 +69,25 @@ static char result_buffer[ 1000 ]; } \ } while ( 0 ) -#ifndef REGTEST -#define TESTCASE_NOREG( x ) TESTCASE( x ) -#else -#define TESTCASE_NOREG( x ) +/* ...scanf() tests */ +#if defined( _PDCLIB_FILEIO ) + #define PREPARE_SOURCE( input_string ) \ + rewind( source ); \ + fwrite( input_string, 1, sizeof( input_string ), source ); \ + rewind( source ); +#elif defined( _PDCLIB_STRINGIO ) + #define PREPARE_SOURCE( input_string ) \ + memcpy( source, input_string, sizeof( input_string ) ); #endif + +#define SCANF_TEST( expected_rc, input_string, format, ... ) do { \ + int actual_rc; \ + PREPARE_SOURCE( input_string ); \ + actual_rc = testscanf( source, format, __VA_ARGS__ ); \ + if ( actual_rc != expected_rc ) \ + { \ + ++TEST_RESULTS; \ + fprintf( stderr, "FAILED: " __FILE__ " (" _PDCLIB_FILEID "), line %d\n expected %2d, actual %2d\n", __LINE__, expected_rc, actual_rc ); \ + } \ + } while ( 0 ) +