X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=testing%2F_PDCLIB_test.h;h=aacd70454788266b67bf16784787548347b124c1;hb=0326491c5ed243ea6efc5e66e3a6ea21427aad92;hp=ad02b0fb71839924851a9f00f5ec30e5a63f7091;hpb=4340db942a3f1dc39724c1f05264d38586bc062a;p=pdclib diff --git a/testing/_PDCLIB_test.h b/testing/_PDCLIB_test.h index ad02b0f..aacd704 100644 --- a/testing/_PDCLIB_test.h +++ b/testing/_PDCLIB_test.h @@ -12,22 +12,54 @@ #include -char const abcde[] = "abcde"; -char const abcdx[] = "abcdx"; -char const * teststring = "1234567890\nABCDEFGHIJKLMNOPQRSTUVWXYZ\nabcdefghijklmnopqrstuvwxyz\n"; +/* Some strings used for and testing. */ +static char const abcde[] = "abcde"; +static char const abcdx[] = "abcdx"; +static char const teststring[] = "1234567890\nABCDEFGHIJKLMNOPQRSTUVWXYZ\nabcdefghijklmnopqrstuvwxyz\n"; -int NO_TESTDRIVER = 0; +/* Temporary file names */ +static char const testfile[]="testing/testfile"; +static char const testfile1[]="testing/testfile1"; +static char const testfile2[]="testing/testfile2"; -static int rc = 0; +#define NO_TESTDRIVER 0 +static int TEST_RESULTS = 0; + +/* TESTCASE() - generic test */ #define TESTCASE( x ) if ( x ) {} \ - else { rc += 1; printf( "FAILED: " __FILE__ ", line %d - %s\n", __LINE__, #x ); } + else { TEST_RESULTS += 1; printf( "FAILED: " __FILE__ ", line %d - %s\n", __LINE__, #x ); } +/* TESTCASE_NOREG() - PDCLib-only test */ #ifndef REGTEST #define TESTCASE_NOREG( x ) TESTCASE( x ) #else #define TESTCASE_NOREG( x ) #endif -#define TEST_RESULTS rc +/* ...printf() tests */ +#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 +#endif + +#define PRINTF_TEST( expected_rc, expected_string, format, ... ) { \ + int actual_rc = testprintf( target, format, __VA_ARGS__ ); \ + if ( ( actual_rc != expected_rc ) || \ + ( RESULT_MISMATCH( target, expected_string ) ) ) \ + { \ + ++TEST_RESULTS; \ + fprintf( stderr, "FAILED: " __FILE__ " (" _PDCLIB_FILEID "), line %d\n expected %2d, \"%s\"\n actual %2d, \"%s\"\n", __LINE__, expected_rc, expected_string, actual_rc, RESULT_STRING( target ) ); \ + } \ + } while ( 0 ) +/* ...scanf() tests */ +/* TODO: t.b.d. */