3 ==================================================================================
4 Copyright (c) 2020 Nokia
5 Copyright (c) 2020 AT&T Intellectual Property.
7 Licensed under the Apache License, Version 2.0 (the "License");
8 you may not use this file except in compliance with the License.
9 You may obtain a copy of the License at
11 http://www.apache.org/licenses/LICENSE-2.0
13 Unless required by applicable law or agreed to in writing, software
14 distributed under the License is distributed on an "AS IS" BASIS,
15 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 See the License for the specific language governing permissions and
17 limitations under the License.
18 ==================================================================================
22 Mmemonic: rmr_si_test.c
23 Abstract: This tests the whole RMR SI95 implementation. This driver
24 includes all of the module specific unit test static files
25 (e.g. wormhole_static_test.c) and drives the tests contained
26 there. The individual modules allow them to be driven by
27 a standalone driver, and to be maintained separately. We must
28 test by inclusion because of the static nature of the internal
29 functions of the library.
31 Author: E. Scott Daniels
32 Date: 18 January 2018 (IMO HRTL)
53 #include <sys/epoll.h>
55 #include <semaphore.h>
58 #define PARANOID_CHECKS 1 // must have parinoid testing on to not fail on nil pointer tests
60 // specific test tools in this directory
62 #include "test_support.c" // things like fail_if()
63 #include "test_ctx_support.c" // dummy context support
64 #include "test_gen_rt.c"
67 #include "rmr.h" // things the users see
68 #include "rmr_symtab.h"
69 #include "rmr_logging.h"
70 #include "rmr_agnostic.h" // transport agnostic header
78 static void gen_rt( uta_ctx_t* ctx ); // defined in sr_si_static_test, but used by a few others (eliminate order requirement below)
81 #include "tools_static_test.c" // local test functions pulled directly because of static nature of things
82 #include "symtab_static_test.c"
83 #include "ring_static_test.c"
84 #include "rt_static_test.c"
85 #include "wormhole_static_test.c"
86 #include "mbuf_api_static_test.c"
87 #include "sr_si_static_test.c"
88 #include "lg_buf_static_test.c"
90 #include "rmr_si_api_static_test.c"
94 Drive each of the separate tests and report.
99 rmr_set_vlevel( 5 ); // enable all debugging
101 fprintf( stderr, "\n<INFO> starting lg buffer tests (%d)\n", errors );
102 errors += rmr_lgbuf_test();
103 fprintf( stderr, "<INFO> error count: %d\n", errors );
105 fprintf( stderr, "\n<INFO> starting ring tests (%d)\n", errors );
106 errors += ring_test();
107 fprintf( stderr, "<INFO> error count: %d\n", errors );
109 fprintf( stderr, "\n<INFO> starting symtab tests\n" );
110 errors += symtab_test( );
111 fprintf( stderr, "<INFO> error count: %d\n", errors );
113 fprintf( stderr, "\n<INFO> starting rtable tests\n" );
114 errors += rt_test(); // route table tests
115 fprintf( stderr, "<INFO> error count: %d\n", errors );
117 fprintf( stderr, "\n<INFO> starting wormhole tests\n" );
118 errors += worm_test(); // test wormhole funcitons
119 fprintf( stderr, "<INFO> error count: %d\n", errors );
121 fprintf( stderr, "\n<INFO> starting tool tests\n" );
122 errors += tools_test();
123 fprintf( stderr, "<INFO> error count: %d\n", errors );
125 fprintf( stderr, "\n<INFO> starting mbuf api tests\n" );
126 errors += mbuf_api_test( );
127 fprintf( stderr, "<INFO> error count: %d\n", errors );
129 fprintf( stderr, "\n<INFO> starting send/receive tests\n" );
130 errors += sr_si_test(); // test the send/receive static functions
131 fprintf( stderr, "<INFO> error count: %d\n", errors );
134 fprintf( stderr, "\n<INFO> starting RMr API tests\n" );
135 errors += rmr_api_test();
137 /// ---- all ok above here
139 fprintf( stderr, "\n<INFO> run RMr API tests with src name only env var set\n" );
140 setenv( "RMR_SRC_NAMEONLY", "1", 1 );
141 errors += rmr_api_test();
142 fprintf( stderr, "<INFO> error count: %d\n", errors );
146 fprintf( stderr, "<PASS> all tests were OK\n\n" );
148 fprintf( stderr, "<FAIL> %d modules reported errors\n\n", errors );