Commit | Line | Data |
---|---|---|
39d74371 | 1 | /* |
5c424b9c | 2 | * test_ctf_writer.c |
39d74371 JG |
3 | * |
4 | * CTF Writer test | |
5 | * | |
5c424b9c | 6 | * Copyright 2013 - 2017 - Jérémie Galarneau <jeremie.galarneau@efficios.com> |
39d74371 JG |
7 | * |
8 | * This program is free software; you can redistribute it and/or modify | |
9 | * it under the terms of the GNU General Public License as published by | |
10 | * the Free Software Foundation; under version 2 of the License. | |
11 | * | |
12 | * This program is distributed in the hope that it will be useful, | |
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 | * GNU General Public License for more details. | |
16 | * | |
17 | * You should have received a copy of the GNU General Public License along | |
18 | * with this program; if not, write to the Free Software Foundation, Inc., | |
19 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | |
20 | */ | |
21 | ||
39d74371 JG |
22 | #include <babeltrace/ctf-writer/writer.h> |
23 | #include <babeltrace/ctf-writer/clock.h> | |
98bd6ec2 | 24 | #include <babeltrace/ctf-writer/clock-class.h> |
39d74371 JG |
25 | #include <babeltrace/ctf-writer/stream.h> |
26 | #include <babeltrace/ctf-writer/event.h> | |
27 | #include <babeltrace/ctf-writer/event-types.h> | |
28 | #include <babeltrace/ctf-writer/event-fields.h> | |
72bd645e | 29 | #include <babeltrace/ctf-writer/stream-class.h> |
8deee039 | 30 | #include <babeltrace/ctf-writer/trace.h> |
39d74371 | 31 | #include <babeltrace/ctf/events.h> |
0f15f666 | 32 | #include <babeltrace/value.h> |
9d6b510b | 33 | #include <glib.h> |
39d74371 | 34 | #include <unistd.h> |
3d9990ac | 35 | #include <babeltrace/compat/stdlib-internal.h> |
39d74371 | 36 | #include <stdio.h> |
3d9990ac PP |
37 | #include <babeltrace/compat/limits-internal.h> |
38 | #include <babeltrace/compat/stdio-internal.h> | |
39d74371 | 39 | #include <string.h> |
b8f13b8b | 40 | #include <babeltrace/assert-internal.h> |
39d74371 | 41 | #include <fcntl.h> |
39d74371 | 42 | #include "tap/tap.h" |
10817e06 JG |
43 | #include <math.h> |
44 | #include <float.h> | |
851299b9 | 45 | #include "common.h" |
39d74371 JG |
46 | |
47 | #define METADATA_LINE_SIZE 512 | |
48 | #define SEQUENCE_TEST_LENGTH 10 | |
1fac895e | 49 | #define ARRAY_TEST_LENGTH 5 |
a9fddc0b | 50 | #define PACKET_RESIZE_TEST_DEF_LENGTH 100000 |
39d74371 | 51 | |
5494ce8b JG |
52 | #define DEFAULT_CLOCK_FREQ 1000000000 |
53 | #define DEFAULT_CLOCK_PRECISION 1 | |
54 | #define DEFAULT_CLOCK_OFFSET 0 | |
55 | #define DEFAULT_CLOCK_OFFSET_S 0 | |
56 | #define DEFAULT_CLOCK_IS_ABSOLUTE 0 | |
57 | #define DEFAULT_CLOCK_TIME 0 | |
e1e30a8c | 58 | #define DEFAULT_CLOCK_VALUE 0 |
5494ce8b | 59 | |
c2606e2f | 60 | #define NR_TESTS 325 |
8bbe269d | 61 | |
19262d3d MJ |
62 | struct bt_utsname { |
63 | char sysname[BABELTRACE_HOST_NAME_MAX]; | |
64 | char nodename[BABELTRACE_HOST_NAME_MAX]; | |
65 | char release[BABELTRACE_HOST_NAME_MAX]; | |
66 | char version[BABELTRACE_HOST_NAME_MAX]; | |
67 | char machine[BABELTRACE_HOST_NAME_MAX]; | |
68 | }; | |
69 | ||
61cf588b | 70 | static int64_t current_time = 42; |
a9fddc0b | 71 | static unsigned int packet_resize_test_length = PACKET_RESIZE_TEST_DEF_LENGTH; |
39d74371 | 72 | |
e61caf8e | 73 | /* Return 1 if uuids match, zero if different. */ |
a3d8579b | 74 | static |
e61caf8e JG |
75 | int uuid_match(const unsigned char *uuid_a, const unsigned char *uuid_b) |
76 | { | |
77 | int ret = 0; | |
78 | int i; | |
79 | ||
80 | if (!uuid_a || !uuid_b) { | |
81 | goto end; | |
82 | } | |
83 | ||
23f1c913 | 84 | for (i = 0; i < 16; i++) { |
e61caf8e JG |
85 | if (uuid_a[i] != uuid_b[i]) { |
86 | goto end; | |
87 | } | |
88 | } | |
89 | ||
90 | ret = 1; | |
91 | end: | |
92 | return ret; | |
93 | } | |
94 | ||
a3d8579b | 95 | static |
39d74371 JG |
96 | void validate_trace(char *parser_path, char *trace_path) |
97 | { | |
98 | int ret = 0; | |
1f4a376b | 99 | gint exit_status; |
b3493e97 | 100 | char *argv[] = {parser_path, trace_path, "-o", "dummy", NULL}; |
39d74371 | 101 | |
1f4a376b | 102 | if (!parser_path || !trace_path) { |
39d74371 JG |
103 | ret = -1; |
104 | goto result; | |
105 | } | |
106 | ||
1f4a376b MJ |
107 | if (!g_spawn_sync(NULL, |
108 | argv, | |
109 | NULL, | |
110 | G_SPAWN_STDOUT_TO_DEV_NULL, | |
111 | NULL, | |
112 | NULL, | |
113 | NULL, | |
8deee039 | 114 | NULL, |
1f4a376b MJ |
115 | &exit_status, |
116 | NULL)) { | |
117 | diag("Failed to spawn babeltrace."); | |
39d74371 JG |
118 | ret = -1; |
119 | goto result; | |
120 | } | |
121 | ||
3eb20877 | 122 | /* Replace by g_spawn_check_exit_status when we require glib >= 2.34 */ |
77e1a7eb | 123 | #ifdef G_OS_UNIX |
3eb20877 MJ |
124 | ret = WIFEXITED(exit_status) ? WEXITSTATUS(exit_status) : -1; |
125 | #else | |
126 | ret = exit_status; | |
127 | #endif | |
128 | ||
129 | if (ret != 0) { | |
1f4a376b | 130 | diag("Babeltrace returned an error."); |
1f4a376b | 131 | goto result; |
39d74371 | 132 | } |
1f4a376b | 133 | |
39d74371 JG |
134 | result: |
135 | ok(ret == 0, "Babeltrace could read the resulting trace"); | |
39d74371 JG |
136 | } |
137 | ||
a3d8579b | 138 | static |
8deee039 PP |
139 | void append_simple_event(struct bt_ctf_stream_class *stream_class, |
140 | struct bt_ctf_stream *stream, struct bt_ctf_clock *clock) | |
39d74371 JG |
141 | { |
142 | /* Create and add a simple event class */ | |
8deee039 PP |
143 | struct bt_ctf_event_class *simple_event_class = |
144 | bt_ctf_event_class_create("Simple Event"); | |
145 | struct bt_ctf_field_type *uint_12_type = | |
146 | bt_ctf_field_type_integer_create(12); | |
147 | struct bt_ctf_field_type *int_64_type = | |
148 | bt_ctf_field_type_integer_create(64); | |
149 | struct bt_ctf_field_type *float_type = | |
150 | bt_ctf_field_type_floating_point_create(); | |
151 | struct bt_ctf_field_type *enum_type; | |
152 | struct bt_ctf_field_type *enum_type_unsigned = | |
153 | bt_ctf_field_type_enumeration_create(uint_12_type); | |
154 | struct bt_ctf_field_type *event_context_type = | |
155 | bt_ctf_field_type_structure_create(); | |
156 | struct bt_ctf_field_type *event_payload_type = NULL; | |
157 | struct bt_ctf_field_type *returned_type; | |
158 | struct bt_ctf_event *simple_event; | |
159 | struct bt_ctf_field *integer_field; | |
160 | struct bt_ctf_field *float_field; | |
161 | struct bt_ctf_field *enum_field; | |
162 | struct bt_ctf_field *enum_field_unsigned; | |
163 | struct bt_ctf_field *enum_container_field; | |
10817e06 | 164 | const char *mapping_name_test = "truie"; |
10817e06 | 165 | const double double_test_value = 3.1415; |
8deee039 | 166 | struct bt_ctf_field *enum_container_field_unsigned; |
7cfd41d6 JG |
167 | const char *mapping_name_negative_test = "negative_value"; |
168 | const char *ret_char; | |
10817e06 | 169 | double ret_double; |
7cfd41d6 JG |
170 | int64_t ret_range_start_int64_t, ret_range_end_int64_t; |
171 | uint64_t ret_range_start_uint64_t, ret_range_end_uint64_t; | |
8deee039 PP |
172 | struct bt_ctf_event_class *ret_event_class; |
173 | struct bt_ctf_field *packet_context; | |
174 | struct bt_ctf_field *packet_context_field; | |
175 | struct bt_ctf_field *stream_event_context; | |
176 | struct bt_ctf_field *stream_event_context_field; | |
177 | struct bt_ctf_field *event_context; | |
178 | struct bt_ctf_field *event_context_field; | |
179 | struct bt_ctf_field_type *ep_integer_field_type = NULL; | |
180 | struct bt_ctf_field_type *ep_enum_field_type = NULL; | |
181 | struct bt_ctf_field_type *ep_enum_field_unsigned_type = NULL; | |
182 | struct bt_ctf_field_type_enumeration_mapping_iterator *iter = NULL; | |
bb34b5a7 | 183 | int ret; |
7cfd41d6 JG |
184 | |
185 | ok(uint_12_type, "Create an unsigned integer type"); | |
186 | ||
687ae062 JG |
187 | ok(!bt_ctf_field_type_integer_set_signed(int_64_type, 1), |
188 | "Set signed 64 bit integer signedness to true"); | |
7cfd41d6 | 189 | ok(int_64_type, "Create a signed integer type"); |
8deee039 | 190 | enum_type = bt_ctf_field_type_enumeration_create(int_64_type); |
7cfd41d6 | 191 | |
8deee039 PP |
192 | returned_type = bt_ctf_field_type_enumeration_get_container_field_type(enum_type); |
193 | ok(returned_type == int_64_type, "bt_ctf_field_type_enumeration_get_container_field_type returns the right type"); | |
194 | ok(!bt_ctf_field_type_enumeration_create(enum_type), | |
195 | "bt_ctf_field_enumeration_type_create rejects non-integer container field types"); | |
8c6884d9 | 196 | bt_ctf_object_put_ref(returned_type); |
39d74371 | 197 | |
8deee039 PP |
198 | bt_ctf_field_type_set_alignment(float_type, 32); |
199 | ok(bt_ctf_field_type_get_alignment(float_type) == 32, | |
200 | "bt_ctf_field_type_get_alignment returns a correct value"); | |
7cfd41d6 | 201 | |
8deee039 | 202 | ok(bt_ctf_field_type_floating_point_set_exponent_digits(float_type, 11) == 0, |
7cfd41d6 | 203 | "Set a floating point type's exponent digit count"); |
8deee039 | 204 | ok(bt_ctf_field_type_floating_point_set_mantissa_digits(float_type, 53) == 0, |
7cfd41d6 JG |
205 | "Set a floating point type's mantissa digit count"); |
206 | ||
8deee039 PP |
207 | ok(bt_ctf_field_type_floating_point_get_exponent_digits(float_type) == 11, |
208 | "bt_ctf_field_type_floating_point_get_exponent_digits returns the correct value"); | |
209 | ok(bt_ctf_field_type_floating_point_get_mantissa_digits(float_type) == 53, | |
210 | "bt_ctf_field_type_floating_point_get_mantissa_digits returns the correct value"); | |
8382544f JG |
211 | |
212 | ok(bt_ctf_field_type_enumeration_add_mapping(enum_type, | |
7cfd41d6 | 213 | mapping_name_negative_test, -12345, 0) == 0, |
8deee039 | 214 | "bt_ctf_field_type_enumeration_add_mapping accepts negative enumeration mappings"); |
8382544f | 215 | ok(bt_ctf_field_type_enumeration_add_mapping(enum_type, |
7cfd41d6 | 216 | "escaping; \"test\"", 1, 1) == 0, |
8deee039 | 217 | "bt_ctf_field_type_enumeration_add_mapping accepts enumeration mapping strings containing quotes"); |
7cfd41d6 JG |
218 | ok(bt_ctf_field_type_enumeration_add_mapping(enum_type, |
219 | "\tanother \'escaping\'\n test\"", 2, 4) == 0, | |
8deee039 | 220 | "bt_ctf_field_type_enumeration_add_mapping accepts enumeration mapping strings containing special characters"); |
8382544f JG |
221 | ok(bt_ctf_field_type_enumeration_add_mapping(enum_type, |
222 | "event clock int float", 5, 22) == 0, | |
223 | "Accept enumeration mapping strings containing reserved keywords"); | |
7cfd41d6 JG |
224 | bt_ctf_field_type_enumeration_add_mapping(enum_type, mapping_name_test, |
225 | 42, 42); | |
226 | ok(bt_ctf_field_type_enumeration_add_mapping(enum_type, mapping_name_test, | |
8deee039 | 227 | 43, 51) == 0, "bt_ctf_field_type_enumeration_add_mapping accepts duplicate mapping names"); |
7cfd41d6 | 228 | ok(bt_ctf_field_type_enumeration_add_mapping(enum_type, "something", |
8deee039 | 229 | -500, -400) == 0, "bt_ctf_field_type_enumeration_add_mapping accepts overlapping enum entries"); |
7cfd41d6 | 230 | ok(bt_ctf_field_type_enumeration_add_mapping(enum_type, mapping_name_test, |
8deee039 | 231 | -54, -55), "bt_ctf_field_type_enumeration_add_mapping rejects mapping where end < start"); |
7cfd41d6 JG |
232 | bt_ctf_field_type_enumeration_add_mapping(enum_type, "another entry", -42000, -13000); |
233 | ||
8deee039 | 234 | ok(bt_ctf_event_class_add_field(simple_event_class, enum_type, |
7cfd41d6 JG |
235 | "enum_field") == 0, "Add signed enumeration field to event"); |
236 | ||
8deee039 | 237 | ok(bt_ctf_field_type_enumeration_signed_get_mapping_by_index(enum_type, 0, NULL, |
7cfd41d6 | 238 | &ret_range_start_int64_t, &ret_range_end_int64_t) == 0, |
8deee039 PP |
239 | "bt_ctf_field_type_enumeration_signed_get_mapping_by_index handles a NULL string correctly"); |
240 | ok(bt_ctf_field_type_enumeration_signed_get_mapping_by_index(enum_type, 0, &ret_char, | |
96e8f959 | 241 | NULL, &ret_range_end_int64_t) == 0, |
8deee039 PP |
242 | "bt_ctf_field_type_enumeration_signed_get_mapping_by_index handles a NULL start correctly"); |
243 | ok(bt_ctf_field_type_enumeration_signed_get_mapping_by_index(enum_type, 0, &ret_char, | |
96e8f959 | 244 | &ret_range_start_int64_t, NULL) == 0, |
8deee039 | 245 | "bt_ctf_field_type_enumeration_signed_get_mapping_by_index handles a NULL end correctly"); |
96e8f959 | 246 | /* Assumes entries are sorted by range_start values. */ |
8deee039 | 247 | ok(bt_ctf_field_type_enumeration_signed_get_mapping_by_index(enum_type, 6, &ret_char, |
96e8f959 | 248 | &ret_range_start_int64_t, &ret_range_end_int64_t) == 0, |
8deee039 | 249 | "bt_ctf_field_type_enumeration_signed_get_mapping_by_index returns a value"); |
7cfd41d6 | 250 | ok(!strcmp(ret_char, mapping_name_test), |
8deee039 | 251 | "bt_ctf_field_type_enumeration_signed_get_mapping_by_index returns a correct mapping name"); |
7cfd41d6 | 252 | ok(ret_range_start_int64_t == 42, |
8deee039 | 253 | "bt_ctf_field_type_enumeration_signed_get_mapping_by_index returns a correct mapping start"); |
7cfd41d6 | 254 | ok(ret_range_end_int64_t == 42, |
8deee039 | 255 | "bt_ctf_field_type_enumeration_signed_get_mapping_by_index returns a correct mapping end"); |
7cfd41d6 | 256 | |
8deee039 | 257 | ok(bt_ctf_field_type_enumeration_unsigned_add_mapping(enum_type_unsigned, |
7cfd41d6 | 258 | "escaping; \"test\"", 0, 0) == 0, |
8deee039 PP |
259 | "bt_ctf_field_type_enumeration_unsigned_add_mapping accepts enumeration mapping strings containing quotes"); |
260 | ok(bt_ctf_field_type_enumeration_unsigned_add_mapping(enum_type_unsigned, | |
7cfd41d6 | 261 | "\tanother \'escaping\'\n test\"", 1, 4) == 0, |
8deee039 PP |
262 | "bt_ctf_field_type_enumeration_unsigned_add_mapping accepts enumeration mapping strings containing special characters"); |
263 | ok(bt_ctf_field_type_enumeration_unsigned_add_mapping(enum_type_unsigned, | |
7cfd41d6 | 264 | "event clock int float", 5, 22) == 0, |
8deee039 PP |
265 | "bt_ctf_field_type_enumeration_unsigned_add_mapping accepts enumeration mapping strings containing reserved keywords"); |
266 | ok(bt_ctf_field_type_enumeration_unsigned_add_mapping(enum_type_unsigned, mapping_name_test, | |
267 | 42, 42) == 0, "bt_ctf_field_type_enumeration_unsigned_add_mapping accepts single-value ranges"); | |
268 | ok(bt_ctf_field_type_enumeration_unsigned_add_mapping(enum_type_unsigned, mapping_name_test, | |
269 | 43, 51) == 0, "bt_ctf_field_type_enumeration_unsigned_add_mapping accepts duplicate mapping names"); | |
270 | ok(bt_ctf_field_type_enumeration_unsigned_add_mapping(enum_type_unsigned, "something", | |
271 | 7, 8) == 0, "bt_ctf_field_type_enumeration_unsigned_add_mapping accepts overlapping enum entries"); | |
272 | ok(bt_ctf_field_type_enumeration_unsigned_add_mapping(enum_type_unsigned, mapping_name_test, | |
273 | 55, 54), "bt_ctf_field_type_enumeration_unsigned_add_mapping rejects mapping where end < start"); | |
274 | ok(bt_ctf_event_class_add_field(simple_event_class, enum_type_unsigned, | |
7cfd41d6 JG |
275 | "enum_field_unsigned") == 0, "Add unsigned enumeration field to event"); |
276 | ||
8deee039 PP |
277 | ok(bt_ctf_field_type_enumeration_get_mapping_count(enum_type_unsigned) == 6, |
278 | "bt_ctf_field_type_enumeration_get_mapping_count returns the correct value"); | |
7cfd41d6 | 279 | |
8deee039 | 280 | ok(bt_ctf_field_type_enumeration_unsigned_get_mapping_by_index(enum_type_unsigned, 0, NULL, |
96e8f959 | 281 | &ret_range_start_uint64_t, &ret_range_end_uint64_t) == 0, |
8deee039 PP |
282 | "bt_ctf_field_type_enumeration_unsigned_get_mapping_by_index handles a NULL string correctly"); |
283 | ok(bt_ctf_field_type_enumeration_unsigned_get_mapping_by_index(enum_type_unsigned, 0, &ret_char, | |
96e8f959 | 284 | NULL, &ret_range_end_uint64_t) == 0, |
8deee039 PP |
285 | "bt_ctf_field_type_enumeration_unsigned_get_mapping_by_index handles a NULL start correctly"); |
286 | ok(bt_ctf_field_type_enumeration_unsigned_get_mapping_by_index(enum_type_unsigned, 0, &ret_char, | |
96e8f959 | 287 | &ret_range_start_uint64_t, NULL) == 0, |
8deee039 PP |
288 | "bt_ctf_field_type_enumeration_unsigned_get_mapping_by_index handles a NULL end correctly"); |
289 | ok(bt_ctf_field_type_enumeration_unsigned_get_mapping_by_index(enum_type_unsigned, 4, &ret_char, | |
7cfd41d6 | 290 | &ret_range_start_uint64_t, &ret_range_end_uint64_t) == 0, |
8deee039 | 291 | "bt_ctf_field_type_enumeration_unsigned_get_mapping_by_index returns a value"); |
7cfd41d6 | 292 | ok(!strcmp(ret_char, mapping_name_test), |
8deee039 | 293 | "bt_ctf_field_type_enumeration_unsigned_get_mapping_by_index returns a correct mapping name"); |
7cfd41d6 | 294 | ok(ret_range_start_uint64_t == 42, |
8deee039 | 295 | "bt_ctf_field_type_enumeration_unsigned_get_mapping_by_index returns a correct mapping start"); |
7cfd41d6 | 296 | ok(ret_range_end_uint64_t == 42, |
8deee039 | 297 | "bt_ctf_field_type_enumeration_unsigned_get_mapping_by_index returns a correct mapping end"); |
8382544f | 298 | |
8deee039 | 299 | bt_ctf_event_class_add_field(simple_event_class, uint_12_type, |
39d74371 | 300 | "integer_field"); |
8deee039 | 301 | bt_ctf_event_class_add_field(simple_event_class, float_type, |
39d74371 | 302 | "float_field"); |
58203827 | 303 | |
164e96c2 PP |
304 | ret = bt_ctf_event_class_set_id(simple_event_class, 13); |
305 | BT_ASSERT(ret == 0); | |
3ed04f17 | 306 | |
a001a2ac | 307 | /* Set an event context type which will contain a single integer. */ |
8deee039 | 308 | ok(!bt_ctf_field_type_structure_add_field(event_context_type, uint_12_type, |
58203827 JG |
309 | "event_specific_context"), |
310 | "Add event specific context field"); | |
58203827 | 311 | |
8deee039 PP |
312 | ok(bt_ctf_event_class_set_context_field_type(NULL, event_context_type) < 0, |
313 | "bt_ctf_event_class_set_context_field_type handles a NULL event class correctly"); | |
314 | ok(!bt_ctf_event_class_set_context_field_type(simple_event_class, event_context_type), | |
58203827 | 315 | "Set an event class' context type successfully"); |
8deee039 | 316 | returned_type = bt_ctf_event_class_get_context_field_type(simple_event_class); |
58203827 | 317 | ok(returned_type == event_context_type, |
8deee039 | 318 | "bt_ctf_event_class_get_context_field_type returns the appropriate type"); |
8c6884d9 | 319 | bt_ctf_object_put_ref(returned_type); |
58203827 | 320 | |
8deee039 | 321 | ok(!bt_ctf_stream_class_add_event_class(stream_class, simple_event_class), |
a046cf3c | 322 | "Adding simple event class to stream class"); |
39d74371 | 323 | |
09840de5 | 324 | /* |
8deee039 | 325 | * bt_ctf_stream_class_add_event_class() copies the field types |
09840de5 PP |
326 | * of simple_event_class, so we retrieve the new ones to create |
327 | * the appropriate fields. | |
328 | */ | |
8c6884d9 PP |
329 | BT_CTF_OBJECT_PUT_REF_AND_RESET(event_context_type); |
330 | BT_CTF_OBJECT_PUT_REF_AND_RESET(event_payload_type); | |
8deee039 | 331 | event_payload_type = bt_ctf_event_class_get_payload_field_type( |
09840de5 | 332 | simple_event_class); |
b8f13b8b | 333 | BT_ASSERT(event_payload_type); |
8deee039 | 334 | event_context_type = bt_ctf_event_class_get_context_field_type( |
09840de5 | 335 | simple_event_class); |
b8f13b8b | 336 | BT_ASSERT(event_context_type); |
09840de5 | 337 | ep_integer_field_type = |
8deee039 | 338 | bt_ctf_field_type_structure_get_field_type_by_name( |
09840de5 | 339 | event_payload_type, "integer_field"); |
b8f13b8b | 340 | BT_ASSERT(ep_integer_field_type); |
09840de5 | 341 | ep_enum_field_type = |
8deee039 | 342 | bt_ctf_field_type_structure_get_field_type_by_name( |
09840de5 | 343 | event_payload_type, "enum_field"); |
b8f13b8b | 344 | BT_ASSERT(ep_enum_field_type); |
09840de5 | 345 | ep_enum_field_unsigned_type = |
8deee039 | 346 | bt_ctf_field_type_structure_get_field_type_by_name( |
09840de5 | 347 | event_payload_type, "enum_field_unsigned"); |
b8f13b8b | 348 | BT_ASSERT(ep_enum_field_unsigned_type); |
09840de5 | 349 | |
8deee039 PP |
350 | ok(bt_ctf_stream_class_get_event_class_count(stream_class) == 1, |
351 | "bt_ctf_stream_class_get_event_class_count returns a correct number of event classes"); | |
352 | ret_event_class = bt_ctf_stream_class_get_event_class_by_index(stream_class, 0); | |
e3c971da | 353 | ok(ret_event_class == simple_event_class, |
8deee039 | 354 | "bt_ctf_stream_class_get_event_class returns the correct event class"); |
8c6884d9 | 355 | bt_ctf_object_put_ref(ret_event_class); |
8deee039 PP |
356 | ok(!bt_ctf_stream_class_get_event_class_by_id(stream_class, 2), |
357 | "bt_ctf_stream_class_get_event_class_by_id returns NULL when the requested ID doesn't exist"); | |
3ed04f17 | 358 | ret_event_class = |
8deee039 | 359 | bt_ctf_stream_class_get_event_class_by_id(stream_class, 13); |
3ed04f17 | 360 | ok(ret_event_class == simple_event_class, |
8deee039 | 361 | "bt_ctf_stream_class_get_event_class_by_id returns a correct event class"); |
8c6884d9 | 362 | bt_ctf_object_put_ref(ret_event_class); |
e3c971da | 363 | |
8deee039 | 364 | simple_event = bt_ctf_event_create(simple_event_class); |
39d74371 JG |
365 | ok(simple_event, |
366 | "Instantiate an event containing a single integer field"); | |
367 | ||
8deee039 PP |
368 | integer_field = bt_ctf_field_create(ep_integer_field_type); |
369 | bt_ctf_field_integer_unsigned_set_value(integer_field, 42); | |
370 | ok(bt_ctf_event_set_payload(simple_event, "integer_field", | |
371 | integer_field) == 0, "Use bt_ctf_event_set_payload to set a manually allocated field"); | |
839d52a5 | 372 | |
8deee039 PP |
373 | float_field = bt_ctf_event_get_payload(simple_event, "float_field"); |
374 | bt_ctf_field_floating_point_set_value(float_field, double_test_value); | |
375 | ok(!bt_ctf_field_floating_point_get_value(float_field, &ret_double), | |
376 | "bt_ctf_field_floating_point_get_value returns a double value"); | |
10817e06 | 377 | ok(fabs(ret_double - double_test_value) <= DBL_EPSILON, |
8deee039 | 378 | "bt_ctf_field_floating_point_get_value returns a correct value"); |
10817e06 | 379 | |
8deee039 | 380 | enum_field = bt_ctf_field_create(ep_enum_field_type); |
b8f13b8b | 381 | BT_ASSERT(enum_field); |
96e8f959 | 382 | |
8deee039 PP |
383 | enum_container_field = bt_ctf_field_enumeration_get_container(enum_field); |
384 | ok(bt_ctf_field_integer_signed_set_value( | |
7cfd41d6 JG |
385 | enum_container_field, -42) == 0, |
386 | "Set signed enumeration container value"); | |
8deee039 | 387 | ret = bt_ctf_event_set_payload(simple_event, "enum_field", enum_field); |
b8f13b8b | 388 | BT_ASSERT(!ret); |
8c6884d9 | 389 | BT_CTF_OBJECT_PUT_REF_AND_RESET(iter); |
39d74371 | 390 | |
8deee039 | 391 | enum_field_unsigned = bt_ctf_field_create(ep_enum_field_unsigned_type); |
b8f13b8b | 392 | BT_ASSERT(enum_field_unsigned); |
8deee039 | 393 | enum_container_field_unsigned = bt_ctf_field_enumeration_get_container( |
7cfd41d6 | 394 | enum_field_unsigned); |
8deee039 | 395 | ok(bt_ctf_field_integer_unsigned_set_value( |
7cfd41d6 JG |
396 | enum_container_field_unsigned, 42) == 0, |
397 | "Set unsigned enumeration container value"); | |
8deee039 | 398 | ret = bt_ctf_event_set_payload(simple_event, "enum_field_unsigned", |
7cfd41d6 | 399 | enum_field_unsigned); |
b8f13b8b | 400 | BT_ASSERT(!ret); |
7cfd41d6 | 401 | |
39d74371 JG |
402 | ok(bt_ctf_clock_set_time(clock, current_time) == 0, "Set clock time"); |
403 | ||
6e1f8ea1 | 404 | /* Populate stream event context */ |
5fd2e9fd | 405 | stream_event_context = |
8deee039 | 406 | bt_ctf_event_get_stream_event_context(simple_event); |
b8f13b8b | 407 | BT_ASSERT(stream_event_context); |
8deee039 | 408 | stream_event_context_field = bt_ctf_field_structure_get_field_by_name( |
5edae678 | 409 | stream_event_context, "common_event_context"); |
8deee039 | 410 | bt_ctf_field_integer_unsigned_set_value(stream_event_context_field, 42); |
5edae678 JG |
411 | |
412 | /* Populate the event's context */ | |
8deee039 | 413 | event_context = bt_ctf_event_get_context(simple_event); |
5edae678 | 414 | ok(event_context, |
8deee039 PP |
415 | "bt_ctf_event_get_context returns a field"); |
416 | returned_type = bt_ctf_field_get_type(event_context); | |
5edae678 | 417 | ok(returned_type == event_context_type, |
8deee039 PP |
418 | "bt_ctf_event_get_context returns a field of the appropriate type"); |
419 | event_context_field = bt_ctf_field_structure_get_field_by_name(event_context, | |
5edae678 | 420 | "event_specific_context"); |
8deee039 | 421 | ok(!bt_ctf_field_integer_unsigned_set_value(event_context_field, 1234), |
5edae678 | 422 | "Successfully set an event context's value"); |
8deee039 | 423 | ok(!bt_ctf_event_set_context(simple_event, event_context), |
5edae678 | 424 | "Set an event context successfully"); |
6e1f8ea1 | 425 | |
8deee039 | 426 | ok(bt_ctf_stream_append_event(stream, simple_event) == 0, |
39d74371 JG |
427 | "Append simple event to trace stream"); |
428 | ||
8deee039 | 429 | packet_context = bt_ctf_stream_get_packet_context(stream); |
12c8a1a3 | 430 | ok(packet_context, |
8deee039 | 431 | "bt_ctf_stream_get_packet_context returns a packet context"); |
12c8a1a3 | 432 | |
8deee039 | 433 | packet_context_field = bt_ctf_field_structure_get_field_by_name(packet_context, |
12c8a1a3 JG |
434 | "packet_size"); |
435 | ok(packet_context_field, | |
436 | "Packet context contains the default packet_size field."); | |
8c6884d9 | 437 | bt_ctf_object_put_ref(packet_context_field); |
8deee039 | 438 | packet_context_field = bt_ctf_field_structure_get_field_by_name(packet_context, |
35e8709f | 439 | "custom_packet_context_field"); |
8deee039 | 440 | ok(bt_ctf_field_integer_unsigned_set_value(packet_context_field, 8) == 0, |
12c8a1a3 JG |
441 | "Custom packet context field value successfully set."); |
442 | ||
8deee039 | 443 | ok(bt_ctf_stream_set_packet_context(stream, packet_context) == 0, |
12c8a1a3 JG |
444 | "Successfully set a stream's packet context"); |
445 | ||
8deee039 | 446 | ok(bt_ctf_stream_flush(stream) == 0, |
39d74371 JG |
447 | "Flush trace stream with one event"); |
448 | ||
8c6884d9 PP |
449 | bt_ctf_object_put_ref(simple_event_class); |
450 | bt_ctf_object_put_ref(simple_event); | |
451 | bt_ctf_object_put_ref(uint_12_type); | |
452 | bt_ctf_object_put_ref(int_64_type); | |
453 | bt_ctf_object_put_ref(float_type); | |
454 | bt_ctf_object_put_ref(enum_type); | |
455 | bt_ctf_object_put_ref(enum_type_unsigned); | |
456 | bt_ctf_object_put_ref(returned_type); | |
457 | bt_ctf_object_put_ref(event_context_type); | |
458 | bt_ctf_object_put_ref(integer_field); | |
459 | bt_ctf_object_put_ref(float_field); | |
460 | bt_ctf_object_put_ref(enum_field); | |
461 | bt_ctf_object_put_ref(enum_field_unsigned); | |
462 | bt_ctf_object_put_ref(enum_container_field); | |
463 | bt_ctf_object_put_ref(enum_container_field_unsigned); | |
464 | bt_ctf_object_put_ref(packet_context); | |
465 | bt_ctf_object_put_ref(packet_context_field); | |
466 | bt_ctf_object_put_ref(stream_event_context); | |
467 | bt_ctf_object_put_ref(stream_event_context_field); | |
468 | bt_ctf_object_put_ref(event_context); | |
469 | bt_ctf_object_put_ref(event_context_field); | |
470 | bt_ctf_object_put_ref(event_payload_type); | |
471 | bt_ctf_object_put_ref(ep_integer_field_type); | |
472 | bt_ctf_object_put_ref(ep_enum_field_type); | |
473 | bt_ctf_object_put_ref(ep_enum_field_unsigned_type); | |
474 | bt_ctf_object_put_ref(iter); | |
39d74371 JG |
475 | } |
476 | ||
a3d8579b | 477 | static |
8deee039 PP |
478 | void append_complex_event(struct bt_ctf_stream_class *stream_class, |
479 | struct bt_ctf_stream *stream, struct bt_ctf_clock *clock) | |
39d74371 | 480 | { |
8deee039 | 481 | int i; |
3b3b162e | 482 | struct event_class_attrs_counts ; |
1ff9582c | 483 | const char *complex_test_event_string = "Complex Test Event"; |
a31f4869 | 484 | const char *test_string_1 = "Test "; |
d8f190b2 PP |
485 | const char *test_string_2 = "string "; |
486 | const char *test_string_3 = "abcdefghi"; | |
487 | const char *test_string_4 = "abcd\0efg\0hi"; | |
8b45963b | 488 | const char *test_string_cat = "Test string abcdeefg"; |
8deee039 PP |
489 | struct bt_ctf_field_type *uint_35_type = |
490 | bt_ctf_field_type_integer_create(35); | |
491 | struct bt_ctf_field_type *int_16_type = | |
492 | bt_ctf_field_type_integer_create(16); | |
493 | struct bt_ctf_field_type *uint_3_type = | |
494 | bt_ctf_field_type_integer_create(3); | |
495 | struct bt_ctf_field_type *enum_variant_type = | |
496 | bt_ctf_field_type_enumeration_create(uint_3_type); | |
497 | struct bt_ctf_field_type *variant_type = | |
498 | bt_ctf_field_type_variant_create(enum_variant_type, | |
39d74371 | 499 | "variant_selector"); |
8deee039 PP |
500 | struct bt_ctf_field_type *string_type = |
501 | bt_ctf_field_type_string_create(); | |
502 | struct bt_ctf_field_type *sequence_type; | |
503 | struct bt_ctf_field_type *array_type; | |
504 | struct bt_ctf_field_type *inner_structure_type = | |
505 | bt_ctf_field_type_structure_create(); | |
506 | struct bt_ctf_field_type *complex_structure_type = | |
507 | bt_ctf_field_type_structure_create(); | |
508 | struct bt_ctf_field_type *ret_field_type; | |
509 | struct bt_ctf_event_class *event_class; | |
510 | struct bt_ctf_event *event; | |
511 | struct bt_ctf_field *uint_35_field, *int_16_field, *a_string_field, | |
39d74371 JG |
512 | *inner_structure_field, *complex_structure_field, |
513 | *a_sequence_field, *enum_variant_field, *enum_container_field, | |
5fd2e9fd | 514 | *variant_field, *an_array_field, *stream_event_ctx_field, |
a6918753 | 515 | *stream_event_ctx_int_field; |
10817e06 | 516 | uint64_t ret_unsigned_int; |
1fac895e | 517 | int64_t ret_signed_int; |
10817e06 | 518 | const char *ret_string; |
8deee039 PP |
519 | struct bt_ctf_stream_class *ret_stream_class; |
520 | struct bt_ctf_event_class *ret_event_class; | |
521 | struct bt_ctf_field *packet_context, *packet_context_field; | |
522 | ||
523 | ok(bt_ctf_field_type_set_alignment(int_16_type, 0), | |
524 | "bt_ctf_field_type_set_alignment handles 0-alignment correctly"); | |
525 | ok(bt_ctf_field_type_set_alignment(int_16_type, 3), | |
526 | "bt_ctf_field_type_set_alignment handles wrong alignment correctly (3)"); | |
527 | ok(bt_ctf_field_type_set_alignment(int_16_type, 24), | |
528 | "bt_ctf_field_type_set_alignment handles wrong alignment correctly (24)"); | |
529 | ok(!bt_ctf_field_type_set_alignment(int_16_type, 4), | |
530 | "bt_ctf_field_type_set_alignment handles correct alignment correctly (4)"); | |
531 | ok(!bt_ctf_field_type_set_alignment(int_16_type, 32), | |
6f010556 JG |
532 | "Set alignment of signed 16 bit integer to 32"); |
533 | ok(!bt_ctf_field_type_integer_set_signed(int_16_type, 1), | |
534 | "Set integer signedness to true"); | |
8deee039 PP |
535 | ok(!bt_ctf_field_type_integer_set_base(uint_35_type, |
536 | BT_CTF_INTEGER_BASE_HEXADECIMAL), | |
6f010556 | 537 | "Set signed 16 bit integer base to hexadecimal"); |
39d74371 | 538 | |
8deee039 PP |
539 | array_type = bt_ctf_field_type_array_create(int_16_type, ARRAY_TEST_LENGTH); |
540 | sequence_type = bt_ctf_field_type_sequence_create(int_16_type, | |
39d74371 | 541 | "seq_len"); |
7cfd41d6 | 542 | |
8deee039 | 543 | ret_field_type = bt_ctf_field_type_array_get_element_field_type( |
7cfd41d6 JG |
544 | array_type); |
545 | ok(ret_field_type == int_16_type, | |
8deee039 | 546 | "bt_ctf_field_type_array_get_element_field_type returns the correct type"); |
8c6884d9 | 547 | bt_ctf_object_put_ref(ret_field_type); |
7cfd41d6 | 548 | |
8deee039 PP |
549 | ok(bt_ctf_field_type_array_get_length(array_type) == ARRAY_TEST_LENGTH, |
550 | "bt_ctf_field_type_array_get_length returns the correct length"); | |
7cfd41d6 | 551 | |
8deee039 | 552 | ok(bt_ctf_field_type_structure_add_field(inner_structure_type, |
73892edc | 553 | inner_structure_type, "yes"), "Cannot add self to structure"); |
8deee039 | 554 | ok(!bt_ctf_field_type_structure_add_field(inner_structure_type, |
2c53bf6d | 555 | uint_35_type, "seq_len"), "Add seq_len field to inner structure"); |
8deee039 | 556 | ok(!bt_ctf_field_type_structure_add_field(inner_structure_type, |
2c53bf6d | 557 | sequence_type, "a_sequence"), "Add a_sequence field to inner structure"); |
8deee039 | 558 | ok(!bt_ctf_field_type_structure_add_field(inner_structure_type, |
2c53bf6d | 559 | array_type, "an_array"), "Add an_array field to inner structure"); |
39d74371 JG |
560 | |
561 | bt_ctf_field_type_enumeration_add_mapping(enum_variant_type, | |
562 | "UINT3_TYPE", 0, 0); | |
563 | bt_ctf_field_type_enumeration_add_mapping(enum_variant_type, | |
564 | "INT16_TYPE", 1, 1); | |
565 | bt_ctf_field_type_enumeration_add_mapping(enum_variant_type, | |
566 | "UINT35_TYPE", 2, 7); | |
7cfd41d6 | 567 | |
8deee039 | 568 | ok(bt_ctf_field_type_variant_add_field(variant_type, uint_3_type, |
39d74371 | 569 | "An unknown entry"), "Reject a variant field based on an unknown tag value"); |
8deee039 | 570 | ok(bt_ctf_field_type_variant_add_field(variant_type, uint_3_type, |
39d74371 | 571 | "UINT3_TYPE") == 0, "Add a field to a variant"); |
8deee039 | 572 | ok(!bt_ctf_field_type_variant_add_field(variant_type, int_16_type, |
822b92d5 | 573 | "INT16_TYPE"), "Add INT16_TYPE field to variant"); |
8deee039 | 574 | ok(!bt_ctf_field_type_variant_add_field(variant_type, uint_35_type, |
822b92d5 | 575 | "UINT35_TYPE"), "Add UINT35_TYPE field to variant"); |
39d74371 | 576 | |
8deee039 | 577 | ret_field_type = bt_ctf_field_type_variant_get_tag_field_type(variant_type); |
7cfd41d6 | 578 | ok(ret_field_type == enum_variant_type, |
8deee039 | 579 | "bt_ctf_field_type_variant_get_tag_field_type returns a correct tag type"); |
8c6884d9 | 580 | bt_ctf_object_put_ref(ret_field_type); |
7cfd41d6 | 581 | |
8deee039 | 582 | ret_string = bt_ctf_field_type_variant_get_tag_name(variant_type); |
0fae838f | 583 | ok(ret_string ? !strcmp(ret_string, "variant_selector") : 0, |
8deee039 PP |
584 | "bt_ctf_field_type_variant_get_tag_name returns the correct variant tag name"); |
585 | ret_field_type = bt_ctf_field_type_variant_get_field_type_by_name( | |
7cfd41d6 JG |
586 | variant_type, "INT16_TYPE"); |
587 | ok(ret_field_type == int_16_type, | |
8deee039 | 588 | "bt_ctf_field_type_variant_get_field_type_by_name returns a correct field type"); |
8c6884d9 | 589 | bt_ctf_object_put_ref(ret_field_type); |
7cfd41d6 | 590 | |
8deee039 PP |
591 | ok(bt_ctf_field_type_variant_get_field_count(variant_type) == 3, |
592 | "bt_ctf_field_type_variant_get_field_count returns the correct count"); | |
7cfd41d6 | 593 | |
8deee039 PP |
594 | ok(bt_ctf_field_type_variant_get_field_by_index(variant_type, NULL, &ret_field_type, 0) == 0, |
595 | "bt_ctf_field_type_variant_get_field handles a NULL field name correctly"); | |
8c6884d9 | 596 | bt_ctf_object_put_ref(ret_field_type); |
8deee039 PP |
597 | ok(bt_ctf_field_type_variant_get_field_by_index(variant_type, &ret_string, NULL, 0) == 0, |
598 | "bt_ctf_field_type_variant_get_field handles a NULL field type correctly"); | |
599 | ok(bt_ctf_field_type_variant_get_field_by_index(variant_type, &ret_string, &ret_field_type, 1) == 0, | |
600 | "bt_ctf_field_type_variant_get_field returns a field"); | |
7cfd41d6 | 601 | ok(!strcmp("INT16_TYPE", ret_string), |
8deee039 | 602 | "bt_ctf_field_type_variant_get_field returns a correct field name"); |
7cfd41d6 | 603 | ok(ret_field_type == int_16_type, |
8deee039 | 604 | "bt_ctf_field_type_variant_get_field returns a correct field type"); |
8c6884d9 | 605 | bt_ctf_object_put_ref(ret_field_type); |
7cfd41d6 | 606 | |
8deee039 | 607 | ok(!bt_ctf_field_type_structure_add_field(complex_structure_type, |
2c53bf6d JG |
608 | enum_variant_type, "variant_selector"), |
609 | "Add variant_selector field to complex structure"); | |
8deee039 | 610 | ok(!bt_ctf_field_type_structure_add_field(complex_structure_type, |
4dff667f | 611 | string_type, "string"), "Add `string` field to complex structure"); |
8deee039 | 612 | ok(!bt_ctf_field_type_structure_add_field(complex_structure_type, |
2c53bf6d JG |
613 | variant_type, "variant_value"), |
614 | "Add variant_value field to complex structure"); | |
8deee039 | 615 | ok(!bt_ctf_field_type_structure_add_field(complex_structure_type, |
2c53bf6d JG |
616 | inner_structure_type, "inner_structure"), |
617 | "Add inner_structure field to complex structure"); | |
39d74371 | 618 | |
8deee039 | 619 | event_class = bt_ctf_event_class_create(complex_test_event_string); |
39d74371 | 620 | ok(event_class, "Create an event class"); |
8deee039 | 621 | ok(bt_ctf_event_class_add_field(event_class, uint_35_type, ""), |
39d74371 | 622 | "Reject addition of a field with an empty name to an event"); |
8deee039 | 623 | ok(bt_ctf_event_class_add_field(event_class, NULL, "an_integer"), |
39d74371 | 624 | "Reject addition of a field with a NULL type to an event"); |
8deee039 | 625 | ok(bt_ctf_event_class_add_field(event_class, uint_35_type, |
39d74371 JG |
626 | "int"), |
627 | "Reject addition of a type with an illegal name to an event"); | |
8deee039 | 628 | ok(bt_ctf_event_class_add_field(event_class, uint_35_type, |
39d74371 JG |
629 | "uint_35") == 0, |
630 | "Add field of type unsigned integer to an event"); | |
8deee039 | 631 | ok(bt_ctf_event_class_add_field(event_class, int_16_type, |
39d74371 | 632 | "int_16") == 0, "Add field of type signed integer to an event"); |
8deee039 | 633 | ok(bt_ctf_event_class_add_field(event_class, complex_structure_type, |
39d74371 JG |
634 | "complex_structure") == 0, |
635 | "Add composite structure to an event"); | |
636 | ||
8deee039 | 637 | ret_string = bt_ctf_event_class_get_name(event_class); |
1ff9582c | 638 | ok(!strcmp(ret_string, complex_test_event_string), |
8deee039 PP |
639 | "bt_ctf_event_class_get_name returns a correct name"); |
640 | ok(bt_ctf_event_class_get_id(event_class) < 0, | |
641 | "bt_ctf_event_class_get_id returns a negative value when not set"); | |
642 | ok(bt_ctf_event_class_set_id(NULL, 42) < 0, | |
643 | "bt_ctf_event_class_set_id handles NULL correctly"); | |
644 | ok(bt_ctf_event_class_set_id(event_class, 42) == 0, | |
1ff9582c | 645 | "Set an event class' id"); |
8deee039 PP |
646 | ok(bt_ctf_event_class_get_id(event_class) == 42, |
647 | "bt_ctf_event_class_get_id returns the correct value"); | |
1ff9582c | 648 | |
3b3b162e | 649 | /* Test event class attributes */ |
8deee039 | 650 | ok(bt_ctf_event_class_get_log_level(event_class) == BT_CTF_EVENT_CLASS_LOG_LEVEL_UNSPECIFIED, |
9cf5d083 | 651 | "event class has the expected initial log level"); |
8deee039 | 652 | ok(!bt_ctf_event_class_get_emf_uri(event_class), |
9cf5d083 | 653 | "as expected, event class has no initial EMF URI"); |
8deee039 PP |
654 | ok(bt_ctf_event_class_set_log_level(NULL, BT_CTF_EVENT_CLASS_LOG_LEVEL_INFO), |
655 | "bt_ctf_event_class_set_log_level handles a NULL event class correctly"); | |
656 | ok(bt_ctf_event_class_set_log_level(event_class, BT_CTF_EVENT_CLASS_LOG_LEVEL_UNKNOWN), | |
657 | "bt_ctf_event_class_set_log_level handles an unknown log level correctly"); | |
658 | ok(!bt_ctf_event_class_set_log_level(event_class, BT_CTF_EVENT_CLASS_LOG_LEVEL_INFO), | |
659 | "bt_ctf_event_class_set_log_level succeeds with a valid log level"); | |
660 | ok(bt_ctf_event_class_get_log_level(event_class) == BT_CTF_EVENT_CLASS_LOG_LEVEL_INFO, | |
661 | "bt_ctf_event_class_get_log_level returns the expected log level"); | |
662 | ok(bt_ctf_event_class_set_emf_uri(NULL, "http://diamon.org/babeltrace/"), | |
663 | "bt_ctf_event_class_set_emf_uri handles a NULL event class correctly"); | |
664 | ok(!bt_ctf_event_class_set_emf_uri(event_class, "http://diamon.org/babeltrace/"), | |
665 | "bt_ctf_event_class_set_emf_uri succeeds with a valid EMF URI"); | |
666 | ok(strcmp(bt_ctf_event_class_get_emf_uri(event_class), "http://diamon.org/babeltrace/") == 0, | |
667 | "bt_ctf_event_class_get_emf_uri returns the expected EMF URI"); | |
668 | ok(!bt_ctf_event_class_set_emf_uri(event_class, NULL), | |
669 | "bt_ctf_event_class_set_emf_uri succeeds with NULL (to reset)"); | |
670 | ok(!bt_ctf_event_class_get_emf_uri(event_class), | |
9cf5d083 | 671 | "as expected, event class has no EMF URI after reset"); |
3b3b162e | 672 | |
39d74371 | 673 | /* Add event class to the stream class */ |
8deee039 | 674 | ok(bt_ctf_stream_class_add_event_class(stream_class, NULL), |
39d74371 | 675 | "Reject addition of NULL event class to a stream class"); |
8deee039 | 676 | ok(bt_ctf_stream_class_add_event_class(stream_class, |
39d74371 JG |
677 | event_class) == 0, "Add an event class to stream class"); |
678 | ||
8deee039 | 679 | ret_stream_class = bt_ctf_event_class_get_stream_class(event_class); |
1ff9582c | 680 | ok(ret_stream_class == stream_class, |
8deee039 | 681 | "bt_ctf_event_class_get_stream_class returns the correct stream class"); |
8c6884d9 | 682 | bt_ctf_object_put_ref(ret_stream_class); |
1ff9582c | 683 | |
1ff9582c | 684 | ok(bt_ctf_event_class_get_field_by_name(event_class, "truie") == NULL, |
8deee039 | 685 | "bt_ctf_event_class_get_field_by_name handles an invalid field name correctly"); |
1ff9582c JG |
686 | ret_field_type = bt_ctf_event_class_get_field_by_name(event_class, |
687 | "complex_structure"); | |
8c6884d9 | 688 | bt_ctf_object_put_ref(ret_field_type); |
1ff9582c | 689 | |
8deee039 | 690 | event = bt_ctf_event_create(event_class); |
39d74371 JG |
691 | ok(event, "Instanciate a complex event"); |
692 | ||
8deee039 | 693 | ret_event_class = bt_ctf_event_get_class(event); |
1ff9582c | 694 | ok(ret_event_class == event_class, |
8deee039 | 695 | "bt_ctf_event_get_class returns the correct event class"); |
8c6884d9 | 696 | bt_ctf_object_put_ref(ret_event_class); |
1ff9582c | 697 | |
8deee039 PP |
698 | uint_35_field = bt_ctf_event_get_payload(event, "uint_35"); |
699 | ok(uint_35_field, "Use bt_ctf_event_get_payload to get a field instance "); | |
700 | bt_ctf_field_integer_unsigned_set_value(uint_35_field, 0x0DDF00D); | |
701 | ok(bt_ctf_field_integer_unsigned_get_value(uint_35_field, | |
10817e06 | 702 | &ret_unsigned_int) == 0, |
8deee039 | 703 | "bt_ctf_field_integer_unsigned_get_value succeeds after setting a value"); |
10817e06 | 704 | ok(ret_unsigned_int == 0x0DDF00D, |
8deee039 | 705 | "bt_ctf_field_integer_unsigned_get_value returns the correct value"); |
8c6884d9 | 706 | bt_ctf_object_put_ref(uint_35_field); |
39d74371 | 707 | |
8deee039 PP |
708 | int_16_field = bt_ctf_event_get_payload(event, "int_16"); |
709 | bt_ctf_field_integer_signed_set_value(int_16_field, -12345); | |
710 | ok(bt_ctf_field_integer_signed_get_value(int_16_field, | |
10817e06 | 711 | &ret_signed_int) == 0, |
8deee039 | 712 | "bt_ctf_field_integer_signed_get_value succeeds after setting a value"); |
10817e06 | 713 | ok(ret_signed_int == -12345, |
8deee039 | 714 | "bt_ctf_field_integer_signed_get_value returns the correct value"); |
8c6884d9 | 715 | bt_ctf_object_put_ref(int_16_field); |
39d74371 | 716 | |
8deee039 | 717 | complex_structure_field = bt_ctf_event_get_payload(event, |
39d74371 | 718 | "complex_structure"); |
10817e06 | 719 | |
8deee039 | 720 | inner_structure_field = bt_ctf_field_structure_get_field_by_index( |
10817e06 | 721 | complex_structure_field, 3); |
8deee039 | 722 | ret_field_type = bt_ctf_field_get_type(inner_structure_field); |
8c6884d9 PP |
723 | bt_ctf_object_put_ref(inner_structure_field); |
724 | bt_ctf_object_put_ref(ret_field_type); | |
10817e06 | 725 | |
8deee039 | 726 | inner_structure_field = bt_ctf_field_structure_get_field_by_name( |
39d74371 | 727 | complex_structure_field, "inner_structure"); |
8deee039 | 728 | a_string_field = bt_ctf_field_structure_get_field_by_name( |
4dff667f | 729 | complex_structure_field, "string"); |
8deee039 | 730 | enum_variant_field = bt_ctf_field_structure_get_field_by_name( |
39d74371 | 731 | complex_structure_field, "variant_selector"); |
8deee039 | 732 | variant_field = bt_ctf_field_structure_get_field_by_name( |
39d74371 | 733 | complex_structure_field, "variant_value"); |
8deee039 | 734 | uint_35_field = bt_ctf_field_structure_get_field_by_name( |
39d74371 | 735 | inner_structure_field, "seq_len"); |
8deee039 | 736 | a_sequence_field = bt_ctf_field_structure_get_field_by_name( |
39d74371 | 737 | inner_structure_field, "a_sequence"); |
8deee039 | 738 | an_array_field = bt_ctf_field_structure_get_field_by_name( |
1fac895e | 739 | inner_structure_field, "an_array"); |
39d74371 | 740 | |
8deee039 | 741 | enum_container_field = bt_ctf_field_enumeration_get_container( |
39d74371 | 742 | enum_variant_field); |
8deee039 PP |
743 | bt_ctf_field_integer_unsigned_set_value(enum_container_field, 1); |
744 | int_16_field = bt_ctf_field_variant_get_field(variant_field, | |
39d74371 | 745 | enum_variant_field); |
8deee039 | 746 | bt_ctf_field_integer_signed_set_value(int_16_field, -200); |
8c6884d9 | 747 | bt_ctf_object_put_ref(int_16_field); |
8deee039 | 748 | bt_ctf_field_string_set_value(a_string_field, |
a31f4869 | 749 | test_string_1); |
8deee039 PP |
750 | ok(!bt_ctf_field_string_append(a_string_field, test_string_2), |
751 | "bt_ctf_field_string_append succeeds"); | |
752 | ok(!bt_ctf_field_string_append_len(a_string_field, test_string_3, 5), | |
753 | "bt_ctf_field_string_append_len succeeds (append 5 characters)"); | |
754 | ok(!bt_ctf_field_string_append_len(a_string_field, &test_string_4[5], 3), | |
755 | "bt_ctf_field_string_append_len succeeds (append 0 characters)"); | |
756 | ok(!bt_ctf_field_string_append_len(a_string_field, test_string_3, 0), | |
757 | "bt_ctf_field_string_append_len succeeds (append 0 characters)"); | |
758 | ||
759 | ret_string = bt_ctf_field_string_get_value(a_string_field); | |
760 | ok(ret_string, "bt_ctf_field_string_get_value returns a string"); | |
a31f4869 | 761 | ok(ret_string ? !strcmp(ret_string, test_string_cat) : 0, |
8deee039 PP |
762 | "bt_ctf_field_string_get_value returns a correct value"); |
763 | bt_ctf_field_integer_unsigned_set_value(uint_35_field, | |
39d74371 | 764 | SEQUENCE_TEST_LENGTH); |
10817e06 | 765 | |
8deee039 | 766 | ret_field_type = bt_ctf_field_type_variant_get_field_type_from_tag( |
7cfd41d6 JG |
767 | variant_type, enum_variant_field); |
768 | ok(ret_field_type == int_16_type, | |
8deee039 | 769 | "bt_ctf_field_type_variant_get_field_type_from_tag returns the correct field type"); |
7cfd41d6 | 770 | |
8deee039 | 771 | ok(bt_ctf_field_sequence_set_length(a_sequence_field, |
39d74371 JG |
772 | uint_35_field) == 0, "Set a sequence field's length"); |
773 | ||
774 | for (i = 0; i < SEQUENCE_TEST_LENGTH; i++) { | |
8deee039 | 775 | int_16_field = bt_ctf_field_sequence_get_field( |
39d74371 | 776 | a_sequence_field, i); |
8deee039 | 777 | bt_ctf_field_integer_signed_set_value(int_16_field, 4 - i); |
8c6884d9 | 778 | bt_ctf_object_put_ref(int_16_field); |
39d74371 JG |
779 | } |
780 | ||
1fac895e | 781 | for (i = 0; i < ARRAY_TEST_LENGTH; i++) { |
8deee039 | 782 | int_16_field = bt_ctf_field_array_get_field( |
1fac895e | 783 | an_array_field, i); |
8deee039 | 784 | bt_ctf_field_integer_signed_set_value(int_16_field, i); |
8c6884d9 | 785 | bt_ctf_object_put_ref(int_16_field); |
1fac895e JG |
786 | } |
787 | ||
8deee039 | 788 | stream_event_ctx_field = bt_ctf_event_get_stream_event_context(event); |
b8f13b8b | 789 | BT_ASSERT(stream_event_ctx_field); |
8deee039 | 790 | stream_event_ctx_int_field = bt_ctf_field_structure_get_field_by_name( |
5fd2e9fd | 791 | stream_event_ctx_field, "common_event_context"); |
8c6884d9 | 792 | BT_CTF_OBJECT_PUT_REF_AND_RESET(stream_event_ctx_field); |
8deee039 | 793 | bt_ctf_field_integer_unsigned_set_value(stream_event_ctx_int_field, 17); |
8c6884d9 | 794 | BT_CTF_OBJECT_PUT_REF_AND_RESET(stream_event_ctx_int_field); |
5fd2e9fd | 795 | |
39d74371 | 796 | bt_ctf_clock_set_time(clock, ++current_time); |
8deee039 | 797 | ok(bt_ctf_stream_append_event(stream, event) == 0, |
39d74371 | 798 | "Append a complex event to a stream"); |
12c8a1a3 JG |
799 | |
800 | /* | |
801 | * Populate the custom packet context field with a dummy value | |
802 | * otherwise flush will fail. | |
803 | */ | |
8deee039 PP |
804 | packet_context = bt_ctf_stream_get_packet_context(stream); |
805 | packet_context_field = bt_ctf_field_structure_get_field_by_name(packet_context, | |
35e8709f | 806 | "custom_packet_context_field"); |
8deee039 | 807 | bt_ctf_field_integer_unsigned_set_value(packet_context_field, 1); |
12c8a1a3 | 808 | |
8deee039 | 809 | ok(bt_ctf_stream_flush(stream) == 0, |
39d74371 JG |
810 | "Flush a stream containing a complex event"); |
811 | ||
8c6884d9 PP |
812 | bt_ctf_object_put_ref(uint_35_field); |
813 | bt_ctf_object_put_ref(a_string_field); | |
814 | bt_ctf_object_put_ref(inner_structure_field); | |
815 | bt_ctf_object_put_ref(complex_structure_field); | |
816 | bt_ctf_object_put_ref(a_sequence_field); | |
817 | bt_ctf_object_put_ref(an_array_field); | |
818 | bt_ctf_object_put_ref(enum_variant_field); | |
819 | bt_ctf_object_put_ref(enum_container_field); | |
820 | bt_ctf_object_put_ref(variant_field); | |
821 | bt_ctf_object_put_ref(packet_context_field); | |
822 | bt_ctf_object_put_ref(packet_context); | |
823 | bt_ctf_object_put_ref(uint_35_type); | |
824 | bt_ctf_object_put_ref(int_16_type); | |
825 | bt_ctf_object_put_ref(string_type); | |
826 | bt_ctf_object_put_ref(sequence_type); | |
827 | bt_ctf_object_put_ref(array_type); | |
828 | bt_ctf_object_put_ref(inner_structure_type); | |
829 | bt_ctf_object_put_ref(complex_structure_type); | |
830 | bt_ctf_object_put_ref(uint_3_type); | |
831 | bt_ctf_object_put_ref(enum_variant_type); | |
832 | bt_ctf_object_put_ref(variant_type); | |
833 | bt_ctf_object_put_ref(ret_field_type); | |
834 | bt_ctf_object_put_ref(event_class); | |
835 | bt_ctf_object_put_ref(event); | |
39d74371 JG |
836 | } |
837 | ||
a3d8579b | 838 | static |
39d74371 JG |
839 | void type_field_tests() |
840 | { | |
8deee039 PP |
841 | struct bt_ctf_field *uint_12; |
842 | struct bt_ctf_field *int_16; | |
843 | struct bt_ctf_field *string; | |
844 | struct bt_ctf_field_type *composite_structure_type; | |
845 | struct bt_ctf_field_type *structure_seq_type; | |
846 | struct bt_ctf_field_type *string_type; | |
847 | struct bt_ctf_field_type *sequence_type; | |
848 | struct bt_ctf_field_type *uint_8_type; | |
849 | struct bt_ctf_field_type *int_16_type; | |
850 | struct bt_ctf_field_type *uint_12_type = | |
851 | bt_ctf_field_type_integer_create(12); | |
852 | struct bt_ctf_field_type *enumeration_type; | |
853 | struct bt_ctf_field_type *returned_type; | |
7cfd41d6 | 854 | const char *ret_string; |
10817e06 | 855 | |
39d74371 | 856 | ok(uint_12_type, "Create an unsigned integer type"); |
8deee039 PP |
857 | ok(bt_ctf_field_type_integer_set_base(uint_12_type, |
858 | BT_CTF_INTEGER_BASE_BINARY) == 0, | |
39d74371 | 859 | "Set integer type's base as binary"); |
8deee039 PP |
860 | ok(bt_ctf_field_type_integer_set_base(uint_12_type, |
861 | BT_CTF_INTEGER_BASE_DECIMAL) == 0, | |
39d74371 | 862 | "Set integer type's base as decimal"); |
8deee039 PP |
863 | ok(bt_ctf_field_type_integer_set_base(uint_12_type, |
864 | BT_CTF_INTEGER_BASE_UNKNOWN), | |
39d74371 | 865 | "Reject integer type's base set as unknown"); |
8deee039 PP |
866 | ok(bt_ctf_field_type_integer_set_base(uint_12_type, |
867 | BT_CTF_INTEGER_BASE_OCTAL) == 0, | |
39d74371 | 868 | "Set integer type's base as octal"); |
8deee039 PP |
869 | ok(bt_ctf_field_type_integer_set_base(uint_12_type, |
870 | BT_CTF_INTEGER_BASE_HEXADECIMAL) == 0, | |
39d74371 | 871 | "Set integer type's base as hexadecimal"); |
8deee039 | 872 | ok(bt_ctf_field_type_integer_set_base(uint_12_type, 457417), |
39d74371 JG |
873 | "Reject unknown integer base value"); |
874 | ok(bt_ctf_field_type_integer_set_signed(uint_12_type, 952835) == 0, | |
875 | "Set integer type signedness to signed"); | |
876 | ok(bt_ctf_field_type_integer_set_signed(uint_12_type, 0) == 0, | |
877 | "Set integer type signedness to unsigned"); | |
8deee039 PP |
878 | ok(bt_ctf_field_type_integer_get_size(uint_12_type) == 12, |
879 | "bt_ctf_field_type_integer_get_size returns a correct value"); | |
7cfd41d6 | 880 | ok(bt_ctf_field_type_integer_get_signed(uint_12_type) == 0, |
8deee039 PP |
881 | "bt_ctf_field_type_integer_get_signed returns a correct value for unsigned types"); |
882 | ||
883 | ok(bt_ctf_field_type_set_byte_order(NULL, | |
884 | BT_CTF_BYTE_ORDER_LITTLE_ENDIAN) < 0, | |
885 | "bt_ctf_field_type_set_byte_order handles NULL correctly"); | |
886 | ok(bt_ctf_field_type_set_byte_order(uint_12_type, | |
887 | (enum bt_ctf_byte_order) 42) < 0, | |
888 | "bt_ctf_field_type_set_byte_order rejects invalid values"); | |
889 | ok(bt_ctf_field_type_set_byte_order(uint_12_type, | |
890 | BT_CTF_BYTE_ORDER_LITTLE_ENDIAN) == 0, | |
7cfd41d6 | 891 | "Set an integer's byte order to little endian"); |
8deee039 PP |
892 | ok(bt_ctf_field_type_set_byte_order(uint_12_type, |
893 | BT_CTF_BYTE_ORDER_BIG_ENDIAN) == 0, | |
7cfd41d6 | 894 | "Set an integer's byte order to big endian"); |
8deee039 PP |
895 | ok(bt_ctf_field_type_get_byte_order(uint_12_type) == |
896 | BT_CTF_BYTE_ORDER_BIG_ENDIAN, | |
897 | "bt_ctf_field_type_get_byte_order returns a correct value"); | |
898 | ||
899 | ok(bt_ctf_field_type_get_type_id(uint_12_type) == | |
900 | BT_CTF_FIELD_TYPE_ID_INTEGER, | |
901 | "bt_ctf_field_type_get_type_id returns a correct value with an integer type"); | |
902 | ||
903 | ok(bt_ctf_field_type_integer_get_base(uint_12_type) == | |
904 | BT_CTF_INTEGER_BASE_HEXADECIMAL, | |
905 | "bt_ctf_field_type_integer_get_base returns a correct value"); | |
906 | ||
907 | ok(bt_ctf_field_type_integer_set_encoding(NULL, | |
908 | BT_CTF_STRING_ENCODING_ASCII) < 0, | |
909 | "bt_ctf_field_type_integer_set_encoding handles NULL correctly"); | |
910 | ok(bt_ctf_field_type_integer_set_encoding(uint_12_type, | |
911 | (enum bt_ctf_string_encoding) 123) < 0, | |
912 | "bt_ctf_field_type_integer_set_encoding handles invalid encodings correctly"); | |
913 | ok(bt_ctf_field_type_integer_set_encoding(uint_12_type, | |
914 | BT_CTF_STRING_ENCODING_UTF8) == 0, | |
7cfd41d6 | 915 | "Set integer type encoding to UTF8"); |
8deee039 PP |
916 | ok(bt_ctf_field_type_integer_get_encoding(uint_12_type) == |
917 | BT_CTF_STRING_ENCODING_UTF8, | |
918 | "bt_ctf_field_type_integer_get_encoding returns a correct value"); | |
839d52a5 | 919 | |
8deee039 | 920 | int_16_type = bt_ctf_field_type_integer_create(16); |
b8f13b8b | 921 | BT_ASSERT(int_16_type); |
687ae062 JG |
922 | ok(!bt_ctf_field_type_integer_set_signed(int_16_type, 1), |
923 | "Set signedness of 16 bit integer to true"); | |
7cfd41d6 | 924 | ok(bt_ctf_field_type_integer_get_signed(int_16_type) == 1, |
8deee039 PP |
925 | "bt_ctf_field_type_integer_get_signed returns a correct value for signed types"); |
926 | uint_8_type = bt_ctf_field_type_integer_create(8); | |
39d74371 | 927 | sequence_type = |
8deee039 | 928 | bt_ctf_field_type_sequence_create(int_16_type, "seq_len"); |
39d74371 | 929 | ok(sequence_type, "Create a sequence of int16_t type"); |
8deee039 PP |
930 | ok(bt_ctf_field_type_get_type_id(sequence_type) == |
931 | BT_CTF_FIELD_TYPE_ID_SEQUENCE, | |
932 | "bt_ctf_field_type_get_type_id returns a correct value with a sequence type"); | |
7cfd41d6 | 933 | |
8deee039 | 934 | ret_string = bt_ctf_field_type_sequence_get_length_field_name( |
7cfd41d6 JG |
935 | sequence_type); |
936 | ok(!strcmp(ret_string, "seq_len"), | |
8deee039 PP |
937 | "bt_ctf_field_type_sequence_get_length_field_name returns the correct value"); |
938 | returned_type = bt_ctf_field_type_sequence_get_element_field_type( | |
7cfd41d6 JG |
939 | sequence_type); |
940 | ok(returned_type == int_16_type, | |
8deee039 | 941 | "bt_ctf_field_type_sequence_get_element_field_type returns the correct type"); |
8c6884d9 | 942 | bt_ctf_object_put_ref(returned_type); |
39d74371 | 943 | |
8deee039 | 944 | string_type = bt_ctf_field_type_string_create(); |
39d74371 | 945 | ok(string_type, "Create a string type"); |
8deee039 PP |
946 | ok(bt_ctf_field_type_string_set_encoding(string_type, |
947 | BT_CTF_STRING_ENCODING_NONE), | |
39d74371 | 948 | "Reject invalid \"None\" string encoding"); |
8deee039 | 949 | ok(bt_ctf_field_type_string_set_encoding(string_type, |
39d74371 JG |
950 | 42), |
951 | "Reject invalid string encoding"); | |
8deee039 PP |
952 | ok(bt_ctf_field_type_string_set_encoding(string_type, |
953 | BT_CTF_STRING_ENCODING_ASCII) == 0, | |
39d74371 JG |
954 | "Set string encoding to ASCII"); |
955 | ||
8deee039 PP |
956 | ok(bt_ctf_field_type_string_get_encoding(string_type) == |
957 | BT_CTF_STRING_ENCODING_ASCII, | |
958 | "bt_ctf_field_type_string_get_encoding returns the correct value"); | |
839d52a5 | 959 | |
8deee039 PP |
960 | structure_seq_type = bt_ctf_field_type_structure_create(); |
961 | ok(bt_ctf_field_type_get_type_id(structure_seq_type) == | |
962 | BT_CTF_FIELD_TYPE_ID_STRUCT, | |
963 | "bt_ctf_field_type_get_type_id returns a correct value with a structure type"); | |
39d74371 | 964 | ok(structure_seq_type, "Create a structure type"); |
8deee039 | 965 | ok(bt_ctf_field_type_structure_add_field(structure_seq_type, |
39d74371 JG |
966 | uint_8_type, "seq_len") == 0, |
967 | "Add a uint8_t type to a structure"); | |
8deee039 | 968 | ok(bt_ctf_field_type_structure_add_field(structure_seq_type, |
39d74371 JG |
969 | sequence_type, "a_sequence") == 0, |
970 | "Add a sequence type to a structure"); | |
7cfd41d6 | 971 | |
8deee039 PP |
972 | ok(bt_ctf_field_type_structure_get_field_count(structure_seq_type) == 2, |
973 | "bt_ctf_field_type_structure_get_field_count returns a correct value"); | |
7cfd41d6 | 974 | |
7cfd41d6 | 975 | ok(bt_ctf_field_type_structure_get_field(structure_seq_type, |
f9b799fc | 976 | NULL, &returned_type, 1) == 0, |
8deee039 | 977 | "bt_ctf_field_type_structure_get_field handles a NULL name correctly"); |
8c6884d9 | 978 | bt_ctf_object_put_ref(returned_type); |
7cfd41d6 | 979 | ok(bt_ctf_field_type_structure_get_field(structure_seq_type, |
f9b799fc | 980 | &ret_string, NULL, 1) == 0, |
8deee039 | 981 | "bt_ctf_field_type_structure_get_field handles a NULL return type correctly"); |
7cfd41d6 JG |
982 | ok(bt_ctf_field_type_structure_get_field(structure_seq_type, |
983 | &ret_string, &returned_type, 1) == 0, | |
8deee039 | 984 | "bt_ctf_field_type_structure_get_field returns a field"); |
7cfd41d6 | 985 | ok(!strcmp(ret_string, "a_sequence"), |
8deee039 | 986 | "bt_ctf_field_type_structure_get_field returns a correct field name"); |
7cfd41d6 | 987 | ok(returned_type == sequence_type, |
8deee039 | 988 | "bt_ctf_field_type_structure_get_field returns a correct field type"); |
8c6884d9 | 989 | bt_ctf_object_put_ref(returned_type); |
7cfd41d6 | 990 | |
8deee039 | 991 | returned_type = bt_ctf_field_type_structure_get_field_type_by_name( |
7cfd41d6 JG |
992 | structure_seq_type, "a_sequence"); |
993 | ok(returned_type == sequence_type, | |
8deee039 | 994 | "bt_ctf_field_type_structure_get_field_type_by_name returns the correct field type"); |
8c6884d9 | 995 | bt_ctf_object_put_ref(returned_type); |
7cfd41d6 | 996 | |
8deee039 PP |
997 | composite_structure_type = bt_ctf_field_type_structure_create(); |
998 | ok(bt_ctf_field_type_structure_add_field(composite_structure_type, | |
39d74371 JG |
999 | string_type, "a_string") == 0, |
1000 | "Add a string type to a structure"); | |
8deee039 | 1001 | ok(bt_ctf_field_type_structure_add_field(composite_structure_type, |
39d74371 JG |
1002 | structure_seq_type, "inner_structure") == 0, |
1003 | "Add a structure type to a structure"); | |
1004 | ||
8deee039 | 1005 | returned_type = bt_ctf_field_type_structure_get_field_type_by_name( |
7cfd41d6 JG |
1006 | structure_seq_type, "a_sequence"); |
1007 | ok(returned_type == sequence_type, | |
8deee039 | 1008 | "bt_ctf_field_type_structure_get_field_type_by_name returns a correct type"); |
8c6884d9 | 1009 | bt_ctf_object_put_ref(returned_type); |
7cfd41d6 | 1010 | |
8deee039 | 1011 | int_16 = bt_ctf_field_create(int_16_type); |
39d74371 | 1012 | ok(int_16, "Instanciate a signed 16-bit integer"); |
8deee039 | 1013 | uint_12 = bt_ctf_field_create(uint_12_type); |
39d74371 | 1014 | ok(uint_12, "Instanciate an unsigned 12-bit integer"); |
8deee039 | 1015 | returned_type = bt_ctf_field_get_type(int_16); |
10817e06 | 1016 | ok(returned_type == int_16_type, |
8deee039 | 1017 | "bt_ctf_field_get_type returns the correct type"); |
39d74371 JG |
1018 | |
1019 | /* Can't modify types after instanciating them */ | |
8deee039 PP |
1020 | ok(bt_ctf_field_type_integer_set_base(uint_12_type, |
1021 | BT_CTF_INTEGER_BASE_DECIMAL), | |
39d74371 JG |
1022 | "Check an integer type' base can't be modified after instanciation"); |
1023 | ok(bt_ctf_field_type_integer_set_signed(uint_12_type, 0), | |
1024 | "Check an integer type's signedness can't be modified after instanciation"); | |
1025 | ||
39d74371 | 1026 | /* Check overflows are properly tested for */ |
8deee039 | 1027 | ok(bt_ctf_field_integer_signed_set_value(int_16, -32768) == 0, |
39d74371 | 1028 | "Check -32768 is allowed for a signed 16-bit integer"); |
8deee039 | 1029 | ok(bt_ctf_field_integer_signed_set_value(int_16, 32767) == 0, |
39d74371 | 1030 | "Check 32767 is allowed for a signed 16-bit integer"); |
8deee039 | 1031 | ok(bt_ctf_field_integer_signed_set_value(int_16, -42) == 0, |
39d74371 JG |
1032 | "Check -42 is allowed for a signed 16-bit integer"); |
1033 | ||
8deee039 | 1034 | ok(bt_ctf_field_integer_unsigned_set_value(uint_12, 4095) == 0, |
39d74371 | 1035 | "Check 4095 is allowed for an unsigned 12-bit integer"); |
8deee039 | 1036 | ok(bt_ctf_field_integer_unsigned_set_value(uint_12, 0) == 0, |
39d74371 JG |
1037 | "Check 0 is allowed for an unsigned 12-bit integer"); |
1038 | ||
8deee039 | 1039 | string = bt_ctf_field_create(string_type); |
39d74371 | 1040 | ok(string, "Instanciate a string field"); |
8deee039 | 1041 | ok(bt_ctf_field_string_set_value(string, "A value") == 0, |
39d74371 JG |
1042 | "Set a string's value"); |
1043 | ||
8deee039 | 1044 | enumeration_type = bt_ctf_field_type_enumeration_create(uint_12_type); |
0abce37e JG |
1045 | ok(enumeration_type, |
1046 | "Create an enumeration type with an unsigned 12-bit integer as container"); | |
0abce37e | 1047 | |
8c6884d9 PP |
1048 | bt_ctf_object_put_ref(string); |
1049 | bt_ctf_object_put_ref(uint_12); | |
1050 | bt_ctf_object_put_ref(int_16); | |
1051 | bt_ctf_object_put_ref(composite_structure_type); | |
1052 | bt_ctf_object_put_ref(structure_seq_type); | |
1053 | bt_ctf_object_put_ref(string_type); | |
1054 | bt_ctf_object_put_ref(sequence_type); | |
1055 | bt_ctf_object_put_ref(uint_8_type); | |
1056 | bt_ctf_object_put_ref(int_16_type); | |
1057 | bt_ctf_object_put_ref(uint_12_type); | |
1058 | bt_ctf_object_put_ref(enumeration_type); | |
1059 | bt_ctf_object_put_ref(returned_type); | |
39d74371 JG |
1060 | } |
1061 | ||
a3d8579b | 1062 | static |
8deee039 PP |
1063 | void packet_resize_test(struct bt_ctf_stream_class *stream_class, |
1064 | struct bt_ctf_stream *stream, struct bt_ctf_clock *clock) | |
39d74371 JG |
1065 | { |
1066 | /* | |
1067 | * Append enough events to force the underlying packet to be resized. | |
1068 | * Also tests that a new event can be declared after a stream has been | |
1069 | * instantiated and used/flushed. | |
1070 | */ | |
1071 | int ret = 0; | |
1072 | int i; | |
8deee039 | 1073 | struct bt_ctf_event_class *event_class = bt_ctf_event_class_create( |
39d74371 | 1074 | "Spammy_Event"); |
8deee039 PP |
1075 | struct bt_ctf_field_type *integer_type = |
1076 | bt_ctf_field_type_integer_create(17); | |
1077 | struct bt_ctf_field_type *string_type = | |
1078 | bt_ctf_field_type_string_create(); | |
1079 | struct bt_ctf_event *event = NULL; | |
1080 | struct bt_ctf_field *ret_field = NULL; | |
1081 | struct bt_ctf_field_type *ret_field_type = NULL; | |
6809e227 | 1082 | uint64_t ret_uint64; |
12c8a1a3 | 1083 | int events_appended = 0; |
8deee039 | 1084 | struct bt_ctf_field *packet_context = NULL, |
5fd2e9fd | 1085 | *packet_context_field = NULL, *stream_event_context = NULL; |
8deee039 PP |
1086 | struct bt_ctf_field_type *ep_field_1_type = NULL; |
1087 | struct bt_ctf_field_type *ep_a_string_type = NULL; | |
1088 | struct bt_ctf_field_type *ep_type = NULL; | |
39d74371 | 1089 | |
8deee039 | 1090 | ret |= bt_ctf_event_class_add_field(event_class, integer_type, |
39d74371 | 1091 | "field_1"); |
8deee039 | 1092 | ret |= bt_ctf_event_class_add_field(event_class, string_type, |
39d74371 | 1093 | "a_string"); |
8deee039 | 1094 | ret |= bt_ctf_stream_class_add_event_class(stream_class, event_class); |
39d74371 JG |
1095 | ok(ret == 0, "Add a new event class to a stream class after writing an event"); |
1096 | if (ret) { | |
1097 | goto end; | |
1098 | } | |
1099 | ||
09840de5 | 1100 | /* |
8deee039 | 1101 | * bt_ctf_stream_class_add_event_class() copies the field types |
09840de5 PP |
1102 | * of event_class, so we retrieve the new ones to create the |
1103 | * appropriate fields. | |
1104 | */ | |
8deee039 | 1105 | ep_type = bt_ctf_event_class_get_payload_field_type(event_class); |
b8f13b8b | 1106 | BT_ASSERT(ep_type); |
8deee039 | 1107 | ep_field_1_type = bt_ctf_field_type_structure_get_field_type_by_name( |
09840de5 | 1108 | ep_type, "field_1"); |
b8f13b8b | 1109 | BT_ASSERT(ep_field_1_type); |
8deee039 | 1110 | ep_a_string_type = bt_ctf_field_type_structure_get_field_type_by_name( |
09840de5 | 1111 | ep_type, "a_string"); |
b8f13b8b | 1112 | BT_ASSERT(ep_a_string_type); |
09840de5 | 1113 | |
8deee039 PP |
1114 | event = bt_ctf_event_create(event_class); |
1115 | ret_field = bt_ctf_event_get_payload(event, 0); | |
1116 | ret_field_type = bt_ctf_field_get_type(ret_field); | |
8c6884d9 PP |
1117 | bt_ctf_object_put_ref(ret_field_type); |
1118 | bt_ctf_object_put_ref(ret_field); | |
1119 | bt_ctf_object_put_ref(event); | |
1ff9582c | 1120 | |
a9fddc0b | 1121 | for (i = 0; i < packet_resize_test_length; i++) { |
8deee039 PP |
1122 | event = bt_ctf_event_create(event_class); |
1123 | struct bt_ctf_field *integer = | |
1124 | bt_ctf_field_create(ep_field_1_type); | |
1125 | struct bt_ctf_field *string = | |
1126 | bt_ctf_field_create(ep_a_string_type); | |
39d74371 JG |
1127 | |
1128 | ret |= bt_ctf_clock_set_time(clock, ++current_time); | |
8deee039 PP |
1129 | ret |= bt_ctf_field_integer_unsigned_set_value(integer, i); |
1130 | ret |= bt_ctf_event_set_payload(event, "field_1", | |
39d74371 | 1131 | integer); |
8c6884d9 | 1132 | bt_ctf_object_put_ref(integer); |
8deee039 PP |
1133 | ret |= bt_ctf_field_string_set_value(string, "This is a test"); |
1134 | ret |= bt_ctf_event_set_payload(event, "a_string", | |
39d74371 | 1135 | string); |
8c6884d9 | 1136 | bt_ctf_object_put_ref(string); |
6e1f8ea1 JG |
1137 | |
1138 | /* Populate stream event context */ | |
5fd2e9fd | 1139 | stream_event_context = |
8deee039 PP |
1140 | bt_ctf_event_get_stream_event_context(event); |
1141 | integer = bt_ctf_field_structure_get_field_by_name(stream_event_context, | |
6e1f8ea1 | 1142 | "common_event_context"); |
8c6884d9 | 1143 | BT_CTF_OBJECT_PUT_REF_AND_RESET(stream_event_context); |
8deee039 | 1144 | ret |= bt_ctf_field_integer_unsigned_set_value(integer, |
6e1f8ea1 | 1145 | i % 42); |
8c6884d9 | 1146 | bt_ctf_object_put_ref(integer); |
6e1f8ea1 | 1147 | |
8deee039 | 1148 | ret |= bt_ctf_stream_append_event(stream, event); |
8c6884d9 | 1149 | bt_ctf_object_put_ref(event); |
39d74371 JG |
1150 | |
1151 | if (ret) { | |
1152 | break; | |
1153 | } | |
1154 | } | |
12c8a1a3 | 1155 | |
a9fddc0b | 1156 | events_appended = !!(i == packet_resize_test_length); |
8deee039 | 1157 | ret = bt_ctf_stream_get_discarded_events_count(stream, &ret_uint64); |
6809e227 | 1158 | ok(ret == 0 && ret_uint64 == 0, |
8deee039 PP |
1159 | "bt_ctf_stream_get_discarded_events_count returns a correct number of discarded events when none were discarded"); |
1160 | bt_ctf_stream_append_discarded_events(stream, 1000); | |
1161 | ret = bt_ctf_stream_get_discarded_events_count(stream, &ret_uint64); | |
6809e227 | 1162 | ok(ret == 0 && ret_uint64 == 1000, |
8deee039 | 1163 | "bt_ctf_stream_get_discarded_events_count returns a correct number of discarded events when some were discarded"); |
6809e227 | 1164 | |
39d74371 | 1165 | end: |
12c8a1a3 JG |
1166 | ok(events_appended, "Append 100 000 events to a stream"); |
1167 | ||
1168 | /* | |
1169 | * Populate the custom packet context field with a dummy value | |
1170 | * otherwise flush will fail. | |
1171 | */ | |
8deee039 PP |
1172 | packet_context = bt_ctf_stream_get_packet_context(stream); |
1173 | packet_context_field = bt_ctf_field_structure_get_field_by_name(packet_context, | |
35e8709f | 1174 | "custom_packet_context_field"); |
8deee039 | 1175 | bt_ctf_field_integer_unsigned_set_value(packet_context_field, 2); |
12c8a1a3 | 1176 | |
8deee039 | 1177 | ok(bt_ctf_stream_flush(stream) == 0, |
39d74371 | 1178 | "Flush a stream that forces a packet resize"); |
8deee039 | 1179 | ret = bt_ctf_stream_get_discarded_events_count(stream, &ret_uint64); |
6809e227 | 1180 | ok(ret == 0 && ret_uint64 == 1000, |
8deee039 | 1181 | "bt_ctf_stream_get_discarded_events_count returns a correct number of discarded events after a flush"); |
8c6884d9 PP |
1182 | bt_ctf_object_put_ref(integer_type); |
1183 | bt_ctf_object_put_ref(string_type); | |
1184 | bt_ctf_object_put_ref(packet_context); | |
1185 | bt_ctf_object_put_ref(packet_context_field); | |
1186 | bt_ctf_object_put_ref(stream_event_context); | |
1187 | bt_ctf_object_put_ref(event_class); | |
1188 | bt_ctf_object_put_ref(ep_field_1_type); | |
1189 | bt_ctf_object_put_ref(ep_a_string_type); | |
1190 | bt_ctf_object_put_ref(ep_type); | |
39d74371 JG |
1191 | } |
1192 | ||
a3d8579b | 1193 | static |
fdf80f32 JG |
1194 | void test_empty_stream(struct bt_ctf_writer *writer) |
1195 | { | |
1196 | int ret = 0; | |
8deee039 PP |
1197 | struct bt_ctf_trace *trace = NULL, *ret_trace = NULL; |
1198 | struct bt_ctf_stream_class *stream_class = NULL; | |
1199 | struct bt_ctf_stream *stream = NULL; | |
fdf80f32 JG |
1200 | |
1201 | trace = bt_ctf_writer_get_trace(writer); | |
1202 | if (!trace) { | |
1203 | diag("Failed to get trace from writer"); | |
1204 | ret = -1; | |
1205 | goto end; | |
1206 | } | |
1207 | ||
8deee039 | 1208 | stream_class = bt_ctf_stream_class_create("empty_stream"); |
fdf80f32 JG |
1209 | if (!stream_class) { |
1210 | diag("Failed to create stream class"); | |
1211 | ret = -1; | |
1212 | goto end; | |
1213 | } | |
1214 | ||
8deee039 | 1215 | ret = bt_ctf_stream_class_set_packet_context_type(stream_class, NULL); |
b8f13b8b | 1216 | BT_ASSERT(ret == 0); |
8deee039 | 1217 | ret = bt_ctf_stream_class_set_event_header_type(stream_class, NULL); |
b8f13b8b | 1218 | BT_ASSERT(ret == 0); |
e011d2c1 | 1219 | |
8deee039 PP |
1220 | ok(bt_ctf_stream_class_get_trace(stream_class) == NULL, |
1221 | "bt_ctf_stream_class_get_trace returns NULL when stream class is orphaned"); | |
9b068522 | 1222 | |
fdf80f32 JG |
1223 | stream = bt_ctf_writer_create_stream(writer, stream_class); |
1224 | if (!stream) { | |
1225 | diag("Failed to create writer stream"); | |
1226 | ret = -1; | |
1227 | goto end; | |
1228 | } | |
9b068522 | 1229 | |
8deee039 | 1230 | ret_trace = bt_ctf_stream_class_get_trace(stream_class); |
9b068522 | 1231 | ok(ret_trace == trace, |
8deee039 | 1232 | "bt_ctf_stream_class_get_trace returns the correct trace after a stream has been created"); |
fdf80f32 JG |
1233 | end: |
1234 | ok(ret == 0, | |
1235 | "Created a stream class with default attributes and an empty stream"); | |
8c6884d9 PP |
1236 | bt_ctf_object_put_ref(trace); |
1237 | bt_ctf_object_put_ref(ret_trace); | |
1238 | bt_ctf_object_put_ref(stream); | |
1239 | bt_ctf_object_put_ref(stream_class); | |
fdf80f32 JG |
1240 | } |
1241 | ||
a3d8579b | 1242 | static |
ac0c6bdd PP |
1243 | void test_custom_event_header_stream(struct bt_ctf_writer *writer, |
1244 | struct bt_ctf_clock *clock) | |
29be776a JG |
1245 | { |
1246 | int i, ret; | |
8deee039 PP |
1247 | struct bt_ctf_stream_class *stream_class = NULL; |
1248 | struct bt_ctf_stream *stream = NULL; | |
1249 | struct bt_ctf_field_type *integer_type = NULL, | |
29be776a | 1250 | *sequence_type = NULL, *event_header_type = NULL; |
8deee039 | 1251 | struct bt_ctf_field *integer = NULL, *sequence = NULL, |
29be776a | 1252 | *event_header = NULL, *packet_header = NULL; |
8deee039 PP |
1253 | struct bt_ctf_event_class *event_class = NULL; |
1254 | struct bt_ctf_event *event = NULL; | |
29be776a | 1255 | |
8deee039 | 1256 | stream_class = bt_ctf_stream_class_create("custom_event_header_stream"); |
29be776a JG |
1257 | if (!stream_class) { |
1258 | fail("Failed to create stream class"); | |
1259 | goto end; | |
1260 | } | |
1261 | ||
8deee039 | 1262 | ret = bt_ctf_stream_class_set_clock(stream_class, clock); |
29be776a JG |
1263 | if (ret) { |
1264 | fail("Failed to set stream class clock"); | |
1265 | goto end; | |
1266 | } | |
1267 | ||
1268 | /* | |
1269 | * Customize event header to add an "seq_len" integer member | |
1270 | * which will be used as the length of a sequence in an event of this | |
1271 | * stream. | |
1272 | */ | |
8deee039 | 1273 | event_header_type = bt_ctf_stream_class_get_event_header_type( |
29be776a JG |
1274 | stream_class); |
1275 | if (!event_header_type) { | |
1276 | fail("Failed to get event header type"); | |
1277 | goto end; | |
1278 | } | |
1279 | ||
8deee039 | 1280 | integer_type = bt_ctf_field_type_integer_create(13); |
29be776a JG |
1281 | if (!integer_type) { |
1282 | fail("Failed to create length integer type"); | |
1283 | goto end; | |
1284 | } | |
1285 | ||
8deee039 | 1286 | ret = bt_ctf_field_type_structure_add_field(event_header_type, |
29be776a JG |
1287 | integer_type, "seq_len"); |
1288 | if (ret) { | |
1289 | fail("Failed to add a new field to stream event header"); | |
1290 | goto end; | |
1291 | } | |
1292 | ||
8deee039 | 1293 | event_class = bt_ctf_event_class_create("sequence_event"); |
29be776a JG |
1294 | if (!event_class) { |
1295 | fail("Failed to create event class"); | |
1296 | goto end; | |
1297 | } | |
1298 | ||
1299 | /* | |
1300 | * This event's payload will contain a sequence which references | |
1301 | * stream.event.header.seq_len as its length field. | |
1302 | */ | |
8deee039 | 1303 | sequence_type = bt_ctf_field_type_sequence_create(integer_type, |
29be776a JG |
1304 | "stream.event.header.seq_len"); |
1305 | if (!sequence_type) { | |
1306 | fail("Failed to create a sequence"); | |
1307 | goto end; | |
1308 | } | |
1309 | ||
8deee039 | 1310 | ret = bt_ctf_event_class_add_field(event_class, sequence_type, |
29be776a JG |
1311 | "some_sequence"); |
1312 | if (ret) { | |
1313 | fail("Failed to add a sequence to an event class"); | |
1314 | goto end; | |
1315 | } | |
1316 | ||
8deee039 | 1317 | ret = bt_ctf_stream_class_add_event_class(stream_class, event_class); |
29be776a JG |
1318 | if (ret) { |
1319 | fail("Failed to add event class to stream class"); | |
1320 | goto end; | |
1321 | } | |
1322 | ||
1323 | stream = bt_ctf_writer_create_stream(writer, stream_class); | |
1324 | if (!stream) { | |
1325 | fail("Failed to create stream") | |
1326 | goto end; | |
1327 | } | |
1328 | ||
1329 | /* | |
1330 | * We have defined a custom packet header field. We have to populate it | |
1331 | * explicitly. | |
1332 | */ | |
8deee039 | 1333 | packet_header = bt_ctf_stream_get_packet_header(stream); |
29be776a JG |
1334 | if (!packet_header) { |
1335 | fail("Failed to get stream packet header"); | |
1336 | goto end; | |
1337 | } | |
1338 | ||
8deee039 | 1339 | integer = bt_ctf_field_structure_get_field_by_name(packet_header, |
29be776a JG |
1340 | "custom_trace_packet_header_field"); |
1341 | if (!integer) { | |
1342 | fail("Failed to retrieve custom_trace_packet_header_field"); | |
1343 | goto end; | |
1344 | } | |
1345 | ||
8deee039 | 1346 | ret = bt_ctf_field_integer_unsigned_set_value(integer, 3487); |
29be776a JG |
1347 | if (ret) { |
1348 | fail("Failed to set custom_trace_packet_header_field value"); | |
1349 | goto end; | |
1350 | } | |
8c6884d9 | 1351 | bt_ctf_object_put_ref(integer); |
29be776a | 1352 | |
8deee039 | 1353 | event = bt_ctf_event_create(event_class); |
29be776a JG |
1354 | if (!event) { |
1355 | fail("Failed to create event"); | |
1356 | goto end; | |
1357 | } | |
1358 | ||
8deee039 | 1359 | event_header = bt_ctf_event_get_header(event); |
29be776a JG |
1360 | if (!event_header) { |
1361 | fail("Failed to get event header"); | |
1362 | goto end; | |
1363 | } | |
1364 | ||
8deee039 | 1365 | integer = bt_ctf_field_structure_get_field_by_name(event_header, |
29be776a JG |
1366 | "seq_len"); |
1367 | if (!integer) { | |
1368 | fail("Failed to get seq_len field from event header"); | |
1369 | goto end; | |
1370 | } | |
1371 | ||
8deee039 | 1372 | ret = bt_ctf_field_integer_unsigned_set_value(integer, 2); |
29be776a JG |
1373 | if (ret) { |
1374 | fail("Failed to set seq_len value in event header"); | |
1375 | goto end; | |
1376 | } | |
1377 | ||
1378 | /* Populate both sequence integer fields */ | |
8deee039 | 1379 | sequence = bt_ctf_event_get_payload(event, "some_sequence"); |
29be776a JG |
1380 | if (!sequence) { |
1381 | fail("Failed to retrieve sequence from event"); | |
1382 | goto end; | |
1383 | } | |
1384 | ||
8deee039 | 1385 | ret = bt_ctf_field_sequence_set_length(sequence, integer); |
29be776a JG |
1386 | if (ret) { |
1387 | fail("Failed to set sequence length"); | |
1388 | goto end; | |
1389 | } | |
8c6884d9 | 1390 | bt_ctf_object_put_ref(integer); |
29be776a JG |
1391 | |
1392 | for (i = 0; i < 2; i++) { | |
8deee039 | 1393 | integer = bt_ctf_field_sequence_get_field(sequence, i); |
29be776a JG |
1394 | if (ret) { |
1395 | fail("Failed to retrieve sequence element"); | |
1396 | goto end; | |
1397 | } | |
1398 | ||
8deee039 | 1399 | ret = bt_ctf_field_integer_unsigned_set_value(integer, i); |
29be776a JG |
1400 | if (ret) { |
1401 | fail("Failed to set sequence element value"); | |
1402 | goto end; | |
1403 | } | |
1404 | ||
8c6884d9 | 1405 | bt_ctf_object_put_ref(integer); |
29be776a JG |
1406 | integer = NULL; |
1407 | } | |
1408 | ||
8deee039 | 1409 | ret = bt_ctf_stream_append_event(stream, event); |
29be776a JG |
1410 | if (ret) { |
1411 | fail("Failed to append event to stream"); | |
1412 | goto end; | |
1413 | } | |
1414 | ||
8deee039 | 1415 | ret = bt_ctf_stream_flush(stream); |
29be776a JG |
1416 | if (ret) { |
1417 | fail("Failed to flush custom_event_header stream"); | |
1418 | } | |
1419 | end: | |
8c6884d9 PP |
1420 | bt_ctf_object_put_ref(stream); |
1421 | bt_ctf_object_put_ref(stream_class); | |
1422 | bt_ctf_object_put_ref(event_class); | |
1423 | bt_ctf_object_put_ref(event); | |
1424 | bt_ctf_object_put_ref(integer); | |
1425 | bt_ctf_object_put_ref(sequence); | |
1426 | bt_ctf_object_put_ref(event_header); | |
1427 | bt_ctf_object_put_ref(packet_header); | |
1428 | bt_ctf_object_put_ref(sequence_type); | |
1429 | bt_ctf_object_put_ref(integer_type); | |
1430 | bt_ctf_object_put_ref(event_header_type); | |
29be776a JG |
1431 | } |
1432 | ||
a3d8579b | 1433 | static |
ac0c6bdd PP |
1434 | void test_instanciate_event_before_stream(struct bt_ctf_writer *writer, |
1435 | struct bt_ctf_clock *clock) | |
42f45a8d JG |
1436 | { |
1437 | int ret = 0; | |
8deee039 PP |
1438 | struct bt_ctf_stream_class *stream_class = NULL; |
1439 | struct bt_ctf_stream *stream = NULL, | |
2fb29fdc | 1440 | *ret_stream = NULL; |
8deee039 PP |
1441 | struct bt_ctf_event_class *event_class = NULL; |
1442 | struct bt_ctf_event *event = NULL; | |
1443 | struct bt_ctf_field_type *integer_type = NULL; | |
1444 | struct bt_ctf_field *payload_field = NULL; | |
1445 | struct bt_ctf_field *integer = NULL; | |
42f45a8d | 1446 | |
8deee039 | 1447 | stream_class = bt_ctf_stream_class_create("event_before_stream_test"); |
42f45a8d JG |
1448 | if (!stream_class) { |
1449 | diag("Failed to create stream class"); | |
1450 | ret = -1; | |
1451 | goto end; | |
1452 | } | |
1453 | ||
8deee039 | 1454 | ret = bt_ctf_stream_class_set_clock(stream_class, clock); |
42f45a8d JG |
1455 | if (ret) { |
1456 | diag("Failed to set stream class clock"); | |
1457 | goto end; | |
1458 | } | |
1459 | ||
8deee039 PP |
1460 | event_class = bt_ctf_event_class_create("some_event_class_name"); |
1461 | integer_type = bt_ctf_field_type_integer_create(32); | |
42f45a8d JG |
1462 | if (!integer_type) { |
1463 | diag("Failed to create integer field type"); | |
1464 | ret = -1; | |
1465 | goto end; | |
1466 | } | |
1467 | ||
8deee039 | 1468 | ret = bt_ctf_event_class_add_field(event_class, integer_type, |
42f45a8d JG |
1469 | "integer_field"); |
1470 | if (ret) { | |
1471 | diag("Failed to add field to event class"); | |
1472 | goto end; | |
1473 | } | |
1474 | ||
8deee039 | 1475 | ret = bt_ctf_stream_class_add_event_class(stream_class, |
42f45a8d JG |
1476 | event_class); |
1477 | if (ret) { | |
1478 | diag("Failed to add event class to stream class"); | |
1479 | } | |
1480 | ||
8deee039 | 1481 | event = bt_ctf_event_create(event_class); |
42f45a8d JG |
1482 | if (!event) { |
1483 | diag("Failed to create event"); | |
1484 | ret = -1; | |
1485 | goto end; | |
1486 | } | |
1487 | ||
8deee039 PP |
1488 | payload_field = bt_ctf_event_get_payload_field(event); |
1489 | if (!payload_field) { | |
1490 | diag("Failed to get event's payload field"); | |
1491 | ret = -1; | |
1492 | goto end; | |
1493 | } | |
1494 | ||
1495 | integer = bt_ctf_field_structure_get_field_by_index(payload_field, 0); | |
42f45a8d JG |
1496 | if (!integer) { |
1497 | diag("Failed to get integer field payload from event"); | |
1498 | ret = -1; | |
1499 | goto end; | |
1500 | } | |
1501 | ||
8deee039 | 1502 | ret = bt_ctf_field_integer_unsigned_set_value(integer, 1234); |
42f45a8d JG |
1503 | if (ret) { |
1504 | diag("Failed to set integer field value"); | |
1505 | goto end; | |
1506 | } | |
1507 | ||
1508 | stream = bt_ctf_writer_create_stream(writer, stream_class); | |
1509 | if (!stream) { | |
1510 | diag("Failed to create writer stream"); | |
1511 | ret = -1; | |
1512 | goto end; | |
1513 | } | |
1514 | ||
8deee039 | 1515 | ret = bt_ctf_stream_append_event(stream, event); |
42f45a8d JG |
1516 | if (ret) { |
1517 | diag("Failed to append event to stream"); | |
1518 | goto end; | |
1519 | } | |
2fb29fdc | 1520 | |
8deee039 | 1521 | ret_stream = bt_ctf_event_get_stream(event); |
2fb29fdc | 1522 | ok(ret_stream == stream, |
8deee039 | 1523 | "bt_ctf_event_get_stream returns an event's stream after it has been appended"); |
42f45a8d JG |
1524 | end: |
1525 | ok(ret == 0, | |
1526 | "Create an event before instanciating its associated stream"); | |
8c6884d9 PP |
1527 | bt_ctf_object_put_ref(stream); |
1528 | bt_ctf_object_put_ref(ret_stream); | |
1529 | bt_ctf_object_put_ref(stream_class); | |
1530 | bt_ctf_object_put_ref(event_class); | |
1531 | bt_ctf_object_put_ref(event); | |
1532 | bt_ctf_object_put_ref(integer_type); | |
1533 | bt_ctf_object_put_ref(integer); | |
1534 | bt_ctf_object_put_ref(payload_field); | |
42f45a8d JG |
1535 | } |
1536 | ||
a3d8579b | 1537 | static |
8deee039 | 1538 | void append_existing_event_class(struct bt_ctf_stream_class *stream_class) |
f60fde63 | 1539 | { |
164e96c2 | 1540 | int ret; |
8deee039 | 1541 | struct bt_ctf_event_class *event_class; |
f60fde63 | 1542 | |
8deee039 | 1543 | event_class = bt_ctf_event_class_create("Simple Event"); |
b8f13b8b | 1544 | BT_ASSERT(event_class); |
8deee039 | 1545 | ok(bt_ctf_stream_class_add_event_class(stream_class, event_class) == 0, |
a9f0d01b | 1546 | "two event classes with the same name may cohabit within the same stream class"); |
8c6884d9 | 1547 | bt_ctf_object_put_ref(event_class); |
f60fde63 | 1548 | |
8deee039 | 1549 | event_class = bt_ctf_event_class_create("different name, ok"); |
b8f13b8b | 1550 | BT_ASSERT(event_class); |
164e96c2 PP |
1551 | ret = bt_ctf_event_class_set_id(event_class, 13); |
1552 | BT_ASSERT(ret == 0); | |
8deee039 | 1553 | ok(bt_ctf_stream_class_add_event_class(stream_class, event_class), |
f60fde63 | 1554 | "two event classes with the same ID cannot cohabit within the same stream class"); |
8c6884d9 | 1555 | bt_ctf_object_put_ref(event_class); |
f60fde63 PP |
1556 | } |
1557 | ||
a3d8579b | 1558 | static |
44e0165b PP |
1559 | void test_clock_utils(void) |
1560 | { | |
1561 | int ret; | |
1562 | struct bt_ctf_clock *clock = NULL; | |
1563 | ||
1564 | clock = bt_ctf_clock_create("water"); | |
b8f13b8b | 1565 | BT_ASSERT(clock); |
44e0165b | 1566 | ret = bt_ctf_clock_set_offset_s(clock, 1234); |
b8f13b8b | 1567 | BT_ASSERT(!ret); |
44e0165b | 1568 | ret = bt_ctf_clock_set_offset(clock, 1000); |
b8f13b8b | 1569 | BT_ASSERT(!ret); |
44e0165b | 1570 | ret = bt_ctf_clock_set_frequency(clock, 1000000000); |
b8f13b8b | 1571 | BT_ASSERT(!ret); |
44e0165b | 1572 | ret = bt_ctf_clock_set_frequency(clock, 1534); |
b8f13b8b | 1573 | BT_ASSERT(!ret); |
44e0165b | 1574 | |
8c6884d9 | 1575 | BT_CTF_OBJECT_PUT_REF_AND_RESET(clock); |
44e0165b PP |
1576 | } |
1577 | ||
39d74371 JG |
1578 | int main(int argc, char **argv) |
1579 | { | |
a9fddc0b | 1580 | const char *env_resize_length; |
9d6b510b MJ |
1581 | gchar *trace_path; |
1582 | gchar *metadata_path; | |
39d74371 JG |
1583 | const char *clock_name = "test_clock"; |
1584 | const char *clock_description = "This is a test clock"; | |
5494ce8b JG |
1585 | const char *returned_clock_name; |
1586 | const char *returned_clock_description; | |
1587 | const uint64_t frequency = 1123456789; | |
6376d477 | 1588 | const int64_t offset_s = 13515309; |
61cf588b MD |
1589 | const int64_t offset = 1234567; |
1590 | int64_t get_offset_s, | |
61ec14e6 | 1591 | get_offset; |
39d74371 | 1592 | const uint64_t precision = 10; |
5494ce8b | 1593 | const int is_absolute = 0xFF; |
39d74371 JG |
1594 | char *metadata_string; |
1595 | struct bt_ctf_writer *writer; | |
19262d3d MJ |
1596 | struct bt_utsname name = {"GNU/Linux", "testhost", "4.4.0-87-generic", |
1597 | "#110-Ubuntu SMP Tue Jul 18 12:55:35 UTC 2017", "x86_64"}; | |
1ff9582c | 1598 | struct bt_ctf_clock *clock, *ret_clock; |
8deee039 PP |
1599 | struct bt_ctf_stream_class *stream_class, *ret_stream_class; |
1600 | struct bt_ctf_stream *stream1; | |
1601 | struct bt_ctf_stream *stream; | |
e3c971da | 1602 | const char *ret_string; |
e61caf8e JG |
1603 | const unsigned char *ret_uuid; |
1604 | unsigned char tmp_uuid[16] = { 0 }; | |
8deee039 | 1605 | struct bt_ctf_field_type *packet_context_type, |
b34f4d90 | 1606 | *packet_context_field_type, |
751b05c7 JG |
1607 | *packet_header_type, |
1608 | *packet_header_field_type, | |
35e8709f JG |
1609 | *integer_type, |
1610 | *stream_event_context_type, | |
88d26616 JG |
1611 | *ret_field_type, |
1612 | *event_header_field_type; | |
8deee039 PP |
1613 | struct bt_ctf_field *packet_header, *packet_header_field; |
1614 | struct bt_ctf_trace *trace; | |
12c8a1a3 | 1615 | int ret; |
39d74371 | 1616 | |
dc3fffef PP |
1617 | if (argc < 2) { |
1618 | printf("Usage: tests-ctf-writer path_to_babeltrace\n"); | |
783c9151 | 1619 | return -1; |
39d74371 JG |
1620 | } |
1621 | ||
a9fddc0b PP |
1622 | env_resize_length = getenv("PACKET_RESIZE_TEST_LENGTH"); |
1623 | if (env_resize_length) { | |
1624 | packet_resize_test_length = | |
1625 | (unsigned int) atoi(env_resize_length); | |
1626 | } | |
1627 | ||
8bbe269d | 1628 | plan_tests(NR_TESTS); |
39d74371 | 1629 | |
9d6b510b | 1630 | trace_path = g_build_filename(g_get_tmp_dir(), "ctfwriter_XXXXXX", NULL); |
2bb37f06 | 1631 | if (!bt_mkdtemp(trace_path)) { |
39d74371 JG |
1632 | perror("# perror"); |
1633 | } | |
1634 | ||
9d6b510b | 1635 | metadata_path = g_build_filename(trace_path, "metadata", NULL); |
39d74371 JG |
1636 | |
1637 | writer = bt_ctf_writer_create(trace_path); | |
8deee039 | 1638 | ok(writer, "bt_ctf_create succeeds in creating trace with path"); |
39d74371 | 1639 | |
4ae7c93b JG |
1640 | ok(!bt_ctf_writer_get_trace(NULL), |
1641 | "bt_ctf_writer_get_trace correctly handles NULL"); | |
1642 | trace = bt_ctf_writer_get_trace(writer); | |
8deee039 PP |
1643 | ok(bt_ctf_trace_set_native_byte_order(trace, BT_CTF_BYTE_ORDER_NATIVE), |
1644 | "Cannot set a trace's byte order to BT_CTF_BYTE_ORDER_NATIVE"); | |
1645 | ok(bt_ctf_trace_set_native_byte_order(trace, BT_CTF_BYTE_ORDER_UNSPECIFIED), | |
1646 | "Cannot set a trace's byte order to BT_CTF_BYTE_ORDER_UNSPECIFIED"); | |
4ae7c93b | 1647 | ok(trace, |
8deee039 PP |
1648 | "bt_ctf_writer_get_trace returns a bt_ctf_trace object"); |
1649 | ok(bt_ctf_trace_set_native_byte_order(trace, BT_CTF_BYTE_ORDER_BIG_ENDIAN) == 0, | |
35731220 | 1650 | "Set a trace's byte order to big endian"); |
8deee039 PP |
1651 | ok(bt_ctf_trace_get_native_byte_order(trace) == BT_CTF_BYTE_ORDER_BIG_ENDIAN, |
1652 | "bt_ctf_trace_get_native_byte_order returns a correct endianness"); | |
4ae7c93b | 1653 | |
39d74371 | 1654 | /* Add environment context to the trace */ |
19262d3d | 1655 | ok(bt_ctf_writer_add_environment_field(writer, "host", name.nodename) == 0, |
39d74371 | 1656 | "Add host (%s) environment field to writer instance", |
19262d3d | 1657 | name.nodename); |
39d74371 JG |
1658 | ok(bt_ctf_writer_add_environment_field(NULL, "test_field", |
1659 | "test_value"), | |
1660 | "bt_ctf_writer_add_environment_field error with NULL writer"); | |
1661 | ok(bt_ctf_writer_add_environment_field(writer, NULL, | |
1662 | "test_value"), | |
1663 | "bt_ctf_writer_add_environment_field error with NULL field name"); | |
1664 | ok(bt_ctf_writer_add_environment_field(writer, "test_field", | |
1665 | NULL), | |
1666 | "bt_ctf_writer_add_environment_field error with NULL field value"); | |
7f800dc7 | 1667 | |
8deee039 PP |
1668 | /* Test bt_ctf_trace_set_environment_field_integer */ |
1669 | ok(bt_ctf_trace_set_environment_field_integer(NULL, "test_env_int", | |
7f800dc7 | 1670 | -194875), |
8deee039 PP |
1671 | "bt_ctf_trace_set_environment_field_integer handles a NULL trace correctly"); |
1672 | ok(bt_ctf_trace_set_environment_field_integer(trace, NULL, -194875), | |
1673 | "bt_ctf_trace_set_environment_field_integer handles a NULL name correctly"); | |
1674 | ok(!bt_ctf_trace_set_environment_field_integer(trace, "test_env_int", | |
7f800dc7 | 1675 | -164973), |
8deee039 | 1676 | "bt_ctf_trace_set_environment_field_integer succeeds"); |
7f800dc7 | 1677 | |
8deee039 PP |
1678 | /* Test bt_ctf_trace_set_environment_field_string */ |
1679 | ok(bt_ctf_trace_set_environment_field_string(NULL, "test_env_str", | |
7f800dc7 | 1680 | "yeah"), |
8deee039 PP |
1681 | "bt_ctf_trace_set_environment_field_string handles a NULL trace correctly"); |
1682 | ok(bt_ctf_trace_set_environment_field_string(trace, NULL, "yeah"), | |
1683 | "bt_ctf_trace_set_environment_field_string handles a NULL name correctly"); | |
1684 | ok(bt_ctf_trace_set_environment_field_string(trace, "test_env_str", | |
7f800dc7 | 1685 | NULL), |
8deee039 PP |
1686 | "bt_ctf_trace_set_environment_field_string handles a NULL value correctly"); |
1687 | ok(!bt_ctf_trace_set_environment_field_string(trace, "test_env_str", | |
7f800dc7 | 1688 | "oh yeah"), |
8deee039 | 1689 | "bt_ctf_trace_set_environment_field_string succeeds"); |
839d52a5 | 1690 | |
7f800dc7 | 1691 | /* Test environment field replacement */ |
8deee039 | 1692 | ok(!bt_ctf_trace_set_environment_field_integer(trace, "test_env_int", |
7f800dc7 | 1693 | 654321), |
8deee039 | 1694 | "bt_ctf_trace_set_environment_field_integer succeeds with an existing name"); |
39d74371 | 1695 | |
39d74371 JG |
1696 | ok(bt_ctf_writer_add_environment_field(writer, "sysname", name.sysname) |
1697 | == 0, "Add sysname (%s) environment field to writer instance", | |
1698 | name.sysname); | |
1699 | ok(bt_ctf_writer_add_environment_field(writer, "nodename", | |
1700 | name.nodename) == 0, | |
1701 | "Add nodename (%s) environment field to writer instance", | |
1702 | name.nodename); | |
1703 | ok(bt_ctf_writer_add_environment_field(writer, "release", name.release) | |
1704 | == 0, "Add release (%s) environment field to writer instance", | |
1705 | name.release); | |
1706 | ok(bt_ctf_writer_add_environment_field(writer, "version", name.version) | |
1707 | == 0, "Add version (%s) environment field to writer instance", | |
1708 | name.version); | |
1709 | ok(bt_ctf_writer_add_environment_field(writer, "machine", name.machine) | |
1710 | == 0, "Add machine (%s) environment field to writer istance", | |
1711 | name.machine); | |
1712 | ||
1713 | /* Define a clock and add it to the trace */ | |
5494ce8b JG |
1714 | ok(bt_ctf_clock_create("signed") == NULL, |
1715 | "Illegal clock name rejected"); | |
39d74371 JG |
1716 | clock = bt_ctf_clock_create(clock_name); |
1717 | ok(clock, "Clock created sucessfully"); | |
5494ce8b JG |
1718 | returned_clock_name = bt_ctf_clock_get_name(clock); |
1719 | ok(returned_clock_name, "bt_ctf_clock_get_name returns a clock name"); | |
d50c7132 | 1720 | ok(returned_clock_name ? !strcmp(returned_clock_name, clock_name) : 0, |
5494ce8b JG |
1721 | "Returned clock name is valid"); |
1722 | ||
1723 | returned_clock_description = bt_ctf_clock_get_description(clock); | |
1724 | ok(!returned_clock_description, "bt_ctf_clock_get_description returns NULL on an unset description"); | |
1725 | ok(bt_ctf_clock_set_description(clock, clock_description) == 0, | |
1726 | "Clock description set successfully"); | |
1727 | ||
1728 | returned_clock_description = bt_ctf_clock_get_description(clock); | |
1729 | ok(returned_clock_description, | |
1730 | "bt_ctf_clock_get_description returns a description."); | |
d50c7132 JG |
1731 | ok(returned_clock_description ? |
1732 | !strcmp(returned_clock_description, clock_description) : 0, | |
5494ce8b JG |
1733 | "Returned clock description is valid"); |
1734 | ||
1735 | ok(bt_ctf_clock_get_frequency(clock) == DEFAULT_CLOCK_FREQ, | |
1736 | "bt_ctf_clock_get_frequency returns the correct default frequency"); | |
39d74371 JG |
1737 | ok(bt_ctf_clock_set_frequency(clock, frequency) == 0, |
1738 | "Set clock frequency"); | |
5494ce8b JG |
1739 | ok(bt_ctf_clock_get_frequency(clock) == frequency, |
1740 | "bt_ctf_clock_get_frequency returns the correct frequency once it is set"); | |
1741 | ||
61cf588b MD |
1742 | ok(bt_ctf_clock_get_offset_s(clock, &get_offset_s) == 0, |
1743 | "bt_ctf_clock_get_offset_s succeeds"); | |
1744 | ok(get_offset_s == DEFAULT_CLOCK_OFFSET_S, | |
5494ce8b | 1745 | "bt_ctf_clock_get_offset_s returns the correct default offset (in seconds)"); |
39d74371 JG |
1746 | ok(bt_ctf_clock_set_offset_s(clock, offset_s) == 0, |
1747 | "Set clock offset (seconds)"); | |
61cf588b MD |
1748 | ok(bt_ctf_clock_get_offset_s(clock, &get_offset_s) == 0, |
1749 | "bt_ctf_clock_get_offset_s succeeds"); | |
1750 | ok(get_offset_s == offset_s, | |
5494ce8b JG |
1751 | "bt_ctf_clock_get_offset_s returns the correct default offset (in seconds) once it is set"); |
1752 | ||
61cf588b MD |
1753 | ok(bt_ctf_clock_get_offset(clock, &get_offset) == 0, |
1754 | "bt_ctf_clock_get_offset succeeds"); | |
1755 | ok(get_offset == DEFAULT_CLOCK_OFFSET, | |
1756 | "bt_ctf_clock_get_offset returns the correct default offset (in ticks)"); | |
39d74371 | 1757 | ok(bt_ctf_clock_set_offset(clock, offset) == 0, "Set clock offset"); |
61cf588b MD |
1758 | ok(bt_ctf_clock_get_offset(clock, &get_offset) == 0, |
1759 | "bt_ctf_clock_get_offset succeeds"); | |
1760 | ok(get_offset == offset, | |
1761 | "bt_ctf_clock_get_offset returns the correct default offset (in ticks) once it is set"); | |
5494ce8b JG |
1762 | |
1763 | ok(bt_ctf_clock_get_precision(clock) == DEFAULT_CLOCK_PRECISION, | |
1764 | "bt_ctf_clock_get_precision returns the correct default precision"); | |
39d74371 JG |
1765 | ok(bt_ctf_clock_set_precision(clock, precision) == 0, |
1766 | "Set clock precision"); | |
5494ce8b JG |
1767 | ok(bt_ctf_clock_get_precision(clock) == precision, |
1768 | "bt_ctf_clock_get_precision returns the correct precision once it is set"); | |
1769 | ||
1770 | ok(bt_ctf_clock_get_is_absolute(clock) == DEFAULT_CLOCK_IS_ABSOLUTE, | |
1771 | "bt_ctf_clock_get_precision returns the correct default is_absolute attribute"); | |
1772 | ok(bt_ctf_clock_set_is_absolute(clock, is_absolute) == 0, | |
39d74371 | 1773 | "Set clock absolute property"); |
5494ce8b JG |
1774 | ok(bt_ctf_clock_get_is_absolute(clock) == !!is_absolute, |
1775 | "bt_ctf_clock_get_precision returns the correct is_absolute attribute once it is set"); | |
5494ce8b JG |
1776 | ok(bt_ctf_clock_set_time(clock, current_time) == 0, |
1777 | "Set clock time"); | |
e61caf8e JG |
1778 | ret_uuid = bt_ctf_clock_get_uuid(clock); |
1779 | ok(ret_uuid, | |
1780 | "bt_ctf_clock_get_uuid returns a UUID"); | |
1781 | if (ret_uuid) { | |
1782 | memcpy(tmp_uuid, ret_uuid, sizeof(tmp_uuid)); | |
1783 | /* Slightly modify UUID */ | |
1784 | tmp_uuid[sizeof(tmp_uuid) - 1]++; | |
1785 | } | |
1786 | ||
e61caf8e | 1787 | ok(bt_ctf_clock_set_uuid(clock, tmp_uuid) == 0, |
4caab45b | 1788 | "bt_ctf_clock_set_uuid sets a new uuid successfully"); |
e61caf8e JG |
1789 | ret_uuid = bt_ctf_clock_get_uuid(clock); |
1790 | ok(ret_uuid, | |
1791 | "bt_ctf_clock_get_uuid returns a UUID after setting a new one"); | |
1792 | ok(uuid_match(ret_uuid, tmp_uuid), | |
1793 | "bt_ctf_clock_get_uuid returns the correct UUID after setting a new one"); | |
5494ce8b | 1794 | |
39d74371 | 1795 | /* Define a stream class */ |
8deee039 PP |
1796 | stream_class = bt_ctf_stream_class_create("test_stream"); |
1797 | ret_string = bt_ctf_stream_class_get_name(stream_class); | |
88d26616 | 1798 | ok(ret_string && !strcmp(ret_string, "test_stream"), |
8deee039 | 1799 | "bt_ctf_stream_class_get_name returns a correct stream class name"); |
e3c971da | 1800 | |
8deee039 PP |
1801 | ok(bt_ctf_stream_class_get_clock(stream_class) == NULL, |
1802 | "bt_ctf_stream_class_get_clock returns NULL when a clock was not set"); | |
1803 | ok(bt_ctf_stream_class_get_clock(NULL) == NULL, | |
1804 | "bt_ctf_stream_class_get_clock handles NULL correctly"); | |
1ff9582c | 1805 | |
39d74371 | 1806 | ok(stream_class, "Create stream class"); |
8deee039 | 1807 | ok(bt_ctf_stream_class_set_clock(stream_class, clock) == 0, |
39d74371 | 1808 | "Set a stream class' clock"); |
8deee039 | 1809 | ret_clock = bt_ctf_stream_class_get_clock(stream_class); |
1ff9582c | 1810 | ok(ret_clock == clock, |
8deee039 | 1811 | "bt_ctf_stream_class_get_clock returns a correct clock"); |
8c6884d9 | 1812 | bt_ctf_object_put_ref(ret_clock); |
39d74371 JG |
1813 | |
1814 | /* Test the event fields and event types APIs */ | |
1815 | type_field_tests(); | |
1816 | ||
8deee039 PP |
1817 | ok(bt_ctf_stream_class_get_id(stream_class) < 0, |
1818 | "bt_ctf_stream_class_get_id returns an error when no id is set"); | |
1819 | ok(bt_ctf_stream_class_set_id(NULL, 123) < 0, | |
1820 | "bt_ctf_stream_class_set_id handles NULL correctly"); | |
1821 | ok(bt_ctf_stream_class_set_id(stream_class, 123) == 0, | |
1ff9582c | 1822 | "Set an stream class' id"); |
8deee039 PP |
1823 | ok(bt_ctf_stream_class_get_id(stream_class) == 123, |
1824 | "bt_ctf_stream_class_get_id returns the correct value"); | |
1ff9582c | 1825 | |
d8469458 | 1826 | /* Validate default event header fields */ |
8deee039 | 1827 | ret_field_type = bt_ctf_stream_class_get_event_header_type( |
88d26616 JG |
1828 | stream_class); |
1829 | ok(ret_field_type, | |
8deee039 PP |
1830 | "bt_ctf_stream_class_get_event_header_type returns an event header type"); |
1831 | ok(bt_ctf_field_type_get_type_id(ret_field_type) == BT_CTF_FIELD_TYPE_ID_STRUCT, | |
88d26616 JG |
1832 | "Default event header type is a structure"); |
1833 | event_header_field_type = | |
8deee039 | 1834 | bt_ctf_field_type_structure_get_field_type_by_name( |
88d26616 JG |
1835 | ret_field_type, "id"); |
1836 | ok(event_header_field_type, | |
1837 | "Default event header type contains an \"id\" field"); | |
8deee039 PP |
1838 | ok(bt_ctf_field_type_get_type_id( |
1839 | event_header_field_type) == BT_CTF_FIELD_TYPE_ID_INTEGER, | |
88d26616 | 1840 | "Default event header \"id\" field is an integer"); |
8c6884d9 | 1841 | bt_ctf_object_put_ref(event_header_field_type); |
88d26616 | 1842 | event_header_field_type = |
8deee039 | 1843 | bt_ctf_field_type_structure_get_field_type_by_name( |
88d26616 JG |
1844 | ret_field_type, "timestamp"); |
1845 | ok(event_header_field_type, | |
1846 | "Default event header type contains a \"timestamp\" field"); | |
8deee039 PP |
1847 | ok(bt_ctf_field_type_get_type_id( |
1848 | event_header_field_type) == BT_CTF_FIELD_TYPE_ID_INTEGER, | |
88d26616 | 1849 | "Default event header \"timestamp\" field is an integer"); |
8c6884d9 PP |
1850 | bt_ctf_object_put_ref(event_header_field_type); |
1851 | bt_ctf_object_put_ref(ret_field_type); | |
88d26616 | 1852 | |
751b05c7 | 1853 | /* Add a custom trace packet header field */ |
8deee039 | 1854 | packet_header_type = bt_ctf_trace_get_packet_header_field_type(trace); |
751b05c7 | 1855 | ok(packet_header_type, |
8deee039 PP |
1856 | "bt_ctf_trace_get_packet_header_field_type returns a packet header"); |
1857 | ok(bt_ctf_field_type_get_type_id(packet_header_type) == BT_CTF_FIELD_TYPE_ID_STRUCT, | |
1858 | "bt_ctf_trace_get_packet_header_field_type returns a packet header of type struct"); | |
1859 | ret_field_type = bt_ctf_field_type_structure_get_field_type_by_name( | |
751b05c7 JG |
1860 | packet_header_type, "magic"); |
1861 | ok(ret_field_type, "Default packet header type contains a \"magic\" field"); | |
8c6884d9 | 1862 | bt_ctf_object_put_ref(ret_field_type); |
8deee039 | 1863 | ret_field_type = bt_ctf_field_type_structure_get_field_type_by_name( |
751b05c7 JG |
1864 | packet_header_type, "uuid"); |
1865 | ok(ret_field_type, "Default packet header type contains a \"uuid\" field"); | |
8c6884d9 | 1866 | bt_ctf_object_put_ref(ret_field_type); |
8deee039 | 1867 | ret_field_type = bt_ctf_field_type_structure_get_field_type_by_name( |
751b05c7 JG |
1868 | packet_header_type, "stream_id"); |
1869 | ok(ret_field_type, "Default packet header type contains a \"stream_id\" field"); | |
8c6884d9 | 1870 | bt_ctf_object_put_ref(ret_field_type); |
751b05c7 | 1871 | |
8deee039 PP |
1872 | packet_header_field_type = bt_ctf_field_type_integer_create(22); |
1873 | ok(!bt_ctf_field_type_structure_add_field(packet_header_type, | |
751b05c7 JG |
1874 | packet_header_field_type, "custom_trace_packet_header_field"), |
1875 | "Added a custom trace packet header field successfully"); | |
1876 | ||
8deee039 PP |
1877 | ok(bt_ctf_trace_set_packet_header_field_type(NULL, packet_header_type) < 0, |
1878 | "bt_ctf_trace_set_packet_header_field_type handles a NULL trace correctly"); | |
1879 | ok(!bt_ctf_trace_set_packet_header_field_type(trace, packet_header_type), | |
751b05c7 JG |
1880 | "Set a trace packet_header_type successfully"); |
1881 | ||
12c8a1a3 | 1882 | /* Add a custom field to the stream class' packet context */ |
8deee039 | 1883 | packet_context_type = bt_ctf_stream_class_get_packet_context_type(stream_class); |
12c8a1a3 | 1884 | ok(packet_context_type, |
8deee039 PP |
1885 | "bt_ctf_stream_class_get_packet_context_type returns a packet context type."); |
1886 | ok(bt_ctf_field_type_get_type_id(packet_context_type) == BT_CTF_FIELD_TYPE_ID_STRUCT, | |
12c8a1a3 JG |
1887 | "Packet context is a structure"); |
1888 | ||
8deee039 PP |
1889 | ok(bt_ctf_stream_class_set_packet_context_type(NULL, packet_context_type), |
1890 | "bt_ctf_stream_class_set_packet_context_type handles a NULL stream class correctly"); | |
1891 | ||
1892 | integer_type = bt_ctf_field_type_integer_create(32); | |
b34f4d90 | 1893 | |
8deee039 | 1894 | ok(bt_ctf_stream_class_set_packet_context_type(stream_class, |
b34f4d90 | 1895 | integer_type) < 0, |
8deee039 PP |
1896 | "bt_ctf_stream_class_set_packet_context_type rejects a packet context that is not a structure"); |
1897 | ||
88d26616 | 1898 | /* Create a "uint5_t" equivalent custom packet context field */ |
8deee039 | 1899 | packet_context_field_type = bt_ctf_field_type_integer_create(5); |
88d26616 | 1900 | |
8deee039 | 1901 | ret = bt_ctf_field_type_structure_add_field(packet_context_type, |
35e8709f | 1902 | packet_context_field_type, "custom_packet_context_field"); |
12c8a1a3 JG |
1903 | ok(ret == 0, "Packet context field added successfully"); |
1904 | ||
35e8709f | 1905 | /* Define a stream event context containing a my_integer field. */ |
8deee039 PP |
1906 | stream_event_context_type = bt_ctf_field_type_structure_create(); |
1907 | bt_ctf_field_type_structure_add_field(stream_event_context_type, | |
35e8709f JG |
1908 | integer_type, "common_event_context"); |
1909 | ||
8deee039 | 1910 | ok(bt_ctf_stream_class_set_event_context_type(NULL, |
35e8709f | 1911 | stream_event_context_type) < 0, |
8deee039 PP |
1912 | "bt_ctf_stream_class_set_event_context_type handles a NULL stream_class correctly"); |
1913 | ok(bt_ctf_stream_class_set_event_context_type(stream_class, | |
35e8709f | 1914 | integer_type) < 0, |
8deee039 | 1915 | "bt_ctf_stream_class_set_event_context_type validates that the event context os a structure"); |
35e8709f | 1916 | |
8deee039 | 1917 | ok(bt_ctf_stream_class_set_event_context_type( |
35e8709f JG |
1918 | stream_class, stream_event_context_type) == 0, |
1919 | "Set a new stream event context type"); | |
8deee039 PP |
1920 | |
1921 | ret_field_type = bt_ctf_stream_class_get_event_context_type( | |
35e8709f JG |
1922 | stream_class); |
1923 | ok(ret_field_type == stream_event_context_type, | |
8deee039 | 1924 | "bt_ctf_stream_class_get_event_context_type returns the correct field type."); |
8c6884d9 | 1925 | bt_ctf_object_put_ref(ret_field_type); |
12c8a1a3 | 1926 | |
8deee039 | 1927 | |
39d74371 | 1928 | /* Instantiate a stream and append events */ |
ac0c6bdd | 1929 | ret = bt_ctf_writer_add_clock(writer, clock); |
b8f13b8b | 1930 | BT_ASSERT(ret == 0); |
8deee039 PP |
1931 | |
1932 | ok(bt_ctf_trace_get_stream_count(trace) == 0, | |
1933 | "bt_ctf_trace_get_stream_count() succeeds and returns the correct value (0)"); | |
39d74371 JG |
1934 | stream1 = bt_ctf_writer_create_stream(writer, stream_class); |
1935 | ok(stream1, "Instanciate a stream class from writer"); | |
8deee039 PP |
1936 | ok(bt_ctf_trace_get_stream_count(trace) == 1, |
1937 | "bt_ctf_trace_get_stream_count() succeeds and returns the correct value (1)"); | |
1938 | stream = bt_ctf_trace_get_stream_by_index(trace, 0); | |
c1e730fe | 1939 | ok(stream == stream1, |
8deee039 | 1940 | "bt_ctf_trace_get_stream_by_index() succeeds and returns the correct value"); |
8c6884d9 | 1941 | BT_CTF_OBJECT_PUT_REF_AND_RESET(stream); |
39d74371 | 1942 | |
b25d20ad PP |
1943 | /* |
1944 | * Creating a stream through a writer adds the given stream | |
1945 | * class to the writer's trace, thus registering the stream | |
1946 | * class's clock to the trace. | |
1947 | */ | |
b25d20ad | 1948 | |
8deee039 | 1949 | ret_stream_class = bt_ctf_stream_get_class(stream1); |
36336d93 | 1950 | ok(ret_stream_class, |
8deee039 | 1951 | "bt_ctf_stream_get_class returns a stream class"); |
36336d93 JG |
1952 | ok(ret_stream_class == stream_class, |
1953 | "Returned stream class is of the correct type"); | |
1954 | ||
09840de5 PP |
1955 | /* |
1956 | * Packet header, packet context, event header, and stream | |
1957 | * event context types were copied for the resolving | |
1958 | * process | |
1959 | */ | |
8c6884d9 PP |
1960 | BT_CTF_OBJECT_PUT_REF_AND_RESET(packet_header_type); |
1961 | BT_CTF_OBJECT_PUT_REF_AND_RESET(packet_context_type); | |
1962 | BT_CTF_OBJECT_PUT_REF_AND_RESET(stream_event_context_type); | |
8deee039 | 1963 | packet_header_type = bt_ctf_trace_get_packet_header_field_type(trace); |
b8f13b8b | 1964 | BT_ASSERT(packet_header_type); |
09840de5 | 1965 | packet_context_type = |
8deee039 | 1966 | bt_ctf_stream_class_get_packet_context_type(stream_class); |
b8f13b8b | 1967 | BT_ASSERT(packet_context_type); |
09840de5 | 1968 | stream_event_context_type = |
8deee039 | 1969 | bt_ctf_stream_class_get_event_context_type(stream_class); |
b8f13b8b | 1970 | BT_ASSERT(stream_event_context_type); |
09840de5 | 1971 | |
751b05c7 JG |
1972 | /* |
1973 | * Try to modify the packet context type after a stream has been | |
1974 | * created. | |
1975 | */ | |
8deee039 | 1976 | ret = bt_ctf_field_type_structure_add_field(packet_header_type, |
751b05c7 JG |
1977 | packet_header_field_type, "should_fail"); |
1978 | ok(ret < 0, | |
1979 | "Trace packet header type can't be modified once a stream has been instanciated"); | |
1980 | ||
12c8a1a3 JG |
1981 | /* |
1982 | * Try to modify the packet context type after a stream has been | |
1983 | * created. | |
1984 | */ | |
8deee039 | 1985 | ret = bt_ctf_field_type_structure_add_field(packet_context_type, |
12c8a1a3 JG |
1986 | packet_context_field_type, "should_fail"); |
1987 | ok(ret < 0, | |
751b05c7 | 1988 | "Packet context type can't be modified once a stream has been instanciated"); |
12c8a1a3 | 1989 | |
35e8709f JG |
1990 | /* |
1991 | * Try to modify the stream event context type after a stream has been | |
1992 | * created. | |
1993 | */ | |
8deee039 | 1994 | ret = bt_ctf_field_type_structure_add_field(stream_event_context_type, |
35e8709f JG |
1995 | integer_type, "should_fail"); |
1996 | ok(ret < 0, | |
751b05c7 | 1997 | "Stream event context type can't be modified once a stream has been instanciated"); |
35e8709f JG |
1998 | |
1999 | /* Should fail after instanciating a stream (frozen) */ | |
8deee039 | 2000 | ok(bt_ctf_stream_class_set_clock(stream_class, clock), |
39d74371 JG |
2001 | "Changes to a stream class that was already instantiated fail"); |
2002 | ||
751b05c7 | 2003 | /* Populate the custom packet header field only once for all tests */ |
8deee039 PP |
2004 | ok(bt_ctf_stream_get_packet_header(NULL) == NULL, |
2005 | "bt_ctf_stream_get_packet_header handles NULL correctly"); | |
2006 | packet_header = bt_ctf_stream_get_packet_header(stream1); | |
751b05c7 | 2007 | ok(packet_header, |
8deee039 PP |
2008 | "bt_ctf_stream_get_packet_header returns a packet header"); |
2009 | ret_field_type = bt_ctf_field_get_type(packet_header); | |
751b05c7 JG |
2010 | ok(ret_field_type == packet_header_type, |
2011 | "Stream returns a packet header of the appropriate type"); | |
8c6884d9 | 2012 | bt_ctf_object_put_ref(ret_field_type); |
8deee039 | 2013 | packet_header_field = bt_ctf_field_structure_get_field_by_name(packet_header, |
751b05c7 JG |
2014 | "custom_trace_packet_header_field"); |
2015 | ok(packet_header_field, | |
2016 | "Packet header structure contains a custom field with the appropriate name"); | |
8deee039 PP |
2017 | ret_field_type = bt_ctf_field_get_type(packet_header_field); |
2018 | ok(!bt_ctf_field_integer_unsigned_set_value(packet_header_field, | |
751b05c7 | 2019 | 54321), "Set custom packet header value successfully"); |
8deee039 PP |
2020 | ok(bt_ctf_stream_set_packet_header(stream1, NULL) < 0, |
2021 | "bt_ctf_stream_set_packet_header handles a NULL packet header correctly"); | |
2022 | ok(bt_ctf_stream_set_packet_header(NULL, packet_header) < 0, | |
2023 | "bt_ctf_stream_set_packet_header handles a NULL stream correctly"); | |
2024 | ok(bt_ctf_stream_set_packet_header(stream1, packet_header_field) < 0, | |
2025 | "bt_ctf_stream_set_packet_header rejects a packet header of the wrong type"); | |
2026 | ok(!bt_ctf_stream_set_packet_header(stream1, packet_header), | |
751b05c7 JG |
2027 | "Successfully set a stream's packet header"); |
2028 | ||
3975bd7e JG |
2029 | ok(bt_ctf_writer_add_environment_field(writer, "new_field", "test") == 0, |
2030 | "Add environment field to writer after stream creation"); | |
2031 | ||
44e0165b PP |
2032 | test_clock_utils(); |
2033 | ||
ac0c6bdd | 2034 | test_instanciate_event_before_stream(writer, clock); |
42f45a8d | 2035 | |
39d74371 JG |
2036 | append_simple_event(stream_class, stream1, clock); |
2037 | ||
2038 | packet_resize_test(stream_class, stream1, clock); | |
2039 | ||
2040 | append_complex_event(stream_class, stream1, clock); | |
2041 | ||
f60fde63 PP |
2042 | append_existing_event_class(stream_class); |
2043 | ||
fdf80f32 JG |
2044 | test_empty_stream(writer); |
2045 | ||
ac0c6bdd | 2046 | test_custom_event_header_stream(writer, clock); |
29be776a | 2047 | |
39d74371 JG |
2048 | metadata_string = bt_ctf_writer_get_metadata_string(writer); |
2049 | ok(metadata_string, "Get metadata string"); | |
2050 | ||
2051 | bt_ctf_writer_flush_metadata(writer); | |
39d74371 | 2052 | |
8c6884d9 PP |
2053 | bt_ctf_object_put_ref(clock); |
2054 | bt_ctf_object_put_ref(ret_stream_class); | |
2055 | bt_ctf_object_put_ref(writer); | |
2056 | bt_ctf_object_put_ref(stream1); | |
2057 | bt_ctf_object_put_ref(packet_context_type); | |
2058 | bt_ctf_object_put_ref(packet_context_field_type); | |
2059 | bt_ctf_object_put_ref(integer_type); | |
2060 | bt_ctf_object_put_ref(stream_event_context_type); | |
2061 | bt_ctf_object_put_ref(ret_field_type); | |
2062 | bt_ctf_object_put_ref(packet_header_type); | |
2063 | bt_ctf_object_put_ref(packet_header_field_type); | |
2064 | bt_ctf_object_put_ref(packet_header); | |
2065 | bt_ctf_object_put_ref(packet_header_field); | |
2066 | bt_ctf_object_put_ref(trace); | |
39d74371 | 2067 | free(metadata_string); |
8c6884d9 | 2068 | bt_ctf_object_put_ref(stream_class); |
9b068522 | 2069 | |
dc3fffef | 2070 | validate_trace(argv[1], trace_path); |
245bd444 | 2071 | |
8deee039 | 2072 | recursive_rmdir(trace_path); |
9d6b510b MJ |
2073 | g_free(trace_path); |
2074 | g_free(metadata_path); | |
2075 | ||
39d74371 JG |
2076 | return 0; |
2077 | } |