Add basic utils.muxer tests
authorPhilippe Proulx <eeppeliteloop@gmail.com>
Mon, 10 Apr 2017 19:20:56 +0000 (15:20 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Sun, 28 May 2017 16:57:41 +0000 (12:57 -0400)
The tests in tests/plugins/test-utils-muxer.c create custom source and
sink components and connects them to a utils.muxer filter component
within a new graph.

The components do as follows:

* Source component: Depending on the current test, its notification
  iterators generate specific sequences of notifications.

* Sink component: For each notification, and some specific notification
  iterator statuses ("again", "end"), create a test event and append it
  to a global array of test events.

Each test creates a graph, runs it, and then compares the global array
of test events against a static list of expected test events.

Signed-off-by: Philippe Proulx <eeppeliteloop@gmail.com>
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
.gitignore
configure.ac
tests/Makefile.am
tests/plugins/Makefile.am [new file with mode: 0644]
tests/plugins/test-utils-muxer-complete.in [new file with mode: 0644]
tests/plugins/test-utils-muxer.c [new file with mode: 0644]

index 91bb4905595ca2fc34a0ce57d10a4ecc8b721b26..416acc29323bf4d7f24371630b2682bf0c55890c 100644 (file)
@@ -20,6 +20,8 @@
 /tests/lib/test_plugin
 /tests/lib/test_plugin_complete
 /tests/lib/writer/bt_python_helper.py
+/tests/plugins/test-utils-muxer
+/tests/plugins/test-utils-muxer-complete
 *.o
 *.a
 *.la
index aea0b968d02e6ca41da00a12a696143c0b0503fe..e937d25d35b815b31f45c546d76dd92981caf4dc 100644 (file)
@@ -487,6 +487,7 @@ AC_CONFIG_FILES([
        tests/bindings/Makefile
        tests/bindings/python/Makefile
        tests/bindings/python/bt2/Makefile
+       tests/plugins/Makefile
        extras/Makefile
        extras/valgrind/Makefile
        plugins/Makefile
@@ -519,6 +520,8 @@ AC_CONFIG_FILES([tests/lib/test_seek_empty_packet], [chmod +x tests/lib/test_see
 AC_CONFIG_FILES([tests/lib/test_dwarf_complete], [chmod +x tests/lib/test_dwarf_complete])
 AC_CONFIG_FILES([tests/lib/test_bin_info_complete], [chmod +x tests/lib/test_bin_info_complete])
 
+AC_CONFIG_FILES([tests/plugins/test-utils-muxer-complete], [chmod +x tests/plugins/test-utils-muxer-complete])
+
 AC_CONFIG_FILES([tests/bin/test_trace_read], [chmod +x tests/bin/test_trace_read])
 AC_CONFIG_FILES([tests/bin/intersection/test_intersection], [chmod +x tests/bin/intersection/test_intersection])
 AC_CONFIG_FILES([tests/bin/intersection/bt_python_helper.py])
index f15d6d85069bd5d9596746426aad216dbadc5ab0..93b83b5090ea0acd18aa5a97ff56c14d7f9f5e28 100644 (file)
@@ -1,4 +1,4 @@
-SUBDIRS = utils bin lib bindings
+SUBDIRS = utils bin lib bindings plugins
 
 LOG_DRIVER_FLAGS='--merge'
 LOG_DRIVER = env AM_TAP_AWK='$(AWK)' $(SHELL) \
@@ -21,7 +21,8 @@ TESTS = bin/test_trace_read \
        lib/test_bt_notification_heap \
        lib/test_plugin_complete \
        lib/test_graph_topo \
-       lib/test_cc_prio_map
+       lib/test_cc_prio_map \
+       plugins/test-utils-muxer
 
 EXTRA_DIST = $(srcdir)/ctf-traces/** \
             $(srcdir)/debug-info-data/** \
diff --git a/tests/plugins/Makefile.am b/tests/plugins/Makefile.am
new file mode 100644 (file)
index 0000000..98becef
--- /dev/null
@@ -0,0 +1,11 @@
+AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include -I$(top_srcdir)/tests/utils
+
+LIBTAP=$(top_builddir)/tests/utils/tap/libtap.la
+COMMON_TEST_LDADD = $(LIBTAP) $(top_builddir)/lib/libbabeltrace.la
+
+noinst_PROGRAMS = test-utils-muxer
+
+test_utils_muxer_SOURCES = test-utils-muxer.c
+test_utils_muxer_LDADD = $(COMMON_TEST_LDADD)
+
+check_SCRIPTS = test-utils-muxer-complete
diff --git a/tests/plugins/test-utils-muxer-complete.in b/tests/plugins/test-utils-muxer-complete.in
new file mode 100644 (file)
index 0000000..bd709f6
--- /dev/null
@@ -0,0 +1,22 @@
+#!/bin/sh
+#
+# Copyright (C) 2017 Philippe Proulx <pproulx@efficios.com>
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; only version 2
+# of the License.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+#
+
+PLUGIN_DIR="@abs_top_builddir@/plugins/utils"
+
+BABELTRACE_PLUGIN_PATH="$PLUGIN_DIR" '@abs_top_builddir@/tests/plugins/test-utils-muxer'
diff --git a/tests/plugins/test-utils-muxer.c b/tests/plugins/test-utils-muxer.c
new file mode 100644 (file)
index 0000000..8b0e520
--- /dev/null
@@ -0,0 +1,1603 @@
+/*
+ * Copyright 2017 - Philippe Proulx <pproulx@efficios.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; under version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <stdint.h>
+#include <inttypes.h>
+#include <string.h>
+#include <assert.h>
+#include <babeltrace/ctf-ir/event-class.h>
+#include <babeltrace/ctf-ir/event.h>
+#include <babeltrace/ctf-ir/field-types.h>
+#include <babeltrace/ctf-ir/fields.h>
+#include <babeltrace/ctf-ir/packet.h>
+#include <babeltrace/ctf-ir/stream-class.h>
+#include <babeltrace/ctf-ir/stream.h>
+#include <babeltrace/ctf-ir/trace.h>
+#include <babeltrace/graph/clock-class-priority-map.h>
+#include <babeltrace/graph/component-class-filter.h>
+#include <babeltrace/graph/component-class-sink.h>
+#include <babeltrace/graph/component-class-source.h>
+#include <babeltrace/graph/component-class.h>
+#include <babeltrace/graph/component-filter.h>
+#include <babeltrace/graph/component-sink.h>
+#include <babeltrace/graph/component-source.h>
+#include <babeltrace/graph/component.h>
+#include <babeltrace/graph/graph.h>
+#include <babeltrace/graph/notification-event.h>
+#include <babeltrace/graph/notification-inactivity.h>
+#include <babeltrace/graph/notification-iterator.h>
+#include <babeltrace/graph/notification-packet.h>
+#include <babeltrace/graph/port.h>
+#include <babeltrace/graph/private-component-source.h>
+#include <babeltrace/graph/private-component.h>
+#include <babeltrace/graph/private-connection.h>
+#include <babeltrace/graph/private-notification-iterator.h>
+#include <babeltrace/graph/private-port.h>
+#include <babeltrace/plugin/plugin.h>
+#include <babeltrace/ref.h>
+#include <glib.h>
+
+#include "tap/tap.h"
+
+#define NR_TESTS       14
+
+enum test {
+       TEST_NO_TS,
+       TEST_NO_UPSTREAM_CONNECTION,
+       TEST_EVENT_NOTIF_VS_THE_REST,
+       TEST_SIMPLE_4_PORTS,
+       TEST_4_PORTS_WITH_RETRIES,
+       TEST_SINGLE_END_THEN_MULTIPLE_FULL,
+       TEST_SINGLE_AGAIN_END_THEN_MULTIPLE_FULL,
+};
+
+enum test_event_type {
+       TEST_EV_TYPE_NOTIF_UNEXPECTED,
+       TEST_EV_TYPE_NOTIF_EVENT,
+       TEST_EV_TYPE_NOTIF_INACTIVITY,
+       TEST_EV_TYPE_NOTIF_PACKET_BEGIN,
+       TEST_EV_TYPE_NOTIF_PACKET_END,
+       TEST_EV_TYPE_AGAIN,
+       TEST_EV_TYPE_END,
+       TEST_EV_TYPE_SENTINEL,
+};
+
+struct test_event {
+       enum test_event_type type;
+       int64_t ts_ns;
+};
+
+struct source_muxer_sink {
+       struct bt_component *source;
+       struct bt_component *muxer;
+       struct bt_component *sink;
+};
+
+struct graph_listener_data {
+       struct bt_graph *graph;
+       struct bt_component *source;
+       struct bt_component *muxer;
+       struct bt_component *sink;
+};
+
+static bool debug = false;
+static enum test current_test;
+static GArray *test_events;
+static struct bt_clock_class_priority_map *src_cc_prio_map;
+static struct bt_clock_class_priority_map *src_empty_cc_prio_map;
+static struct bt_ctf_clock_class *src_clock_class;
+static struct bt_ctf_stream_class *src_stream_class;
+static struct bt_ctf_event_class *src_event_class;
+static struct bt_ctf_packet *src_packet;
+
+enum {
+       SEQ_END = -1,
+       SEQ_AGAIN = -2,
+       SEQ_PACKET_BEGIN = -3,
+       SEQ_PACKET_END = -4,
+};
+
+struct src_iter_user_data {
+       size_t iter_index;
+       int64_t *seq;
+       size_t at;
+};
+
+struct sink_user_data {
+       struct bt_notification_iterator *notif_iter;
+};
+
+static int64_t seq1[] = {
+       24, 53, 97, 105, 119, 210, 222, 240, 292, 317, 353, 407, 433,
+       473, 487, 504, 572, 615, 708, 766, 850, 852, 931, 951, 956, 996,
+       SEQ_END,
+};
+
+static int64_t seq2[] = {
+       51, 59, 68, 77, 91, 121, 139, 170, 179, 266, 352, 454, 478, 631,
+       644, 668, 714, 744, 750, 778, 790, 836, SEQ_END,
+};
+
+static int64_t seq3[] = {
+       8, 71, 209, 254, 298, 320, 350, 393, 419, 624, 651, 678, 717,
+       731, 733, 788, 819, 820, 857, 892, 903, 944, 998, SEQ_END,
+};
+
+static int64_t seq4[] = {
+       41, 56, 120, 138, 154, 228, 471, 479, 481, 525, 591, 605, 612,
+       618, 632, 670, 696, 825, 863, 867, 871, 884, 953, 985, 999,
+       SEQ_END,
+};
+
+static int64_t seq1_with_again[] = {
+       24, 53, 97, 105, 119, 210, SEQ_AGAIN, SEQ_AGAIN, 222, 240, 292,
+       317, 353, 407, 433, 473, 487, 504, 572, 615, 708, 766, 850, 852,
+       931, 951, 956, 996, SEQ_END,
+};
+
+static int64_t seq2_with_again[] = {
+       51, 59, 68, 77, 91, 121, 139, 170, 179, 266, 352, 454, 478, 631,
+       644, 668, 714, 744, 750, 778, 790, 836, SEQ_AGAIN, SEQ_AGAIN,
+       SEQ_END,
+};
+
+static int64_t seq3_with_again[] = {
+       8, 71, 209, 254, 298, 320, 350, 393, 419, 624, 651, SEQ_AGAIN,
+       SEQ_AGAIN, 678, 717, 731, 733, 788, 819, 820, 857, 892, 903,
+       944, 998, SEQ_END,
+};
+
+static int64_t seq4_with_again[] = {
+       SEQ_AGAIN, 41, 56, 120, 138, 154, 228, 471, 479, 481, 525, 591,
+       605, 612, 618, 632, 670, 696, 825, 863, 867, 871, 884, 953, 985,
+       999, SEQ_END,
+};
+
+static int64_t seq5[] = {
+       1, 4, 189, 1001, SEQ_END,
+};
+
+static int64_t seq6[] = {
+       1, 2, 12, SEQ_PACKET_BEGIN, 14, 19, SEQ_END,
+};
+
+static int64_t seq7[] = {
+       8, 9, SEQ_PACKET_BEGIN, 10, 13, SEQ_PACKET_END, 22, SEQ_END,
+};
+
+static
+void clear_test_events(void)
+{
+       g_array_set_size(test_events, 0);
+}
+
+static
+void print_test_event(FILE *fp, const struct test_event *event)
+{
+       fprintf(fp, "{ type = ");
+
+       switch (event->type) {
+       case TEST_EV_TYPE_NOTIF_UNEXPECTED:
+               fprintf(fp, "TEST_EV_TYPE_NOTIF_UNEXPECTED");
+               break;
+       case TEST_EV_TYPE_NOTIF_EVENT:
+               fprintf(fp, "TEST_EV_TYPE_NOTIF_EVENT");
+               break;
+       case TEST_EV_TYPE_NOTIF_INACTIVITY:
+               fprintf(fp, "TEST_EV_TYPE_NOTIF_INACTIVITY");
+               break;
+       case TEST_EV_TYPE_NOTIF_PACKET_BEGIN:
+               fprintf(fp, "TEST_EV_TYPE_NOTIF_PACKET_BEGIN");
+               break;
+       case TEST_EV_TYPE_NOTIF_PACKET_END:
+               fprintf(fp, "TEST_EV_TYPE_NOTIF_PACKET_END");
+               break;
+       case TEST_EV_TYPE_AGAIN:
+               fprintf(fp, "TEST_EV_TYPE_AGAIN");
+               break;
+       case TEST_EV_TYPE_END:
+               fprintf(fp, "TEST_EV_TYPE_END");
+               break;
+       case TEST_EV_TYPE_SENTINEL:
+               fprintf(fp, "TEST_EV_TYPE_SENTINEL");
+               break;
+       default:
+               fprintf(fp, "(UNKNOWN)");
+               break;
+       }
+
+       switch (event->type) {
+       case TEST_EV_TYPE_NOTIF_EVENT:
+       case TEST_EV_TYPE_NOTIF_INACTIVITY:
+               fprintf(fp, ", ts-ns = %" PRId64, event->ts_ns);
+       default:
+               break;
+       }
+
+       fprintf(fp, " }");
+}
+
+static
+void append_test_event(struct test_event *event)
+{
+       g_array_append_val(test_events, *event);
+}
+
+static
+bool compare_single_test_events(const struct test_event *ev_a,
+               const struct test_event *ev_b)
+{
+       if (debug) {
+               fprintf(stderr, ":: Comparing test events: ");
+               print_test_event(stderr, ev_a);
+               fprintf(stderr, " vs. ");
+               print_test_event(stderr, ev_b);
+               fprintf(stderr, "\n");
+       }
+
+       if (ev_a->type != ev_b->type) {
+               return false;
+       }
+
+       switch (ev_a->type) {
+               case TEST_EV_TYPE_NOTIF_EVENT:
+               case TEST_EV_TYPE_NOTIF_INACTIVITY:
+                       if (ev_a->ts_ns != ev_b->ts_ns) {
+                               return false;
+                       }
+                       break;
+               default:
+                       break;
+       }
+
+       return true;
+}
+
+static
+bool compare_test_events(const struct test_event *expected_events)
+{
+       const struct test_event *expected_event = expected_events;
+       size_t i = 0;
+
+       assert(expected_events);
+
+       while (true) {
+               const struct test_event *event;
+
+               if (expected_event->type == TEST_EV_TYPE_SENTINEL) {
+                       break;
+               }
+
+               if (i >= test_events->len) {
+                       return false;
+               }
+
+               event = &g_array_index(test_events, struct test_event, i);
+
+               if (!compare_single_test_events(event, expected_event)) {
+                       return false;
+               }
+
+               i++;
+               expected_event++;
+       }
+
+       if (i != test_events->len) {
+               return false;
+       }
+
+       return true;
+}
+
+static
+void init_static_data(void)
+{
+       int ret;
+       struct bt_ctf_trace *trace;
+       struct bt_ctf_stream *stream;
+       struct bt_ctf_field_type *empty_struct_ft;
+
+       /* Test events */
+       test_events = g_array_new(FALSE, TRUE, sizeof(struct test_event));
+       assert(test_events);
+
+       /* Metadata */
+       empty_struct_ft = bt_ctf_field_type_structure_create();
+       assert(empty_struct_ft);
+       trace = bt_ctf_trace_create();
+       assert(trace);
+       ret = bt_ctf_trace_set_native_byte_order(trace,
+               BT_CTF_BYTE_ORDER_LITTLE_ENDIAN);
+       assert(ret == 0);
+       ret = bt_ctf_trace_set_packet_header_type(trace, empty_struct_ft);
+       assert(ret == 0);
+       src_clock_class = bt_ctf_clock_class_create("my-clock");
+       assert(src_clock_class);
+       ret = bt_ctf_clock_class_set_is_absolute(src_clock_class, 1);
+       assert(ret == 0);
+       ret = bt_ctf_trace_add_clock_class(trace, src_clock_class);
+       assert(ret == 0);
+       src_empty_cc_prio_map = bt_clock_class_priority_map_create();
+       assert(src_empty_cc_prio_map);
+       src_cc_prio_map = bt_clock_class_priority_map_create();
+       assert(src_cc_prio_map);
+       ret = bt_clock_class_priority_map_add_clock_class(src_cc_prio_map,
+               src_clock_class, 0);
+       assert(ret == 0);
+       src_stream_class = bt_ctf_stream_class_create("my-stream-class");
+       assert(src_stream_class);
+       ret = bt_ctf_stream_class_set_packet_context_type(src_stream_class,
+               empty_struct_ft);
+       assert(ret == 0);
+       ret = bt_ctf_stream_class_set_event_header_type(src_stream_class,
+               empty_struct_ft);
+       assert(ret == 0);
+       ret = bt_ctf_stream_class_set_event_context_type(src_stream_class,
+               empty_struct_ft);
+       assert(ret == 0);
+       src_event_class = bt_ctf_event_class_create("my-event-class");
+       ret = bt_ctf_event_class_set_context_type(src_event_class,
+               empty_struct_ft);
+       assert(ret == 0);
+       ret = bt_ctf_event_class_set_context_type(src_event_class,
+               empty_struct_ft);
+       assert(ret == 0);
+       ret = bt_ctf_stream_class_add_event_class(src_stream_class,
+               src_event_class);
+       assert(ret == 0);
+       ret = bt_ctf_trace_add_stream_class(trace, src_stream_class);
+       assert(ret == 0);
+       stream = bt_ctf_stream_create(src_stream_class, "my-stream");
+       assert(stream);
+       src_packet = bt_ctf_packet_create(stream);
+       assert(src_packet);
+
+       bt_put(trace);
+       bt_put(stream);
+       bt_put(empty_struct_ft);
+}
+
+static
+void fini_static_data(void)
+{
+       /* Test events */
+       g_array_free(test_events, TRUE);
+
+       /* Metadata */
+       bt_put(src_empty_cc_prio_map);
+       bt_put(src_cc_prio_map);
+       bt_put(src_clock_class);
+       bt_put(src_stream_class);
+       bt_put(src_event_class);
+}
+
+static
+void src_iter_finalize(
+               struct bt_private_notification_iterator *private_notification_iterator)
+{
+       struct src_iter_user_data *user_data =
+               bt_private_notification_iterator_get_user_data(
+                       private_notification_iterator);
+
+       if (user_data) {
+               g_free(user_data);
+       }
+}
+
+static
+enum bt_notification_iterator_status src_iter_init(
+               struct bt_private_notification_iterator *priv_notif_iter,
+               struct bt_private_port *private_port)
+{
+       struct src_iter_user_data *user_data =
+               g_new0(struct src_iter_user_data, 1);
+       struct bt_port *port = bt_port_from_private_port(private_port);
+       const char *port_name;
+       int ret;
+
+       assert(user_data);
+       assert(port);
+       ret = bt_private_notification_iterator_set_user_data(priv_notif_iter,
+               user_data);
+       assert(ret == 0);
+       port_name = bt_port_get_name(port);
+       assert(port_name);
+       user_data->iter_index = port_name[3] - '0';
+       bt_put(port);
+
+       switch (current_test) {
+       case TEST_NO_TS:
+               if (user_data->iter_index == 1) {
+                       user_data->seq = seq5;
+               }
+               break;
+       case TEST_EVENT_NOTIF_VS_THE_REST:
+               if (user_data->iter_index == 0) {
+                       user_data->seq = seq6;
+               } else {
+                       user_data->seq = seq7;
+               }
+               break;
+       case TEST_SIMPLE_4_PORTS:
+               if (user_data->iter_index == 0) {
+                       user_data->seq = seq1;
+               } else if (user_data->iter_index == 1) {
+                       user_data->seq = seq2;
+               } else if (user_data->iter_index == 2) {
+                       user_data->seq = seq3;
+               } else {
+                       user_data->seq = seq4;
+               }
+               break;
+       case TEST_4_PORTS_WITH_RETRIES:
+               if (user_data->iter_index == 0) {
+                       user_data->seq = seq1_with_again;
+               } else if (user_data->iter_index == 1) {
+                       user_data->seq = seq2_with_again;
+               } else if (user_data->iter_index == 2) {
+                       user_data->seq = seq3_with_again;
+               } else {
+                       user_data->seq = seq4_with_again;
+               }
+               break;
+       case TEST_SINGLE_END_THEN_MULTIPLE_FULL:
+       case TEST_SINGLE_AGAIN_END_THEN_MULTIPLE_FULL:
+               if (user_data->iter_index == 0) {
+                       /* Ignore: this iterator only returns END */
+               } else if (user_data->iter_index == 1) {
+                       user_data->seq = seq2;
+               } else {
+                       user_data->seq = seq3;
+               }
+               break;
+       default:
+               assert(false);
+       }
+
+       return BT_NOTIFICATION_ITERATOR_STATUS_OK;
+}
+
+static
+struct bt_ctf_event *src_create_event(int64_t ts_ns)
+{
+       struct bt_ctf_event *event = bt_ctf_event_create(src_event_class);
+       int ret;
+
+       assert(event);
+       ret = bt_ctf_event_set_packet(event, src_packet);
+       assert(ret == 0);
+
+       if (ts_ns != -1) {
+               struct bt_ctf_clock_value *clock_value;
+
+               clock_value = bt_ctf_clock_value_create(src_clock_class,
+                       (uint64_t) ts_ns);
+               assert(clock_value);
+               ret = bt_ctf_event_set_clock_value(event, clock_value);
+               bt_put(clock_value);
+       }
+
+       return event;
+}
+
+static
+struct bt_notification_iterator_next_return src_iter_next_seq(
+               struct src_iter_user_data *user_data)
+{
+       struct bt_notification_iterator_next_return next_return = {
+               .status = BT_NOTIFICATION_ITERATOR_STATUS_OK,
+       };
+       int64_t cur_ts_ns;
+
+       assert(user_data->seq);
+       cur_ts_ns = user_data->seq[user_data->at];
+
+       switch (cur_ts_ns) {
+       case SEQ_END:
+               next_return.status =
+                       BT_NOTIFICATION_ITERATOR_STATUS_END;
+               break;
+       case SEQ_AGAIN:
+               next_return.status =
+                       BT_NOTIFICATION_ITERATOR_STATUS_AGAIN;
+               break;
+       case SEQ_PACKET_BEGIN:
+               next_return.notification =
+                       bt_notification_packet_begin_create(src_packet);
+               assert(next_return.notification);
+               break;
+       case SEQ_PACKET_END:
+               next_return.notification =
+                       bt_notification_packet_end_create(src_packet);
+               assert(next_return.notification);
+               break;
+       default:
+       {
+               struct bt_ctf_event *event = src_create_event(cur_ts_ns);
+
+               assert(event);
+               next_return.notification = bt_notification_event_create(event,
+                       src_cc_prio_map);
+               bt_put(event);
+               assert(next_return.notification);
+               break;
+       }
+       }
+
+       if (next_return.status != BT_NOTIFICATION_ITERATOR_STATUS_END) {
+               user_data->at++;
+       }
+
+       return next_return;
+}
+
+static
+struct bt_notification_iterator_next_return src_iter_next(
+               struct bt_private_notification_iterator *priv_iterator)
+{
+       struct bt_notification_iterator_next_return next_return = {
+               .status = BT_NOTIFICATION_ITERATOR_STATUS_OK,
+               .notification = NULL,
+       };
+       struct src_iter_user_data *user_data =
+               bt_private_notification_iterator_get_user_data(priv_iterator);
+       struct bt_private_component *private_component =
+               bt_private_notification_iterator_get_private_component(priv_iterator);
+
+       assert(user_data);
+       assert(private_component);
+
+       switch (current_test) {
+       case TEST_NO_TS:
+               if (user_data->iter_index == 0) {
+                       if (user_data->at == 0) {
+                               next_return.notification =
+                                       bt_notification_packet_begin_create(src_packet);
+                               assert(next_return.notification);
+                       } else if (user_data->at < 6) {
+                               struct bt_ctf_event *event = src_create_event(-1);
+
+                               assert(event);
+                               next_return.notification =
+                                       bt_notification_event_create(event,
+                                               src_empty_cc_prio_map);
+                               assert(next_return.notification);
+                               bt_put(event);
+                       } else {
+                               next_return.status =
+                                       BT_NOTIFICATION_ITERATOR_STATUS_END;
+                       }
+
+                       user_data->at++;
+               } else {
+                       next_return = src_iter_next_seq(user_data);
+               }
+               break;
+       case TEST_EVENT_NOTIF_VS_THE_REST:
+       case TEST_SIMPLE_4_PORTS:
+       case TEST_4_PORTS_WITH_RETRIES:
+               next_return = src_iter_next_seq(user_data);
+               break;
+       case TEST_SINGLE_END_THEN_MULTIPLE_FULL:
+               if (user_data->iter_index == 0) {
+                       struct bt_private_port *priv_port;
+
+                       priv_port = bt_private_component_source_add_output_private_port(
+                               private_component, "out1");
+                       assert(priv_port);
+                       bt_put(priv_port);
+                       priv_port = bt_private_component_source_add_output_private_port(
+                               private_component, "out2");
+                       assert(priv_port);
+                       bt_put(priv_port);
+                       next_return.status = BT_NOTIFICATION_ITERATOR_STATUS_END;
+               } else {
+                       next_return = src_iter_next_seq(user_data);
+               }
+               break;
+       case TEST_SINGLE_AGAIN_END_THEN_MULTIPLE_FULL:
+               if (user_data->iter_index == 0) {
+                       if (user_data->at == 0) {
+                               next_return.status = BT_NOTIFICATION_ITERATOR_STATUS_AGAIN;
+                               user_data->at++;
+                       } else {
+                               struct bt_private_port *priv_port;
+
+                               priv_port = bt_private_component_source_add_output_private_port(
+                                       private_component, "out1");
+                               assert(priv_port);
+                               bt_put(priv_port);
+                               priv_port = bt_private_component_source_add_output_private_port(
+                                       private_component, "out2");
+                               assert(priv_port);
+                               bt_put(priv_port);
+                               next_return.status = BT_NOTIFICATION_ITERATOR_STATUS_END;
+                       }
+               } else {
+                       next_return = src_iter_next_seq(user_data);
+               }
+               break;
+       default:
+               assert(false);
+       }
+
+       bt_put(private_component);
+       return next_return;
+}
+
+static
+enum bt_component_status src_init(
+               struct bt_private_component *private_component,
+               struct bt_value *params, void *init_method_data)
+{
+       struct bt_private_port *priv_port;
+       int ret;
+       size_t nb_ports;
+
+       priv_port = bt_private_component_source_get_default_output_private_port(
+               private_component);
+       if (priv_port) {
+               ret = bt_private_port_remove_from_component(priv_port);
+               assert(ret == 0);
+               bt_put(priv_port);
+       }
+
+       switch (current_test) {
+       case TEST_NO_TS:
+       case TEST_EVENT_NOTIF_VS_THE_REST:
+               nb_ports = 2;
+               break;
+       case TEST_SINGLE_END_THEN_MULTIPLE_FULL:
+       case TEST_SINGLE_AGAIN_END_THEN_MULTIPLE_FULL:
+               nb_ports = 1;
+               break;
+       default:
+               nb_ports = 4;
+               break;
+       }
+
+       if (nb_ports >= 1) {
+               priv_port = bt_private_component_source_add_output_private_port(
+                       private_component, "out0");
+               assert(priv_port);
+               bt_put(priv_port);
+       }
+
+       if (nb_ports >= 2) {
+               priv_port = bt_private_component_source_add_output_private_port(
+                       private_component, "out1");
+               assert(priv_port);
+               bt_put(priv_port);
+       }
+
+       if (nb_ports >= 3) {
+               priv_port = bt_private_component_source_add_output_private_port(
+                       private_component, "out2");
+               assert(priv_port);
+               bt_put(priv_port);
+       }
+
+       if (nb_ports >= 4) {
+               priv_port = bt_private_component_source_add_output_private_port(
+                       private_component, "out3");
+               assert(priv_port);
+               bt_put(priv_port);
+       }
+
+       return BT_COMPONENT_STATUS_OK;
+}
+
+static
+void src_finalize(struct bt_private_component *private_component)
+{
+}
+
+static
+enum bt_component_status sink_consume(
+               struct bt_private_component *priv_component)
+{
+       enum bt_component_status ret = BT_COMPONENT_STATUS_OK;
+       struct bt_notification *notification = NULL;
+       struct sink_user_data *user_data =
+               bt_private_component_get_user_data(priv_component);
+       enum bt_notification_iterator_status it_ret;
+       struct test_event test_event;
+       bool do_append_test_event = true;
+
+       assert(user_data && user_data->notif_iter);
+       it_ret = bt_notification_iterator_next(user_data->notif_iter);
+
+       if (it_ret < 0) {
+               ret = BT_COMPONENT_STATUS_ERROR;
+               do_append_test_event = false;
+               goto end;
+       }
+
+       switch (it_ret) {
+       case BT_NOTIFICATION_ITERATOR_STATUS_END:
+               test_event.type = TEST_EV_TYPE_END;
+               ret = BT_COMPONENT_STATUS_END;
+               BT_PUT(user_data->notif_iter);
+               goto end;
+       case BT_NOTIFICATION_ITERATOR_STATUS_AGAIN:
+               test_event.type = TEST_EV_TYPE_AGAIN;
+               ret = BT_COMPONENT_STATUS_AGAIN;
+               goto end;
+       default:
+               break;
+       }
+
+       notification = bt_notification_iterator_get_notification(
+               user_data->notif_iter);
+       assert(notification);
+
+       switch (bt_notification_get_type(notification)) {
+       case BT_NOTIFICATION_TYPE_EVENT:
+       {
+               struct bt_ctf_event *event;
+               struct bt_clock_class_priority_map *cc_prio_map;
+
+               test_event.type = TEST_EV_TYPE_NOTIF_EVENT;
+               cc_prio_map =
+                       bt_notification_event_get_clock_class_priority_map(
+                               notification);
+               assert(cc_prio_map);
+               event = bt_notification_event_get_event(notification);
+               assert(event);
+
+               if (bt_clock_class_priority_map_get_clock_class_count(cc_prio_map) > 0) {
+                       struct bt_ctf_clock_value *clock_value;
+                       struct bt_ctf_clock_class *clock_class =
+                               bt_clock_class_priority_map_get_highest_priority_clock_class(
+                                       cc_prio_map);
+
+                       assert(clock_class);
+                       clock_value = bt_ctf_event_get_clock_value(event,
+                               clock_class);
+                       assert(clock_value);
+                       ret = bt_ctf_clock_value_get_value_ns_from_epoch(
+                                       clock_value, &test_event.ts_ns);
+                       assert(ret == 0);
+                       bt_put(clock_value);
+                       bt_put(clock_class);
+               } else {
+                       test_event.ts_ns = -1;
+               }
+
+               bt_put(cc_prio_map);
+               bt_put(event);
+               break;
+       }
+       case BT_NOTIFICATION_TYPE_INACTIVITY:
+       {
+               struct bt_clock_class_priority_map *cc_prio_map;
+
+               test_event.type = TEST_EV_TYPE_NOTIF_INACTIVITY;
+               cc_prio_map = bt_notification_event_get_clock_class_priority_map(
+                       notification);
+               assert(cc_prio_map);
+
+               if (bt_clock_class_priority_map_get_clock_class_count(cc_prio_map) > 0) {
+                       struct bt_ctf_clock_value *clock_value;
+                       struct bt_ctf_clock_class *clock_class =
+                               bt_clock_class_priority_map_get_highest_priority_clock_class(
+                                       cc_prio_map);
+
+                       assert(clock_class);
+                       clock_value =
+                               bt_notification_inactivity_get_clock_value(
+                                       notification, clock_class);
+                       assert(clock_value);
+                       ret = bt_ctf_clock_value_get_value_ns_from_epoch(
+                                       clock_value, &test_event.ts_ns);
+                       assert(ret == 0);
+                       bt_put(clock_value);
+                       bt_put(clock_class);
+               } else {
+                       test_event.ts_ns = -1;
+               }
+
+               bt_put(cc_prio_map);
+               break;
+       }
+       case BT_NOTIFICATION_TYPE_PACKET_BEGIN:
+               test_event.type = TEST_EV_TYPE_NOTIF_PACKET_BEGIN;
+               break;
+       case BT_NOTIFICATION_TYPE_PACKET_END:
+               test_event.type = TEST_EV_TYPE_NOTIF_PACKET_END;
+               break;
+       default:
+               test_event.type = TEST_EV_TYPE_NOTIF_UNEXPECTED;
+               break;
+       }
+
+end:
+       if (do_append_test_event) {
+               append_test_event(&test_event);
+       }
+
+       bt_put(notification);
+       return ret;
+}
+
+static
+void sink_port_connected(struct bt_private_component *private_component,
+               struct bt_private_port *self_private_port,
+               struct bt_port *other_port)
+{
+       struct bt_private_connection *priv_conn =
+               bt_private_port_get_private_connection(self_private_port);
+       struct sink_user_data *user_data = bt_private_component_get_user_data(
+               private_component);
+
+       assert(user_data);
+       assert(priv_conn);
+       user_data->notif_iter =
+               bt_private_connection_create_notification_iterator(priv_conn);
+       assert(user_data->notif_iter);
+       bt_put(priv_conn);
+}
+
+static
+enum bt_component_status sink_init(
+               struct bt_private_component *private_component,
+               struct bt_value *params, void *init_method_data)
+{
+       struct sink_user_data *user_data = g_new0(struct sink_user_data, 1);
+       int ret;
+
+       assert(user_data);
+       ret = bt_private_component_set_user_data(private_component,
+               user_data);
+       assert(ret == 0);
+       return BT_COMPONENT_STATUS_OK;
+}
+
+static
+void sink_finalize(struct bt_private_component *private_component)
+{
+       struct sink_user_data *user_data = bt_private_component_get_user_data(
+               private_component);
+
+       if (user_data) {
+               bt_put(user_data->notif_iter);
+               g_free(user_data);
+       }
+}
+
+static
+void create_source_muxer_sink(struct bt_component **source,
+               struct bt_component **muxer,
+               struct bt_component **sink)
+{
+       struct bt_component_class *src_comp_class;
+       struct bt_component_class *muxer_comp_class;
+       struct bt_component_class *sink_comp_class;
+       int ret;
+
+       /* Create source component */
+       src_comp_class = bt_component_class_source_create("src", src_iter_next);
+       assert(src_comp_class);
+       ret = bt_component_class_set_init_method(src_comp_class, src_init);
+       assert(ret == 0);
+       ret = bt_component_class_set_finalize_method(src_comp_class,
+               src_finalize);
+       assert(ret == 0);
+       ret = bt_component_class_source_set_notification_iterator_init_method(
+               src_comp_class, src_iter_init);
+       assert(ret == 0);
+       ret = bt_component_class_source_set_notification_iterator_finalize_method(
+               src_comp_class, src_iter_finalize);
+       assert(ret == 0);
+       *source = bt_component_create(src_comp_class, "source", NULL);
+       assert(*source);
+
+       /* Create muxer component */
+       muxer_comp_class = bt_plugin_find_component_class("utils", "muxer",
+               BT_COMPONENT_CLASS_TYPE_FILTER);
+       assert(muxer_comp_class);
+       *muxer = bt_component_create(muxer_comp_class, "muxer", NULL);
+       assert(*muxer);
+
+       /* Create sink component */
+       sink_comp_class = bt_component_class_sink_create("sink", sink_consume);
+       assert(sink_comp_class);
+       ret = bt_component_class_set_init_method(sink_comp_class, sink_init);
+       assert(ret == 0);
+       ret = bt_component_class_set_finalize_method(sink_comp_class,
+               sink_finalize);
+       ret = bt_component_class_set_port_connected_method(sink_comp_class,
+               sink_port_connected);
+       assert(ret == 0);
+       *sink = bt_component_create(sink_comp_class, "sink", NULL);
+
+       bt_put(src_comp_class);
+       bt_put(muxer_comp_class);
+       bt_put(sink_comp_class);
+}
+
+static
+void do_std_test(enum test test, const char *name,
+               const struct test_event *expected_test_events,
+               bool with_upstream)
+{
+       struct bt_component *src_comp;
+       struct bt_component *muxer_comp;
+       struct bt_component *sink_comp;
+       struct bt_port *upstream_port;
+       struct bt_port *downstream_port;
+       struct bt_graph *graph;
+       size_t i;
+       uint64_t count;
+       void *conn;
+       int ret;
+       enum bt_graph_status graph_status = BT_GRAPH_STATUS_OK;
+
+       clear_test_events();
+       current_test = test;
+       diag("test: %s", name);
+       create_source_muxer_sink(&src_comp, &muxer_comp, &sink_comp);
+       graph = bt_graph_create();
+       assert(graph);
+
+       /* Connect source output ports to muxer input ports */
+       if (with_upstream) {
+               ret = bt_component_source_get_output_port_count(src_comp, &count);
+               assert(ret == 0);
+
+               for (i = 0; i < count; i++) {
+                       upstream_port = bt_component_source_get_output_port_at_index(
+                               src_comp, i);
+                       assert(upstream_port);
+                       downstream_port = bt_component_filter_get_input_port_at_index(
+                               muxer_comp, i);
+                       assert(downstream_port);
+                       conn = bt_graph_connect_ports(graph,
+                               upstream_port, downstream_port);
+                       assert(conn);
+                       bt_put(conn);
+                       bt_put(upstream_port);
+                       bt_put(downstream_port);
+               }
+       }
+
+       /* Connect muxer output port to sink input port */
+       upstream_port = bt_component_filter_get_output_port(muxer_comp,
+               "out");
+       assert(upstream_port);
+       downstream_port = bt_component_sink_get_default_input_port(sink_comp);
+       assert(downstream_port);
+       conn = bt_graph_connect_ports(graph, upstream_port, downstream_port);
+       assert(conn);
+       bt_put(conn);
+       bt_put(upstream_port);
+       bt_put(downstream_port);
+
+       while (graph_status == BT_GRAPH_STATUS_OK ||
+                       graph_status == BT_GRAPH_STATUS_AGAIN) {
+               graph_status = bt_graph_run(graph);
+       }
+
+       ok(graph_status == BT_GRAPH_STATUS_END, "graph finishes without any error");
+       ok(compare_test_events(expected_test_events),
+               "the produced sequence of test events is the expected one");
+
+       bt_put(src_comp);
+       bt_put(muxer_comp);
+       bt_put(sink_comp);
+       bt_put(graph);
+}
+
+static
+void test_no_ts(void)
+{
+       const struct test_event expected_test_events[] = {
+               { .type = TEST_EV_TYPE_NOTIF_PACKET_BEGIN, },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = -1, },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = -1, },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = -1, },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = -1, },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = -1, },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 1, },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 4, },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 189, },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 1001, },
+               { .type = TEST_EV_TYPE_END, },
+               { .type = TEST_EV_TYPE_SENTINEL, },
+       };
+
+       do_std_test(TEST_NO_TS, "event notifications with no time",
+               expected_test_events, true);
+}
+
+static
+void test_no_upstream_connection(void)
+{
+       const struct test_event expected_test_events[] = {
+               { .type = TEST_EV_TYPE_END, },
+               { .type = TEST_EV_TYPE_SENTINEL, },
+       };
+
+       do_std_test(TEST_NO_UPSTREAM_CONNECTION, "no upstream connection",
+               expected_test_events, false);
+}
+
+static
+void test_event_notif_vs_the_rest(void)
+{
+       const struct test_event expected_test_events[] = {
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 1, },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 2, },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 8, },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 9, },
+               { .type = TEST_EV_TYPE_NOTIF_PACKET_BEGIN, },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 10, },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 12, },
+               { .type = TEST_EV_TYPE_NOTIF_PACKET_BEGIN, },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 13, },
+               { .type = TEST_EV_TYPE_NOTIF_PACKET_END, },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 14, },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 19, },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 22, },
+               { .type = TEST_EV_TYPE_END, },
+               { .type = TEST_EV_TYPE_SENTINEL, },
+       };
+
+       do_std_test(TEST_EVENT_NOTIF_VS_THE_REST, "event notifications vs. the rest",
+               expected_test_events, true);
+}
+
+
+static
+void test_simple_4_ports(void)
+{
+       const struct test_event expected_test_events[] = {
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 8 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 24 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 41 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 51 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 53 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 56 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 59 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 68 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 71 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 77 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 91 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 97 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 105 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 119 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 120 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 121 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 138 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 139 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 154 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 170 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 179 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 209 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 210 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 222 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 228 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 240 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 254 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 266 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 292 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 298 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 317 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 320 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 350 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 352 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 353 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 393 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 407 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 419 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 433 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 454 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 471 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 473 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 478 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 479 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 481 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 487 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 504 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 525 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 572 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 591 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 605 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 612 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 615 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 618 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 624 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 631 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 632 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 644 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 651 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 668 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 670 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 678 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 696 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 708 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 714 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 717 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 731 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 733 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 744 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 750 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 766 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 778 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 788 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 790 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 819 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 820 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 825 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 836 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 850 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 852 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 857 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 863 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 867 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 871 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 884 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 892 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 903 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 931 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 944 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 951 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 953 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 956 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 985 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 996 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 998 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 999 },
+               { .type = TEST_EV_TYPE_END, },
+               { .type = TEST_EV_TYPE_SENTINEL, },
+       };
+
+       do_std_test(TEST_SIMPLE_4_PORTS, "simple: 4 ports without retries",
+               expected_test_events, true);
+}
+
+static
+void test_4_ports_with_retries(void)
+{
+       const struct test_event expected_test_events[] = {
+               { .type = TEST_EV_TYPE_AGAIN, },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 8 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 24 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 41 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 51 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 53 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 56 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 59 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 68 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 71 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 77 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 91 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 97 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 105 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 119 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 120 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 121 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 138 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 139 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 154 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 170 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 179 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 209 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 210 },
+               { .type = TEST_EV_TYPE_AGAIN, },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 222 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 228 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 240 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 254 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 266 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 292 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 298 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 317 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 320 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 350 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 352 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 353 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 393 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 407 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 419 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 433 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 454 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 471 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 473 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 478 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 479 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 481 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 487 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 504 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 525 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 572 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 591 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 605 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 612 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 615 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 618 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 624 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 631 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 632 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 644 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 651 },
+               { .type = TEST_EV_TYPE_AGAIN, },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 668 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 670 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 678 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 696 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 708 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 714 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 717 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 731 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 733 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 744 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 750 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 766 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 778 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 788 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 790 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 819 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 820 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 825 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 836 },
+               { .type = TEST_EV_TYPE_AGAIN, },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 850 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 852 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 857 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 863 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 867 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 871 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 884 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 892 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 903 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 931 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 944 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 951 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 953 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 956 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 985 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 996 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 998 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 999 },
+               { .type = TEST_EV_TYPE_END, },
+               { .type = TEST_EV_TYPE_SENTINEL, },
+       };
+
+       do_std_test(TEST_4_PORTS_WITH_RETRIES, "4 ports with retries",
+               expected_test_events, true);
+}
+
+static
+void connect_port_to_first_avail_muxer_port(struct bt_graph *graph,
+               struct bt_port *source_port,
+               struct bt_component *muxer_comp)
+{
+       struct bt_port *avail_muxer_port = NULL;
+       void *conn;
+       uint64_t i;
+       uint64_t count;
+       int ret;
+
+       ret = bt_component_filter_get_input_port_count(muxer_comp, &count);
+       assert(ret == 0);
+
+       for (i = 0; i < count; i++) {
+               struct bt_port *muxer_port =
+                       bt_component_filter_get_input_port_at_index(
+                               muxer_comp, i);
+
+               assert(muxer_port);
+
+               if (!bt_port_is_connected(muxer_port)) {
+                       BT_MOVE(avail_muxer_port, muxer_port);
+                       break;
+               } else {
+                       bt_put(muxer_port);
+               }
+       }
+
+       conn = bt_graph_connect_ports(graph, source_port, avail_muxer_port);
+       assert(conn);
+       bt_put(conn);
+       bt_put(avail_muxer_port);
+}
+
+static
+void graph_port_added_listener_connect_to_avail_muxer_port(struct bt_port *port,
+               void *data)
+{
+       struct graph_listener_data *graph_listener_data = data;
+       struct bt_component *comp;
+
+       comp = bt_port_get_component(port);
+       assert(comp);
+
+       if (comp != graph_listener_data->source) {
+               goto end;
+       }
+
+       connect_port_to_first_avail_muxer_port(graph_listener_data->graph,
+               port, graph_listener_data->muxer);
+
+end:
+       bt_put(comp);
+}
+
+static
+void test_single_end_then_multiple_full(void)
+{
+       struct bt_component *src_comp;
+       struct bt_component *muxer_comp;
+       struct bt_component *sink_comp;
+       struct bt_port *upstream_port;
+       struct bt_port *downstream_port;
+       struct bt_graph *graph;
+       size_t i;
+       uint64_t count;
+       void *conn;
+       int ret;
+       enum bt_graph_status graph_status = BT_GRAPH_STATUS_OK;
+       struct graph_listener_data graph_listener_data;
+       const struct test_event expected_test_events[] = {
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 8 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 51 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 59 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 68 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 71 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 77 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 91 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 121 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 139 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 170 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 179 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 209 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 254 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 266 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 298 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 320 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 350 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 352 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 393 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 419 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 454 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 478 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 624 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 631 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 644 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 651 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 668 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 678 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 714 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 717 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 731 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 733 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 744 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 750 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 778 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 788 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 790 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 819 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 820 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 836 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 857 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 892 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 903 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 944 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 998 },
+               { .type = TEST_EV_TYPE_END, },
+               { .type = TEST_EV_TYPE_SENTINEL, },
+       };
+
+       clear_test_events();
+       current_test = TEST_SINGLE_END_THEN_MULTIPLE_FULL;
+       diag("test: single end then multiple full");
+       create_source_muxer_sink(&src_comp, &muxer_comp, &sink_comp);
+       graph = bt_graph_create();
+       assert(graph);
+       graph_listener_data.graph = graph;
+       graph_listener_data.source = src_comp;
+       graph_listener_data.muxer = muxer_comp;
+       graph_listener_data.sink = sink_comp;
+       ret = bt_graph_add_port_added_listener(graph,
+               graph_port_added_listener_connect_to_avail_muxer_port,
+               &graph_listener_data);
+       assert(ret == 0);
+
+       /* Connect source output ports to muxer input ports */
+       ret = bt_component_source_get_output_port_count(src_comp, &count);
+       assert(ret == 0);
+
+       for (i = 0; i < count; i++) {
+               upstream_port = bt_component_source_get_output_port_at_index(
+                       src_comp, i);
+               assert(upstream_port);
+               connect_port_to_first_avail_muxer_port(graph,
+                       upstream_port, muxer_comp);
+               bt_put(upstream_port);
+       }
+
+       /* Connect muxer output port to sink input port */
+       upstream_port = bt_component_filter_get_output_port(muxer_comp,
+               "out");
+       assert(upstream_port);
+       downstream_port = bt_component_sink_get_default_input_port(sink_comp);
+       assert(downstream_port);
+       conn = bt_graph_connect_ports(graph, upstream_port, downstream_port);
+       assert(conn);
+       bt_put(conn);
+       bt_put(upstream_port);
+       bt_put(downstream_port);
+
+       while (graph_status == BT_GRAPH_STATUS_OK ||
+                       graph_status == BT_GRAPH_STATUS_AGAIN) {
+               graph_status = bt_graph_run(graph);
+       }
+
+       ok(graph_status == BT_GRAPH_STATUS_END, "graph finishes without any error");
+       ok(compare_test_events(expected_test_events),
+               "the produced sequence of test events is the expected one");
+
+       bt_put(src_comp);
+       bt_put(muxer_comp);
+       bt_put(sink_comp);
+       bt_put(graph);
+}
+
+static
+void test_single_again_end_then_multiple_full(void)
+{
+       struct bt_component *src_comp;
+       struct bt_component *muxer_comp;
+       struct bt_component *sink_comp;
+       struct bt_port *upstream_port;
+       struct bt_port *downstream_port;
+       struct bt_graph *graph;
+       size_t i;
+       uint64_t count;
+       void *conn;
+       int ret;
+       enum bt_graph_status graph_status = BT_GRAPH_STATUS_OK;
+       struct graph_listener_data graph_listener_data;
+       const struct test_event expected_test_events[] = {
+               { .type = TEST_EV_TYPE_AGAIN, },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 8 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 51 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 59 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 68 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 71 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 77 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 91 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 121 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 139 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 170 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 179 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 209 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 254 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 266 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 298 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 320 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 350 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 352 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 393 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 419 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 454 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 478 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 624 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 631 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 644 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 651 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 668 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 678 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 714 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 717 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 731 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 733 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 744 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 750 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 778 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 788 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 790 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 819 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 820 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 836 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 857 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 892 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 903 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 944 },
+               { .type = TEST_EV_TYPE_NOTIF_EVENT, .ts_ns = 998 },
+               { .type = TEST_EV_TYPE_END, },
+               { .type = TEST_EV_TYPE_SENTINEL, },
+       };
+
+       clear_test_events();
+       current_test = TEST_SINGLE_AGAIN_END_THEN_MULTIPLE_FULL;
+       diag("test: single again then end then multiple full");
+       create_source_muxer_sink(&src_comp, &muxer_comp, &sink_comp);
+       graph = bt_graph_create();
+       assert(graph);
+       graph_listener_data.graph = graph;
+       graph_listener_data.source = src_comp;
+       graph_listener_data.muxer = muxer_comp;
+       graph_listener_data.sink = sink_comp;
+       ret = bt_graph_add_port_added_listener(graph,
+               graph_port_added_listener_connect_to_avail_muxer_port,
+               &graph_listener_data);
+       assert(ret == 0);
+
+       /* Connect source output ports to muxer input ports */
+       ret = bt_component_source_get_output_port_count(src_comp, &count);
+       assert(ret == 0);
+
+       for (i = 0; i < count; i++) {
+               upstream_port = bt_component_source_get_output_port_at_index(
+                       src_comp, i);
+               assert(upstream_port);
+               connect_port_to_first_avail_muxer_port(graph,
+                       upstream_port, muxer_comp);
+               bt_put(upstream_port);
+       }
+
+       /* Connect muxer output port to sink input port */
+       upstream_port = bt_component_filter_get_output_port(muxer_comp,
+               "out");
+       assert(upstream_port);
+       downstream_port = bt_component_sink_get_default_input_port(sink_comp);
+       assert(downstream_port);
+       conn = bt_graph_connect_ports(graph, upstream_port, downstream_port);
+       assert(conn);
+       bt_put(conn);
+       bt_put(upstream_port);
+       bt_put(downstream_port);
+
+       while (graph_status == BT_GRAPH_STATUS_OK ||
+                       graph_status == BT_GRAPH_STATUS_AGAIN) {
+               graph_status = bt_graph_run(graph);
+       }
+
+       ok(graph_status == BT_GRAPH_STATUS_END, "graph finishes without any error");
+       ok(compare_test_events(expected_test_events),
+               "the produced sequence of test events is the expected one");
+
+       bt_put(src_comp);
+       bt_put(muxer_comp);
+       bt_put(sink_comp);
+       bt_put(graph);
+}
+
+#define DEBUG_ENV_VAR  "TEST_UTILS_MUXER_DEBUG"
+
+int main(int argc, char **argv)
+{
+       if (getenv(DEBUG_ENV_VAR) && strcmp(getenv(DEBUG_ENV_VAR), "1") == 0) {
+               debug = true;
+       }
+
+       plan_tests(NR_TESTS);
+       init_static_data();
+       test_no_ts();
+       test_no_upstream_connection();
+       test_event_notif_vs_the_rest();
+       test_simple_4_ports();
+       test_4_ports_with_retries();
+       test_single_end_then_multiple_full();
+       test_single_again_end_then_multiple_full();
+       fini_static_data();
+       return exit_status();
+}
This page took 0.042558 seconds and 4 git commands to generate.