Refuse to add port to component when parent graph is canceled
[babeltrace.git] / tests / lib / test_bt_notification_iterator.c
CommitLineData
223c70b2
PP
1/*
2 * Copyright 2017 - Philippe Proulx <pproulx@efficios.com>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; under version 2 of the License.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
16 */
17
18#include <stdio.h>
19#include <stdlib.h>
20#include <stdint.h>
c55a9f58 21#include <stdbool.h>
223c70b2
PP
22#include <inttypes.h>
23#include <string.h>
24#include <assert.h>
25#include <babeltrace/ctf-ir/event-class.h>
26#include <babeltrace/ctf-ir/event.h>
27#include <babeltrace/ctf-ir/field-types.h>
28#include <babeltrace/ctf-ir/fields.h>
29#include <babeltrace/ctf-ir/packet.h>
30#include <babeltrace/ctf-ir/stream-class.h>
31#include <babeltrace/ctf-ir/stream.h>
32#include <babeltrace/ctf-ir/trace.h>
33#include <babeltrace/graph/clock-class-priority-map.h>
34#include <babeltrace/graph/component-class-filter.h>
35#include <babeltrace/graph/component-class-sink.h>
36#include <babeltrace/graph/component-class-source.h>
37#include <babeltrace/graph/component-class.h>
38#include <babeltrace/graph/component-sink.h>
39#include <babeltrace/graph/component-source.h>
40#include <babeltrace/graph/component.h>
41#include <babeltrace/graph/graph.h>
42#include <babeltrace/graph/notification-event.h>
43#include <babeltrace/graph/notification-inactivity.h>
44#include <babeltrace/graph/notification-iterator.h>
45#include <babeltrace/graph/notification-packet.h>
46#include <babeltrace/graph/notification-stream.h>
47#include <babeltrace/graph/port.h>
48#include <babeltrace/graph/private-component-source.h>
b9d103be 49#include <babeltrace/graph/private-component-sink.h>
223c70b2
PP
50#include <babeltrace/graph/private-component.h>
51#include <babeltrace/graph/private-connection.h>
52#include <babeltrace/graph/private-notification-iterator.h>
53#include <babeltrace/graph/private-port.h>
54#include <babeltrace/plugin/plugin.h>
55#include <babeltrace/ref.h>
56#include <glib.h>
57
58#include "tap/tap.h"
59
60#define NR_TESTS 24
61
62enum test {
63 TEST_NO_AUTO_NOTIFS,
64 TEST_AUTO_STREAM_BEGIN_FROM_PACKET_BEGIN,
65 TEST_AUTO_STREAM_BEGIN_FROM_STREAM_END,
66 TEST_AUTO_STREAM_END_FROM_END,
67 TEST_AUTO_PACKET_BEGIN_FROM_PACKET_END,
68 TEST_AUTO_PACKET_BEGIN_FROM_EVENT,
69 TEST_AUTO_PACKET_END_FROM_PACKET_BEGIN,
70 TEST_AUTO_PACKET_END_PACKET_BEGIN_FROM_EVENT,
71 TEST_AUTO_PACKET_END_FROM_STREAM_END,
72 TEST_AUTO_PACKET_END_STREAM_END_FROM_END,
73 TEST_MULTIPLE_AUTO_STREAM_END_FROM_END,
74 TEST_MULTIPLE_AUTO_PACKET_END_STREAM_END_FROM_END,
75};
76
77enum test_event_type {
78 TEST_EV_TYPE_NOTIF_UNEXPECTED,
79 TEST_EV_TYPE_NOTIF_EVENT,
80 TEST_EV_TYPE_NOTIF_INACTIVITY,
81 TEST_EV_TYPE_NOTIF_STREAM_BEGIN,
82 TEST_EV_TYPE_NOTIF_PACKET_BEGIN,
83 TEST_EV_TYPE_NOTIF_PACKET_END,
84 TEST_EV_TYPE_NOTIF_STREAM_END,
85 TEST_EV_TYPE_END,
86 TEST_EV_TYPE_SENTINEL,
87};
88
89struct test_event {
90 enum test_event_type type;
91 struct bt_ctf_stream *stream;
92 struct bt_ctf_packet *packet;
93};
94
95struct source_muxer_sink {
96 struct bt_component *source;
97 struct bt_component *sink;
98};
99
100static bool debug = false;
101static enum test current_test;
102static GArray *test_events;
103static struct bt_clock_class_priority_map *src_empty_cc_prio_map;
104static struct bt_ctf_stream_class *src_stream_class;
105static struct bt_ctf_event_class *src_event_class;
106static struct bt_ctf_stream *src_stream1;
107static struct bt_ctf_stream *src_stream2;
108static struct bt_ctf_packet *src_stream1_packet1;
109static struct bt_ctf_packet *src_stream1_packet2;
110static struct bt_ctf_packet *src_stream2_packet1;
111static struct bt_ctf_packet *src_stream2_packet2;
112
113enum {
114 SEQ_END = -1,
115 SEQ_STREAM1_BEGIN = -2,
116 SEQ_STREAM2_BEGIN = -3,
117 SEQ_STREAM1_END = -4,
118 SEQ_STREAM2_END = -5,
119 SEQ_STREAM1_PACKET1_BEGIN = -6,
120 SEQ_STREAM1_PACKET2_BEGIN = -7,
121 SEQ_STREAM2_PACKET1_BEGIN = -8,
122 SEQ_STREAM2_PACKET2_BEGIN = -9,
123 SEQ_STREAM1_PACKET1_END = -10,
124 SEQ_STREAM1_PACKET2_END = -11,
125 SEQ_STREAM2_PACKET1_END = -12,
126 SEQ_STREAM2_PACKET2_END = -13,
127 SEQ_EVENT_STREAM1_PACKET1 = -14,
128 SEQ_EVENT_STREAM1_PACKET2 = -15,
129 SEQ_EVENT_STREAM2_PACKET1 = -16,
130 SEQ_EVENT_STREAM2_PACKET2 = -17,
131 SEQ_INACTIVITY = -18,
132};
133
134struct src_iter_user_data {
135 int64_t *seq;
136 size_t at;
137};
138
139struct sink_user_data {
140 struct bt_notification_iterator *notif_iter;
141};
142
143/*
144 * No automatic notifications generated in this block.
145 * Stream 2 notifications are more indented.
146 */
147static int64_t seq_no_auto_notifs[] = {
148 SEQ_STREAM1_BEGIN,
149 SEQ_STREAM1_PACKET1_BEGIN,
150 SEQ_EVENT_STREAM1_PACKET1,
151 SEQ_EVENT_STREAM1_PACKET1,
152 SEQ_STREAM2_BEGIN,
153 SEQ_EVENT_STREAM1_PACKET1,
154 SEQ_STREAM2_PACKET2_BEGIN,
155 SEQ_EVENT_STREAM2_PACKET2,
156 SEQ_EVENT_STREAM1_PACKET1,
157 SEQ_STREAM1_PACKET1_END,
158 SEQ_STREAM2_PACKET2_END,
159 SEQ_STREAM1_PACKET2_BEGIN,
160 SEQ_EVENT_STREAM1_PACKET2,
161 SEQ_STREAM2_END,
162 SEQ_STREAM1_PACKET2_END,
163 SEQ_STREAM1_END,
164 SEQ_END,
165};
166
167/* Automatic "stream begin" from "packet begin" */
168static int64_t seq_auto_stream_begin_from_packet_begin[] = {
169 /* Automatic "stream begin" here */
170 SEQ_STREAM1_PACKET1_BEGIN,
171 SEQ_STREAM1_PACKET1_END,
172 SEQ_STREAM1_END,
173 SEQ_END,
174};
175
176/* Automatic "stream begin" from "stream end" */
177static int64_t seq_auto_stream_begin_from_stream_end[] = {
178 /* Automatic "stream begin" here */
179 SEQ_STREAM1_END,
180 SEQ_END,
181};
182
183/* Automatic "stream end" from END */
184static int64_t seq_auto_stream_end_from_end[] = {
185 SEQ_STREAM1_BEGIN,
186 /* Automatic "packet end" here */
187 SEQ_END,
188};
189
190/* Automatic "packet begin" from "packet end" */
191static int64_t seq_auto_packet_begin_from_packet_end[] = {
192 SEQ_STREAM1_BEGIN,
193 /* Automatic "packet begin" here */
194 SEQ_STREAM1_PACKET1_END,
195 SEQ_STREAM1_END,
196 SEQ_END,
197};
198
199/* Automatic "packet begin" from event */
200static int64_t seq_auto_packet_begin_from_event[] = {
201 SEQ_STREAM1_BEGIN,
202 /* Automatic "packet begin" here */
203 SEQ_EVENT_STREAM1_PACKET1,
204 SEQ_STREAM1_PACKET1_END,
205 SEQ_STREAM1_END,
206 SEQ_END,
207};
208
209/* Automatic "packet end" from "packet begin" */
210static int64_t seq_auto_packet_end_from_packet_begin[] = {
211 SEQ_STREAM1_BEGIN,
212 SEQ_STREAM1_PACKET1_BEGIN,
213 /* Automatic "packet end" here */
214 SEQ_STREAM1_PACKET2_BEGIN,
215 SEQ_STREAM1_PACKET2_END,
216 SEQ_STREAM1_END,
217 SEQ_END,
218};
219
220/* Automatic "packet end" and "packet begin" from event */
221static int64_t seq_auto_packet_end_packet_begin_from_event[] = {
222 SEQ_STREAM1_BEGIN,
223 SEQ_STREAM1_PACKET1_BEGIN,
224 /* Automatic "packet end" here */
225 /* Automatic "packet begin" here */
226 SEQ_EVENT_STREAM1_PACKET2,
227 SEQ_STREAM1_PACKET2_END,
228 SEQ_STREAM1_END,
229 SEQ_END,
230};
231
232/* Automatic "packet end" from "stream end" */
233static int64_t seq_auto_packet_end_from_stream_end[] = {
234 SEQ_STREAM1_BEGIN,
235 SEQ_STREAM1_PACKET1_BEGIN,
236 /* Automatic "packet end" here */
237 SEQ_STREAM1_END,
238 SEQ_END,
239};
240
241/* Automatic "packet end" and "stream end" from END */
242static int64_t seq_auto_packet_end_stream_end_from_end[] = {
243 SEQ_STREAM1_BEGIN,
244 SEQ_STREAM1_PACKET1_BEGIN,
245 /* Automatic "packet end" here */
246 /* Automatic "stream end" here */
247 SEQ_END,
248};
249
250/* Multiple automatic "stream end" from END */
251static int64_t seq_multiple_auto_stream_end_from_end[] = {
252 SEQ_STREAM1_BEGIN,
253 SEQ_STREAM2_BEGIN,
254 /* Automatic "stream end" here */
255 /* Automatic "stream end" here */
256 SEQ_END,
257};
258
259/* Multiple automatic "packet end" and "stream end" from END */
260static int64_t seq_multiple_auto_packet_end_stream_end_from_end[] = {
261 SEQ_STREAM1_BEGIN,
262 SEQ_STREAM2_BEGIN,
263 SEQ_STREAM1_PACKET1_BEGIN,
264 SEQ_STREAM2_PACKET1_BEGIN,
265 /* Automatic "packet end" here */
266 /* Automatic "stream end" here */
267 /* Automatic "packet end" here */
268 /* Automatic "stream end" here */
269 SEQ_END,
270};
271
272static
273void clear_test_events(void)
274{
275 g_array_set_size(test_events, 0);
276}
277
278static
279void print_test_event(FILE *fp, const struct test_event *event)
280{
281 fprintf(fp, "{ type = ");
282
283 switch (event->type) {
284 case TEST_EV_TYPE_NOTIF_UNEXPECTED:
285 fprintf(fp, "TEST_EV_TYPE_NOTIF_UNEXPECTED");
286 break;
287 case TEST_EV_TYPE_NOTIF_EVENT:
288 fprintf(fp, "TEST_EV_TYPE_NOTIF_EVENT");
289 break;
290 case TEST_EV_TYPE_NOTIF_INACTIVITY:
291 fprintf(fp, "TEST_EV_TYPE_NOTIF_INACTIVITY");
292 break;
293 case TEST_EV_TYPE_NOTIF_STREAM_BEGIN:
294 fprintf(fp, "TEST_EV_TYPE_NOTIF_STREAM_BEGIN");
295 break;
296 case TEST_EV_TYPE_NOTIF_STREAM_END:
297 fprintf(fp, "TEST_EV_TYPE_NOTIF_STREAM_END");
298 break;
299 case TEST_EV_TYPE_NOTIF_PACKET_BEGIN:
300 fprintf(fp, "TEST_EV_TYPE_NOTIF_PACKET_BEGIN");
301 break;
302 case TEST_EV_TYPE_NOTIF_PACKET_END:
303 fprintf(fp, "TEST_EV_TYPE_NOTIF_PACKET_END");
304 break;
305 case TEST_EV_TYPE_END:
306 fprintf(fp, "TEST_EV_TYPE_END");
307 break;
308 case TEST_EV_TYPE_SENTINEL:
309 fprintf(fp, "TEST_EV_TYPE_SENTINEL");
310 break;
311 default:
312 fprintf(fp, "(UNKNOWN)");
313 break;
314 }
315
316 fprintf(fp, ", stream = %p, packet = %p }", event->stream,
317 event->packet);
318}
319
320static
321void append_test_event(struct test_event *event)
322{
323 g_array_append_val(test_events, *event);
324}
325
326static
327bool compare_single_test_events(const struct test_event *ev_a,
328 const struct test_event *ev_b)
329{
330 if (debug) {
331 fprintf(stderr, ":: Comparing test events: ");
332 print_test_event(stderr, ev_a);
333 fprintf(stderr, " vs. ");
334 print_test_event(stderr, ev_b);
335 fprintf(stderr, "\n");
336 }
337
338 if (ev_a->type != ev_b->type) {
339 return false;
340 }
341
342 switch (ev_a->type) {
343 case TEST_EV_TYPE_END:
344 case TEST_EV_TYPE_SENTINEL:
345 break;
346 default:
347 if (ev_a->stream != ev_b->stream) {
348 return false;
349 }
350
351 if (ev_a->packet != ev_b->packet) {
352 return false;
353 }
354 break;
355 }
356
357 return true;
358}
359
360static
361bool compare_test_events(const struct test_event *expected_events)
362{
363 const struct test_event *expected_event = expected_events;
364 size_t i = 0;
365
366 assert(expected_events);
367
368 while (true) {
369 const struct test_event *event;
370
371 if (expected_event->type == TEST_EV_TYPE_SENTINEL) {
372 break;
373 }
374
375 if (i >= test_events->len) {
376 return false;
377 }
378
379 event = &g_array_index(test_events, struct test_event, i);
380
381 if (!compare_single_test_events(event, expected_event)) {
382 return false;
383 }
384
385 i++;
386 expected_event++;
387 }
388
389 if (i != test_events->len) {
390 return false;
391 }
392
393 return true;
394}
395
396static
397void init_static_data(void)
398{
399 int ret;
400 struct bt_ctf_trace *trace;
401 struct bt_ctf_field_type *empty_struct_ft;
402
403 /* Test events */
404 test_events = g_array_new(FALSE, TRUE, sizeof(struct test_event));
405 assert(test_events);
406
407 /* Metadata */
408 empty_struct_ft = bt_ctf_field_type_structure_create();
409 assert(empty_struct_ft);
410 trace = bt_ctf_trace_create();
411 assert(trace);
223c70b2
PP
412 ret = bt_ctf_trace_set_packet_header_type(trace, empty_struct_ft);
413 assert(ret == 0);
414 src_empty_cc_prio_map = bt_clock_class_priority_map_create();
415 assert(src_empty_cc_prio_map);
416 src_stream_class = bt_ctf_stream_class_create("my-stream-class");
417 assert(src_stream_class);
418 ret = bt_ctf_stream_class_set_packet_context_type(src_stream_class,
419 empty_struct_ft);
420 assert(ret == 0);
421 ret = bt_ctf_stream_class_set_event_header_type(src_stream_class,
422 empty_struct_ft);
423 assert(ret == 0);
424 ret = bt_ctf_stream_class_set_event_context_type(src_stream_class,
425 empty_struct_ft);
426 assert(ret == 0);
427 src_event_class = bt_ctf_event_class_create("my-event-class");
428 ret = bt_ctf_event_class_set_context_type(src_event_class,
429 empty_struct_ft);
430 assert(ret == 0);
431 ret = bt_ctf_event_class_set_context_type(src_event_class,
432 empty_struct_ft);
433 assert(ret == 0);
434 ret = bt_ctf_stream_class_add_event_class(src_stream_class,
435 src_event_class);
436 assert(ret == 0);
437 ret = bt_ctf_trace_add_stream_class(trace, src_stream_class);
438 assert(ret == 0);
439 src_stream1 = bt_ctf_stream_create(src_stream_class, "stream-1");
440 assert(src_stream1);
441 src_stream2 = bt_ctf_stream_create(src_stream_class, "stream-2");
442 assert(src_stream2);
443 src_stream1_packet1 = bt_ctf_packet_create(src_stream1);
444 assert(src_stream1_packet1);
445 src_stream1_packet2 = bt_ctf_packet_create(src_stream1);
446 assert(src_stream1_packet2);
447 src_stream2_packet1 = bt_ctf_packet_create(src_stream2);
448 assert(src_stream2_packet1);
449 src_stream2_packet2 = bt_ctf_packet_create(src_stream2);
450 assert(src_stream2_packet2);
451
452 if (debug) {
453 fprintf(stderr, ":: stream 1: %p\n", src_stream1);
454 fprintf(stderr, ":: stream 2: %p\n", src_stream2);
455 fprintf(stderr, ":: stream 1, packet 1: %p\n", src_stream1_packet1);
456 fprintf(stderr, ":: stream 1, packet 2: %p\n", src_stream1_packet2);
457 fprintf(stderr, ":: stream 2, packet 1: %p\n", src_stream2_packet1);
458 fprintf(stderr, ":: stream 2, packet 2: %p\n", src_stream2_packet2);
459 }
460
461 bt_put(trace);
462 bt_put(empty_struct_ft);
463}
464
465static
466void fini_static_data(void)
467{
468 /* Test events */
469 g_array_free(test_events, TRUE);
470
471 /* Metadata */
472 bt_put(src_empty_cc_prio_map);
473 bt_put(src_stream_class);
474 bt_put(src_event_class);
475 bt_put(src_stream1);
476 bt_put(src_stream2);
477 bt_put(src_stream1_packet1);
478 bt_put(src_stream1_packet2);
479 bt_put(src_stream2_packet1);
480 bt_put(src_stream2_packet2);
481}
482
483static
484void src_iter_finalize(
485 struct bt_private_notification_iterator *private_notification_iterator)
486{
487 struct src_iter_user_data *user_data =
488 bt_private_notification_iterator_get_user_data(
489 private_notification_iterator);
490
491 if (user_data) {
492 g_free(user_data);
493 }
494}
495
496static
497enum bt_notification_iterator_status src_iter_init(
498 struct bt_private_notification_iterator *priv_notif_iter,
499 struct bt_private_port *private_port)
500{
501 struct src_iter_user_data *user_data =
502 g_new0(struct src_iter_user_data, 1);
503 int ret;
504
505 assert(user_data);
506 ret = bt_private_notification_iterator_set_user_data(priv_notif_iter,
507 user_data);
508 assert(ret == 0);
509
510 switch (current_test) {
511 case TEST_NO_AUTO_NOTIFS:
512 user_data->seq = seq_no_auto_notifs;
513 break;
514 case TEST_AUTO_STREAM_BEGIN_FROM_PACKET_BEGIN:
515 user_data->seq = seq_auto_stream_begin_from_packet_begin;
516 break;
517 case TEST_AUTO_STREAM_BEGIN_FROM_STREAM_END:
518 user_data->seq = seq_auto_stream_begin_from_stream_end;
519 break;
520 case TEST_AUTO_STREAM_END_FROM_END:
521 user_data->seq = seq_auto_stream_end_from_end;
522 break;
523 case TEST_AUTO_PACKET_BEGIN_FROM_PACKET_END:
524 user_data->seq = seq_auto_packet_begin_from_packet_end;
525 break;
526 case TEST_AUTO_PACKET_BEGIN_FROM_EVENT:
527 user_data->seq = seq_auto_packet_begin_from_event;
528 break;
529 case TEST_AUTO_PACKET_END_FROM_PACKET_BEGIN:
530 user_data->seq = seq_auto_packet_end_from_packet_begin;
531 break;
532 case TEST_AUTO_PACKET_END_PACKET_BEGIN_FROM_EVENT:
533 user_data->seq = seq_auto_packet_end_packet_begin_from_event;
534 break;
535 case TEST_AUTO_PACKET_END_FROM_STREAM_END:
536 user_data->seq = seq_auto_packet_end_from_stream_end;
537 break;
538 case TEST_AUTO_PACKET_END_STREAM_END_FROM_END:
539 user_data->seq = seq_auto_packet_end_stream_end_from_end;
540 break;
541 case TEST_MULTIPLE_AUTO_STREAM_END_FROM_END:
542 user_data->seq = seq_multiple_auto_stream_end_from_end;
543 break;
544 case TEST_MULTIPLE_AUTO_PACKET_END_STREAM_END_FROM_END:
545 user_data->seq = seq_multiple_auto_packet_end_stream_end_from_end;
546 break;
547 default:
0fbb9a9f 548 abort();
223c70b2
PP
549 }
550
551 return BT_NOTIFICATION_ITERATOR_STATUS_OK;
552}
553
554static
555struct bt_ctf_event *src_create_event(struct bt_ctf_packet *packet)
556{
557 struct bt_ctf_event *event = bt_ctf_event_create(src_event_class);
558 int ret;
559
560 assert(event);
561 ret = bt_ctf_event_set_packet(event, packet);
562 assert(ret == 0);
563 return event;
564}
565
566static
567struct bt_notification_iterator_next_return src_iter_next_seq(
568 struct src_iter_user_data *user_data)
569{
570 struct bt_notification_iterator_next_return next_return = {
571 .status = BT_NOTIFICATION_ITERATOR_STATUS_OK,
572 };
573 int64_t cur_ts_ns;
574 struct bt_ctf_packet *event_packet = NULL;
575
576 assert(user_data->seq);
577 cur_ts_ns = user_data->seq[user_data->at];
578
579 switch (cur_ts_ns) {
580 case SEQ_END:
581 next_return.status =
582 BT_NOTIFICATION_ITERATOR_STATUS_END;
583 break;
584 case SEQ_INACTIVITY:
585 next_return.notification =
586 bt_notification_inactivity_create(src_empty_cc_prio_map);
587 assert(next_return.notification);
588 break;
589 case SEQ_STREAM1_BEGIN:
590 next_return.notification =
591 bt_notification_stream_begin_create(src_stream1);
592 assert(next_return.notification);
593 break;
594 case SEQ_STREAM2_BEGIN:
595 next_return.notification =
596 bt_notification_stream_begin_create(src_stream2);
597 assert(next_return.notification);
598 break;
599 case SEQ_STREAM1_END:
600 next_return.notification =
601 bt_notification_stream_end_create(src_stream1);
602 assert(next_return.notification);
603 break;
604 case SEQ_STREAM2_END:
605 next_return.notification =
606 bt_notification_stream_end_create(src_stream2);
607 assert(next_return.notification);
608 break;
609 case SEQ_STREAM1_PACKET1_BEGIN:
610 next_return.notification =
611 bt_notification_packet_begin_create(src_stream1_packet1);
612 assert(next_return.notification);
613 break;
614 case SEQ_STREAM1_PACKET2_BEGIN:
615 next_return.notification =
616 bt_notification_packet_begin_create(src_stream1_packet2);
617 assert(next_return.notification);
618 break;
619 case SEQ_STREAM2_PACKET1_BEGIN:
620 next_return.notification =
621 bt_notification_packet_begin_create(src_stream2_packet1);
622 assert(next_return.notification);
623 break;
624 case SEQ_STREAM2_PACKET2_BEGIN:
625 next_return.notification =
626 bt_notification_packet_begin_create(src_stream2_packet2);
627 assert(next_return.notification);
628 break;
629 case SEQ_STREAM1_PACKET1_END:
630 next_return.notification =
631 bt_notification_packet_end_create(src_stream1_packet1);
632 assert(next_return.notification);
633 break;
634 case SEQ_STREAM1_PACKET2_END:
635 next_return.notification =
636 bt_notification_packet_end_create(src_stream1_packet2);
637 assert(next_return.notification);
638 break;
639 case SEQ_STREAM2_PACKET1_END:
640 next_return.notification =
641 bt_notification_packet_end_create(src_stream2_packet1);
642 assert(next_return.notification);
643 break;
644 case SEQ_STREAM2_PACKET2_END:
645 next_return.notification =
646 bt_notification_packet_end_create(src_stream2_packet2);
647 assert(next_return.notification);
648 break;
649 case SEQ_EVENT_STREAM1_PACKET1:
650 event_packet = src_stream1_packet1;
651 break;
652 case SEQ_EVENT_STREAM1_PACKET2:
653 event_packet = src_stream1_packet2;
654 break;
655 case SEQ_EVENT_STREAM2_PACKET1:
656 event_packet = src_stream2_packet1;
657 break;
658 case SEQ_EVENT_STREAM2_PACKET2:
659 event_packet = src_stream2_packet2;
660 break;
661 default:
0fbb9a9f 662 abort();
223c70b2
PP
663 }
664
665 if (event_packet) {
666 struct bt_ctf_event *event = src_create_event(event_packet);
667
668 assert(event);
669 next_return.notification = bt_notification_event_create(event,
670 src_empty_cc_prio_map);
671 bt_put(event);
672 assert(next_return.notification);
673 }
674
675 if (next_return.status != BT_NOTIFICATION_ITERATOR_STATUS_END) {
676 user_data->at++;
677 }
678
679 return next_return;
680}
681
682static
683struct bt_notification_iterator_next_return src_iter_next(
684 struct bt_private_notification_iterator *priv_iterator)
685{
686 struct bt_notification_iterator_next_return next_return = {
687 .status = BT_NOTIFICATION_ITERATOR_STATUS_OK,
688 .notification = NULL,
689 };
690 struct src_iter_user_data *user_data =
691 bt_private_notification_iterator_get_user_data(priv_iterator);
692
693 assert(user_data);
694 next_return = src_iter_next_seq(user_data);
695 return next_return;
696}
697
698static
699enum bt_component_status src_init(
700 struct bt_private_component *private_component,
701 struct bt_value *params, void *init_method_data)
702{
147337a3 703 int ret;
b9d103be 704
147337a3
PP
705 ret = bt_private_component_source_add_output_private_port(
706 private_component, "out", NULL, NULL);
707 assert(ret == 0);
223c70b2
PP
708 return BT_COMPONENT_STATUS_OK;
709}
710
711static
712void src_finalize(struct bt_private_component *private_component)
713{
714}
715
716static
717enum bt_component_status sink_consume(
718 struct bt_private_component *priv_component)
719{
720 enum bt_component_status ret = BT_COMPONENT_STATUS_OK;
721 struct bt_notification *notification = NULL;
722 struct sink_user_data *user_data =
723 bt_private_component_get_user_data(priv_component);
724 enum bt_notification_iterator_status it_ret;
725 struct test_event test_event = { 0 };
726 bool do_append_test_event = true;
727
728 assert(user_data && user_data->notif_iter);
729 it_ret = bt_notification_iterator_next(user_data->notif_iter);
730
731 if (it_ret < 0) {
732 ret = BT_COMPONENT_STATUS_ERROR;
733 do_append_test_event = false;
734 goto end;
735 }
736
737 switch (it_ret) {
738 case BT_NOTIFICATION_ITERATOR_STATUS_END:
739 test_event.type = TEST_EV_TYPE_END;
740 ret = BT_COMPONENT_STATUS_END;
741 BT_PUT(user_data->notif_iter);
742 goto end;
743 case BT_NOTIFICATION_ITERATOR_STATUS_AGAIN:
0fbb9a9f 744 abort();
223c70b2
PP
745 default:
746 break;
747 }
748
749 notification = bt_notification_iterator_get_notification(
750 user_data->notif_iter);
751 assert(notification);
752
753 switch (bt_notification_get_type(notification)) {
754 case BT_NOTIFICATION_TYPE_EVENT:
755 {
756 struct bt_ctf_event *event;
757
758 test_event.type = TEST_EV_TYPE_NOTIF_EVENT;
759 event = bt_notification_event_get_event(notification);
760 assert(event);
761 test_event.packet = bt_ctf_event_get_packet(event);
762 bt_put(event);
763 assert(test_event.packet);
764 bt_put(test_event.packet);
765 break;
766 }
767 case BT_NOTIFICATION_TYPE_INACTIVITY:
768 test_event.type = TEST_EV_TYPE_NOTIF_INACTIVITY;
769 break;
770 case BT_NOTIFICATION_TYPE_STREAM_BEGIN:
771 test_event.type = TEST_EV_TYPE_NOTIF_STREAM_BEGIN;
772 test_event.stream =
773 bt_notification_stream_begin_get_stream(notification);
774 assert(test_event.stream);
775 bt_put(test_event.stream);
776 break;
777 case BT_NOTIFICATION_TYPE_STREAM_END:
778 test_event.type = TEST_EV_TYPE_NOTIF_STREAM_END;
779 test_event.stream =
780 bt_notification_stream_end_get_stream(notification);
781 assert(test_event.stream);
782 bt_put(test_event.stream);
783 break;
784 case BT_NOTIFICATION_TYPE_PACKET_BEGIN:
785 test_event.type = TEST_EV_TYPE_NOTIF_PACKET_BEGIN;
786 test_event.packet =
787 bt_notification_packet_begin_get_packet(notification);
788 assert(test_event.packet);
789 bt_put(test_event.packet);
790 break;
791 case BT_NOTIFICATION_TYPE_PACKET_END:
792 test_event.type = TEST_EV_TYPE_NOTIF_PACKET_END;
793 test_event.packet =
794 bt_notification_packet_end_get_packet(notification);
795 assert(test_event.packet);
796 bt_put(test_event.packet);
797 break;
798 default:
799 test_event.type = TEST_EV_TYPE_NOTIF_UNEXPECTED;
800 break;
801 }
802
803 if (test_event.packet) {
804 test_event.stream = bt_ctf_packet_get_stream(test_event.packet);
805 assert(test_event.stream);
806 bt_put(test_event.stream);
807 }
808
809end:
810 if (do_append_test_event) {
811 append_test_event(&test_event);
812 }
813
814 bt_put(notification);
815 return ret;
816}
817
818static
819void sink_port_connected(struct bt_private_component *private_component,
820 struct bt_private_port *self_private_port,
821 struct bt_port *other_port)
822{
823 struct bt_private_connection *priv_conn =
824 bt_private_port_get_private_connection(self_private_port);
825 struct sink_user_data *user_data = bt_private_component_get_user_data(
826 private_component);
827
828 assert(user_data);
829 assert(priv_conn);
830 user_data->notif_iter =
fa054faf
PP
831 bt_private_connection_create_notification_iterator(priv_conn,
832 NULL);
223c70b2
PP
833 assert(user_data->notif_iter);
834 bt_put(priv_conn);
835}
836
837static
838enum bt_component_status sink_init(
839 struct bt_private_component *private_component,
840 struct bt_value *params, void *init_method_data)
841{
842 struct sink_user_data *user_data = g_new0(struct sink_user_data, 1);
843 int ret;
844
845 assert(user_data);
846 ret = bt_private_component_set_user_data(private_component,
847 user_data);
848 assert(ret == 0);
147337a3
PP
849 ret = bt_private_component_sink_add_input_private_port(
850 private_component, "in", NULL, NULL);
851 assert(ret == 0);
223c70b2
PP
852 return BT_COMPONENT_STATUS_OK;
853}
854
855static
856void sink_finalize(struct bt_private_component *private_component)
857{
858 struct sink_user_data *user_data = bt_private_component_get_user_data(
859 private_component);
860
861 if (user_data) {
862 bt_put(user_data->notif_iter);
863 g_free(user_data);
864 }
865}
866
867static
868void create_source_sink(struct bt_component **source,
869 struct bt_component **sink)
870{
871 struct bt_component_class *src_comp_class;
872 struct bt_component_class *sink_comp_class;
873 int ret;
874
875 /* Create source component */
876 src_comp_class = bt_component_class_source_create("src", src_iter_next);
877 assert(src_comp_class);
878 ret = bt_component_class_set_init_method(src_comp_class, src_init);
879 assert(ret == 0);
880 ret = bt_component_class_set_finalize_method(src_comp_class,
881 src_finalize);
882 assert(ret == 0);
883 ret = bt_component_class_source_set_notification_iterator_init_method(
884 src_comp_class, src_iter_init);
885 assert(ret == 0);
886 ret = bt_component_class_source_set_notification_iterator_finalize_method(
887 src_comp_class, src_iter_finalize);
888 assert(ret == 0);
889 *source = bt_component_create(src_comp_class, "source", NULL);
890 assert(*source);
891
892 /* Create sink component */
893 sink_comp_class = bt_component_class_sink_create("sink", sink_consume);
894 assert(sink_comp_class);
895 ret = bt_component_class_set_init_method(sink_comp_class, sink_init);
896 assert(ret == 0);
897 ret = bt_component_class_set_finalize_method(sink_comp_class,
898 sink_finalize);
899 ret = bt_component_class_set_port_connected_method(sink_comp_class,
900 sink_port_connected);
901 assert(ret == 0);
902 *sink = bt_component_create(sink_comp_class, "sink", NULL);
903
904 bt_put(src_comp_class);
905 bt_put(sink_comp_class);
906}
907
908static
909void do_std_test(enum test test, const char *name,
910 const struct test_event *expected_test_events)
911{
912 struct bt_component *src_comp;
913 struct bt_component *sink_comp;
914 struct bt_port *upstream_port;
915 struct bt_port *downstream_port;
916 struct bt_graph *graph;
223c70b2
PP
917 enum bt_graph_status graph_status = BT_GRAPH_STATUS_OK;
918
919 clear_test_events();
920 current_test = test;
921 diag("test: %s", name);
922 create_source_sink(&src_comp, &sink_comp);
923 graph = bt_graph_create();
924 assert(graph);
925
926 /* Connect source to sink */
b9d103be 927 upstream_port = bt_component_source_get_output_port_by_name(src_comp, "out");
223c70b2 928 assert(upstream_port);
b9d103be 929 downstream_port = bt_component_sink_get_input_port_by_name(sink_comp, "in");
223c70b2 930 assert(downstream_port);
a256a42d
PP
931 graph_status = bt_graph_connect_ports(graph, upstream_port,
932 downstream_port, NULL);
223c70b2
PP
933 bt_put(upstream_port);
934 bt_put(downstream_port);
935
936 /* Run the graph until the end */
937 while (graph_status == BT_GRAPH_STATUS_OK ||
938 graph_status == BT_GRAPH_STATUS_AGAIN) {
939 graph_status = bt_graph_run(graph);
940 }
941
942 ok(graph_status == BT_GRAPH_STATUS_END, "graph finishes without any error");
943
944 /* Compare the resulting test events */
945 if (expected_test_events) {
946 ok(compare_test_events(expected_test_events),
947 "the produced sequence of test events is the expected one");
948 }
949
950 bt_put(src_comp);
951 bt_put(sink_comp);
952 bt_put(graph);
953}
954
955static
956void test_no_auto_notifs(void)
957{
958 const struct test_event expected_test_events[] = {
959 { .type = TEST_EV_TYPE_NOTIF_STREAM_BEGIN, .stream = src_stream1, .packet = NULL, },
960 { .type = TEST_EV_TYPE_NOTIF_PACKET_BEGIN, .stream = src_stream1, .packet = src_stream1_packet1, },
961 { .type = TEST_EV_TYPE_NOTIF_EVENT, .stream = src_stream1, .packet = src_stream1_packet1, },
962 { .type = TEST_EV_TYPE_NOTIF_EVENT, .stream = src_stream1, .packet = src_stream1_packet1, },
963 { .type = TEST_EV_TYPE_NOTIF_STREAM_BEGIN, .stream = src_stream2, .packet = NULL, },
964 { .type = TEST_EV_TYPE_NOTIF_EVENT, .stream = src_stream1, .packet = src_stream1_packet1, },
965 { .type = TEST_EV_TYPE_NOTIF_PACKET_BEGIN, .stream = src_stream2, .packet = src_stream2_packet2, },
966 { .type = TEST_EV_TYPE_NOTIF_EVENT, .stream = src_stream2, .packet = src_stream2_packet2, },
967 { .type = TEST_EV_TYPE_NOTIF_EVENT, .stream = src_stream1, .packet = src_stream1_packet1, },
968 { .type = TEST_EV_TYPE_NOTIF_PACKET_END, .stream = src_stream1, .packet = src_stream1_packet1, },
969 { .type = TEST_EV_TYPE_NOTIF_PACKET_END, .stream = src_stream2, .packet = src_stream2_packet2, },
970 { .type = TEST_EV_TYPE_NOTIF_PACKET_BEGIN, .stream = src_stream1, .packet = src_stream1_packet2, },
971 { .type = TEST_EV_TYPE_NOTIF_EVENT, .stream = src_stream1, .packet = src_stream1_packet2, },
972 { .type = TEST_EV_TYPE_NOTIF_STREAM_END, .stream = src_stream2, .packet = NULL, },
973 { .type = TEST_EV_TYPE_NOTIF_PACKET_END, .stream = src_stream1, .packet = src_stream1_packet2, },
974 { .type = TEST_EV_TYPE_NOTIF_STREAM_END, .stream = src_stream1, .packet = NULL, },
975 { .type = TEST_EV_TYPE_END, },
976 { .type = TEST_EV_TYPE_SENTINEL, },
977 };
978
979 do_std_test(TEST_NO_AUTO_NOTIFS, "no automatic notifications",
980 expected_test_events);
981}
982
983static
984void test_auto_stream_begin_from_packet_begin(void)
985{
986 const struct test_event expected_test_events[] = {
987 { .type = TEST_EV_TYPE_NOTIF_STREAM_BEGIN, .stream = src_stream1, .packet = NULL, },
988 { .type = TEST_EV_TYPE_NOTIF_PACKET_BEGIN, .stream = src_stream1, .packet = src_stream1_packet1, },
989 { .type = TEST_EV_TYPE_NOTIF_PACKET_END, .stream = src_stream1, .packet = src_stream1_packet1, },
990 { .type = TEST_EV_TYPE_NOTIF_STREAM_END, .stream = src_stream1, .packet = NULL, },
991 { .type = TEST_EV_TYPE_END, },
992 { .type = TEST_EV_TYPE_SENTINEL, },
993 };
994
995 do_std_test(TEST_AUTO_STREAM_BEGIN_FROM_PACKET_BEGIN,
996 "automatic \"stream begin\" notif. caused by \"packet begin\" notif.",
997 expected_test_events);
998}
999
1000static
1001void test_auto_stream_begin_from_stream_end(void)
1002{
1003 const struct test_event expected_test_events[] = {
1004 { .type = TEST_EV_TYPE_NOTIF_STREAM_BEGIN, .stream = src_stream1, .packet = NULL, },
1005 { .type = TEST_EV_TYPE_NOTIF_STREAM_END, .stream = src_stream1, .packet = NULL, },
1006 { .type = TEST_EV_TYPE_END, },
1007 { .type = TEST_EV_TYPE_SENTINEL, },
1008 };
1009
1010 do_std_test(TEST_AUTO_STREAM_BEGIN_FROM_STREAM_END,
1011 "automatic \"stream begin\" notif. caused by \"stream end\" notif.",
1012 expected_test_events);
1013}
1014
1015static
1016void test_auto_stream_end_from_end(void)
1017{
1018 const struct test_event expected_test_events[] = {
1019 { .type = TEST_EV_TYPE_NOTIF_STREAM_BEGIN, .stream = src_stream1, .packet = NULL, },
1020 { .type = TEST_EV_TYPE_NOTIF_STREAM_END, .stream = src_stream1, .packet = NULL, },
1021 { .type = TEST_EV_TYPE_END, },
1022 { .type = TEST_EV_TYPE_SENTINEL, },
1023 };
1024
1025 do_std_test(TEST_AUTO_STREAM_END_FROM_END,
1026 "automatic \"stream end\" notif. caused by BT_NOTIFICATION_ITERATOR_STATUS_END",
1027 expected_test_events);
1028}
1029
1030static
1031void test_auto_packet_begin_from_packet_end(void)
1032{
1033 const struct test_event expected_test_events[] = {
1034 { .type = TEST_EV_TYPE_NOTIF_STREAM_BEGIN, .stream = src_stream1, .packet = NULL, },
1035 { .type = TEST_EV_TYPE_NOTIF_PACKET_BEGIN, .stream = src_stream1, .packet = src_stream1_packet1, },
1036 { .type = TEST_EV_TYPE_NOTIF_PACKET_END, .stream = src_stream1, .packet = src_stream1_packet1, },
1037 { .type = TEST_EV_TYPE_NOTIF_STREAM_END, .stream = src_stream1, .packet = NULL, },
1038 { .type = TEST_EV_TYPE_END, },
1039 { .type = TEST_EV_TYPE_SENTINEL, },
1040 };
1041
1042 do_std_test(TEST_AUTO_PACKET_BEGIN_FROM_PACKET_END,
1043 "automatic \"packet begin\" notif. caused by \"packet end\" notif.",
1044 expected_test_events);
1045}
1046
1047static
1048void test_auto_packet_begin_from_event(void)
1049{
1050 const struct test_event expected_test_events[] = {
1051 { .type = TEST_EV_TYPE_NOTIF_STREAM_BEGIN, .stream = src_stream1, .packet = NULL, },
1052 { .type = TEST_EV_TYPE_NOTIF_PACKET_BEGIN, .stream = src_stream1, .packet = src_stream1_packet1, },
1053 { .type = TEST_EV_TYPE_NOTIF_EVENT, .stream = src_stream1, .packet = src_stream1_packet1, },
1054 { .type = TEST_EV_TYPE_NOTIF_PACKET_END, .stream = src_stream1, .packet = src_stream1_packet1, },
1055 { .type = TEST_EV_TYPE_NOTIF_STREAM_END, .stream = src_stream1, .packet = NULL, },
1056 { .type = TEST_EV_TYPE_END, },
1057 { .type = TEST_EV_TYPE_SENTINEL, },
1058 };
1059
1060 do_std_test(TEST_AUTO_PACKET_BEGIN_FROM_EVENT,
1061 "automatic \"packet begin\" notif. caused by event notif.",
1062 expected_test_events);
1063}
1064
1065static
1066void test_auto_packet_end_from_packet_begin(void)
1067{
1068 const struct test_event expected_test_events[] = {
1069 { .type = TEST_EV_TYPE_NOTIF_STREAM_BEGIN, .stream = src_stream1, .packet = NULL, },
1070 { .type = TEST_EV_TYPE_NOTIF_PACKET_BEGIN, .stream = src_stream1, .packet = src_stream1_packet1, },
1071 { .type = TEST_EV_TYPE_NOTIF_PACKET_END, .stream = src_stream1, .packet = src_stream1_packet1, },
1072 { .type = TEST_EV_TYPE_NOTIF_PACKET_BEGIN, .stream = src_stream1, .packet = src_stream1_packet2, },
1073 { .type = TEST_EV_TYPE_NOTIF_PACKET_END, .stream = src_stream1, .packet = src_stream1_packet2, },
1074 { .type = TEST_EV_TYPE_NOTIF_STREAM_END, .stream = src_stream1, .packet = NULL, },
1075 { .type = TEST_EV_TYPE_END, },
1076 { .type = TEST_EV_TYPE_SENTINEL, },
1077 };
1078
1079 do_std_test(TEST_AUTO_PACKET_END_FROM_PACKET_BEGIN,
1080 "automatic \"packet end\" notif. caused by \"packet begin\" notif.",
1081 expected_test_events);
1082}
1083
1084static
1085void test_auto_packet_end_packet_begin_from_event(void)
1086{
1087 const struct test_event expected_test_events[] = {
1088 { .type = TEST_EV_TYPE_NOTIF_STREAM_BEGIN, .stream = src_stream1, .packet = NULL, },
1089 { .type = TEST_EV_TYPE_NOTIF_PACKET_BEGIN, .stream = src_stream1, .packet = src_stream1_packet1, },
1090 { .type = TEST_EV_TYPE_NOTIF_PACKET_END, .stream = src_stream1, .packet = src_stream1_packet1, },
1091 { .type = TEST_EV_TYPE_NOTIF_PACKET_BEGIN, .stream = src_stream1, .packet = src_stream1_packet2, },
1092 { .type = TEST_EV_TYPE_NOTIF_EVENT, .stream = src_stream1, .packet = src_stream1_packet2, },
1093 { .type = TEST_EV_TYPE_NOTIF_PACKET_END, .stream = src_stream1, .packet = src_stream1_packet2, },
1094 { .type = TEST_EV_TYPE_NOTIF_STREAM_END, .stream = src_stream1, .packet = NULL, },
1095 { .type = TEST_EV_TYPE_END, },
1096 { .type = TEST_EV_TYPE_SENTINEL, },
1097 };
1098
1099 do_std_test(TEST_AUTO_PACKET_END_PACKET_BEGIN_FROM_EVENT,
1100 "automatic \"packet end\" and \"packet begin\" notifs. caused by event notif.",
1101 expected_test_events);
1102}
1103
1104static
1105void test_auto_packet_end_from_stream_end(void)
1106{
1107 const struct test_event expected_test_events[] = {
1108 { .type = TEST_EV_TYPE_NOTIF_STREAM_BEGIN, .stream = src_stream1, .packet = NULL, },
1109 { .type = TEST_EV_TYPE_NOTIF_PACKET_BEGIN, .stream = src_stream1, .packet = src_stream1_packet1, },
1110 { .type = TEST_EV_TYPE_NOTIF_PACKET_END, .stream = src_stream1, .packet = src_stream1_packet1, },
1111 { .type = TEST_EV_TYPE_NOTIF_STREAM_END, .stream = src_stream1, .packet = NULL, },
1112 { .type = TEST_EV_TYPE_END, },
1113 { .type = TEST_EV_TYPE_SENTINEL, },
1114 };
1115
1116 do_std_test(TEST_AUTO_PACKET_END_FROM_STREAM_END,
1117 "automatic \"packet end\" notif. caused by \"stream end\" notif.",
1118 expected_test_events);
1119}
1120
1121static
1122void test_auto_packet_end_stream_end_from_end(void)
1123{
1124 const struct test_event expected_test_events[] = {
1125 { .type = TEST_EV_TYPE_NOTIF_STREAM_BEGIN, .stream = src_stream1, .packet = NULL, },
1126 { .type = TEST_EV_TYPE_NOTIF_PACKET_BEGIN, .stream = src_stream1, .packet = src_stream1_packet1, },
1127 { .type = TEST_EV_TYPE_NOTIF_PACKET_END, .stream = src_stream1, .packet = src_stream1_packet1, },
1128 { .type = TEST_EV_TYPE_NOTIF_STREAM_END, .stream = src_stream1, .packet = NULL, },
1129 { .type = TEST_EV_TYPE_END, },
1130 { .type = TEST_EV_TYPE_SENTINEL, },
1131 };
1132
1133 do_std_test(TEST_AUTO_PACKET_END_STREAM_END_FROM_END,
1134 "automatic \"packet end\" and \"stream end\" notifs. caused by BT_NOTIFICATION_ITERATOR_STATUS_END",
1135 expected_test_events);
1136}
1137
1138static
1139void test_multiple_auto_stream_end_from_end(void)
1140{
1141 bool expected = true;
1142 struct test_event expected_event;
1143 struct test_event expected_event2;
1144 struct test_event *event;
1145 struct test_event *event2;
1146
1147 do_std_test(TEST_MULTIPLE_AUTO_STREAM_END_FROM_END,
1148 "multiple automatic \"stream end\" notifs. caused by BT_NOTIFICATION_ITERATOR_STATUS_END",
1149 NULL);
1150
1151 if (test_events->len != 5) {
1152 expected = false;
1153 goto end;
1154 }
1155
1156 expected_event.type = TEST_EV_TYPE_NOTIF_STREAM_BEGIN;
1157 expected_event.stream = src_stream1;
1158 expected_event.packet = NULL;
1159 event = &g_array_index(test_events, struct test_event, 0);
1160 if (!compare_single_test_events(event, &expected_event)) {
1161 expected = false;
1162 goto end;
1163 }
1164
1165 expected_event.type = TEST_EV_TYPE_NOTIF_STREAM_BEGIN;
1166 expected_event.stream = src_stream2;
1167 expected_event.packet = NULL;
1168 event = &g_array_index(test_events, struct test_event, 1);
1169 if (!compare_single_test_events(event, &expected_event)) {
1170 expected = false;
1171 goto end;
1172 }
1173
1174 expected_event.type = TEST_EV_TYPE_NOTIF_STREAM_END;
1175 expected_event.stream = src_stream1;
1176 expected_event.packet = NULL;
1177 expected_event2.type = TEST_EV_TYPE_NOTIF_STREAM_END;
1178 expected_event2.stream = src_stream2;
1179 expected_event2.packet = NULL;
1180 event = &g_array_index(test_events, struct test_event, 2);
1181 event2 = &g_array_index(test_events, struct test_event, 3);
1182 if (!(compare_single_test_events(event, &expected_event) &&
1183 compare_single_test_events(event2, &expected_event2)) &&
1184 !(compare_single_test_events(event2, &expected_event) &&
1185 compare_single_test_events(event, &expected_event2))) {
1186 expected = false;
1187 goto end;
1188 }
1189
1190 expected_event.type = TEST_EV_TYPE_END;
1191 expected_event.stream = NULL;
1192 expected_event.packet = NULL;
1193 event = &g_array_index(test_events, struct test_event, 4);
1194 if (!compare_single_test_events(event, &expected_event)) {
1195 expected = false;
1196 goto end;
1197 }
1198
1199end:
1200 ok(expected,
1201 "the produced sequence of test events is the expected one");
1202}
1203
1204static
1205void test_multiple_auto_packet_end_stream_end_from_end(void)
1206{
1207 bool expected = true;
1208 struct test_event expected_event;
1209 struct test_event expected_event2;
1210 struct test_event *event;
1211 struct test_event *event2;
1212
1213 do_std_test(TEST_MULTIPLE_AUTO_PACKET_END_STREAM_END_FROM_END,
1214 "multiple automatic \"packet end\" and \"stream end\" notifs. caused by BT_NOTIFICATION_ITERATOR_STATUS_END",
1215 NULL);
1216
1217 if (test_events->len != 9) {
1218 expected = false;
1219 goto end;
1220 }
1221
1222 expected_event.type = TEST_EV_TYPE_NOTIF_STREAM_BEGIN;
1223 expected_event.stream = src_stream1;
1224 expected_event.packet = NULL;
1225 event = &g_array_index(test_events, struct test_event, 0);
1226 if (!compare_single_test_events(event, &expected_event)) {
1227 expected = false;
1228 goto end;
1229 }
1230
1231 expected_event.type = TEST_EV_TYPE_NOTIF_STREAM_BEGIN;
1232 expected_event.stream = src_stream2;
1233 expected_event.packet = NULL;
1234 event = &g_array_index(test_events, struct test_event, 1);
1235 if (!compare_single_test_events(event, &expected_event)) {
1236 expected = false;
1237 goto end;
1238 }
1239
1240 expected_event.type = TEST_EV_TYPE_NOTIF_PACKET_BEGIN;
1241 expected_event.stream = src_stream1;
1242 expected_event.packet = src_stream1_packet1;
1243 event = &g_array_index(test_events, struct test_event, 2);
1244 if (!compare_single_test_events(event, &expected_event)) {
1245 expected = false;
1246 goto end;
1247 }
1248
1249 expected_event.type = TEST_EV_TYPE_NOTIF_PACKET_BEGIN;
1250 expected_event.stream = src_stream2;
1251 expected_event.packet = src_stream2_packet1;
1252 event = &g_array_index(test_events, struct test_event, 3);
1253 if (!compare_single_test_events(event, &expected_event)) {
1254 expected = false;
1255 goto end;
1256 }
1257
1258 expected_event.type = TEST_EV_TYPE_NOTIF_PACKET_END;
1259 expected_event.stream = src_stream1;
1260 expected_event.packet = src_stream1_packet1;
1261 expected_event2.type = TEST_EV_TYPE_NOTIF_PACKET_END;
1262 expected_event2.stream = src_stream2;
1263 expected_event2.packet = src_stream2_packet1;
1264 event = &g_array_index(test_events, struct test_event, 4);
1265 event2 = &g_array_index(test_events, struct test_event, 6);
1266 if (!(compare_single_test_events(event, &expected_event) &&
1267 compare_single_test_events(event2, &expected_event2)) &&
1268 !(compare_single_test_events(event2, &expected_event) &&
1269 compare_single_test_events(event, &expected_event2))) {
1270 expected = false;
1271 goto end;
1272 }
1273
1274 expected_event.type = TEST_EV_TYPE_NOTIF_STREAM_END;
1275 expected_event.stream = src_stream1;
1276 expected_event.packet = NULL;
1277 expected_event2.type = TEST_EV_TYPE_NOTIF_STREAM_END;
1278 expected_event2.stream = src_stream2;
1279 expected_event2.packet = NULL;
1280 event = &g_array_index(test_events, struct test_event, 5);
1281 event2 = &g_array_index(test_events, struct test_event, 7);
1282 if (!(compare_single_test_events(event, &expected_event) &&
1283 compare_single_test_events(event2, &expected_event2)) &&
1284 !(compare_single_test_events(event2, &expected_event) &&
1285 compare_single_test_events(event, &expected_event2))) {
1286 expected = false;
1287 goto end;
1288 }
1289
1290 expected_event.type = TEST_EV_TYPE_END;
1291 expected_event.stream = NULL;
1292 expected_event.packet = NULL;
1293 event = &g_array_index(test_events, struct test_event, 8);
1294 if (!compare_single_test_events(event, &expected_event)) {
1295 expected = false;
1296 goto end;
1297 }
1298
1299end:
1300 ok(expected,
1301 "the produced sequence of test events is the expected one");
1302}
1303
1304#define DEBUG_ENV_VAR "TEST_BT_NOTIFICATION_ITERATOR_DEBUG"
1305
1306int main(int argc, char **argv)
1307{
1308 if (getenv(DEBUG_ENV_VAR) && strcmp(getenv(DEBUG_ENV_VAR), "1") == 0) {
1309 debug = true;
1310 }
1311
1312 plan_tests(NR_TESTS);
1313 init_static_data();
1314 test_no_auto_notifs();
1315 test_auto_stream_begin_from_packet_begin();
1316 test_auto_stream_begin_from_stream_end();
1317 test_auto_stream_end_from_end();
1318 test_auto_packet_begin_from_packet_end();
1319 test_auto_packet_begin_from_event();
1320 test_auto_packet_end_from_packet_begin();
1321 test_auto_packet_end_packet_begin_from_event();
1322 test_auto_packet_end_from_stream_end();
1323 test_auto_packet_end_stream_end_from_end();
1324 test_multiple_auto_stream_end_from_end();
1325 test_multiple_auto_packet_end_stream_end_from_end();
1326 fini_static_data();
1327 return exit_status();
1328}
This page took 0.07455 seconds and 4 git commands to generate.