// :vi sw=4 ts=4 noet: /* ================================================================================== Copyright (c) 2019 Nokia Copyright (c) 2018-2019 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. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ================================================================================== */ /* Mmemonic: rmr_nano_test.c Abstract: This tests the whole rmr nanomsg implementation. This driver includes all of the module specific unit test static files (e.g. wormhole_static_test.c) and drives the tests contained there. The individual modules allow them to be driven by a standalone driver, and to be maintained separately. We must test by inclusion because of the static nature of the internal functions of the library. This test only needs to drive the soruce in nanomsg/src. The common library functions are driven by the nng tests. Author: E. Scott Daniels Date: 18 January 2018 (IMO HRTL) */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #define DEBUG 1 #include #undef EMULATE_NNG #include "test_nng_em.c" // nng/nn emulation (before including things under test) #include "rmr.h" // things the users see #include "rmr_symtab.h" #include "rmr_agnostic.h" // transport agnostic header #include "rmr_private.h" // transport specific #include "symtab.c" #include "rmr.c" #include "mbuf_api.c" #include "rtable_static.c" static void gen_rt( uta_ctx_t* ctx ); // defined in sr_static_test, but used by a few others (eliminate order requirement below) // specific test tools in this directory #include "test_support.c" // things like fail_if() // and finally.... #include "mbuf_api_static_test.c" #include "sr_nano_static_test.c" #include "rmr_nng_api_static_test.c" // this can be used for both nng and nano #include "rt_nano_static_test.c" // this can be used for both /* Drive each of the separate tests and report. */ int main() { int errors = 0; fprintf( stderr, " starting RMr Nanomsg based API tests\n" ); errors += rmr_api_test(); fprintf( stderr, " error count: %d\n", errors ); fprintf( stderr, " starting mbuf related tests\n" ); errors += mbuf_api_test( ); fprintf( stderr, " error count: %d\n", errors ); fprintf( stderr, " starting send/receive tests\n" ); errors += sr_nano_test(); // test the send/receive static functions fprintf( stderr, " error count: %d\n", errors ); fprintf( stderr, " starting rt_static tests\n" ); errors += rt_test(); // route table things specific to nano fprintf( stderr, " error count: %d\n", errors ); if( errors == 0 ) { fprintf( stderr, " all tests were OK\n" ); } else { fprintf( stderr, " %d modules reported errors\n", errors ); } return !!errors; }