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