Allow user programme to set RMR verbosity level
[ric-plt/lib/rmr.git] / test / rmr_nng_test.c
1 // :vi sw=4 ts=4 noet:
2 /*
3 ==================================================================================
4         Copyright (c) 2019 Nokia
5         Copyright (c) 2018-2019 AT&T Intellectual Property.
6
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
10
11            http://www.apache.org/licenses/LICENSE-2.0
12
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 ==================================================================================
19 */
20
21 /*
22         Mmemonic:       rmr_nng_test.c
23         Abstract:       This tests the whole rmr nng 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.
30
31         Author:         E. Scott Daniels
32         Date:           18 January 2018         (IMO HRTL)
33 */
34
35 #include <stdio.h>
36 #include <stdlib.h>
37 #include <netdb.h>
38 #include <errno.h>
39 #include <string.h>
40 #include <errno.h>
41 #include <pthread.h>
42 #include <ctype.h>
43
44
45 #include <unistd.h>
46 #include <stdio.h>
47 #include <stdlib.h>
48 #include <strings.h>
49 #include <errno.h>
50 #include <string.h>
51 #include <stdint.h>
52 #include <ctype.h>
53 #include <sys/epoll.h>
54 #include <pthread.h>
55 #include <semaphore.h>
56
57 #define DEBUG 1
58
59 #include <nng/nng.h>
60 #include <nng/protocol/pubsub0/pub.h>
61 #include <nng/protocol/pubsub0/sub.h>
62 #include <nng/protocol/pipeline0/push.h>
63 #include <nng/protocol/pipeline0/pull.h>
64
65 #define EMULATE_NNG
66 #include "test_nng_em.c"                                                        // nng/nn emulation (before including things under test)
67
68
69 #include "rmr.h"                                        // things the users see
70 #include "rmr_symtab.h"
71 #include "rmr_logging.h"
72 #include "rmr_agnostic.h"                       // transport agnostic header
73 #include "rmr_nng_private.h"                    // transport specific
74
75 #include "symtab.c"
76 #include "logging.c"
77 #include "rmr_nng.c"
78 #include "mbuf_api.c"
79
80 static void gen_rt( uta_ctx_t* ctx );           // defined in sr_nng_static_test, but used by a few others (eliminate order requirement below)
81
82                                                                                         // specific test tools in this directory
83 #include "test_support.c"                                       // things like fail_if()
84 #include "test_gen_rt.c"
85                                                                                         // and finally....
86 #include "tools_static_test.c"                          // local test functions pulled directly because of static nature of things
87 #include "symtab_static_test.c"
88 #include "ring_static_test.c"
89 #include "rt_static_test.c"
90 #include "sr_nng_static_test.c"
91 #include "wormhole_static_test.c"
92 #include "rmr_nng_api_static_test.c"
93 #include "mbuf_api_static_test.c"
94
95
96 /*
97         Drive each of the separate tests and report.
98 */
99 int main() {
100         int errors = 0;
101
102         fprintf( stderr, "\n<INFO> starting tool tests\n" );
103         errors += tools_test();
104         fprintf( stderr, "<INFO> error count: %d\n", errors );
105
106         fprintf( stderr, "\n<INFO> starting ring tests (%d)\n", errors );
107         errors += ring_test();
108         fprintf( stderr, "<INFO> error count: %d\n", errors );
109
110         fprintf( stderr, "\n<INFO> starting symtab tests\n" );
111         errors += symtab_test( );
112         fprintf( stderr, "<INFO> error count: %d\n", errors );
113
114         fprintf( stderr, "\n<INFO> starting rtable tests\n" );
115         errors += rt_test();                            // route table tests
116         fprintf( stderr, "<INFO> error count: %d\n", errors );
117
118         fprintf( stderr, "\n<INFO> starting RMr API tests\n" );
119         errors += rmr_api_test();
120
121         fprintf( stderr, "\n<INFO> run RMr API tests with src name only env var set\n" );
122         setenv( "RMR_SRC_NAMEONLY", "1", 1 );
123         errors += rmr_api_test();
124         fprintf( stderr, "<INFO> error count: %d\n", errors );
125
126         fprintf( stderr, "\n<INFO> starting wormhole tests\n" );
127         errors += worm_test();                          // test wormhole funcitons
128         fprintf( stderr, "<INFO> error count: %d\n", errors );
129
130         fprintf( stderr, "\n<INFO> starting send/receive tests\n" );
131         errors += sr_nng_test();                                // test the send/receive static functions
132         fprintf( stderr, "<INFO> error count: %d\n", errors );
133
134         fprintf( stderr, "\n<INFO> starting mbuf api tests\n" );
135         errors +=  mbuf_api_test( );
136         fprintf( stderr, "<INFO> error count: %d\n", errors );
137
138         if( errors == 0 ) {
139                 fprintf( stderr, "<PASS> all tests were OK\n\n" );
140         } else {
141                 fprintf( stderr, "<FAIL> %d modules reported errors\n\n", errors );
142         }
143
144         return !!errors;
145 }