comparison spandsp-0.0.6pre17/tests/logging_tests.c @ 4:26cd8f1ef0b1

import spandsp-0.0.6pre17
author Peter Meerwald <pmeerw@cosy.sbg.ac.at>
date Fri, 25 Jun 2010 15:50:58 +0200
parents
children
comparison
equal deleted inserted replaced
3:c6c5a16ce2f2 4:26cd8f1ef0b1
1 /*
2 * SpanDSP - a series of DSP components for telephony
3 *
4 * logging_tests.c - Tests for the logging functions.
5 *
6 * Written by Steve Underwood <steveu@coppice.org>
7 *
8 * Copyright (C) 2006 Steve Underwood
9 *
10 * All rights reserved.
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2, as
14 * published by the Free Software Foundation.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 *
25 * $Id: logging_tests.c,v 1.16 2009/02/12 12:38:39 steveu Exp $
26 */
27
28 /*! \page logging_tests_page Logging tests
29 \section logging_tests_page_sec_1 What does it do?
30 */
31
32 #if defined(HAVE_CONFIG_H)
33 #include "config.h"
34 #endif
35
36 #define _POSIX_SOURCE
37 #define _POSIX_C_SOURCE 200112L
38
39 #include <stdlib.h>
40 #include <stdio.h>
41 #include <unistd.h>
42 #include <memory.h>
43 #include <time.h>
44
45 //#if defined(WITH_SPANDSP_INTERNALS)
46 #define SPANDSP_EXPOSE_INTERNAL_STRUCTURES
47 //#endif
48
49 #include "spandsp.h"
50
51 static int tests_failed = FALSE;
52
53 static int msg_step = 0;
54 static int msg2_step = 0;
55 static int error_step = 0;
56 static int msg_done = FALSE;
57 static int msg2_done = FALSE;
58 static int error_done = FALSE;
59
60 static void message_handler(int level, const char *text)
61 {
62 const char *ref[] =
63 {
64 "TAG Log with tag 1 2 3\n",
65 "Log with protocol 1 2 3\n",
66 "FLOW NewTag Log with new tag 1 2 3\n",
67 "FLOW Protocol NewTag Log with protocol 1 2 3\n",
68 "FLOW Protocol NewTag Buf 00 01 02 03 04 05 06 07 08 09\n",
69 "FLOW Protocol NewTag Buf 00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f 10 11 12 13 14 15 16 17 18 19 1a 1b 1c 1d 1e 1f 20 21 22 23 24 25 26 27 28 29 2a 2b 2c 2d 2e 2f 30 31 32 33 34 35 36 37 38 39 3a 3b 3c 3d 3e 3f 40 41 42 43 44 45 46 47 48 49 4a 4b 4c 4d 4e 4f 50 51 52 53 54 55 56 57 58 59 5a 5b 5c 5d 5e 5f 60 61 62 63 64 65 66 67 68 69 6a 6b 6c 6d 6e 6f 70 71 72 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f 80 81 82 83 84 85 86 87 88 89 8a 8b 8c 8d 8e 8f 90 91 92 93 94 95 96 97 98 99 9a 9b 9c 9d 9e 9f a0 a1 a2 a3 a4 a5 a6 a7 a8 a9 aa ab ac ad ae af b0 b1 b2 b3 b4 b5 b6 b7 b8 b9 ba bb bc bd be bf c0 c1 c2 c3 c4 c5 c6 c7 c8 c9 ca cb cc cd ce cf d0 d1 d2 d3 d4 d5 d6 d7 d8 d9 da db dc dd de df e0 e1 e2 e3 e4 e5 e6 e7 e8 e9 ea eb ec ed ee ef f0 f1 f2 f3 f4 f5 f6 f7 f8 f9 fa fb fc fd fe ff 00 01 02 03 04 05 06 07 08 09\n",
70 "00:00:00.000 FLOW Protocol NewTag Time tagged log 1 2 3\n",
71 "00:00:00.020 FLOW Protocol NewTag Time tagged log 1 2 3\n",
72 "00:00:00.040 FLOW Protocol NewTag Time tagged log 1 2 3\n",
73 "00:00:00.060 FLOW Protocol NewTag Time tagged log 1 2 3\n",
74 "00:00:00.080 FLOW Protocol NewTag Time tagged log 1 2 3\n",
75 "00:00:00.100 FLOW Protocol NewTag Time tagged log 1 2 3\n",
76 "00:00:00.120 FLOW Protocol NewTag Time tagged log 1 2 3\n",
77 "00:00:00.140 FLOW Protocol NewTag Time tagged log 1 2 3\n",
78 "00:00:00.160 FLOW Protocol NewTag Time tagged log 1 2 3\n",
79 "00:00:00.180 FLOW Protocol NewTag Time tagged log 1 2 3\n",
80 ""
81 };
82
83 if (strcmp(ref[msg_step], text))
84 {
85 printf(">>>: %s", ref[msg_step]);
86 tests_failed = TRUE;
87 }
88 if (ref[++msg_step][0] == '\0')
89 msg_done = TRUE;
90 printf("MSG: %s", text);
91 }
92 /*- End of function --------------------------------------------------------*/
93
94 static void message_handler2(int level, const char *text)
95 {
96 /* TODO: This doesn't check if the date/time field makes sense */
97 if (strcmp(" FLOW Protocol NewTag Date/time tagged log 1 2 3\n", text + 23))
98 {
99 printf(">>>: %s", text + 23);
100 tests_failed = TRUE;
101 }
102 if (++msg2_step == 10)
103 msg2_done = TRUE;
104 printf("MSG: %s", text);
105 }
106 /*- End of function --------------------------------------------------------*/
107
108 static void error_handler(const char *text)
109 {
110 const char *ref[] =
111 {
112 "ERROR Log with severity log 1 2 3\n",
113 ""
114 };
115
116 if (strcmp(ref[error_step], text))
117 {
118 printf(">>>: %s", ref[error_step]);
119 tests_failed = TRUE;
120 }
121 if (ref[++error_step][0] == '\0')
122 error_done = TRUE;
123 printf("ERR: %s", text);
124 }
125 /*- End of function --------------------------------------------------------*/
126
127 int main(int argc, char *argv[])
128 {
129 logging_state_t log;
130 int i;
131 uint8_t buf[1000];
132 struct timespec delay;
133
134 /* Set up a logger */
135 if (span_log_init(&log, 123, "TAG") == NULL)
136 {
137 fprintf(stderr, "Failed to initialise log.\n");
138 exit(2);
139 }
140 /* Try it */
141 span_log_set_level(&log, SPAN_LOG_SHOW_SEVERITY | SPAN_LOG_SHOW_PROTOCOL | SPAN_LOG_SHOW_TAG | SPAN_LOG_FLOW);
142 if (span_log(&log, SPAN_LOG_FLOW, "Logging to fprintf, as simple as %d %d %d\n", 1, 2, 3))
143 fprintf(stderr, "Logged.\n");
144 else
145 fprintf(stderr, "Not logged.\n");
146
147 /* Now set a custom log handler */
148 span_log_set_message_handler(&log, &message_handler);
149 span_log_set_error_handler(&log, &error_handler);
150 span_log_set_sample_rate(&log, 44100);
151
152 /* Try the different logging elements */
153 span_log_set_level(&log, SPAN_LOG_SHOW_TAG | SPAN_LOG_FLOW);
154 if (span_log(&log, SPAN_LOG_FLOW, "Log with tag %d %d %d\n", 1, 2, 3))
155 fprintf(stderr, "Logged.\n");
156 else
157 fprintf(stderr, "Not logged.\n");
158 span_log_set_level(&log, SPAN_LOG_SHOW_PROTOCOL | SPAN_LOG_FLOW);
159 if (span_log(&log, SPAN_LOG_FLOW, "Log with protocol %d %d %d\n", 1, 2, 3))
160 fprintf(stderr, "Logged.\n");
161 else
162 fprintf(stderr, "Not logged.\n");
163 span_log_set_level(&log, SPAN_LOG_SHOW_SEVERITY | SPAN_LOG_FLOW);
164 if (span_log(&log, SPAN_LOG_ERROR, "Log with severity log %d %d %d\n", 1, 2, 3))
165 fprintf(stderr, "Logged.\n");
166 else
167 fprintf(stderr, "Not logged.\n");
168
169 span_log_set_level(&log, SPAN_LOG_SHOW_SEVERITY | SPAN_LOG_SHOW_PROTOCOL | SPAN_LOG_SHOW_TAG | SPAN_LOG_FLOW);
170 span_log_set_tag(&log, "NewTag");
171 if (span_log(&log, SPAN_LOG_FLOW, "Log with new tag %d %d %d\n", 1, 2, 3))
172 fprintf(stderr, "Logged.\n");
173 else
174 fprintf(stderr, "Not logged.\n");
175
176 span_log_set_protocol(&log, "Protocol");
177 if (span_log(&log, SPAN_LOG_FLOW, "Log with protocol %d %d %d\n", 1, 2, 3))
178 fprintf(stderr, "Logged.\n");
179 else
180 fprintf(stderr, "Not logged.\n");
181
182 /* Test logging of buffer contents */
183 for (i = 0; i < 1000; i++)
184 buf[i] = i;
185 if (span_log_buf(&log, SPAN_LOG_FLOW, "Buf", buf, 10))
186 fprintf(stderr, "Logged.\n");
187 else
188 fprintf(stderr, "Not logged.\n");
189 if (span_log_buf(&log, SPAN_LOG_FLOW, "Buf", buf, 1000))
190 fprintf(stderr, "Logged.\n");
191 else
192 fprintf(stderr, "Not logged.\n");
193
194 /* Test the correct severities will be logged */
195 for (i = 0; i < 10; i++)
196 {
197 if (!span_log_test(&log, i))
198 {
199 if (i != 6)
200 tests_failed = TRUE;
201 break;
202 }
203 }
204
205 /* Check timestamping by samples */
206 span_log_set_level(&log, SPAN_LOG_SHOW_SEVERITY | SPAN_LOG_SHOW_PROTOCOL | SPAN_LOG_SHOW_TAG | SPAN_LOG_FLOW | SPAN_LOG_SHOW_SAMPLE_TIME);
207 for (i = 0; i < 10; i++)
208 {
209 span_log(&log, SPAN_LOG_FLOW, "Time tagged log %d %d %d\n", 1, 2, 3);
210 span_log_bump_samples(&log, 441*2);
211 }
212
213 /* Check timestamping by current date and time */
214 span_log_set_message_handler(&log, &message_handler2);
215 span_log_set_level(&log, SPAN_LOG_SHOW_SEVERITY | SPAN_LOG_SHOW_PROTOCOL | SPAN_LOG_SHOW_TAG | SPAN_LOG_FLOW | SPAN_LOG_SHOW_DATE);
216 for (i = 0; i < 10; i++)
217 {
218 span_log(&log, SPAN_LOG_FLOW, "Date/time tagged log %d %d %d\n", 1, 2, 3);
219 delay.tv_sec = 0;
220 delay.tv_nsec = 20000000;
221 nanosleep(&delay, NULL);
222 }
223 if (tests_failed || !msg_done || !error_done)
224 {
225 printf("Tests failed - %d %d %d.\n", tests_failed, msg_done, error_done);
226 return 2;
227 }
228
229 span_log_set_message_handler(&log, &message_handler);
230
231 printf("Tests passed.\n");
232 return 0;
233 }
234 /*- End of function --------------------------------------------------------*/
235 /*- End of file ------------------------------------------------------------*/

Repositories maintained by Peter Meerwald, pmeerw@pmeerw.net.