X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=test%2Ftest_support.c;h=fce0449437a5713b1be28e0553eda63607f37f7b;hb=fd4477a9698a46ce5755d614b663c18ceadf43c4;hp=084256f482ed4fd9c29d283ccec6112937b974c8;hpb=d9de79acd9c205dc4f795e90a98331628ed6c85b;p=ric-plt%2Flib%2Frmr.git diff --git a/test/test_support.c b/test/test_support.c index 084256f..fce0449 100644 --- a/test/test_support.c +++ b/test/test_support.c @@ -1,8 +1,8 @@ -// : vi ts=4 sw=4 noet : +// vi: ts=4 sw=4 noet : /* ================================================================================== - Copyright (c) 2019 Nokia - Copyright (c) 2018-2019 AT&T Intellectual Property. + Copyright (c) 2019-2020 Nokia + Copyright (c) 2018-2020 AT&T Intellectual Property. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -37,11 +37,59 @@ #include #include +/* + This is ugly, but needed to allow for component testing. + + The test code (e.g. foo_test.c and not foo_static_test.c) can include these + constants to turn off the import of test support files: + NO_EMULATION -- the transport emulation will not be included + NO_PRIVATE_HEADERS -- the private headers for the transport component of RMR + (e.g. si) will not be included. +*/ +#ifndef NO_EMULATION // assume emulation unless specifically put off (love double negatives) + #ifdef NNG_UNDER_TEST + #define TP_HDR_LEN 0 // needed for support functions but nonexistant in nng world + #include "test_nng_em.c" // nano/ngg emulation functions + #else + #include "test_si95_em.c" // si emulation functions + #endif +#endif + +#ifndef NO_PRIVATE_HEADERS // include transport headers unless specifically turned off + #ifdef NNG_UNDER_TEST + #include // context things are type sensitive + #else + #include "si95/socket_if.h" // need to have the si context more than anything else + #include + #endif +#endif + #ifndef BAD #define BAD 1 // these are exit codes unless user overrides #define GOOD 0 #endif +// ----------- a couple of globals make it easier --------------------------------------- +static int ts_tests_driven = 0; // number of fail_if calls made == numer of tests driven + +// --------------------------------------------------------------------------------------- + +/* + Support test counting, reset and summary. +*/ +static int test_get_attempted() { + return ts_tests_driven; +} + +static void test_reset_attempted() { + ts_tests_driven = 0; +} + +static void test_summary( int ecount, char* tag ) { + fprintf( stderr, " %s completed; %d total tests, %d passed, %d failed\n", + tag, ts_tests_driven, ts_tests_driven - ecount, ecount ); +} + /* Snag the optional positional parameter at pp, return defval if not there. */ @@ -84,7 +132,13 @@ static void set_signals( void ) { } +/* + Assert like logic except these just record the test and return state so that we + can attempt all tests and not abort on the first failure as an assert would do. +*/ static int fail_if_nil( void* p, char* what ) { + ts_tests_driven++; + if( !p ) { fprintf( stderr, " %s: pointer was nil\n", what ); } @@ -92,6 +146,8 @@ static int fail_if_nil( void* p, char* what ) { } static int fail_not_nil( void* p, char* what ) { + ts_tests_driven++; + if( p ) { fprintf( stderr, " %s: pointer was not nil\n", what ); } @@ -99,6 +155,8 @@ static int fail_not_nil( void* p, char* what ) { } static int fail_if_false( int bv, char* what ) { + ts_tests_driven++; + if( !bv ) { fprintf( stderr, " %s: expected true, boolean test was false (%d)\n", what, bv ); } @@ -107,6 +165,8 @@ static int fail_if_false( int bv, char* what ) { } static int fail_if_true( int bv, char* what ) { + ts_tests_driven++; + if( bv ) { fprintf( stderr, " %s: expected false, boolean test was true (%d)\n", what, bv ); } @@ -117,6 +177,8 @@ static int fail_if_true( int bv, char* what ) { Same as fail_if_true(), but reads easier in the test code. */ static int fail_if( int bv, char* what ) { + ts_tests_driven++; + if( bv ) { fprintf( stderr, " %s: expected false, boolean test was true (%d)\n", what, bv ); @@ -124,7 +186,27 @@ static int fail_if( int bv, char* what ) { return bv ? BAD : GOOD; } +static int fail_pequal( void* a, void* b, char* what ) { + ts_tests_driven++; + + if( a == b ) { + fprintf( stderr, " %s: pointers were not equal a=%p b=%p\n", what, a, b ); + } + return a == b ? GOOD : BAD; // user may override good/bad so do NOT return a==b directly! +} + +static int fail_not_pequal( void* a, void* b, char* what ) { + ts_tests_driven++; + + if( a != b ) { + fprintf( stderr, " %s: pointers were not equal a=%p b=%p\n", what, a, b ); + } + return a == b ? GOOD : BAD; // user may override good/bad so do NOT return a==b directly! +} + static int fail_not_equal( int a, int b, char* what ) { + ts_tests_driven++; + if( a != b ) { fprintf( stderr, " %s: values were not equal a=%d b=%d\n", what, a, b ); } @@ -132,6 +214,9 @@ static int fail_not_equal( int a, int b, char* what ) { } static int fail_if_equal( int a, int b, char* what ) { + ts_tests_driven++; + + fprintf( stderr, " %s %d\n", what, a==b ); if( a == b ) { fprintf( stderr, " %s values were equal a=%d b=%d\n", what, a, b ); } @@ -139,6 +224,8 @@ static int fail_if_equal( int a, int b, char* what ) { } static int fail_not_equalp( void* a, void* b, char* what ) { + ts_tests_driven++; + if( a != b ) { fprintf( stderr, " %s: pointers were not equal a=%p b=%p\n", what, a, b ); } @@ -146,6 +233,8 @@ static int fail_not_equalp( void* a, void* b, char* what ) { } static int fail_if_equalp( void* a, void* b, char* what ) { + ts_tests_driven++; + if( a == b ) { fprintf( stderr, " %s pointers were equal a=%p b=%p\n", what, a, b ); } @@ -167,9 +256,10 @@ static rmr_mbuf_t* test_mk_msg( int len, int tr_len ) { uta_mhdr_t* hdr; size_t alen; - alen = sizeof( *hdr ) + tr_len + len; // this does no support allocating len2 and len3 data fields + alen = sizeof( *hdr ) + tr_len + len + TP_HDR_LEN; // this does no support allocating len2 and len3 data fields new_msg = (rmr_mbuf_t *) malloc( sizeof *new_msg ); + memset( new_msg, 0, sizeof( *new_msg ) ); new_msg->tp_buf = (void *) malloc( alen ); memset( new_msg->tp_buf, 0, alen ); @@ -231,7 +321,7 @@ static void test_set_plen( rmr_mbuf_t* msg, int plen ) { /* Build a message and populate both the msg buffer and the tranport header - with mid, sid, and payload len. Tr_len causes that much space in the + with mid, sid, and payload len. Tr_len causes that much space in the header for trace info to be reserved. */ static rmr_mbuf_t* mk_populated_msg( int alloc_len, int tr_len, int mtype, int sid, int plen ) { @@ -247,6 +337,7 @@ static rmr_mbuf_t* mk_populated_msg( int alloc_len, int tr_len, int mtype, int s } +// end no dummy rmr #endif #endif