lib: remove internal stream destroy listener API
[babeltrace.git] / tests / plugins / test-utils-muxer.c
CommitLineData
8deeabc6
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>
8deeabc6
PP
22#include <inttypes.h>
23#include <string.h>
25583cd0 24#include <babeltrace/assert-internal.h>
9d408fca 25#include <babeltrace/babeltrace.h>
8deeabc6
PP
26#include <glib.h>
27
28#include "tap/tap.h"
29
3230ee6b 30#define NR_TESTS 12
8deeabc6
PP
31
32enum test {
33 TEST_NO_TS,
34 TEST_NO_UPSTREAM_CONNECTION,
8deeabc6
PP
35 TEST_SIMPLE_4_PORTS,
36 TEST_4_PORTS_WITH_RETRIES,
37 TEST_SINGLE_END_THEN_MULTIPLE_FULL,
38 TEST_SINGLE_AGAIN_END_THEN_MULTIPLE_FULL,
39};
40
41enum test_event_type {
42 TEST_EV_TYPE_NOTIF_UNEXPECTED,
43 TEST_EV_TYPE_NOTIF_EVENT,
44 TEST_EV_TYPE_NOTIF_INACTIVITY,
45 TEST_EV_TYPE_NOTIF_PACKET_BEGIN,
46 TEST_EV_TYPE_NOTIF_PACKET_END,
3230ee6b
PP
47 TEST_EV_TYPE_NOTIF_STREAM_BEGIN,
48 TEST_EV_TYPE_NOTIF_STREAM_END,
8deeabc6
PP
49 TEST_EV_TYPE_AGAIN,
50 TEST_EV_TYPE_END,
51 TEST_EV_TYPE_SENTINEL,
52};
53
54struct test_event {
55 enum test_event_type type;
56 int64_t ts_ns;
57};
58
59struct source_muxer_sink {
60 struct bt_component *source;
61 struct bt_component *muxer;
62 struct bt_component *sink;
63};
64
65struct graph_listener_data {
66 struct bt_graph *graph;
67 struct bt_component *source;
68 struct bt_component *muxer;
69 struct bt_component *sink;
70};
71
72static bool debug = false;
73static enum test current_test;
74static GArray *test_events;
5c563278 75static struct bt_graph *graph;
8deeabc6
PP
76static struct bt_clock_class_priority_map *src_cc_prio_map;
77static struct bt_clock_class_priority_map *src_empty_cc_prio_map;
50842bdc
PP
78static struct bt_clock_class *src_clock_class;
79static struct bt_stream_class *src_stream_class;
80static struct bt_event_class *src_event_class;
81static struct bt_packet *src_packet0;
82static struct bt_packet *src_packet1;
83static struct bt_packet *src_packet2;
84static struct bt_packet *src_packet3;
8deeabc6
PP
85
86enum {
87 SEQ_END = -1,
88 SEQ_AGAIN = -2,
89 SEQ_PACKET_BEGIN = -3,
90 SEQ_PACKET_END = -4,
f42867e2
PP
91 SEQ_STREAM_BEGIN = -5,
92 SEQ_STREAM_END = -6,
8deeabc6
PP
93};
94
95struct src_iter_user_data {
96 size_t iter_index;
97 int64_t *seq;
98 size_t at;
50842bdc 99 struct bt_packet *packet;
8deeabc6
PP
100};
101
102struct sink_user_data {
103 struct bt_notification_iterator *notif_iter;
104};
105
106static int64_t seq1[] = {
f42867e2
PP
107 SEQ_STREAM_BEGIN, SEQ_PACKET_BEGIN, 24, 53, 97, 105, 119, 210,
108 222, 240, 292, 317, 353, 407, 433, 473, 487, 504, 572, 615, 708,
109 766, 850, 852, 931, 951, 956, 996, SEQ_PACKET_END,
110 SEQ_STREAM_END, SEQ_END,
8deeabc6
PP
111};
112
113static int64_t seq2[] = {
f42867e2
PP
114 SEQ_STREAM_BEGIN, SEQ_PACKET_BEGIN, 51, 59, 68, 77, 91, 121,
115 139, 170, 179, 266, 352, 454, 478, 631, 644, 668, 714, 744, 750,
116 778, 790, 836, SEQ_PACKET_END, SEQ_STREAM_END, SEQ_END,
8deeabc6
PP
117};
118
119static int64_t seq3[] = {
f42867e2
PP
120 SEQ_STREAM_BEGIN, SEQ_PACKET_BEGIN, 8, 71, 209, 254, 298, 320,
121 350, 393, 419, 624, 651, 678, 717, 731, 733, 788, 819, 820, 857,
122 892, 903, 944, 998, SEQ_PACKET_END, SEQ_STREAM_END, SEQ_END,
8deeabc6
PP
123};
124
125static int64_t seq4[] = {
f42867e2
PP
126 SEQ_STREAM_BEGIN, SEQ_PACKET_BEGIN, 41, 56, 120, 138, 154, 228,
127 471, 479, 481, 525, 591, 605, 612, 618, 632, 670, 696, 825, 863,
128 867, 871, 884, 953, 985, 999, SEQ_PACKET_END, SEQ_STREAM_END,
8deeabc6
PP
129 SEQ_END,
130};
131
132static int64_t seq1_with_again[] = {
f42867e2
PP
133 SEQ_STREAM_BEGIN, SEQ_PACKET_BEGIN, 24, 53, 97, 105, 119, 210,
134 SEQ_AGAIN, 222, 240, 292, 317, 353, 407, 433, 473, 487, 504,
135 572, 615, 708, 766, 850, 852, 931, 951, 956, 996,
136 SEQ_PACKET_END, SEQ_STREAM_END, SEQ_END,
8deeabc6
PP
137};
138
139static int64_t seq2_with_again[] = {
f42867e2
PP
140 SEQ_STREAM_BEGIN, SEQ_PACKET_BEGIN, 51, 59, 68, 77, 91, 121,
141 139, 170, 179, 266, 352, 454, 478, 631, 644, 668, 714, 744, 750,
142 778, 790, 836, SEQ_AGAIN, SEQ_PACKET_END, SEQ_STREAM_END,
143 SEQ_END,
8deeabc6
PP
144};
145
146static int64_t seq3_with_again[] = {
f42867e2
PP
147 SEQ_STREAM_BEGIN, SEQ_PACKET_BEGIN, 8, 71, 209, 254, 298, 320,
148 350, 393, 419, 624, 651, SEQ_AGAIN, 678, 717, 731, 733, 788,
149 819, 820, 857, 892, 903, 944, 998, SEQ_PACKET_END,
150 SEQ_STREAM_END, SEQ_END,
8deeabc6
PP
151};
152
153static int64_t seq4_with_again[] = {
f42867e2
PP
154 SEQ_AGAIN, SEQ_STREAM_BEGIN, SEQ_PACKET_BEGIN, 41, 56, 120, 138,
155 154, 228, 471, 479, 481, 525, 591, 605, 612, 618, 632, 670, 696,
156 825, 863, 867, 871, 884, 953, 985, 999, SEQ_PACKET_END,
157 SEQ_STREAM_END, SEQ_END,
8deeabc6
PP
158};
159
160static int64_t seq5[] = {
f42867e2
PP
161 SEQ_STREAM_BEGIN, SEQ_PACKET_BEGIN, 1, 4, 189, 1001,
162 SEQ_PACKET_END, SEQ_STREAM_END, SEQ_END,
8deeabc6
PP
163};
164
8deeabc6
PP
165static
166void clear_test_events(void)
167{
168 g_array_set_size(test_events, 0);
169}
170
171static
172void print_test_event(FILE *fp, const struct test_event *event)
173{
174 fprintf(fp, "{ type = ");
175
176 switch (event->type) {
177 case TEST_EV_TYPE_NOTIF_UNEXPECTED:
178 fprintf(fp, "TEST_EV_TYPE_NOTIF_UNEXPECTED");
179 break;
180 case TEST_EV_TYPE_NOTIF_EVENT:
181 fprintf(fp, "TEST_EV_TYPE_NOTIF_EVENT");
182 break;
183 case TEST_EV_TYPE_NOTIF_INACTIVITY:
184 fprintf(fp, "TEST_EV_TYPE_NOTIF_INACTIVITY");
185 break;
186 case TEST_EV_TYPE_NOTIF_PACKET_BEGIN:
187 fprintf(fp, "TEST_EV_TYPE_NOTIF_PACKET_BEGIN");
188 break;
189 case TEST_EV_TYPE_NOTIF_PACKET_END:
190 fprintf(fp, "TEST_EV_TYPE_NOTIF_PACKET_END");
191 break;
3230ee6b
PP
192 case TEST_EV_TYPE_NOTIF_STREAM_BEGIN:
193 fprintf(fp, "TEST_EV_TYPE_NOTIF_STREAM_BEGIN");
194 break;
195 case TEST_EV_TYPE_NOTIF_STREAM_END:
196 fprintf(fp, "TEST_EV_TYPE_NOTIF_STREAM_END");
197 break;
8deeabc6
PP
198 case TEST_EV_TYPE_AGAIN:
199 fprintf(fp, "TEST_EV_TYPE_AGAIN");
200 break;
201 case TEST_EV_TYPE_END:
202 fprintf(fp, "TEST_EV_TYPE_END");
203 break;
204 case TEST_EV_TYPE_SENTINEL:
205 fprintf(fp, "TEST_EV_TYPE_SENTINEL");
206 break;
207 default:
208 fprintf(fp, "(UNKNOWN)");
209 break;
210 }
211
212 switch (event->type) {
213 case TEST_EV_TYPE_NOTIF_EVENT:
214 case TEST_EV_TYPE_NOTIF_INACTIVITY:
215 fprintf(fp, ", ts-ns = %" PRId64, event->ts_ns);
216 default:
217 break;
218 }
219
220 fprintf(fp, " }");
221}
222
223static
224void append_test_event(struct test_event *event)
225{
226 g_array_append_val(test_events, *event);
227}
228
229static
230bool compare_single_test_events(const struct test_event *ev_a,
231 const struct test_event *ev_b)
232{
233 if (debug) {
234 fprintf(stderr, ":: Comparing test events: ");
235 print_test_event(stderr, ev_a);
236 fprintf(stderr, " vs. ");
237 print_test_event(stderr, ev_b);
238 fprintf(stderr, "\n");
239 }
240
241 if (ev_a->type != ev_b->type) {
242 return false;
243 }
244
245 switch (ev_a->type) {
246 case TEST_EV_TYPE_NOTIF_EVENT:
247 case TEST_EV_TYPE_NOTIF_INACTIVITY:
248 if (ev_a->ts_ns != ev_b->ts_ns) {
249 return false;
250 }
251 break;
252 default:
253 break;
254 }
255
256 return true;
257}
258
259static
260bool compare_test_events(const struct test_event *expected_events)
261{
262 const struct test_event *expected_event = expected_events;
263 size_t i = 0;
264
25583cd0 265 BT_ASSERT(expected_events);
8deeabc6
PP
266
267 while (true) {
268 const struct test_event *event;
269
270 if (expected_event->type == TEST_EV_TYPE_SENTINEL) {
271 break;
272 }
273
274 if (i >= test_events->len) {
275 return false;
276 }
277
278 event = &g_array_index(test_events, struct test_event, i);
279
280 if (!compare_single_test_events(event, expected_event)) {
281 return false;
282 }
283
284 i++;
285 expected_event++;
286 }
287
288 if (i != test_events->len) {
089717de
PP
289 if (debug) {
290 fprintf(stderr, ":: Length mismatch\n");
291 }
292
8deeabc6
PP
293 return false;
294 }
295
296 return true;
297}
298
299static
300void init_static_data(void)
301{
302 int ret;
50842bdc
PP
303 struct bt_trace *trace;
304 struct bt_stream *stream;
305 struct bt_field_type *empty_struct_ft;
312c056a
PP
306 struct bt_field_type *eh_ft;
307 struct bt_field_type *eh_ts_ft;
8deeabc6
PP
308
309 /* Test events */
310 test_events = g_array_new(FALSE, TRUE, sizeof(struct test_event));
25583cd0 311 BT_ASSERT(test_events);
8deeabc6
PP
312
313 /* Metadata */
50842bdc 314 empty_struct_ft = bt_field_type_structure_create();
25583cd0 315 BT_ASSERT(empty_struct_ft);
312c056a 316 src_clock_class = bt_clock_class_create("my-clock", 1000000000);
25583cd0 317 BT_ASSERT(src_clock_class);
50842bdc 318 trace = bt_trace_create();
25583cd0 319 BT_ASSERT(trace);
50842bdc
PP
320 ret = bt_trace_set_native_byte_order(trace,
321 BT_BYTE_ORDER_LITTLE_ENDIAN);
25583cd0 322 BT_ASSERT(ret == 0);
3dca2276 323 ret = bt_trace_set_packet_header_field_type(trace, empty_struct_ft);
25583cd0 324 BT_ASSERT(ret == 0);
50842bdc 325 ret = bt_clock_class_set_is_absolute(src_clock_class, 1);
25583cd0 326 BT_ASSERT(ret == 0);
50842bdc 327 ret = bt_trace_add_clock_class(trace, src_clock_class);
25583cd0 328 BT_ASSERT(ret == 0);
8deeabc6 329 src_empty_cc_prio_map = bt_clock_class_priority_map_create();
25583cd0 330 BT_ASSERT(src_empty_cc_prio_map);
8deeabc6 331 src_cc_prio_map = bt_clock_class_priority_map_create();
25583cd0 332 BT_ASSERT(src_cc_prio_map);
8deeabc6
PP
333 ret = bt_clock_class_priority_map_add_clock_class(src_cc_prio_map,
334 src_clock_class, 0);
25583cd0 335 BT_ASSERT(ret == 0);
50842bdc 336 src_stream_class = bt_stream_class_create("my-stream-class");
25583cd0 337 BT_ASSERT(src_stream_class);
3dca2276 338 ret = bt_stream_class_set_packet_context_field_type(src_stream_class,
8deeabc6 339 empty_struct_ft);
25583cd0 340 BT_ASSERT(ret == 0);
312c056a 341 eh_ft = bt_field_type_structure_create();
25583cd0 342 BT_ASSERT(eh_ft);
312c056a 343 eh_ts_ft = bt_field_type_integer_create(64);
25583cd0 344 BT_ASSERT(eh_ts_ft);
312c056a 345 ret = bt_field_type_structure_add_field(eh_ft, eh_ts_ft, "ts");
25583cd0 346 BT_ASSERT(ret == 0);
312c056a
PP
347 ret = bt_field_type_integer_set_mapped_clock_class(eh_ts_ft,
348 src_clock_class);
25583cd0 349 BT_ASSERT(ret == 0);
3dca2276 350 ret = bt_stream_class_set_event_header_field_type(src_stream_class,
312c056a 351 eh_ft);
25583cd0 352 BT_ASSERT(ret == 0);
3dca2276 353 ret = bt_stream_class_set_event_context_field_type(src_stream_class,
8deeabc6 354 empty_struct_ft);
25583cd0 355 BT_ASSERT(ret == 0);
50842bdc 356 src_event_class = bt_event_class_create("my-event-class");
3dca2276 357 ret = bt_event_class_set_context_field_type(src_event_class,
8deeabc6 358 empty_struct_ft);
25583cd0 359 BT_ASSERT(ret == 0);
3dca2276 360 ret = bt_event_class_set_context_field_type(src_event_class,
8deeabc6 361 empty_struct_ft);
25583cd0 362 BT_ASSERT(ret == 0);
50842bdc 363 ret = bt_stream_class_add_event_class(src_stream_class,
8deeabc6 364 src_event_class);
25583cd0 365 BT_ASSERT(ret == 0);
50842bdc 366 ret = bt_trace_add_stream_class(trace, src_stream_class);
25583cd0 367 BT_ASSERT(ret == 0);
3dca2276 368 stream = bt_stream_create(src_stream_class, "stream0", 0);
25583cd0 369 BT_ASSERT(stream);
50842bdc 370 src_packet0 = bt_packet_create(stream);
25583cd0 371 BT_ASSERT(src_packet0);
3230ee6b 372 bt_put(stream);
3dca2276 373 stream = bt_stream_create(src_stream_class, "stream1", 1);
25583cd0 374 BT_ASSERT(stream);
50842bdc 375 src_packet1 = bt_packet_create(stream);
25583cd0 376 BT_ASSERT(src_packet0);
3230ee6b 377 bt_put(stream);
3dca2276 378 stream = bt_stream_create(src_stream_class, "stream2", 2);
25583cd0 379 BT_ASSERT(stream);
50842bdc 380 src_packet2 = bt_packet_create(stream);
25583cd0 381 BT_ASSERT(src_packet0);
3230ee6b 382 bt_put(stream);
3dca2276 383 stream = bt_stream_create(src_stream_class, "stream3", 3);
25583cd0 384 BT_ASSERT(stream);
50842bdc 385 src_packet3 = bt_packet_create(stream);
25583cd0 386 BT_ASSERT(src_packet0);
3230ee6b 387 bt_put(stream);
8deeabc6
PP
388
389 bt_put(trace);
8deeabc6 390 bt_put(empty_struct_ft);
312c056a
PP
391 bt_put(eh_ft);
392 bt_put(eh_ts_ft);
8deeabc6
PP
393}
394
395static
396void fini_static_data(void)
397{
398 /* Test events */
399 g_array_free(test_events, TRUE);
400
401 /* Metadata */
402 bt_put(src_empty_cc_prio_map);
403 bt_put(src_cc_prio_map);
404 bt_put(src_clock_class);
405 bt_put(src_stream_class);
406 bt_put(src_event_class);
3230ee6b
PP
407 bt_put(src_packet0);
408 bt_put(src_packet1);
409 bt_put(src_packet2);
410 bt_put(src_packet3);
8deeabc6
PP
411}
412
413static
414void src_iter_finalize(
90157d89 415 struct bt_private_connection_private_notification_iterator *private_notification_iterator)
8deeabc6
PP
416{
417 struct src_iter_user_data *user_data =
90157d89 418 bt_private_connection_private_notification_iterator_get_user_data(
8deeabc6
PP
419 private_notification_iterator);
420
421 if (user_data) {
422 g_free(user_data);
423 }
424}
425
426static
427enum bt_notification_iterator_status src_iter_init(
90157d89 428 struct bt_private_connection_private_notification_iterator *priv_notif_iter,
8deeabc6
PP
429 struct bt_private_port *private_port)
430{
431 struct src_iter_user_data *user_data =
432 g_new0(struct src_iter_user_data, 1);
5c563278 433 struct bt_port *port = bt_port_borrow_from_private(private_port);
8deeabc6
PP
434 const char *port_name;
435 int ret;
436
25583cd0
PP
437 BT_ASSERT(user_data);
438 BT_ASSERT(port);
90157d89 439 ret = bt_private_connection_private_notification_iterator_set_user_data(priv_notif_iter,
8deeabc6 440 user_data);
25583cd0 441 BT_ASSERT(ret == 0);
8deeabc6 442 port_name = bt_port_get_name(port);
25583cd0 443 BT_ASSERT(port_name);
8deeabc6 444 user_data->iter_index = port_name[3] - '0';
8deeabc6 445
3230ee6b
PP
446 switch (user_data->iter_index) {
447 case 0:
448 user_data->packet = src_packet0;
449 break;
450 case 1:
451 user_data->packet = src_packet1;
452 break;
453 case 2:
454 user_data->packet = src_packet2;
455 break;
456 case 3:
457 user_data->packet = src_packet3;
458 break;
459 default:
0fbb9a9f 460 abort();
3230ee6b
PP
461 }
462
8deeabc6
PP
463 switch (current_test) {
464 case TEST_NO_TS:
465 if (user_data->iter_index == 1) {
466 user_data->seq = seq5;
467 }
468 break;
8deeabc6
PP
469 case TEST_SIMPLE_4_PORTS:
470 if (user_data->iter_index == 0) {
471 user_data->seq = seq1;
472 } else if (user_data->iter_index == 1) {
473 user_data->seq = seq2;
474 } else if (user_data->iter_index == 2) {
475 user_data->seq = seq3;
476 } else {
477 user_data->seq = seq4;
478 }
479 break;
480 case TEST_4_PORTS_WITH_RETRIES:
481 if (user_data->iter_index == 0) {
482 user_data->seq = seq1_with_again;
483 } else if (user_data->iter_index == 1) {
484 user_data->seq = seq2_with_again;
485 } else if (user_data->iter_index == 2) {
486 user_data->seq = seq3_with_again;
487 } else {
488 user_data->seq = seq4_with_again;
489 }
490 break;
491 case TEST_SINGLE_END_THEN_MULTIPLE_FULL:
492 case TEST_SINGLE_AGAIN_END_THEN_MULTIPLE_FULL:
493 if (user_data->iter_index == 0) {
494 /* Ignore: this iterator only returns END */
495 } else if (user_data->iter_index == 1) {
496 user_data->seq = seq2;
497 } else {
498 user_data->seq = seq3;
499 }
500 break;
501 default:
0fbb9a9f 502 abort();
8deeabc6
PP
503 }
504
505 return BT_NOTIFICATION_ITERATOR_STATUS_OK;
506}
507
508static
312c056a
PP
509struct bt_notification *src_create_event_notif(struct bt_packet *packet,
510 struct bt_clock_class_priority_map *cc_prio_map, int64_t ts_ns)
8deeabc6 511{
8deeabc6 512 int ret;
312c056a
PP
513 struct bt_event *event;
514 struct bt_notification *notif;
515 struct bt_clock_value *clock_value;
516 struct bt_field *field;
517
5c563278 518 notif = bt_notification_event_create(graph, src_event_class,
312c056a 519 packet, cc_prio_map);
25583cd0 520 BT_ASSERT(notif);
312c056a 521 event = bt_notification_event_borrow_event(notif);
25583cd0 522 BT_ASSERT(event);
312c056a 523 field = bt_event_borrow_header(event);
25583cd0 524 BT_ASSERT(field);
312c056a 525 field = bt_field_structure_borrow_field_by_name(field, "ts");
25583cd0 526 BT_ASSERT(field);
312c056a 527 ret = bt_field_integer_unsigned_set_value(field, (uint64_t) ts_ns);
25583cd0 528 BT_ASSERT(ret == 0);
312c056a 529 clock_value = bt_event_borrow_clock_value(event, src_clock_class);
25583cd0 530 BT_ASSERT(clock_value);
312c056a 531 ret = bt_clock_value_set_value(clock_value, (uint64_t) ts_ns);
25583cd0 532 BT_ASSERT(ret == 0);
312c056a 533 return notif;
8deeabc6
PP
534}
535
536static
90157d89 537struct bt_notification_iterator_next_method_return src_iter_next_seq(
8deeabc6
PP
538 struct src_iter_user_data *user_data)
539{
90157d89 540 struct bt_notification_iterator_next_method_return next_return = {
8deeabc6
PP
541 .status = BT_NOTIFICATION_ITERATOR_STATUS_OK,
542 };
543 int64_t cur_ts_ns;
f42867e2 544 struct bt_stream *stream;
8deeabc6 545
25583cd0 546 BT_ASSERT(user_data->seq);
8deeabc6
PP
547 cur_ts_ns = user_data->seq[user_data->at];
548
549 switch (cur_ts_ns) {
550 case SEQ_END:
551 next_return.status =
552 BT_NOTIFICATION_ITERATOR_STATUS_END;
553 break;
554 case SEQ_AGAIN:
555 next_return.status =
556 BT_NOTIFICATION_ITERATOR_STATUS_AGAIN;
557 break;
558 case SEQ_PACKET_BEGIN:
559 next_return.notification =
5c563278
PP
560 bt_notification_packet_begin_create(graph,
561 user_data->packet);
25583cd0 562 BT_ASSERT(next_return.notification);
8deeabc6
PP
563 break;
564 case SEQ_PACKET_END:
565 next_return.notification =
5c563278
PP
566 bt_notification_packet_end_create(graph,
567 user_data->packet);
25583cd0 568 BT_ASSERT(next_return.notification);
8deeabc6 569 break;
f42867e2
PP
570 case SEQ_STREAM_BEGIN:
571 stream = bt_packet_get_stream(user_data->packet);
572 next_return.notification =
5c563278 573 bt_notification_stream_begin_create(graph, stream);
25583cd0 574 BT_ASSERT(next_return.notification);
f42867e2
PP
575 bt_put(stream);
576 break;
577 case SEQ_STREAM_END:
578 stream = bt_packet_get_stream(user_data->packet);
579 next_return.notification =
5c563278 580 bt_notification_stream_end_create(graph, stream);
25583cd0 581 BT_ASSERT(next_return.notification);
f42867e2
PP
582 bt_put(stream);
583 break;
8deeabc6
PP
584 default:
585 {
312c056a
PP
586 next_return.notification = src_create_event_notif(
587 user_data->packet, src_cc_prio_map, cur_ts_ns);
25583cd0 588 BT_ASSERT(next_return.notification);
8deeabc6
PP
589 break;
590 }
591 }
592
593 if (next_return.status != BT_NOTIFICATION_ITERATOR_STATUS_END) {
594 user_data->at++;
595 }
596
597 return next_return;
598}
599
600static
90157d89
PP
601struct bt_notification_iterator_next_method_return src_iter_next(
602 struct bt_private_connection_private_notification_iterator *priv_iterator)
8deeabc6 603{
90157d89 604 struct bt_notification_iterator_next_method_return next_return = {
624fa311
PP
605 .notification = NULL,
606 .status = BT_NOTIFICATION_ITERATOR_STATUS_OK,
607 };
8deeabc6 608 struct src_iter_user_data *user_data =
90157d89 609 bt_private_connection_private_notification_iterator_get_user_data(priv_iterator);
8deeabc6 610 struct bt_private_component *private_component =
90157d89 611 bt_private_connection_private_notification_iterator_get_private_component(priv_iterator);
f42867e2 612 struct bt_stream *stream;
147337a3 613 int ret;
8deeabc6 614
25583cd0
PP
615 BT_ASSERT(user_data);
616 BT_ASSERT(private_component);
8deeabc6
PP
617
618 switch (current_test) {
619 case TEST_NO_TS:
620 if (user_data->iter_index == 0) {
621 if (user_data->at == 0) {
f42867e2
PP
622 stream = bt_packet_get_stream(user_data->packet);
623 next_return.notification =
624 bt_notification_stream_begin_create(
5c563278 625 graph, stream);
f42867e2 626 bt_put(stream);
25583cd0 627 BT_ASSERT(next_return.notification);
f42867e2 628 } else if (user_data->at == 1) {
8deeabc6 629 next_return.notification =
3230ee6b 630 bt_notification_packet_begin_create(
5c563278 631 graph, user_data->packet);
25583cd0 632 BT_ASSERT(next_return.notification);
f42867e2 633 } else if (user_data->at < 7) {
8deeabc6 634 next_return.notification =
312c056a
PP
635 src_create_event_notif(
636 user_data->packet,
637 src_empty_cc_prio_map, 0);
25583cd0 638 BT_ASSERT(next_return.notification);
f42867e2
PP
639 } else if (user_data->at == 7) {
640 next_return.notification =
641 bt_notification_packet_end_create(
5c563278 642 graph, user_data->packet);
25583cd0 643 BT_ASSERT(next_return.notification);
f42867e2
PP
644 } else if (user_data->at == 8) {
645 stream = bt_packet_get_stream(user_data->packet);
646 next_return.notification =
647 bt_notification_stream_end_create(
5c563278 648 graph, stream);
f42867e2 649 bt_put(stream);
25583cd0 650 BT_ASSERT(next_return.notification);
8deeabc6
PP
651 } else {
652 next_return.status =
653 BT_NOTIFICATION_ITERATOR_STATUS_END;
654 }
655
656 user_data->at++;
657 } else {
658 next_return = src_iter_next_seq(user_data);
659 }
660 break;
8deeabc6
PP
661 case TEST_SIMPLE_4_PORTS:
662 case TEST_4_PORTS_WITH_RETRIES:
663 next_return = src_iter_next_seq(user_data);
664 break;
665 case TEST_SINGLE_END_THEN_MULTIPLE_FULL:
666 if (user_data->iter_index == 0) {
147337a3
PP
667 ret = bt_private_component_source_add_output_private_port(
668 private_component, "out1", NULL, NULL);
25583cd0 669 BT_ASSERT(ret == 0);
147337a3
PP
670 ret = bt_private_component_source_add_output_private_port(
671 private_component, "out2", NULL, NULL);
25583cd0 672 BT_ASSERT(ret == 0);
8deeabc6
PP
673 next_return.status = BT_NOTIFICATION_ITERATOR_STATUS_END;
674 } else {
675 next_return = src_iter_next_seq(user_data);
676 }
677 break;
678 case TEST_SINGLE_AGAIN_END_THEN_MULTIPLE_FULL:
679 if (user_data->iter_index == 0) {
680 if (user_data->at == 0) {
681 next_return.status = BT_NOTIFICATION_ITERATOR_STATUS_AGAIN;
682 user_data->at++;
683 } else {
147337a3
PP
684 ret = bt_private_component_source_add_output_private_port(
685 private_component, "out1", NULL, NULL);
25583cd0 686 BT_ASSERT(ret == 0);
147337a3
PP
687 ret = bt_private_component_source_add_output_private_port(
688 private_component, "out2", NULL, NULL);
25583cd0 689 BT_ASSERT(ret == 0);
8deeabc6
PP
690 next_return.status = BT_NOTIFICATION_ITERATOR_STATUS_END;
691 }
692 } else {
693 next_return = src_iter_next_seq(user_data);
694 }
695 break;
696 default:
0fbb9a9f 697 abort();
8deeabc6
PP
698 }
699
700 bt_put(private_component);
701 return next_return;
702}
703
704static
705enum bt_component_status src_init(
706 struct bt_private_component *private_component,
707 struct bt_value *params, void *init_method_data)
708{
147337a3 709 int ret;
8deeabc6
PP
710 size_t nb_ports;
711
8deeabc6
PP
712 switch (current_test) {
713 case TEST_NO_TS:
8deeabc6
PP
714 nb_ports = 2;
715 break;
716 case TEST_SINGLE_END_THEN_MULTIPLE_FULL:
717 case TEST_SINGLE_AGAIN_END_THEN_MULTIPLE_FULL:
718 nb_ports = 1;
719 break;
720 default:
721 nb_ports = 4;
722 break;
723 }
724
725 if (nb_ports >= 1) {
147337a3
PP
726 ret = bt_private_component_source_add_output_private_port(
727 private_component, "out0", NULL, NULL);
25583cd0 728 BT_ASSERT(ret == 0);
8deeabc6
PP
729 }
730
731 if (nb_ports >= 2) {
147337a3
PP
732 ret = bt_private_component_source_add_output_private_port(
733 private_component, "out1", NULL, NULL);
25583cd0 734 BT_ASSERT(ret == 0);
8deeabc6
PP
735 }
736
737 if (nb_ports >= 3) {
147337a3
PP
738 ret = bt_private_component_source_add_output_private_port(
739 private_component, "out2", NULL, NULL);
25583cd0 740 BT_ASSERT(ret == 0);
8deeabc6
PP
741 }
742
743 if (nb_ports >= 4) {
147337a3
PP
744 ret = bt_private_component_source_add_output_private_port(
745 private_component, "out3", NULL, NULL);
25583cd0 746 BT_ASSERT(ret == 0);
8deeabc6
PP
747 }
748
749 return BT_COMPONENT_STATUS_OK;
750}
751
752static
753void src_finalize(struct bt_private_component *private_component)
754{
755}
756
757static
758enum bt_component_status sink_consume(
759 struct bt_private_component *priv_component)
760{
761 enum bt_component_status ret = BT_COMPONENT_STATUS_OK;
762 struct bt_notification *notification = NULL;
763 struct sink_user_data *user_data =
764 bt_private_component_get_user_data(priv_component);
765 enum bt_notification_iterator_status it_ret;
766 struct test_event test_event;
767 bool do_append_test_event = true;
768
25583cd0 769 BT_ASSERT(user_data && user_data->notif_iter);
07245ac2
PP
770 it_ret = bt_private_connection_notification_iterator_next(
771 user_data->notif_iter, &notification);
8deeabc6
PP
772
773 if (it_ret < 0) {
774 ret = BT_COMPONENT_STATUS_ERROR;
775 do_append_test_event = false;
776 goto end;
777 }
778
779 switch (it_ret) {
780 case BT_NOTIFICATION_ITERATOR_STATUS_END:
781 test_event.type = TEST_EV_TYPE_END;
782 ret = BT_COMPONENT_STATUS_END;
783 BT_PUT(user_data->notif_iter);
784 goto end;
785 case BT_NOTIFICATION_ITERATOR_STATUS_AGAIN:
786 test_event.type = TEST_EV_TYPE_AGAIN;
787 ret = BT_COMPONENT_STATUS_AGAIN;
788 goto end;
789 default:
790 break;
791 }
792
25583cd0 793 BT_ASSERT(notification);
8deeabc6
PP
794
795 switch (bt_notification_get_type(notification)) {
796 case BT_NOTIFICATION_TYPE_EVENT:
797 {
50842bdc 798 struct bt_event *event;
8deeabc6
PP
799 struct bt_clock_class_priority_map *cc_prio_map;
800
801 test_event.type = TEST_EV_TYPE_NOTIF_EVENT;
802 cc_prio_map =
312c056a 803 bt_notification_event_borrow_clock_class_priority_map(
8deeabc6 804 notification);
25583cd0 805 BT_ASSERT(cc_prio_map);
312c056a 806 event = bt_notification_event_borrow_event(notification);
25583cd0 807 BT_ASSERT(event);
8deeabc6
PP
808
809 if (bt_clock_class_priority_map_get_clock_class_count(cc_prio_map) > 0) {
50842bdc
PP
810 struct bt_clock_value *clock_value;
811 struct bt_clock_class *clock_class =
312c056a 812 bt_clock_class_priority_map_borrow_highest_priority_clock_class(
8deeabc6
PP
813 cc_prio_map);
814
25583cd0 815 BT_ASSERT(clock_class);
312c056a 816 clock_value = bt_event_borrow_clock_value(event,
8deeabc6 817 clock_class);
25583cd0 818 BT_ASSERT(clock_value);
50842bdc 819 ret = bt_clock_value_get_value_ns_from_epoch(
8deeabc6 820 clock_value, &test_event.ts_ns);
25583cd0 821 BT_ASSERT(ret == 0);
8deeabc6
PP
822 } else {
823 test_event.ts_ns = -1;
824 }
825
8deeabc6
PP
826 break;
827 }
828 case BT_NOTIFICATION_TYPE_INACTIVITY:
829 {
830 struct bt_clock_class_priority_map *cc_prio_map;
831
832 test_event.type = TEST_EV_TYPE_NOTIF_INACTIVITY;
312c056a 833 cc_prio_map = bt_notification_inactivity_borrow_clock_class_priority_map(
8deeabc6 834 notification);
25583cd0 835 BT_ASSERT(cc_prio_map);
8deeabc6
PP
836
837 if (bt_clock_class_priority_map_get_clock_class_count(cc_prio_map) > 0) {
50842bdc
PP
838 struct bt_clock_value *clock_value;
839 struct bt_clock_class *clock_class =
312c056a 840 bt_clock_class_priority_map_borrow_highest_priority_clock_class(
8deeabc6
PP
841 cc_prio_map);
842
25583cd0 843 BT_ASSERT(clock_class);
8deeabc6 844 clock_value =
312c056a 845 bt_notification_inactivity_borrow_clock_value(
8deeabc6 846 notification, clock_class);
25583cd0 847 BT_ASSERT(clock_value);
50842bdc 848 ret = bt_clock_value_get_value_ns_from_epoch(
8deeabc6 849 clock_value, &test_event.ts_ns);
25583cd0 850 BT_ASSERT(ret == 0);
8deeabc6
PP
851 } else {
852 test_event.ts_ns = -1;
853 }
854
8deeabc6
PP
855 break;
856 }
857 case BT_NOTIFICATION_TYPE_PACKET_BEGIN:
858 test_event.type = TEST_EV_TYPE_NOTIF_PACKET_BEGIN;
859 break;
860 case BT_NOTIFICATION_TYPE_PACKET_END:
861 test_event.type = TEST_EV_TYPE_NOTIF_PACKET_END;
862 break;
3230ee6b
PP
863 case BT_NOTIFICATION_TYPE_STREAM_BEGIN:
864 test_event.type = TEST_EV_TYPE_NOTIF_STREAM_BEGIN;
865 break;
866 case BT_NOTIFICATION_TYPE_STREAM_END:
867 test_event.type = TEST_EV_TYPE_NOTIF_STREAM_END;
868 break;
8deeabc6
PP
869 default:
870 test_event.type = TEST_EV_TYPE_NOTIF_UNEXPECTED;
871 break;
872 }
873
874end:
875 if (do_append_test_event) {
876 append_test_event(&test_event);
877 }
878
879 bt_put(notification);
880 return ret;
881}
882
883static
884void sink_port_connected(struct bt_private_component *private_component,
885 struct bt_private_port *self_private_port,
886 struct bt_port *other_port)
887{
888 struct bt_private_connection *priv_conn =
889 bt_private_port_get_private_connection(self_private_port);
890 struct sink_user_data *user_data = bt_private_component_get_user_data(
891 private_component);
73d5c1ad 892 enum bt_connection_status conn_status;
8deeabc6 893
25583cd0
PP
894 BT_ASSERT(user_data);
895 BT_ASSERT(priv_conn);
73d5c1ad 896 conn_status = bt_private_connection_create_notification_iterator(
f42867e2 897 priv_conn, &user_data->notif_iter);
25583cd0 898 BT_ASSERT(conn_status == 0);
8deeabc6
PP
899 bt_put(priv_conn);
900}
901
902static
903enum bt_component_status sink_init(
904 struct bt_private_component *private_component,
905 struct bt_value *params, void *init_method_data)
906{
907 struct sink_user_data *user_data = g_new0(struct sink_user_data, 1);
908 int ret;
909
25583cd0 910 BT_ASSERT(user_data);
8deeabc6
PP
911 ret = bt_private_component_set_user_data(private_component,
912 user_data);
25583cd0 913 BT_ASSERT(ret == 0);
147337a3
PP
914 ret = bt_private_component_sink_add_input_private_port(
915 private_component, "in", NULL, NULL);
25583cd0 916 BT_ASSERT(ret == 0);
8deeabc6
PP
917 return BT_COMPONENT_STATUS_OK;
918}
919
920static
921void sink_finalize(struct bt_private_component *private_component)
922{
923 struct sink_user_data *user_data = bt_private_component_get_user_data(
924 private_component);
925
926 if (user_data) {
927 bt_put(user_data->notif_iter);
928 g_free(user_data);
929 }
930}
931
932static
36712f1d
PP
933void create_source_muxer_sink(struct bt_graph *graph,
934 struct bt_component **source,
8deeabc6
PP
935 struct bt_component **muxer,
936 struct bt_component **sink)
937{
938 struct bt_component_class *src_comp_class;
939 struct bt_component_class *muxer_comp_class;
940 struct bt_component_class *sink_comp_class;
941 int ret;
942
943 /* Create source component */
944 src_comp_class = bt_component_class_source_create("src", src_iter_next);
25583cd0 945 BT_ASSERT(src_comp_class);
8deeabc6 946 ret = bt_component_class_set_init_method(src_comp_class, src_init);
25583cd0 947 BT_ASSERT(ret == 0);
8deeabc6
PP
948 ret = bt_component_class_set_finalize_method(src_comp_class,
949 src_finalize);
25583cd0 950 BT_ASSERT(ret == 0);
8deeabc6
PP
951 ret = bt_component_class_source_set_notification_iterator_init_method(
952 src_comp_class, src_iter_init);
25583cd0 953 BT_ASSERT(ret == 0);
8deeabc6
PP
954 ret = bt_component_class_source_set_notification_iterator_finalize_method(
955 src_comp_class, src_iter_finalize);
25583cd0 956 BT_ASSERT(ret == 0);
36712f1d 957 ret = bt_graph_add_component(graph, src_comp_class, "source", NULL, source);
25583cd0 958 BT_ASSERT(ret == 0);
8deeabc6
PP
959
960 /* Create muxer component */
961 muxer_comp_class = bt_plugin_find_component_class("utils", "muxer",
962 BT_COMPONENT_CLASS_TYPE_FILTER);
25583cd0 963 BT_ASSERT(muxer_comp_class);
36712f1d 964 ret = bt_graph_add_component(graph, muxer_comp_class, "muxer", NULL, muxer);
25583cd0 965 BT_ASSERT(ret == 0);
8deeabc6
PP
966
967 /* Create sink component */
968 sink_comp_class = bt_component_class_sink_create("sink", sink_consume);
25583cd0 969 BT_ASSERT(sink_comp_class);
8deeabc6 970 ret = bt_component_class_set_init_method(sink_comp_class, sink_init);
25583cd0 971 BT_ASSERT(ret == 0);
8deeabc6
PP
972 ret = bt_component_class_set_finalize_method(sink_comp_class,
973 sink_finalize);
974 ret = bt_component_class_set_port_connected_method(sink_comp_class,
975 sink_port_connected);
25583cd0 976 BT_ASSERT(ret == 0);
36712f1d 977 ret = bt_graph_add_component(graph, sink_comp_class, "sink", NULL, sink);
25583cd0 978 BT_ASSERT(ret == 0);
8deeabc6
PP
979
980 bt_put(src_comp_class);
981 bt_put(muxer_comp_class);
982 bt_put(sink_comp_class);
983}
984
985static
986void do_std_test(enum test test, const char *name,
987 const struct test_event *expected_test_events,
988 bool with_upstream)
989{
990 struct bt_component *src_comp;
991 struct bt_component *muxer_comp;
992 struct bt_component *sink_comp;
993 struct bt_port *upstream_port;
994 struct bt_port *downstream_port;
544d0515
PP
995 int64_t i;
996 int64_t count;
8deeabc6
PP
997 enum bt_graph_status graph_status = BT_GRAPH_STATUS_OK;
998
999 clear_test_events();
1000 current_test = test;
1001 diag("test: %s", name);
25583cd0 1002 BT_ASSERT(!graph);
8deeabc6 1003 graph = bt_graph_create();
25583cd0 1004 BT_ASSERT(graph);
36712f1d 1005 create_source_muxer_sink(graph, &src_comp, &muxer_comp, &sink_comp);
8deeabc6
PP
1006
1007 /* Connect source output ports to muxer input ports */
1008 if (with_upstream) {
544d0515 1009 count = bt_component_source_get_output_port_count(src_comp);
25583cd0 1010 BT_ASSERT(count >= 0);
8deeabc6
PP
1011
1012 for (i = 0; i < count; i++) {
9ac68eb1 1013 upstream_port = bt_component_source_get_output_port_by_index(
8deeabc6 1014 src_comp, i);
25583cd0 1015 BT_ASSERT(upstream_port);
9ac68eb1 1016 downstream_port = bt_component_filter_get_input_port_by_index(
8deeabc6 1017 muxer_comp, i);
25583cd0 1018 BT_ASSERT(downstream_port);
a256a42d
PP
1019 graph_status = bt_graph_connect_ports(graph,
1020 upstream_port, downstream_port, NULL);
25583cd0 1021 BT_ASSERT(graph_status == 0);
8deeabc6
PP
1022 bt_put(upstream_port);
1023 bt_put(downstream_port);
1024 }
1025 }
1026
1027 /* Connect muxer output port to sink input port */
9ac68eb1 1028 upstream_port = bt_component_filter_get_output_port_by_name(muxer_comp,
8deeabc6 1029 "out");
25583cd0 1030 BT_ASSERT(upstream_port);
b9d103be 1031 downstream_port = bt_component_sink_get_input_port_by_name(sink_comp, "in");
25583cd0 1032 BT_ASSERT(downstream_port);
a256a42d
PP
1033 graph_status = bt_graph_connect_ports(graph, upstream_port,
1034 downstream_port, NULL);
25583cd0 1035 BT_ASSERT(graph_status == 0);
8deeabc6
PP
1036 bt_put(upstream_port);
1037 bt_put(downstream_port);
1038
1039 while (graph_status == BT_GRAPH_STATUS_OK ||
1040 graph_status == BT_GRAPH_STATUS_AGAIN) {
1041 graph_status = bt_graph_run(graph);
1042 }
1043
1044 ok(graph_status == BT_GRAPH_STATUS_END, "graph finishes without any error");
1045 ok(compare_test_events(expected_test_events),
1046 "the produced sequence of test events is the expected one");
1047
1048 bt_put(src_comp);
1049 bt_put(muxer_comp);
1050 bt_put(sink_comp);
5c563278 1051 BT_PUT(graph);
8deeabc6
PP
1052}
1053
1054static
1055void test_no_ts(void)
1056{
1057 const struct test_event expected_test_events[] = {
3230ee6b
PP
1058 { .type = TEST_EV_TYPE_NOTIF_STREAM_BEGIN, },
1059 { .type = TEST_EV_TYPE_NOTIF_PACKET_BEGIN, },
1060 { .type = TEST_EV_TYPE_NOTIF_STREAM_BEGIN, },
8deeabc6
PP
1061 { .type = TEST_EV_TYPE_NOTIF_PACKET_BEGIN, },
1062 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = -1, },
1063 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = -1, },
1064 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = -1, },
1065 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = -1, },
1066 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = -1, },
3230ee6b
PP
1067 { .type = TEST_EV_TYPE_NOTIF_PACKET_END, },
1068 { .type = TEST_EV_TYPE_NOTIF_STREAM_END, },
8deeabc6
PP
1069 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 1, },
1070 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 4, },
1071 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 189, },
1072 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 1001, },
3230ee6b
PP
1073 { .type = TEST_EV_TYPE_NOTIF_PACKET_END, },
1074 { .type = TEST_EV_TYPE_NOTIF_STREAM_END, },
8deeabc6
PP
1075 { .type = TEST_EV_TYPE_END, },
1076 { .type = TEST_EV_TYPE_SENTINEL, },
1077 };
1078
1079 do_std_test(TEST_NO_TS, "event notifications with no time",
1080 expected_test_events, true);
1081}
1082
1083static
1084void test_no_upstream_connection(void)
1085{
1086 const struct test_event expected_test_events[] = {
1087 { .type = TEST_EV_TYPE_END, },
1088 { .type = TEST_EV_TYPE_SENTINEL, },
1089 };
1090
1091 do_std_test(TEST_NO_UPSTREAM_CONNECTION, "no upstream connection",
1092 expected_test_events, false);
1093}
1094
1095static
3230ee6b 1096void test_simple_4_ports(void)
8deeabc6
PP
1097{
1098 const struct test_event expected_test_events[] = {
3230ee6b 1099 { .type = TEST_EV_TYPE_NOTIF_STREAM_BEGIN, },
8deeabc6 1100 { .type = TEST_EV_TYPE_NOTIF_PACKET_BEGIN, },
3230ee6b
PP
1101 { .type = TEST_EV_TYPE_NOTIF_STREAM_BEGIN, },
1102 { .type = TEST_EV_TYPE_NOTIF_PACKET_BEGIN, },
1103 { .type = TEST_EV_TYPE_NOTIF_STREAM_BEGIN, },
1104 { .type = TEST_EV_TYPE_NOTIF_PACKET_BEGIN, },
1105 { .type = TEST_EV_TYPE_NOTIF_STREAM_BEGIN, },
8deeabc6 1106 { .type = TEST_EV_TYPE_NOTIF_PACKET_BEGIN, },
8deeabc6
PP
1107 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 8 },
1108 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 24 },
1109 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 41 },
1110 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 51 },
1111 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 53 },
1112 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 56 },
1113 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 59 },
1114 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 68 },
1115 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 71 },
1116 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 77 },
1117 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 91 },
1118 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 97 },
1119 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 105 },
1120 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 119 },
1121 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 120 },
1122 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 121 },
1123 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 138 },
1124 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 139 },
1125 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 154 },
1126 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 170 },
1127 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 179 },
1128 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 209 },
1129 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 210 },
1130 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 222 },
1131 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 228 },
1132 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 240 },
1133 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 254 },
1134 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 266 },
1135 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 292 },
1136 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 298 },
1137 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 317 },
1138 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 320 },
1139 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 350 },
1140 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 352 },
1141 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 353 },
1142 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 393 },
1143 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 407 },
1144 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 419 },
1145 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 433 },
1146 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 454 },
1147 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 471 },
1148 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 473 },
1149 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 478 },
1150 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 479 },
1151 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 481 },
1152 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 487 },
1153 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 504 },
1154 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 525 },
1155 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 572 },
1156 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 591 },
1157 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 605 },
1158 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 612 },
1159 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 615 },
1160 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 618 },
1161 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 624 },
1162 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 631 },
1163 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 632 },
1164 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 644 },
1165 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 651 },
1166 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 668 },
1167 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 670 },
1168 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 678 },
1169 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 696 },
1170 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 708 },
1171 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 714 },
1172 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 717 },
1173 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 731 },
1174 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 733 },
1175 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 744 },
1176 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 750 },
1177 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 766 },
1178 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 778 },
1179 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 788 },
1180 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 790 },
1181 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 819 },
1182 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 820 },
1183 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 825 },
1184 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 836 },
3230ee6b
PP
1185 { .type = TEST_EV_TYPE_NOTIF_PACKET_END, },
1186 { .type = TEST_EV_TYPE_NOTIF_STREAM_END, },
8deeabc6
PP
1187 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 850 },
1188 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 852 },
1189 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 857 },
1190 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 863 },
1191 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 867 },
1192 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 871 },
1193 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 884 },
1194 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 892 },
1195 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 903 },
1196 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 931 },
1197 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 944 },
1198 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 951 },
1199 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 953 },
1200 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 956 },
1201 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 985 },
1202 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 996 },
3230ee6b
PP
1203 { .type = TEST_EV_TYPE_NOTIF_PACKET_END, },
1204 { .type = TEST_EV_TYPE_NOTIF_STREAM_END, },
8deeabc6 1205 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 998 },
3230ee6b
PP
1206 { .type = TEST_EV_TYPE_NOTIF_PACKET_END, },
1207 { .type = TEST_EV_TYPE_NOTIF_STREAM_END, },
8deeabc6 1208 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 999 },
3230ee6b
PP
1209 { .type = TEST_EV_TYPE_NOTIF_PACKET_END, },
1210 { .type = TEST_EV_TYPE_NOTIF_STREAM_END, },
8deeabc6
PP
1211 { .type = TEST_EV_TYPE_END, },
1212 { .type = TEST_EV_TYPE_SENTINEL, },
1213 };
1214
1215 do_std_test(TEST_SIMPLE_4_PORTS, "simple: 4 ports without retries",
1216 expected_test_events, true);
1217}
1218
1219static
1220void test_4_ports_with_retries(void)
1221{
1222 const struct test_event expected_test_events[] = {
1223 { .type = TEST_EV_TYPE_AGAIN, },
3230ee6b
PP
1224 { .type = TEST_EV_TYPE_NOTIF_STREAM_BEGIN, },
1225 { .type = TEST_EV_TYPE_NOTIF_PACKET_BEGIN, },
1226 { .type = TEST_EV_TYPE_NOTIF_STREAM_BEGIN, },
1227 { .type = TEST_EV_TYPE_NOTIF_PACKET_BEGIN, },
1228 { .type = TEST_EV_TYPE_NOTIF_STREAM_BEGIN, },
1229 { .type = TEST_EV_TYPE_NOTIF_PACKET_BEGIN, },
1230 { .type = TEST_EV_TYPE_NOTIF_STREAM_BEGIN, },
1231 { .type = TEST_EV_TYPE_NOTIF_PACKET_BEGIN, },
8deeabc6
PP
1232 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 8 },
1233 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 24 },
1234 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 41 },
1235 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 51 },
1236 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 53 },
1237 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 56 },
1238 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 59 },
1239 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 68 },
1240 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 71 },
1241 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 77 },
1242 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 91 },
1243 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 97 },
1244 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 105 },
1245 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 119 },
1246 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 120 },
1247 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 121 },
1248 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 138 },
1249 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 139 },
1250 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 154 },
1251 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 170 },
1252 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 179 },
1253 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 209 },
1254 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 210 },
1255 { .type = TEST_EV_TYPE_AGAIN, },
1256 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 222 },
1257 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 228 },
1258 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 240 },
1259 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 254 },
1260 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 266 },
1261 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 292 },
1262 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 298 },
1263 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 317 },
1264 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 320 },
1265 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 350 },
1266 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 352 },
1267 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 353 },
1268 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 393 },
1269 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 407 },
1270 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 419 },
1271 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 433 },
1272 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 454 },
1273 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 471 },
1274 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 473 },
1275 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 478 },
1276 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 479 },
1277 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 481 },
1278 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 487 },
1279 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 504 },
1280 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 525 },
1281 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 572 },
1282 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 591 },
1283 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 605 },
1284 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 612 },
1285 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 615 },
1286 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 618 },
1287 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 624 },
1288 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 631 },
1289 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 632 },
1290 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 644 },
1291 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 651 },
1292 { .type = TEST_EV_TYPE_AGAIN, },
1293 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 668 },
1294 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 670 },
1295 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 678 },
1296 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 696 },
1297 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 708 },
1298 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 714 },
1299 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 717 },
1300 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 731 },
1301 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 733 },
1302 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 744 },
1303 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 750 },
1304 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 766 },
1305 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 778 },
1306 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 788 },
1307 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 790 },
1308 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 819 },
1309 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 820 },
1310 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 825 },
1311 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 836 },
1312 { .type = TEST_EV_TYPE_AGAIN, },
3230ee6b
PP
1313 { .type = TEST_EV_TYPE_NOTIF_PACKET_END, },
1314 { .type = TEST_EV_TYPE_NOTIF_STREAM_END, },
8deeabc6
PP
1315 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 850 },
1316 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 852 },
1317 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 857 },
1318 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 863 },
1319 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 867 },
1320 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 871 },
1321 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 884 },
1322 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 892 },
1323 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 903 },
1324 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 931 },
1325 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 944 },
1326 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 951 },
1327 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 953 },
1328 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 956 },
1329 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 985 },
1330 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 996 },
3230ee6b
PP
1331 { .type = TEST_EV_TYPE_NOTIF_PACKET_END, },
1332 { .type = TEST_EV_TYPE_NOTIF_STREAM_END, },
8deeabc6 1333 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 998 },
3230ee6b
PP
1334 { .type = TEST_EV_TYPE_NOTIF_PACKET_END, },
1335 { .type = TEST_EV_TYPE_NOTIF_STREAM_END, },
8deeabc6 1336 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 999 },
3230ee6b
PP
1337 { .type = TEST_EV_TYPE_NOTIF_PACKET_END, },
1338 { .type = TEST_EV_TYPE_NOTIF_STREAM_END, },
8deeabc6
PP
1339 { .type = TEST_EV_TYPE_END, },
1340 { .type = TEST_EV_TYPE_SENTINEL, },
1341 };
1342
1343 do_std_test(TEST_4_PORTS_WITH_RETRIES, "4 ports with retries",
1344 expected_test_events, true);
1345}
1346
1347static
1348void connect_port_to_first_avail_muxer_port(struct bt_graph *graph,
1349 struct bt_port *source_port,
1350 struct bt_component *muxer_comp)
1351{
1352 struct bt_port *avail_muxer_port = NULL;
544d0515
PP
1353 int64_t i;
1354 int64_t count;
a256a42d 1355 enum bt_graph_status graph_status;
8deeabc6 1356
544d0515 1357 count = bt_component_filter_get_input_port_count(muxer_comp);
25583cd0 1358 BT_ASSERT(count >= 0);
8deeabc6
PP
1359
1360 for (i = 0; i < count; i++) {
1361 struct bt_port *muxer_port =
9ac68eb1 1362 bt_component_filter_get_input_port_by_index(
8deeabc6
PP
1363 muxer_comp, i);
1364
25583cd0 1365 BT_ASSERT(muxer_port);
8deeabc6
PP
1366
1367 if (!bt_port_is_connected(muxer_port)) {
1368 BT_MOVE(avail_muxer_port, muxer_port);
1369 break;
1370 } else {
1371 bt_put(muxer_port);
1372 }
1373 }
1374
a256a42d
PP
1375 graph_status = bt_graph_connect_ports(graph, source_port,
1376 avail_muxer_port, NULL);
25583cd0 1377 BT_ASSERT(graph_status == 0);
8deeabc6
PP
1378 bt_put(avail_muxer_port);
1379}
1380
1381static
1382void graph_port_added_listener_connect_to_avail_muxer_port(struct bt_port *port,
1383 void *data)
1384{
1385 struct graph_listener_data *graph_listener_data = data;
1386 struct bt_component *comp;
1387
1388 comp = bt_port_get_component(port);
25583cd0 1389 BT_ASSERT(comp);
8deeabc6
PP
1390
1391 if (comp != graph_listener_data->source) {
1392 goto end;
1393 }
1394
1395 connect_port_to_first_avail_muxer_port(graph_listener_data->graph,
1396 port, graph_listener_data->muxer);
1397
1398end:
1399 bt_put(comp);
1400}
1401
1402static
1403void test_single_end_then_multiple_full(void)
1404{
1405 struct bt_component *src_comp;
1406 struct bt_component *muxer_comp;
1407 struct bt_component *sink_comp;
1408 struct bt_port *upstream_port;
1409 struct bt_port *downstream_port;
544d0515
PP
1410 int64_t i;
1411 int64_t count;
8deeabc6
PP
1412 int ret;
1413 enum bt_graph_status graph_status = BT_GRAPH_STATUS_OK;
1414 struct graph_listener_data graph_listener_data;
1415 const struct test_event expected_test_events[] = {
3230ee6b
PP
1416 { .type = TEST_EV_TYPE_NOTIF_STREAM_BEGIN, },
1417 { .type = TEST_EV_TYPE_NOTIF_PACKET_BEGIN, },
1418 { .type = TEST_EV_TYPE_NOTIF_STREAM_BEGIN, },
1419 { .type = TEST_EV_TYPE_NOTIF_PACKET_BEGIN, },
8deeabc6
PP
1420 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 8 },
1421 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 51 },
1422 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 59 },
1423 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 68 },
1424 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 71 },
1425 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 77 },
1426 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 91 },
1427 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 121 },
1428 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 139 },
1429 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 170 },
1430 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 179 },
1431 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 209 },
1432 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 254 },
1433 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 266 },
1434 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 298 },
1435 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 320 },
1436 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 350 },
1437 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 352 },
1438 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 393 },
1439 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 419 },
1440 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 454 },
1441 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 478 },
1442 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 624 },
1443 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 631 },
1444 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 644 },
1445 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 651 },
1446 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 668 },
1447 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 678 },
1448 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 714 },
1449 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 717 },
1450 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 731 },
1451 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 733 },
1452 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 744 },
1453 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 750 },
1454 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 778 },
1455 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 788 },
1456 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 790 },
1457 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 819 },
1458 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 820 },
1459 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 836 },
3230ee6b
PP
1460 { .type = TEST_EV_TYPE_NOTIF_PACKET_END, },
1461 { .type = TEST_EV_TYPE_NOTIF_STREAM_END, },
8deeabc6
PP
1462 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 857 },
1463 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 892 },
1464 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 903 },
1465 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 944 },
1466 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 998 },
3230ee6b
PP
1467 { .type = TEST_EV_TYPE_NOTIF_PACKET_END, },
1468 { .type = TEST_EV_TYPE_NOTIF_STREAM_END, },
8deeabc6
PP
1469 { .type = TEST_EV_TYPE_END, },
1470 { .type = TEST_EV_TYPE_SENTINEL, },
1471 };
1472
1473 clear_test_events();
1474 current_test = TEST_SINGLE_END_THEN_MULTIPLE_FULL;
1475 diag("test: single end then multiple full");
25583cd0 1476 BT_ASSERT(!graph);
8deeabc6 1477 graph = bt_graph_create();
25583cd0 1478 BT_ASSERT(graph);
36712f1d 1479 create_source_muxer_sink(graph, &src_comp, &muxer_comp, &sink_comp);
8deeabc6
PP
1480 graph_listener_data.graph = graph;
1481 graph_listener_data.source = src_comp;
1482 graph_listener_data.muxer = muxer_comp;
1483 graph_listener_data.sink = sink_comp;
1484 ret = bt_graph_add_port_added_listener(graph,
8cc092c9 1485 graph_port_added_listener_connect_to_avail_muxer_port, NULL,
8deeabc6 1486 &graph_listener_data);
25583cd0 1487 BT_ASSERT(ret >= 0);
8deeabc6
PP
1488
1489 /* Connect source output ports to muxer input ports */
544d0515 1490 count = bt_component_source_get_output_port_count(src_comp);
25583cd0 1491 BT_ASSERT(ret == 0);
8deeabc6
PP
1492
1493 for (i = 0; i < count; i++) {
9ac68eb1 1494 upstream_port = bt_component_source_get_output_port_by_index(
8deeabc6 1495 src_comp, i);
25583cd0 1496 BT_ASSERT(upstream_port);
8deeabc6
PP
1497 connect_port_to_first_avail_muxer_port(graph,
1498 upstream_port, muxer_comp);
1499 bt_put(upstream_port);
1500 }
1501
1502 /* Connect muxer output port to sink input port */
9ac68eb1 1503 upstream_port = bt_component_filter_get_output_port_by_name(muxer_comp,
8deeabc6 1504 "out");
25583cd0 1505 BT_ASSERT(upstream_port);
b9d103be 1506 downstream_port = bt_component_sink_get_input_port_by_name(sink_comp, "in");
25583cd0 1507 BT_ASSERT(downstream_port);
a256a42d
PP
1508 graph_status = bt_graph_connect_ports(graph, upstream_port,
1509 downstream_port, NULL);
25583cd0 1510 BT_ASSERT(graph_status == 0);
8deeabc6
PP
1511 bt_put(upstream_port);
1512 bt_put(downstream_port);
1513
1514 while (graph_status == BT_GRAPH_STATUS_OK ||
1515 graph_status == BT_GRAPH_STATUS_AGAIN) {
1516 graph_status = bt_graph_run(graph);
1517 }
1518
1519 ok(graph_status == BT_GRAPH_STATUS_END, "graph finishes without any error");
1520 ok(compare_test_events(expected_test_events),
1521 "the produced sequence of test events is the expected one");
1522
1523 bt_put(src_comp);
1524 bt_put(muxer_comp);
1525 bt_put(sink_comp);
5c563278 1526 BT_PUT(graph);
8deeabc6
PP
1527}
1528
1529static
1530void test_single_again_end_then_multiple_full(void)
1531{
1532 struct bt_component *src_comp;
1533 struct bt_component *muxer_comp;
1534 struct bt_component *sink_comp;
1535 struct bt_port *upstream_port;
1536 struct bt_port *downstream_port;
544d0515
PP
1537 int64_t i;
1538 int64_t count;
8deeabc6
PP
1539 int ret;
1540 enum bt_graph_status graph_status = BT_GRAPH_STATUS_OK;
1541 struct graph_listener_data graph_listener_data;
1542 const struct test_event expected_test_events[] = {
1543 { .type = TEST_EV_TYPE_AGAIN, },
3230ee6b
PP
1544 { .type = TEST_EV_TYPE_NOTIF_STREAM_BEGIN, },
1545 { .type = TEST_EV_TYPE_NOTIF_PACKET_BEGIN, },
1546 { .type = TEST_EV_TYPE_NOTIF_STREAM_BEGIN, },
1547 { .type = TEST_EV_TYPE_NOTIF_PACKET_BEGIN, },
8deeabc6
PP
1548 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 8 },
1549 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 51 },
1550 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 59 },
1551 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 68 },
1552 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 71 },
1553 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 77 },
1554 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 91 },
1555 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 121 },
1556 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 139 },
1557 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 170 },
1558 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 179 },
1559 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 209 },
1560 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 254 },
1561 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 266 },
1562 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 298 },
1563 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 320 },
1564 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 350 },
1565 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 352 },
1566 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 393 },
1567 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 419 },
1568 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 454 },
1569 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 478 },
1570 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 624 },
1571 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 631 },
1572 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 644 },
1573 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 651 },
1574 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 668 },
1575 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 678 },
1576 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 714 },
1577 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 717 },
1578 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 731 },
1579 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 733 },
1580 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 744 },
1581 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 750 },
1582 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 778 },
1583 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 788 },
1584 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 790 },
1585 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 819 },
1586 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 820 },
1587 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 836 },
3230ee6b
PP
1588 { .type = TEST_EV_TYPE_NOTIF_PACKET_END, },
1589 { .type = TEST_EV_TYPE_NOTIF_STREAM_END, },
8deeabc6
PP
1590 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 857 },
1591 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 892 },
1592 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 903 },
1593 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 944 },
1594 { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 998 },
3230ee6b
PP
1595 { .type = TEST_EV_TYPE_NOTIF_PACKET_END, },
1596 { .type = TEST_EV_TYPE_NOTIF_STREAM_END, },
8deeabc6
PP
1597 { .type = TEST_EV_TYPE_END, },
1598 { .type = TEST_EV_TYPE_SENTINEL, },
1599 };
1600
1601 clear_test_events();
1602 current_test = TEST_SINGLE_AGAIN_END_THEN_MULTIPLE_FULL;
1603 diag("test: single again then end then multiple full");
25583cd0 1604 BT_ASSERT(!graph);
8deeabc6 1605 graph = bt_graph_create();
25583cd0 1606 BT_ASSERT(graph);
36712f1d 1607 create_source_muxer_sink(graph, &src_comp, &muxer_comp, &sink_comp);
8deeabc6
PP
1608 graph_listener_data.graph = graph;
1609 graph_listener_data.source = src_comp;
1610 graph_listener_data.muxer = muxer_comp;
1611 graph_listener_data.sink = sink_comp;
1612 ret = bt_graph_add_port_added_listener(graph,
8cc092c9 1613 graph_port_added_listener_connect_to_avail_muxer_port, NULL,
8deeabc6 1614 &graph_listener_data);
25583cd0 1615 BT_ASSERT(ret >= 0);
8deeabc6
PP
1616
1617 /* Connect source output ports to muxer input ports */
544d0515 1618 count = bt_component_source_get_output_port_count(src_comp);
25583cd0 1619 BT_ASSERT(ret == 0);
8deeabc6
PP
1620
1621 for (i = 0; i < count; i++) {
9ac68eb1 1622 upstream_port = bt_component_source_get_output_port_by_index(
8deeabc6 1623 src_comp, i);
25583cd0 1624 BT_ASSERT(upstream_port);
8deeabc6
PP
1625 connect_port_to_first_avail_muxer_port(graph,
1626 upstream_port, muxer_comp);
1627 bt_put(upstream_port);
1628 }
1629
1630 /* Connect muxer output port to sink input port */
9ac68eb1 1631 upstream_port = bt_component_filter_get_output_port_by_name(muxer_comp,
8deeabc6 1632 "out");
25583cd0 1633 BT_ASSERT(upstream_port);
b9d103be 1634 downstream_port = bt_component_sink_get_input_port_by_name(sink_comp, "in");
25583cd0 1635 BT_ASSERT(downstream_port);
a256a42d
PP
1636 graph_status = bt_graph_connect_ports(graph, upstream_port,
1637 downstream_port, NULL);
25583cd0 1638 BT_ASSERT(graph_status == 0);
8deeabc6
PP
1639 bt_put(upstream_port);
1640 bt_put(downstream_port);
1641
1642 while (graph_status == BT_GRAPH_STATUS_OK ||
1643 graph_status == BT_GRAPH_STATUS_AGAIN) {
1644 graph_status = bt_graph_run(graph);
1645 }
1646
1647 ok(graph_status == BT_GRAPH_STATUS_END, "graph finishes without any error");
1648 ok(compare_test_events(expected_test_events),
1649 "the produced sequence of test events is the expected one");
1650
1651 bt_put(src_comp);
1652 bt_put(muxer_comp);
1653 bt_put(sink_comp);
5c563278 1654 BT_PUT(graph);
8deeabc6
PP
1655}
1656
1657#define DEBUG_ENV_VAR "TEST_UTILS_MUXER_DEBUG"
1658
1659int main(int argc, char **argv)
1660{
1661 if (getenv(DEBUG_ENV_VAR) && strcmp(getenv(DEBUG_ENV_VAR), "1") == 0) {
1662 debug = true;
1663 }
1664
1665 plan_tests(NR_TESTS);
1666 init_static_data();
1667 test_no_ts();
1668 test_no_upstream_connection();
8deeabc6
PP
1669 test_simple_4_ports();
1670 test_4_ports_with_retries();
1671 test_single_end_then_multiple_full();
1672 test_single_again_end_then_multiple_full();
1673 fini_static_data();
1674 return exit_status();
1675}
This page took 0.16397 seconds and 4 git commands to generate.