2 * Copyright (c) 2019 Philippe Proulx <pproulx@efficios.com>
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.
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.
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.
18 #include <babeltrace2/babeltrace.h>
19 #include "common/assert.h"
26 bt_graph_simple_sink_component_init_func_status init_status
;
27 bt_graph_simple_sink_component_consume_func_status consume_status
;
31 bt_graph_simple_sink_component_init_func_status
simple_init_func(
32 bt_self_component_port_input_message_iterator
*iterator
,
35 struct test_data
*test_data
= data
;
37 ok(iterator
, "Message iterator is not NULL in initialization function");
38 ok(data
, "Data is not NULL in initialization function");
39 return test_data
->init_status
;
43 bt_graph_simple_sink_component_consume_func_status
simple_consume_func(
44 bt_self_component_port_input_message_iterator
*iterator
,
47 struct test_data
*test_data
= data
;
49 ok(iterator
, "Message iterator is not NULL in consume function");
50 ok(data
, "Data is not NULL in consume function");
51 return test_data
->consume_status
;
55 void simple_fini_func(void *data
)
57 ok(data
, "Data is not NULL in finalization function");
61 bt_component_class_init_method_status
src_init(
62 bt_self_component_source
*self_comp
,
63 bt_self_component_source_configuration
*config
,
64 const bt_value
*params
, void *init_method_data
)
66 bt_self_component_add_port_status status
;
68 status
= bt_self_component_source_add_output_port(self_comp
,
70 BT_ASSERT(status
== BT_SELF_COMPONENT_ADD_PORT_STATUS_OK
);
71 return BT_COMPONENT_CLASS_INIT_METHOD_STATUS_OK
;
75 bt_component_class_message_iterator_next_method_status
src_iter_next(
76 bt_self_message_iterator
*message_iterator
,
77 bt_message_array_const msgs
, uint64_t capacity
,
80 return BT_COMPONENT_CLASS_MESSAGE_ITERATOR_NEXT_METHOD_STATUS_END
;
84 bt_graph
*create_graph_with_source(const bt_port_output
**out_port
)
86 bt_component_class_source
*src_comp_cls
;
88 const bt_component_source
*src_comp
= NULL
;
89 bt_graph_add_component_status add_comp_status
;
90 bt_component_class_set_method_status set_method_status
;
93 src_comp_cls
= bt_component_class_source_create("src", src_iter_next
);
94 BT_ASSERT(src_comp_cls
);
95 set_method_status
= bt_component_class_source_set_init_method(
96 src_comp_cls
, src_init
);
97 BT_ASSERT(set_method_status
== BT_COMPONENT_CLASS_SET_METHOD_STATUS_OK
);
98 graph
= bt_graph_create(0);
100 add_comp_status
= bt_graph_add_source_component(graph
, src_comp_cls
,
101 "src", NULL
, BT_LOGGING_LEVEL_NONE
, &src_comp
);
102 BT_ASSERT(add_comp_status
== BT_GRAPH_ADD_COMPONENT_STATUS_OK
);
104 *out_port
= bt_component_source_borrow_output_port_by_index_const(
106 BT_ASSERT(*out_port
);
107 bt_component_source_put_ref(src_comp
);
108 bt_component_class_source_put_ref(src_comp_cls
);
113 void test_simple_expect_run_once_status(
114 bt_graph_simple_sink_component_init_func_status init_status
,
115 bt_graph_simple_sink_component_consume_func_status consume_status
,
116 bt_graph_run_once_status exp_run_once_status
)
118 const bt_port_output
*src_out_port
= NULL
;
120 const bt_component_sink
*sink_comp
= NULL
;
121 const bt_port_input
*sink_in_port
;
122 bt_graph_add_component_status add_comp_status
;
123 bt_graph_run_once_status run_once_status
;
124 bt_graph_connect_ports_status connect_status
;
125 struct test_data test_data
= {
126 .init_status
= init_status
,
127 .consume_status
= consume_status
,
130 graph
= create_graph_with_source(&src_out_port
);
132 BT_ASSERT(src_out_port
);
133 add_comp_status
= bt_graph_add_simple_sink_component(graph
, "sink",
134 simple_init_func
, simple_consume_func
, simple_fini_func
,
135 &test_data
, &sink_comp
);
136 BT_ASSERT(add_comp_status
== BT_GRAPH_ADD_COMPONENT_STATUS_OK
);
137 BT_ASSERT(sink_comp
);
138 sink_in_port
= bt_component_sink_borrow_input_port_by_name_const(
141 "Simple sink component has an input port named \"in\"");
142 connect_status
= bt_graph_connect_ports(graph
, src_out_port
,
144 ok(connect_status
== BT_GRAPH_CONNECT_PORTS_STATUS_OK
,
145 "Simple sink component's \"in\" port is connectable");
146 run_once_status
= bt_graph_run_once(graph
);
147 ok(run_once_status
== exp_run_once_status
,
148 "Graph \"run once\" status is the expected one (status code: %d)",
150 bt_component_sink_put_ref(sink_comp
);
151 bt_graph_put_ref(graph
);
156 plan_tests(NR_TESTS
);
158 /* Test initialization function status */
159 test_simple_expect_run_once_status(
160 BT_GRAPH_SIMPLE_SINK_COMPONENT_INIT_FUNC_STATUS_OK
,
161 BT_GRAPH_SIMPLE_SINK_COMPONENT_CONSUME_FUNC_STATUS_OK
,
162 BT_GRAPH_RUN_ONCE_STATUS_OK
);
163 test_simple_expect_run_once_status(
164 BT_GRAPH_SIMPLE_SINK_COMPONENT_INIT_FUNC_STATUS_ERROR
,
165 BT_GRAPH_SIMPLE_SINK_COMPONENT_CONSUME_FUNC_STATUS_OK
,
166 BT_GRAPH_RUN_ONCE_STATUS_ERROR
);
167 test_simple_expect_run_once_status(
168 BT_GRAPH_SIMPLE_SINK_COMPONENT_INIT_FUNC_STATUS_MEMORY_ERROR
,
169 BT_GRAPH_SIMPLE_SINK_COMPONENT_CONSUME_FUNC_STATUS_OK
,
170 BT_GRAPH_RUN_ONCE_STATUS_MEMORY_ERROR
);
172 /* Test "consume" function status */
173 test_simple_expect_run_once_status(
174 BT_GRAPH_SIMPLE_SINK_COMPONENT_INIT_FUNC_STATUS_OK
,
175 BT_GRAPH_SIMPLE_SINK_COMPONENT_CONSUME_FUNC_STATUS_OK
,
176 BT_GRAPH_RUN_ONCE_STATUS_OK
);
177 test_simple_expect_run_once_status(
178 BT_GRAPH_SIMPLE_SINK_COMPONENT_INIT_FUNC_STATUS_OK
,
179 BT_GRAPH_SIMPLE_SINK_COMPONENT_CONSUME_FUNC_STATUS_ERROR
,
180 BT_GRAPH_RUN_ONCE_STATUS_ERROR
);
181 test_simple_expect_run_once_status(
182 BT_GRAPH_SIMPLE_SINK_COMPONENT_INIT_FUNC_STATUS_OK
,
183 BT_GRAPH_SIMPLE_SINK_COMPONENT_CONSUME_FUNC_STATUS_MEMORY_ERROR
,
184 BT_GRAPH_RUN_ONCE_STATUS_MEMORY_ERROR
);
185 test_simple_expect_run_once_status(
186 BT_GRAPH_SIMPLE_SINK_COMPONENT_INIT_FUNC_STATUS_OK
,
187 BT_GRAPH_SIMPLE_SINK_COMPONENT_CONSUME_FUNC_STATUS_AGAIN
,
188 BT_GRAPH_RUN_ONCE_STATUS_AGAIN
);
189 test_simple_expect_run_once_status(
190 BT_GRAPH_SIMPLE_SINK_COMPONENT_INIT_FUNC_STATUS_OK
,
191 BT_GRAPH_SIMPLE_SINK_COMPONENT_CONSUME_FUNC_STATUS_END
,
192 BT_GRAPH_RUN_ONCE_STATUS_END
);
194 return exit_status();