1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
|
/* GStreamer
*
* unit test for data protocol
*
* Copyright (C) <2004> Thomas Vander Stichele <thomas at apestaart dot org>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#include "config.h"
#include <gst/check/gstcheck.h>
#ifndef GST_REMOVE_DEPRECATED
#undef GST_DISABLE_DEPRECATED
#endif
#include <gst/dataprotocol/dataprotocol.h>
#include "libs/gst/dataprotocol/dp-private.h" /* private header */
/* test our method of reading and writing headers using TO/FROM_BE */
GST_START_TEST (test_conversion)
{
guint8 array[9];
guint8 write_array[9];
guint16 read_two, expect_two;
guint32 read_four, expect_four;
guint64 read_eight, expect_eight;
int i;
for (i = 0; i < 9; ++i) {
array[i] = i * 0x10;
}
/* read 8 16 bits */
for (i = 0; i < 8; ++i) {
read_two = GST_READ_UINT16_BE (array + i);
expect_two = array[i] * (1 << 8) + array[i + 1];
fail_unless (read_two == expect_two,
"GST_READ_UINT16_BE %d: read %d != %d", i, read_two, expect_two);
}
/* write 8 16 bits */
for (i = 0; i < 8; ++i) {
GST_WRITE_UINT16_BE (&write_array[i], read_two);
fail_unless (memcmp (array + 7, write_array + i, 2) == 0,
"GST_WRITE_UINT16_BE %d: memcmp failed", i);
}
/* read 5 32 bits */
for (i = 0; i < 5; ++i) {
read_four = GST_READ_UINT32_BE (array + i);
expect_four = array[i] * (1 << 24) + array[i + 1] * (1 << 16)
+ array[i + 2] * (1 << 8) + array[i + 3];
fail_unless (read_four == expect_four,
"GST_READ_UINT32_BE %d: read %d != %d", i, read_four, expect_four);
}
/* read 2 64 bits */
for (i = 0; i < 2; ++i) {
read_eight = GST_READ_UINT64_BE (array + i);
expect_eight = array[i] * (1LL << 56) + array[i + 1] * (1LL << 48)
+ array[i + 2] * (1LL << 40) + array[i + 3] * (1LL << 32)
+ array[i + 4] * (1 << 24) + array[i + 5] * (1 << 16)
+ array[i + 6] * (1 << 8) + array[i + 7];
fail_unless (read_eight == expect_eight,
"GST_READ_UINT64_BE %d: read %" G_GUINT64_FORMAT
" != %" G_GUINT64_FORMAT, i, read_eight, expect_eight);
}
/* write 1 64 bit */
GST_WRITE_UINT64_BE (&write_array[0], read_eight);
fail_unless (memcmp (array + 1, write_array, 8) == 0,
"GST_WRITE_UINT64_BE: memcmp failed");
}
GST_END_TEST;
#ifndef GST_REMOVE_DEPRECATED /* these tests use deprecated API, that we disable by default */
/* test creation of header from buffer and back again */
GST_START_TEST (test_buffer)
{
GstBuffer *buffer;
GstBuffer *newbuffer;
guint header_length;
guint8 *header;
/* create buffer */
GST_DEBUG ("Creating a new 8-byte buffer with ts 0.5 sec, dur 1 sec");
buffer = gst_buffer_new_and_alloc (8);
GST_BUFFER_TIMESTAMP (buffer) = (GstClockTime) (GST_SECOND * 0.5);
GST_BUFFER_DURATION (buffer) = (GstClockTime) GST_SECOND;
GST_BUFFER_OFFSET (buffer) = (guint64) 10;
GST_BUFFER_OFFSET_END (buffer) = (guint64) 19;
GST_BUFFER_FLAG_SET (buffer, GST_BUFFER_FLAG_IN_CAPS);
memmove (GST_BUFFER_DATA (buffer), "a buffer", 8);
/* create a buffer with CRC checking */
fail_unless (gst_dp_header_from_buffer (buffer, GST_DP_HEADER_FLAG_CRC,
&header_length, &header), "Could not create header from buffer.");
/* validate the header */
fail_unless (gst_dp_validate_header (header_length, header),
"Could not validate header");
/* create a new, empty buffer with the right size */
newbuffer = gst_dp_buffer_from_header (header_length, header);
fail_unless (newbuffer != NULL, "Could not create a new buffer from header");
fail_unless (GST_IS_BUFFER (newbuffer), "Created buffer is not a GstBuffer");
/* read/copy the data */
memmove (GST_BUFFER_DATA (newbuffer), GST_BUFFER_DATA (buffer),
GST_BUFFER_SIZE (buffer));
/* validate the buffer */
fail_unless (gst_dp_validate_payload (header_length, header,
GST_BUFFER_DATA (newbuffer)), "Could not validate payload");
GST_DEBUG ("new buffer timestamp: %" GST_TIME_FORMAT,
GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (newbuffer)));
GST_DEBUG ("new buffer duration: %" GST_TIME_FORMAT,
GST_TIME_ARGS (GST_BUFFER_DURATION (newbuffer)));
GST_DEBUG ("new buffer offset: %" G_GUINT64_FORMAT,
GST_BUFFER_OFFSET (newbuffer));
GST_DEBUG ("new buffer offset_end: %" G_GUINT64_FORMAT,
GST_BUFFER_OFFSET_END (newbuffer));
fail_unless (GST_BUFFER_TIMESTAMP (newbuffer) ==
GST_BUFFER_TIMESTAMP (buffer), "Timestamps don't match !");
fail_unless (GST_BUFFER_DURATION (newbuffer) == GST_BUFFER_DURATION (buffer),
"Durations don't match !");
fail_unless (GST_BUFFER_OFFSET (newbuffer) == GST_BUFFER_OFFSET (buffer),
"Offsets don't match !");
fail_unless (GST_BUFFER_OFFSET_END (newbuffer) ==
GST_BUFFER_OFFSET_END (buffer), "Offset ends don't match !");
fail_unless (GST_BUFFER_FLAG_IS_SET (newbuffer, GST_BUFFER_FLAG_IN_CAPS),
"GST_BUFFER_IN_CAPS flag should have been copied !");
/* clean up */
gst_buffer_unref (buffer);
gst_buffer_unref (newbuffer);
g_free (header);
}
GST_END_TEST;
GST_START_TEST (test_caps)
{
gchar *string, *newstring;
GstCaps *caps, *newcaps;
guint header_length;
guint8 *header, *payload;
caps = gst_caps_from_string ("audio/x-raw-float, "
"rate = (int) [ 11025, 48000 ], "
"channels = (int) [ 1, 2 ], " "endianness = (int) BYTE_ORDER, "
"width = (int) 32, " "buffer-frames = (int) 0");
string = gst_caps_to_string (caps);
GST_DEBUG ("Created caps: %s", string);
fail_unless (gst_dp_packet_from_caps (caps, 0, &header_length, &header,
&payload), "Could not create packet from caps.");
/* validate the packet */
fail_unless (gst_dp_validate_packet (header_length, header, payload),
"Could not validate packet");
newcaps = gst_dp_caps_from_packet (header_length, header, payload);
fail_unless (newcaps != NULL, "Could not create caps from packet");
fail_unless (GST_IS_CAPS (newcaps));
newstring = gst_caps_to_string (newcaps);
GST_DEBUG ("Received caps: %s", newstring);
fail_unless (strcmp (string, newstring) == 0,
"Created caps do not match original caps");
/* cleanup */
gst_caps_unref (caps);
gst_caps_unref (newcaps);
g_free (header);
g_free (payload);
g_free (string);
g_free (newstring);
}
GST_END_TEST;
GST_START_TEST (test_event)
{
GstEvent *send;
GstEvent *receive;
guint header_length;
guint8 *header, *payload;
GST_DEBUG ("Testing EOS event at 1s");
send = gst_event_new_eos ();
GST_EVENT_TIMESTAMP (send) = GST_SECOND;
fail_unless (gst_dp_packet_from_event (send, GST_DP_HEADER_FLAG_CRC,
&header_length, &header, &payload),
"Could not create packet from eos event");
receive = gst_dp_event_from_packet (header_length, header, payload);
GST_DEBUG ("EOS, timestamp %" GST_TIME_FORMAT,
GST_TIME_ARGS (GST_EVENT_TIMESTAMP (receive)));
fail_unless (GST_EVENT_TYPE (receive) == GST_EVENT_EOS,
"Received event is not EOS");
fail_unless (GST_EVENT_TIMESTAMP (receive) == GST_SECOND,
"EOS timestamp is not 1.0 sec");
/* clean up */
g_free (header);
g_free (payload);
gst_event_unref (send);
gst_event_unref (receive);
GST_DEBUG ("Testing FLUSH event at 2s");
send = gst_event_new_flush_start ();
GST_EVENT_TIMESTAMP (send) = GST_SECOND * 2;
fail_unless (gst_dp_packet_from_event (send, GST_DP_HEADER_FLAG_CRC,
&header_length, &header, &payload),
"Could not create packet from flush event");
receive = gst_dp_event_from_packet (header_length, header, payload);
GST_DEBUG ("Flush, timestamp %" GST_TIME_FORMAT,
GST_TIME_ARGS (GST_EVENT_TIMESTAMP (receive)));
fail_unless (GST_EVENT_TYPE (receive) == GST_EVENT_FLUSH_START,
"Received event is not flush");
fail_unless (GST_EVENT_TIMESTAMP (receive) == GST_SECOND * 2,
"Flush timestamp is not 2.0 sec");
/* clean up */
g_free (header);
g_free (payload);
gst_event_unref (send);
gst_event_unref (receive);
GST_DEBUG ("Testing SEEK event with 1 second at 3 seconds");
send =
gst_event_new_seek (1.0, GST_FORMAT_TIME, 0, GST_SEEK_TYPE_SET,
GST_SECOND, GST_SEEK_TYPE_NONE, 0);
GST_EVENT_TIMESTAMP (send) = GST_SECOND * 3;
fail_unless (gst_dp_packet_from_event (send, GST_DP_HEADER_FLAG_CRC,
&header_length, &header, &payload),
"Could not create packet from seek event");
receive = gst_dp_event_from_packet (header_length, header, payload);
{
gdouble rate;
GstFormat format;
GstSeekFlags flags;
GstSeekType cur_type, stop_type;
gint64 cur, stop;
gst_event_parse_seek (receive, &rate, &format, &flags,
&cur_type, &cur, &stop_type, &stop);
GST_DEBUG ("Seek, timestamp %" GST_TIME_FORMAT ", to %" GST_TIME_FORMAT,
GST_TIME_ARGS (GST_EVENT_TIMESTAMP (receive)), GST_TIME_ARGS (cur));
fail_unless (GST_EVENT_TYPE (receive) == GST_EVENT_SEEK,
"Returned event is not seek");
fail_unless (GST_EVENT_TIMESTAMP (receive) == GST_SECOND * 3,
"Seek timestamp is not 3.0 sec");
fail_unless (format == GST_FORMAT_TIME, "Seek format is not time");
fail_unless (cur == GST_SECOND, "Seek cur is not 1.0 sec");
}
/* clean up */
g_free (header);
g_free (payload);
gst_event_unref (send);
gst_event_unref (receive);
}
GST_END_TEST;
/* try to segfault the thing by passing NULLs, short headers, etc.. */
GST_START_TEST (test_memory)
{
guint8 foo[5];
GstBuffer *buffer;
GstCaps *caps;
GstEvent *event;
guint length;
guint8 *header;
guint8 *payload;
/* check 0 sized input, data pointer can be NULL or anything. CRC is always 0,
* though. */
fail_if (gst_dp_crc (NULL, 0) != 0);
fail_if (gst_dp_crc (foo, 0) != 0);
/* this is very invalid input and gives a warning. */
ASSERT_CRITICAL (gst_dp_crc (NULL, 1));
ASSERT_CRITICAL (gst_dp_header_payload_length (NULL));
ASSERT_CRITICAL (gst_dp_header_payload_type (NULL));
/* wrong */
ASSERT_CRITICAL (gst_dp_header_from_buffer (NULL, 0, NULL, NULL));
/* empty buffer has NULL as data pointer */
buffer = gst_buffer_new_and_alloc (0);
/* no place to store the length and/or header data */
ASSERT_CRITICAL (gst_dp_header_from_buffer (buffer, 0, NULL, NULL));
ASSERT_CRITICAL (gst_dp_header_from_buffer (buffer, 0, &length, NULL));
/* this should work fine */
fail_if (gst_dp_header_from_buffer (buffer, 0, &length, &header) != TRUE);
fail_unless (length != 0);
fail_unless (header != NULL);
/* this should validate */
fail_if (gst_dp_validate_header (length, header) == FALSE);
/* NULL header pointer */
ASSERT_CRITICAL (gst_dp_validate_header (length, NULL));
/* short header */
ASSERT_CRITICAL (gst_dp_validate_header (5, header));
g_free (header);
/* this should work and not crash trying to calc a CRC on a 0 sized buffer */
fail_if (gst_dp_header_from_buffer (buffer,
GST_DP_HEADER_FLAG_CRC_HEADER | GST_DP_HEADER_FLAG_CRC_PAYLOAD,
&length, &header) != TRUE);
/* this should validate */
fail_if (gst_dp_validate_header (length, header) == FALSE);
/* there was no payload, NULL as payload data should validate the CRC
* checks and all. */
fail_if (gst_dp_validate_payload (length, header, NULL) == FALSE);
/* and the whole packet as well */
fail_if (gst_dp_validate_packet (length, header, NULL) == FALSE);
/* some bogus length */
ASSERT_CRITICAL (gst_dp_validate_packet (5, header, NULL));
gst_buffer_unref (buffer);
/* create buffer from header data, integrity tested elsewhere */
buffer = gst_dp_buffer_from_header (length, header);
fail_if (buffer == NULL);
gst_buffer_unref (buffer);
g_free (header);
ASSERT_CRITICAL (gst_dp_packet_from_caps (NULL, 0, NULL, NULL, NULL));
/* some caps stuff */
caps = gst_caps_new_empty ();
ASSERT_CRITICAL (gst_dp_packet_from_caps (caps, 0, NULL, NULL, NULL));
ASSERT_CRITICAL (gst_dp_packet_from_caps (caps, 0, &length, NULL, NULL));
ASSERT_CRITICAL (gst_dp_packet_from_caps (caps, 0, &length, &header, NULL));
fail_if (gst_dp_packet_from_caps (caps, 0, &length, &header,
&payload) != TRUE);
fail_if (strcmp ((const gchar *) payload, "EMPTY") != 0);
gst_caps_unref (caps);
caps = gst_dp_caps_from_packet (length, header, payload);
fail_if (caps == NULL);
gst_caps_unref (caps);
g_free (header);
g_free (payload);
/* some event stuff */
event = gst_event_new_eos ();
ASSERT_CRITICAL (gst_dp_packet_from_event (event, 0, NULL, NULL, NULL));
ASSERT_CRITICAL (gst_dp_packet_from_event (event, 0, &length, NULL, NULL));
ASSERT_CRITICAL (gst_dp_packet_from_event (event, 0, &length, &header, NULL));
/* payload is not NULL from previous test and points to freed memory, very
* invalid. */
fail_if (payload == NULL);
fail_if (gst_dp_packet_from_event (event, 0, &length, &header,
&payload) != TRUE);
/* the EOS event has no payload */
fail_if (payload != NULL);
gst_event_unref (event);
event = gst_dp_event_from_packet (length, header, payload);
fail_if (event == NULL);
fail_if (GST_EVENT_TYPE (event) != GST_EVENT_EOS);
gst_event_unref (event);
g_free (header);
g_free (payload);
}
GST_END_TEST;
#endif
static Suite *
gst_dp_suite (void)
{
Suite *s = suite_create ("data protocol");
TCase *tc_chain = tcase_create ("general");
suite_add_tcase (s, tc_chain);
tcase_add_checked_fixture (tc_chain, gst_dp_init, NULL);
tcase_add_test (tc_chain, test_conversion);
#ifndef GST_REMOVE_DEPRECATED
tcase_add_test (tc_chain, test_buffer);
tcase_add_test (tc_chain, test_caps);
tcase_add_test (tc_chain, test_event);
tcase_add_test (tc_chain, test_memory);
#endif
return s;
}
GST_CHECK_MAIN (gst_dp);
|