Validate CTF semantics in selected CTF IR functions
[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-ir/packet.h>
30 #include <babeltrace/ctf-ir/clock-class.h>
31 #include <babeltrace/ctf-ir/trace.h>
32 #include <babeltrace/ref.h>
33 #include <babeltrace/ctf/events.h>
34 #include <babeltrace/values.h>
35 #include <unistd.h>
36 #include <babeltrace/compat/stdlib-internal.h>
37 #include <stdio.h>
38 #include <sys/utsname.h>
39 #include <babeltrace/compat/limits-internal.h>
40 #include <babeltrace/compat/stdio-internal.h>
41 #include <string.h>
42 #include <assert.h>
43 #include <sys/wait.h>
44 #include <fcntl.h>
45 #include <babeltrace/compat/dirent-internal.h>
46 #include "tap/tap.h"
47 #include <math.h>
48 #include <float.h>
49 #include "common.h"
50
51 #define METADATA_LINE_SIZE 512
52 #define SEQUENCE_TEST_LENGTH 10
53 #define ARRAY_TEST_LENGTH 5
54 #define PACKET_RESIZE_TEST_LENGTH 100000
55
56 #define DEFAULT_CLOCK_FREQ 1000000000
57 #define DEFAULT_CLOCK_PRECISION 1
58 #define DEFAULT_CLOCK_OFFSET 0
59 #define DEFAULT_CLOCK_OFFSET_S 0
60 #define DEFAULT_CLOCK_IS_ABSOLUTE 0
61 #define DEFAULT_CLOCK_TIME 0
62 #define DEFAULT_CLOCK_VALUE 0
63
64 #define NR_TESTS 609
65
66 static int64_t current_time = 42;
67
68 /* Return 1 if uuids match, zero if different. */
69 static
70 int uuid_match(const unsigned char *uuid_a, const unsigned char *uuid_b)
71 {
72 int ret = 0;
73 int i;
74
75 if (!uuid_a || !uuid_b) {
76 goto end;
77 }
78
79 for (i = 0; i < 16; i++) {
80 if (uuid_a[i] != uuid_b[i]) {
81 goto end;
82 }
83 }
84
85 ret = 1;
86 end:
87 return ret;
88 }
89
90 static
91 void validate_trace(char *parser_path, char *trace_path)
92 {
93 int ret = 0;
94 char babeltrace_output_path[] = "/tmp/babeltrace_output_XXXXXX";
95 int babeltrace_output_fd = -1;
96
97 if (!trace_path) {
98 ret = -1;
99 goto result;
100 }
101
102 babeltrace_output_fd = mkstemp(babeltrace_output_path);
103 unlink(babeltrace_output_path);
104
105 if (babeltrace_output_fd == -1) {
106 diag("Failed to create a temporary file for trace parsing.");
107 ret = -1;
108 goto result;
109 }
110
111 pid_t pid = fork();
112 if (pid) {
113 int status = 0;
114 waitpid(pid, &status, 0);
115 ret = WIFEXITED(status) ? WEXITSTATUS(status) : -1;
116 } else {
117 ret = dup2(babeltrace_output_fd, STDOUT_FILENO);
118 if (ret < 0) {
119 perror("# dup2 babeltrace_output_fd to STDOUT");
120 goto result;
121 }
122
123 ret = dup2(babeltrace_output_fd, STDERR_FILENO);
124 if (ret < 0) {
125 perror("# dup2 babeltrace_output_fd to STDERR");
126 goto result;
127 }
128
129 execl(parser_path, "babeltrace", trace_path, NULL);
130 perror("# Could not launch the babeltrace process");
131 exit(-1);
132 }
133 result:
134 ok(ret == 0, "Babeltrace could read the resulting trace");
135
136 if (ret && babeltrace_output_fd >= 0) {
137 char *line;
138 size_t len = METADATA_LINE_SIZE;
139 FILE *babeltrace_output_fp = NULL;
140
141 babeltrace_output_fp = fdopen(babeltrace_output_fd, "r");
142 if (!babeltrace_output_fp) {
143 perror("fdopen on babeltrace_output_fd");
144 goto close_fp;
145 }
146 babeltrace_output_fd = -1;
147
148 line = malloc(len);
149 if (!line) {
150 diag("malloc error");
151 }
152 rewind(babeltrace_output_fp);
153 while (bt_getline(&line, &len, babeltrace_output_fp) > 0) {
154 diag("%s", line);
155 }
156
157 free(line);
158 close_fp:
159 if (babeltrace_output_fp) {
160 if (fclose(babeltrace_output_fp)) {
161 diag("fclose error");
162 }
163 }
164 }
165
166 if (babeltrace_output_fd >= 0) {
167 if (close(babeltrace_output_fd)) {
168 diag("close error");
169 }
170 }
171 }
172
173 static
174 void append_simple_event(struct bt_ctf_stream_class *stream_class,
175 struct bt_ctf_stream *stream, struct bt_ctf_clock *clock)
176 {
177 /* Create and add a simple event class */
178 struct bt_ctf_event_class *simple_event_class =
179 bt_ctf_event_class_create("Simple Event");
180 struct bt_ctf_field_type *uint_12_type =
181 bt_ctf_field_type_integer_create(12);
182 struct bt_ctf_field_type *int_64_type =
183 bt_ctf_field_type_integer_create(64);
184 struct bt_ctf_field_type *float_type =
185 bt_ctf_field_type_floating_point_create();
186 struct bt_ctf_field_type *enum_type;
187 struct bt_ctf_field_type *enum_type_unsigned =
188 bt_ctf_field_type_enumeration_create(uint_12_type);
189 struct bt_ctf_field_type *event_context_type =
190 bt_ctf_field_type_structure_create();
191 struct bt_ctf_field_type *event_payload_type = NULL;
192 struct bt_ctf_field_type *returned_type;
193 struct bt_ctf_event *simple_event;
194 struct bt_ctf_field *integer_field;
195 struct bt_ctf_field *float_field;
196 struct bt_ctf_field *enum_field;
197 struct bt_ctf_field *enum_field_unsigned;
198 struct bt_ctf_field *enum_container_field;
199 const char *mapping_name_test = "truie";
200 const double double_test_value = 3.1415;
201 struct bt_ctf_field *enum_container_field_unsigned;
202 const char *mapping_name_negative_test = "negative_value";
203 const char *ret_char;
204 double ret_double;
205 int64_t ret_range_start_int64_t, ret_range_end_int64_t;
206 uint64_t ret_range_start_uint64_t, ret_range_end_uint64_t;
207 struct bt_ctf_event_class *ret_event_class;
208 struct bt_ctf_field *packet_context;
209 struct bt_ctf_field *packet_context_field;
210 struct bt_ctf_field *stream_event_context;
211 struct bt_ctf_field *stream_event_context_field;
212 struct bt_ctf_field *event_context;
213 struct bt_ctf_field *event_context_field;
214 struct bt_ctf_field_type *ep_integer_field_type = NULL;
215 struct bt_ctf_field_type *ep_enum_field_type = NULL;
216 struct bt_ctf_field_type *ep_enum_field_unsigned_type = NULL;
217 struct bt_ctf_field_type_enumeration_mapping_iterator *iter = NULL;
218 int ret;
219
220 ok(uint_12_type, "Create an unsigned integer type");
221
222 ok(!bt_ctf_field_type_integer_set_signed(int_64_type, 1),
223 "Set signed 64 bit integer signedness to true");
224 ok(int_64_type, "Create a signed integer type");
225 enum_type = bt_ctf_field_type_enumeration_create(int_64_type);
226
227 returned_type = bt_ctf_field_type_enumeration_get_container_type(enum_type);
228 ok(returned_type == int_64_type, "bt_ctf_field_type_enumeration_get_container_type returns the right type");
229 ok(!bt_ctf_field_type_enumeration_get_container_type(NULL), "bt_ctf_field_type_enumeration_get_container_type handles NULL correctly");
230 ok(!bt_ctf_field_type_enumeration_create(enum_type),
231 "bt_ctf_field_enumeration_type_create rejects non-integer container field types");
232 bt_put(returned_type);
233
234 bt_ctf_field_type_set_alignment(float_type, 32);
235 ok(bt_ctf_field_type_get_alignment(NULL) < 0,
236 "bt_ctf_field_type_get_alignment handles NULL correctly");
237 ok(bt_ctf_field_type_get_alignment(float_type) == 32,
238 "bt_ctf_field_type_get_alignment returns a correct value");
239
240 ok(bt_ctf_field_type_floating_point_set_exponent_digits(float_type, 11) == 0,
241 "Set a floating point type's exponent digit count");
242 ok(bt_ctf_field_type_floating_point_set_mantissa_digits(float_type, 53) == 0,
243 "Set a floating point type's mantissa digit count");
244
245 ok(bt_ctf_field_type_floating_point_get_exponent_digits(NULL) < 0,
246 "bt_ctf_field_type_floating_point_get_exponent_digits handles NULL properly");
247 ok(bt_ctf_field_type_floating_point_get_mantissa_digits(NULL) < 0,
248 "bt_ctf_field_type_floating_point_get_mantissa_digits handles NULL properly");
249 ok(bt_ctf_field_type_floating_point_get_exponent_digits(float_type) == 11,
250 "bt_ctf_field_type_floating_point_get_exponent_digits returns the correct value");
251 ok(bt_ctf_field_type_floating_point_get_mantissa_digits(float_type) == 53,
252 "bt_ctf_field_type_floating_point_get_mantissa_digits returns the correct value");
253
254 ok(bt_ctf_field_type_enumeration_add_mapping(enum_type,
255 mapping_name_negative_test, -12345, 0) == 0,
256 "bt_ctf_field_type_enumeration_add_mapping accepts negative enumeration mappings");
257 ok(bt_ctf_field_type_enumeration_add_mapping(enum_type,
258 "escaping; \"test\"", 1, 1) == 0,
259 "bt_ctf_field_type_enumeration_add_mapping accepts enumeration mapping strings containing quotes");
260 ok(bt_ctf_field_type_enumeration_add_mapping(enum_type,
261 "\tanother \'escaping\'\n test\"", 2, 4) == 0,
262 "bt_ctf_field_type_enumeration_add_mapping accepts enumeration mapping strings containing special characters");
263 ok(bt_ctf_field_type_enumeration_add_mapping(enum_type,
264 "event clock int float", 5, 22) == 0,
265 "Accept enumeration mapping strings containing reserved keywords");
266 bt_ctf_field_type_enumeration_add_mapping(enum_type, mapping_name_test,
267 42, 42);
268 ok(bt_ctf_field_type_enumeration_add_mapping(enum_type, mapping_name_test,
269 43, 51) == 0, "bt_ctf_field_type_enumeration_add_mapping accepts duplicate mapping names");
270 ok(bt_ctf_field_type_enumeration_add_mapping(enum_type, "something",
271 -500, -400) == 0, "bt_ctf_field_type_enumeration_add_mapping accepts overlapping enum entries");
272 ok(bt_ctf_field_type_enumeration_add_mapping(enum_type, mapping_name_test,
273 -54, -55), "bt_ctf_field_type_enumeration_add_mapping rejects mapping where end < start");
274 bt_ctf_field_type_enumeration_add_mapping(enum_type, "another entry", -42000, -13000);
275
276 iter = bt_ctf_field_type_enumeration_find_mappings_by_signed_value(NULL, -42);
277 ok(iter == NULL, "bt_ctf_field_type_enumeration_find_mappings_by_signed_value handles a NULL field type correctly");
278
279 iter = bt_ctf_field_type_enumeration_find_mappings_by_signed_value(enum_type, -4200000);
280 ok(iter == NULL, "bt_ctf_field_type_enumeration_find_mappings_by_signed_value rejects non-mapped values");
281
282 iter = bt_ctf_field_type_enumeration_find_mappings_by_signed_value(enum_type, 3);
283 ok(iter != NULL, "bt_ctf_field_type_enumeration_find_mappings_by_signed_value succeeds with mapped value");
284 ok(bt_ctf_field_type_enumeration_mapping_iterator_get_signed(iter, NULL, NULL, NULL) == 0,
285 "bt_ctf_field_type_enumeration_mapping_iterator_get_signed handles mapped values correctly");
286 BT_PUT(iter);
287
288 ok(bt_ctf_event_class_add_field(simple_event_class, enum_type,
289 "enum_field") == 0, "Add signed enumeration field to event");
290
291 ok(bt_ctf_field_type_enumeration_get_mapping_signed(NULL, 0, &ret_char,
292 &ret_range_start_int64_t, &ret_range_end_int64_t) < 0,
293 "bt_ctf_field_type_enumeration_get_mapping_signed handles a NULL enumeration correctly");
294 ok(bt_ctf_field_type_enumeration_get_mapping_signed(enum_type, 0, NULL,
295 &ret_range_start_int64_t, &ret_range_end_int64_t) == 0,
296 "bt_ctf_field_type_enumeration_get_mapping_signed handles a NULL string correctly");
297 ok(bt_ctf_field_type_enumeration_get_mapping_signed(enum_type, 0, &ret_char,
298 NULL, &ret_range_end_int64_t) == 0,
299 "bt_ctf_field_type_enumeration_get_mapping_signed handles a NULL start correctly");
300 ok(bt_ctf_field_type_enumeration_get_mapping_signed(enum_type, 0, &ret_char,
301 &ret_range_start_int64_t, NULL) == 0,
302 "bt_ctf_field_type_enumeration_get_mapping_signed handles a NULL end correctly");
303 /* Assumes entries are sorted by range_start values. */
304 ok(bt_ctf_field_type_enumeration_get_mapping_signed(enum_type, 6, &ret_char,
305 &ret_range_start_int64_t, &ret_range_end_int64_t) == 0,
306 "bt_ctf_field_type_enumeration_get_mapping_signed returns a value");
307 ok(!strcmp(ret_char, mapping_name_test),
308 "bt_ctf_field_type_enumeration_get_mapping_signed returns a correct mapping name");
309 ok(ret_range_start_int64_t == 42,
310 "bt_ctf_field_type_enumeration_get_mapping_signed returns a correct mapping start");
311 ok(ret_range_end_int64_t == 42,
312 "bt_ctf_field_type_enumeration_get_mapping_signed returns a correct mapping end");
313
314 ok(bt_ctf_field_type_enumeration_add_mapping_unsigned(enum_type_unsigned,
315 "escaping; \"test\"", 0, 0) == 0,
316 "bt_ctf_field_type_enumeration_add_mapping_unsigned accepts enumeration mapping strings containing quotes");
317 ok(bt_ctf_field_type_enumeration_add_mapping_unsigned(enum_type_unsigned,
318 "\tanother \'escaping\'\n test\"", 1, 4) == 0,
319 "bt_ctf_field_type_enumeration_add_mapping_unsigned accepts enumeration mapping strings containing special characters");
320 ok(bt_ctf_field_type_enumeration_add_mapping_unsigned(enum_type_unsigned,
321 "event clock int float", 5, 22) == 0,
322 "bt_ctf_field_type_enumeration_add_mapping_unsigned accepts enumeration mapping strings containing reserved keywords");
323 bt_ctf_field_type_enumeration_add_mapping_unsigned(enum_type_unsigned, mapping_name_test,
324 42, 42);
325 ok(bt_ctf_field_type_enumeration_add_mapping_unsigned(enum_type_unsigned, mapping_name_test,
326 43, 51) == 0, "bt_ctf_field_type_enumeration_add_mapping_unsigned accepts duplicate mapping names");
327 ok(bt_ctf_field_type_enumeration_add_mapping_unsigned(enum_type_unsigned, "something",
328 7, 8) == 0, "bt_ctf_field_type_enumeration_add_mapping_unsigned accepts overlapping enum entries");
329 ok(bt_ctf_field_type_enumeration_add_mapping_unsigned(enum_type_unsigned, mapping_name_test,
330 55, 54), "bt_ctf_field_type_enumeration_add_mapping_unsigned rejects mapping where end < start");
331 ok(bt_ctf_event_class_add_field(simple_event_class, enum_type_unsigned,
332 "enum_field_unsigned") == 0, "Add unsigned enumeration field to event");
333
334 ok(bt_ctf_field_type_enumeration_get_mapping_count(NULL) < 0,
335 "bt_ctf_field_type_enumeration_get_mapping_count handles NULL correctly");
336 ok(bt_ctf_field_type_enumeration_get_mapping_count(enum_type_unsigned) == 6,
337 "bt_ctf_field_type_enumeration_get_mapping_count returns the correct value");
338
339 ok(bt_ctf_field_type_enumeration_get_mapping_unsigned(NULL, 0, &ret_char,
340 &ret_range_start_uint64_t, &ret_range_end_uint64_t) < 0,
341 "bt_ctf_field_type_enumeration_get_mapping_unsigned handles a NULL enumeration correctly");
342 ok(bt_ctf_field_type_enumeration_get_mapping_unsigned(enum_type_unsigned, 0, NULL,
343 &ret_range_start_uint64_t, &ret_range_end_uint64_t) == 0,
344 "bt_ctf_field_type_enumeration_get_mapping_unsigned handles a NULL string correctly");
345 ok(bt_ctf_field_type_enumeration_get_mapping_unsigned(enum_type_unsigned, 0, &ret_char,
346 NULL, &ret_range_end_uint64_t) == 0,
347 "bt_ctf_field_type_enumeration_get_mapping_unsigned handles a NULL start correctly");
348 ok(bt_ctf_field_type_enumeration_get_mapping_unsigned(enum_type_unsigned, 0, &ret_char,
349 &ret_range_start_uint64_t, NULL) == 0,
350 "bt_ctf_field_type_enumeration_get_mapping_unsigned handles a NULL end correctly");
351 ok(bt_ctf_field_type_enumeration_get_mapping_unsigned(enum_type_unsigned, 4, &ret_char,
352 &ret_range_start_uint64_t, &ret_range_end_uint64_t) == 0,
353 "bt_ctf_field_type_enumeration_get_mapping_unsigned returns a value");
354 ok(!strcmp(ret_char, mapping_name_test),
355 "bt_ctf_field_type_enumeration_get_mapping_unsigned returns a correct mapping name");
356 ok(ret_range_start_uint64_t == 42,
357 "bt_ctf_field_type_enumeration_get_mapping_unsigned returns a correct mapping start");
358 ok(ret_range_end_uint64_t == 42,
359 "bt_ctf_field_type_enumeration_get_mapping_unsigned returns a correct mapping end");
360
361 bt_ctf_event_class_add_field(simple_event_class, uint_12_type,
362 "integer_field");
363 bt_ctf_event_class_add_field(simple_event_class, float_type,
364 "float_field");
365
366 assert(!bt_ctf_event_class_set_id(simple_event_class, 13));
367
368 /* Set an event context type which will contain a single integer. */
369 ok(!bt_ctf_field_type_structure_add_field(event_context_type, uint_12_type,
370 "event_specific_context"),
371 "Add event specific context field");
372 ok(bt_ctf_event_class_get_context_type(NULL) == NULL,
373 "bt_ctf_event_class_get_context_type handles NULL correctly");
374
375 ok(bt_ctf_event_class_set_context_type(NULL, event_context_type) < 0,
376 "bt_ctf_event_class_set_context_type handles a NULL event class correctly");
377 ok(!bt_ctf_event_class_set_context_type(simple_event_class, event_context_type),
378 "Set an event class' context type successfully");
379 returned_type = bt_ctf_event_class_get_context_type(simple_event_class);
380 ok(returned_type == event_context_type,
381 "bt_ctf_event_class_get_context_type returns the appropriate type");
382 bt_put(returned_type);
383
384 ok(!bt_ctf_stream_class_add_event_class(stream_class, simple_event_class),
385 "Adding simple event class to stream class");
386
387 /*
388 * bt_ctf_stream_class_add_event_class() copies the field types
389 * of simple_event_class, so we retrieve the new ones to create
390 * the appropriate fields.
391 */
392 BT_PUT(event_context_type);
393 BT_PUT(event_payload_type);
394 event_payload_type = bt_ctf_event_class_get_payload_type(
395 simple_event_class);
396 assert(event_payload_type);
397 event_context_type = bt_ctf_event_class_get_context_type(
398 simple_event_class);
399 assert(event_context_type);
400 ep_integer_field_type =
401 bt_ctf_field_type_structure_get_field_type_by_name(
402 event_payload_type, "integer_field");
403 assert(ep_integer_field_type);
404 ep_enum_field_type =
405 bt_ctf_field_type_structure_get_field_type_by_name(
406 event_payload_type, "enum_field");
407 assert(ep_enum_field_type);
408 ep_enum_field_unsigned_type =
409 bt_ctf_field_type_structure_get_field_type_by_name(
410 event_payload_type, "enum_field_unsigned");
411 assert(ep_enum_field_unsigned_type);
412
413 ok(bt_ctf_stream_class_get_event_class_count(NULL) < 0,
414 "bt_ctf_stream_class_get_event_class_count handles NULL correctly");
415 ok(bt_ctf_stream_class_get_event_class_count(stream_class) == 1,
416 "bt_ctf_stream_class_get_event_class_count returns a correct number of event classes");
417 ok(bt_ctf_stream_class_get_event_class_by_index(NULL, 0) == NULL,
418 "bt_ctf_stream_class_get_event_class handles NULL correctly");
419 ok(bt_ctf_stream_class_get_event_class_by_index(stream_class, 8724) == NULL,
420 "bt_ctf_stream_class_get_event_class handles invalid indexes correctly");
421 ret_event_class = bt_ctf_stream_class_get_event_class_by_index(stream_class, 0);
422 ok(ret_event_class == simple_event_class,
423 "bt_ctf_stream_class_get_event_class returns the correct event class");
424 bt_put(ret_event_class);
425 ok(!bt_ctf_stream_class_get_event_class_by_id(NULL, 0),
426 "bt_ctf_stream_class_get_event_class_by_id handles NULL correctly");
427 ok(!bt_ctf_stream_class_get_event_class_by_id(stream_class, 2),
428 "bt_ctf_stream_class_get_event_class_by_id returns NULL when the requested ID doesn't exist");
429 ret_event_class =
430 bt_ctf_stream_class_get_event_class_by_id(stream_class, 13);
431 ok(ret_event_class == simple_event_class,
432 "bt_ctf_stream_class_get_event_class_by_id returns a correct event class");
433 bt_put(ret_event_class);
434
435 simple_event = bt_ctf_event_create(simple_event_class);
436 ok(simple_event,
437 "Instantiate an event containing a single integer field");
438
439 integer_field = bt_ctf_field_create(ep_integer_field_type);
440 bt_ctf_field_unsigned_integer_set_value(integer_field, 42);
441 ok(bt_ctf_event_set_payload(simple_event, "integer_field",
442 integer_field) == 0, "Use bt_ctf_event_set_payload to set a manually allocated field");
443
444 float_field = bt_ctf_event_get_payload(simple_event, "float_field");
445 ok(bt_ctf_field_floating_point_get_value(float_field, &ret_double),
446 "bt_ctf_field_floating_point_get_value fails on an unset float field");
447 bt_ctf_field_floating_point_set_value(float_field, double_test_value);
448 ok(bt_ctf_field_floating_point_get_value(NULL, &ret_double),
449 "bt_ctf_field_floating_point_get_value properly handles a NULL field");
450 ok(bt_ctf_field_floating_point_get_value(float_field, NULL),
451 "bt_ctf_field_floating_point_get_value properly handles a NULL return value pointer");
452 ok(!bt_ctf_field_floating_point_get_value(float_field, &ret_double),
453 "bt_ctf_field_floating_point_get_value returns a double value");
454 ok(fabs(ret_double - double_test_value) <= DBL_EPSILON,
455 "bt_ctf_field_floating_point_get_value returns a correct value");
456
457 enum_field = bt_ctf_field_create(ep_enum_field_type);
458 assert(enum_field);
459
460 iter = bt_ctf_field_enumeration_get_mappings(NULL);
461 ok(!iter, "bt_ctf_field_enumeration_get_mappings handles NULL correctly");
462 iter = bt_ctf_field_enumeration_get_mappings(enum_field);
463 ok(!iter, "bt_ctf_field_enumeration_get_mappings returns NULL if the enumeration's container field is unset");
464 enum_container_field = bt_ctf_field_enumeration_get_container(
465 enum_field);
466 ok(bt_ctf_field_signed_integer_set_value(
467 enum_container_field, -42) == 0,
468 "Set signed enumeration container value");
469 iter = bt_ctf_field_enumeration_get_mappings(enum_field);
470 ok(iter, "bt_ctf_field_enumeration_get_mappings returns an iterator to matching mappings");
471 ret = bt_ctf_field_type_enumeration_mapping_iterator_get_signed(iter, &ret_char, NULL, NULL);
472 ok(!ret && ret_char, "bt_ctf_field_type_enumeration_mapping_iterator_get_signed return a mapping name");
473 ok(!strcmp(ret_char, mapping_name_negative_test),
474 "bt_ctf_field_enumeration_get_single_mapping_name returns the correct mapping name with an signed container");
475 ret = bt_ctf_event_set_payload(simple_event, "enum_field", enum_field);
476 assert(!ret);
477 BT_PUT(iter);
478
479 enum_field_unsigned = bt_ctf_field_create(ep_enum_field_unsigned_type);
480 assert(enum_field_unsigned);
481 enum_container_field_unsigned = bt_ctf_field_enumeration_get_container(
482 enum_field_unsigned);
483 ok(bt_ctf_field_unsigned_integer_set_value(
484 enum_container_field_unsigned, 42) == 0,
485 "Set unsigned enumeration container value");
486 ret = bt_ctf_event_set_payload(simple_event, "enum_field_unsigned",
487 enum_field_unsigned);
488 assert(!ret);
489 iter = bt_ctf_field_enumeration_get_mappings(enum_field_unsigned);
490 assert(iter);
491 (void) bt_ctf_field_type_enumeration_mapping_iterator_get_unsigned(iter, &ret_char, NULL, NULL);
492 ok(ret_char && !strcmp(ret_char, mapping_name_test),
493 "bt_ctf_field_type_enumeration_mapping_iterator_get_unsigned returns the correct mapping name with an unsigned container");
494
495 ok(bt_ctf_clock_set_time(clock, current_time) == 0, "Set clock time");
496
497 /* Populate stream event context */
498 stream_event_context =
499 bt_ctf_event_get_stream_event_context(simple_event);
500 assert(stream_event_context);
501 stream_event_context_field = bt_ctf_field_structure_get_field(
502 stream_event_context, "common_event_context");
503 bt_ctf_field_unsigned_integer_set_value(stream_event_context_field, 42);
504
505 /* Populate the event's context */
506 ok(bt_ctf_event_get_event_context(NULL) == NULL,
507 "bt_ctf_event_get_event_context handles NULL correctly");
508 event_context = bt_ctf_event_get_event_context(simple_event);
509 ok(event_context,
510 "bt_ctf_event_get_event_context returns a field");
511 returned_type = bt_ctf_field_get_type(event_context);
512 ok(returned_type == event_context_type,
513 "bt_ctf_event_get_event_context returns a field of the appropriate type");
514 event_context_field = bt_ctf_field_structure_get_field(event_context,
515 "event_specific_context");
516 ok(!bt_ctf_field_unsigned_integer_set_value(event_context_field, 1234),
517 "Successfully set an event context's value");
518 ok(bt_ctf_event_set_event_context(NULL, event_context) < 0,
519 "bt_ctf_event_set_event_context handles a NULL event correctly");
520 ok(bt_ctf_event_set_event_context(simple_event, NULL) < 0,
521 "bt_ctf_event_set_event_context handles a NULL event context correctly");
522 ok(bt_ctf_event_set_event_context(simple_event, event_context_field) < 0,
523 "bt_ctf_event_set_event_context rejects a context of the wrong type");
524 ok(!bt_ctf_event_set_event_context(simple_event, event_context),
525 "Set an event context successfully");
526
527 ok(bt_ctf_stream_append_event(stream, simple_event) == 0,
528 "Append simple event to trace stream");
529
530 ok(bt_ctf_stream_get_packet_context(NULL) == NULL,
531 "bt_ctf_stream_get_packet_context handles NULL correctly");
532 packet_context = bt_ctf_stream_get_packet_context(stream);
533 ok(packet_context,
534 "bt_ctf_stream_get_packet_context returns a packet context");
535
536 packet_context_field = bt_ctf_field_structure_get_field(packet_context,
537 "packet_size");
538 ok(packet_context_field,
539 "Packet context contains the default packet_size field.");
540 bt_put(packet_context_field);
541 packet_context_field = bt_ctf_field_structure_get_field(packet_context,
542 "custom_packet_context_field");
543 ok(bt_ctf_field_unsigned_integer_set_value(packet_context_field, 8) == 0,
544 "Custom packet context field value successfully set.");
545
546 ok(bt_ctf_stream_set_packet_context(NULL, packet_context_field) < 0,
547 "bt_ctf_stream_set_packet_context handles a NULL stream correctly");
548 ok(bt_ctf_stream_set_packet_context(stream, NULL) < 0,
549 "bt_ctf_stream_set_packet_context handles a NULL packet context correctly");
550 ok(bt_ctf_stream_set_packet_context(stream, packet_context) == 0,
551 "Successfully set a stream's packet context");
552
553 ok(bt_ctf_stream_flush(stream) == 0,
554 "Flush trace stream with one event");
555
556 bt_put(simple_event_class);
557 bt_put(simple_event);
558 bt_put(uint_12_type);
559 bt_put(int_64_type);
560 bt_put(float_type);
561 bt_put(enum_type);
562 bt_put(enum_type_unsigned);
563 bt_put(returned_type);
564 bt_put(event_context_type);
565 bt_put(integer_field);
566 bt_put(float_field);
567 bt_put(enum_field);
568 bt_put(enum_field_unsigned);
569 bt_put(enum_container_field);
570 bt_put(enum_container_field_unsigned);
571 bt_put(packet_context);
572 bt_put(packet_context_field);
573 bt_put(stream_event_context);
574 bt_put(stream_event_context_field);
575 bt_put(event_context);
576 bt_put(event_context_field);
577 bt_put(event_payload_type);
578 bt_put(ep_integer_field_type);
579 bt_put(ep_enum_field_type);
580 bt_put(ep_enum_field_unsigned_type);
581 bt_put(iter);
582 }
583
584 static
585 void append_complex_event(struct bt_ctf_stream_class *stream_class,
586 struct bt_ctf_stream *stream, struct bt_ctf_clock *clock)
587 {
588 struct event_class_attrs_counts {
589 int id;
590 int name;
591 int loglevel;
592 int modelemfuri;
593 int unknown;
594 } attrs_count;
595
596 int i;
597 int ret;
598 int64_t int64_value;
599 struct event_class_attrs_counts ;
600 const char *complex_test_event_string = "Complex Test Event";
601 const char *test_string_1 = "Test ";
602 const char *test_string_2 = "string ";
603 const char *test_string_3 = "abcdefghi";
604 const char *test_string_4 = "abcd\0efg\0hi";
605 const char *test_string_cat = "Test string abcdeabcd";
606 struct bt_ctf_field_type *uint_35_type =
607 bt_ctf_field_type_integer_create(35);
608 struct bt_ctf_field_type *int_16_type =
609 bt_ctf_field_type_integer_create(16);
610 struct bt_ctf_field_type *uint_3_type =
611 bt_ctf_field_type_integer_create(3);
612 struct bt_ctf_field_type *enum_variant_type =
613 bt_ctf_field_type_enumeration_create(uint_3_type);
614 struct bt_ctf_field_type *variant_type =
615 bt_ctf_field_type_variant_create(enum_variant_type,
616 "variant_selector");
617 struct bt_ctf_field_type *string_type =
618 bt_ctf_field_type_string_create();
619 struct bt_ctf_field_type *sequence_type;
620 struct bt_ctf_field_type *array_type;
621 struct bt_ctf_field_type *inner_structure_type =
622 bt_ctf_field_type_structure_create();
623 struct bt_ctf_field_type *complex_structure_type =
624 bt_ctf_field_type_structure_create();
625 struct bt_ctf_field_type *ret_field_type;
626 struct bt_ctf_event_class *event_class;
627 struct bt_ctf_event *event;
628 struct bt_ctf_field *uint_35_field, *int_16_field, *a_string_field,
629 *inner_structure_field, *complex_structure_field,
630 *a_sequence_field, *enum_variant_field, *enum_container_field,
631 *variant_field, *an_array_field, *stream_event_ctx_field,
632 *stream_event_ctx_int_field, *ret_field;
633 uint64_t ret_unsigned_int;
634 int64_t ret_signed_int;
635 const char *ret_string;
636 struct bt_ctf_stream_class *ret_stream_class;
637 struct bt_ctf_event_class *ret_event_class;
638 struct bt_ctf_field *packet_context, *packet_context_field;
639 struct bt_ctf_field_type_enumeration_mapping_iterator *iter = NULL;
640 struct bt_value *obj;
641
642 ok(bt_ctf_field_type_set_alignment(int_16_type, 0),
643 "bt_ctf_field_type_set_alignment handles 0-alignment correctly");
644 ok(bt_ctf_field_type_set_alignment(int_16_type, 3),
645 "bt_ctf_field_type_set_alignment handles wrong alignment correctly (3)");
646 ok(bt_ctf_field_type_set_alignment(int_16_type, 24),
647 "bt_ctf_field_type_set_alignment handles wrong alignment correctly (24)");
648 ok(!bt_ctf_field_type_set_alignment(int_16_type, 4),
649 "bt_ctf_field_type_set_alignment handles correct alignment correctly (4)");
650 ok(!bt_ctf_field_type_set_alignment(int_16_type, 32),
651 "Set alignment of signed 16 bit integer to 32");
652 ok(!bt_ctf_field_type_integer_set_signed(int_16_type, 1),
653 "Set integer signedness to true");
654 ok(!bt_ctf_field_type_integer_set_base(uint_35_type,
655 BT_CTF_INTEGER_BASE_HEXADECIMAL),
656 "Set signed 16 bit integer base to hexadecimal");
657
658 array_type = bt_ctf_field_type_array_create(int_16_type, ARRAY_TEST_LENGTH);
659 sequence_type = bt_ctf_field_type_sequence_create(int_16_type,
660 "seq_len");
661
662 ok(bt_ctf_field_type_array_get_element_type(NULL) == NULL,
663 "bt_ctf_field_type_array_get_element_type handles NULL correctly");
664 ret_field_type = bt_ctf_field_type_array_get_element_type(
665 array_type);
666 ok(ret_field_type == int_16_type,
667 "bt_ctf_field_type_array_get_element_type returns the correct type");
668 bt_put(ret_field_type);
669
670 ok(bt_ctf_field_type_array_get_length(NULL) < 0,
671 "bt_ctf_field_type_array_get_length handles NULL correctly");
672 ok(bt_ctf_field_type_array_get_length(array_type) == ARRAY_TEST_LENGTH,
673 "bt_ctf_field_type_array_get_length returns the correct length");
674
675 ok(bt_ctf_field_type_structure_add_field(inner_structure_type,
676 inner_structure_type, "yes"), "Cannot add self to structure");
677 ok(!bt_ctf_field_type_structure_add_field(inner_structure_type,
678 uint_35_type, "seq_len"), "Add seq_len field to inner structure");
679 ok(!bt_ctf_field_type_structure_add_field(inner_structure_type,
680 sequence_type, "a_sequence"), "Add a_sequence field to inner structure");
681 ok(!bt_ctf_field_type_structure_add_field(inner_structure_type,
682 array_type, "an_array"), "Add an_array field to inner structure");
683
684 bt_ctf_field_type_enumeration_add_mapping(enum_variant_type,
685 "UINT3_TYPE", 0, 0);
686 bt_ctf_field_type_enumeration_add_mapping(enum_variant_type,
687 "INT16_TYPE", 1, 1);
688 bt_ctf_field_type_enumeration_add_mapping(enum_variant_type,
689 "UINT35_TYPE", 2, 7);
690
691 iter = bt_ctf_field_type_enumeration_find_mappings_by_name(NULL, "INT16_TYPE");
692 ok(iter == NULL, "bt_ctf_field_type_enumeration_find_mappings_by_name handles a NULL field type correctly");
693
694 iter = bt_ctf_field_type_enumeration_find_mappings_by_name(enum_variant_type, "INT16_TYPE");
695 ok(iter != NULL, "bt_ctf_field_type_enumeration_find_mappings_by_name handles an existing mapping correctly");
696 ok(bt_ctf_field_type_enumeration_mapping_iterator_get_unsigned(iter, NULL, NULL, NULL) == 0,
697 "bt_ctf_field_type_enumeration_mapping_iterator_get_unsigned handles mapped values correctly");
698 BT_PUT(iter);
699
700 iter = bt_ctf_field_type_enumeration_find_mappings_by_name(enum_variant_type, NULL);
701 ok(iter == NULL, "bt_ctf_field_type_enumeration_find_mappings_by_name handles a NULL name correctly");
702
703 iter = bt_ctf_field_type_enumeration_find_mappings_by_unsigned_value(NULL, 1);
704 ok(iter == NULL, "bt_ctf_field_type_enumeration_find_mappings_by_unsigned_value handles a NULL field type correctly");
705
706 iter = bt_ctf_field_type_enumeration_find_mappings_by_unsigned_value(enum_variant_type, -42);
707 ok(iter == NULL, "bt_ctf_field_type_enumeration_find_mappings_by_unsigned_value handles invalid values correctly");
708 ok(bt_ctf_field_type_enumeration_mapping_iterator_get_unsigned(iter, NULL, NULL, NULL) != 0,
709 "bt_ctf_field_type_enumeration_mapping_iterator_get_unsigned handles invalid values correctly");
710 BT_PUT(iter);
711
712 iter = bt_ctf_field_type_enumeration_find_mappings_by_unsigned_value(enum_variant_type, 5);
713 ok(iter != NULL, "bt_ctf_field_type_enumeration_find_mappings_by_unsigned_value handles valid values correctly");
714 ok(bt_ctf_field_type_enumeration_mapping_iterator_get_unsigned(iter, NULL, NULL, NULL) == 0,
715 "bt_ctf_field_type_enumeration_mapping_iterator_get_unsigned handles valid values correctly");
716 BT_PUT(iter);
717
718 ok(bt_ctf_field_type_variant_add_field(variant_type, uint_3_type,
719 "An unknown entry"), "Reject a variant field based on an unknown tag value");
720 ok(bt_ctf_field_type_variant_add_field(variant_type, uint_3_type,
721 "UINT3_TYPE") == 0, "Add a field to a variant");
722 ok(!bt_ctf_field_type_variant_add_field(variant_type, int_16_type,
723 "INT16_TYPE"), "Add INT16_TYPE field to variant");
724 ok(!bt_ctf_field_type_variant_add_field(variant_type, uint_35_type,
725 "UINT35_TYPE"), "Add UINT35_TYPE field to variant");
726
727 ok(bt_ctf_field_type_variant_get_tag_type(NULL) == NULL,
728 "bt_ctf_field_type_variant_get_tag_type handles NULL correctly");
729 ret_field_type = bt_ctf_field_type_variant_get_tag_type(variant_type);
730 ok(ret_field_type == enum_variant_type,
731 "bt_ctf_field_type_variant_get_tag_type returns a correct tag type");
732 bt_put(ret_field_type);
733
734 ok(bt_ctf_field_type_variant_get_tag_name(NULL) == NULL,
735 "bt_ctf_field_type_variant_get_tag_name handles NULL correctly");
736 ret_string = bt_ctf_field_type_variant_get_tag_name(variant_type);
737 ok(ret_string ? !strcmp(ret_string, "variant_selector") : 0,
738 "bt_ctf_field_type_variant_get_tag_name returns the correct variant tag name");
739 ok(bt_ctf_field_type_variant_get_field_type_by_name(NULL,
740 "INT16_TYPE") == NULL,
741 "bt_ctf_field_type_variant_get_field_type_by_name handles a NULL variant_type correctly");
742 ok(bt_ctf_field_type_variant_get_field_type_by_name(variant_type,
743 NULL) == NULL,
744 "bt_ctf_field_type_variant_get_field_type_by_name handles a NULL field name correctly");
745 ret_field_type = bt_ctf_field_type_variant_get_field_type_by_name(
746 variant_type, "INT16_TYPE");
747 ok(ret_field_type == int_16_type,
748 "bt_ctf_field_type_variant_get_field_type_by_name returns a correct field type");
749 bt_put(ret_field_type);
750
751 ok(bt_ctf_field_type_variant_get_field_count(NULL) < 0,
752 "bt_ctf_field_type_variant_get_field_count handles NULL correctly");
753 ok(bt_ctf_field_type_variant_get_field_count(variant_type) == 3,
754 "bt_ctf_field_type_variant_get_field_count returns the correct count");
755
756 ok(bt_ctf_field_type_variant_get_field(NULL, &ret_string, &ret_field_type, 0) < 0,
757 "bt_ctf_field_type_variant_get_field handles a NULL type correctly");
758 ok(bt_ctf_field_type_variant_get_field(variant_type, NULL, &ret_field_type, 0) == 0,
759 "bt_ctf_field_type_variant_get_field handles a NULL field name correctly");
760 bt_put(ret_field_type);
761 ok(bt_ctf_field_type_variant_get_field(variant_type, &ret_string, NULL, 0) == 0,
762 "bt_ctf_field_type_variant_get_field handles a NULL field type correctly");
763 ok(bt_ctf_field_type_variant_get_field(variant_type, &ret_string, &ret_field_type, 200) < 0,
764 "bt_ctf_field_type_variant_get_field handles an invalid index correctly");
765 ok(bt_ctf_field_type_variant_get_field(variant_type, &ret_string, &ret_field_type, 1) == 0,
766 "bt_ctf_field_type_variant_get_field returns a field");
767 ok(!strcmp("INT16_TYPE", ret_string),
768 "bt_ctf_field_type_variant_get_field returns a correct field name");
769 ok(ret_field_type == int_16_type,
770 "bt_ctf_field_type_variant_get_field returns a correct field type");
771 bt_put(ret_field_type);
772
773 ok(!bt_ctf_field_type_structure_add_field(complex_structure_type,
774 enum_variant_type, "variant_selector"),
775 "Add variant_selector field to complex structure");
776 ok(!bt_ctf_field_type_structure_add_field(complex_structure_type,
777 string_type, "a_string"), "Add a_string field to complex structure");
778 ok(!bt_ctf_field_type_structure_add_field(complex_structure_type,
779 variant_type, "variant_value"),
780 "Add variant_value field to complex structure");
781 ok(!bt_ctf_field_type_structure_add_field(complex_structure_type,
782 inner_structure_type, "inner_structure"),
783 "Add inner_structure field to complex structure");
784
785 ok(bt_ctf_event_class_create("clock") == NULL,
786 "Reject creation of an event class with an illegal name");
787 event_class = bt_ctf_event_class_create(complex_test_event_string);
788 ok(event_class, "Create an event class");
789 ok(bt_ctf_event_class_add_field(event_class, uint_35_type, ""),
790 "Reject addition of a field with an empty name to an event");
791 ok(bt_ctf_event_class_add_field(event_class, NULL, "an_integer"),
792 "Reject addition of a field with a NULL type to an event");
793 ok(bt_ctf_event_class_add_field(event_class, uint_35_type,
794 "int"),
795 "Reject addition of a type with an illegal name to an event");
796 ok(bt_ctf_event_class_add_field(event_class, uint_35_type,
797 "uint_35") == 0,
798 "Add field of type unsigned integer to an event");
799 ok(bt_ctf_event_class_add_field(event_class, int_16_type,
800 "int_16") == 0, "Add field of type signed integer to an event");
801 ok(bt_ctf_event_class_add_field(event_class, complex_structure_type,
802 "complex_structure") == 0,
803 "Add composite structure to an event");
804
805 ok(bt_ctf_event_class_get_name(NULL) == NULL,
806 "bt_ctf_event_class_get_name handles NULL correctly");
807 ret_string = bt_ctf_event_class_get_name(event_class);
808 ok(!strcmp(ret_string, complex_test_event_string),
809 "bt_ctf_event_class_get_name returns a correct name");
810 ok(bt_ctf_event_class_get_id(event_class) < 0,
811 "bt_ctf_event_class_get_id returns a negative value when not set");
812 ok(bt_ctf_event_class_get_id(NULL) < 0,
813 "bt_ctf_event_class_get_id handles NULL correctly");
814 ok(bt_ctf_event_class_set_id(NULL, 42) < 0,
815 "bt_ctf_event_class_set_id handles NULL correctly");
816 ok(bt_ctf_event_class_set_id(event_class, 42) == 0,
817 "Set an event class' id");
818 ok(bt_ctf_event_class_get_id(event_class) == 42,
819 "bt_ctf_event_class_get_id returns the correct value");
820
821 /* Test event class attributes */
822 obj = bt_value_integer_create_init(15);
823 assert(obj);
824 ok(bt_ctf_event_class_set_attribute(NULL, "id", obj),
825 "bt_ctf_event_class_set_attribute handles a NULL event class correctly");
826 ok(bt_ctf_event_class_set_attribute(event_class, NULL, obj),
827 "bt_ctf_event_class_set_attribute handles a NULL name correctly");
828 ok(bt_ctf_event_class_set_attribute(event_class, "id", NULL),
829 "bt_ctf_event_class_set_attribute handles a NULL value correctly");
830 assert(!bt_value_integer_set(obj, -3));
831 ok(bt_ctf_event_class_set_attribute(event_class, "id", obj),
832 "bt_ctf_event_class_set_attribute fails with a negative \"id\" attribute");
833 assert(!bt_value_integer_set(obj, 11));
834 ret = bt_ctf_event_class_set_attribute(event_class, "id", obj);
835 ok(!ret && bt_ctf_event_class_get_id(event_class) == 11,
836 "bt_ctf_event_class_set_attribute succeeds in replacing the existing \"id\" attribute");
837 ret = bt_ctf_event_class_set_attribute(event_class, "name", obj);
838 ret &= bt_ctf_event_class_set_attribute(event_class, "model.emf.uri", obj);
839 ok(ret,
840 "bt_ctf_event_class_set_attribute cannot set \"name\" or \"model.emf.uri\" to an integer value");
841 BT_PUT(obj);
842
843 obj = bt_value_integer_create_init(5);
844 assert(obj);
845 ok(!bt_ctf_event_class_set_attribute(event_class, "loglevel", obj),
846 "bt_ctf_event_class_set_attribute succeeds in setting the \"loglevel\" attribute");
847 BT_PUT(obj);
848 ok(!bt_ctf_event_class_get_attribute_value_by_name(NULL, "loglevel"),
849 "bt_ctf_event_class_get_attribute_value_by_name handles a NULL event class correctly");
850 ok(!bt_ctf_event_class_get_attribute_value_by_name(event_class, NULL),
851 "bt_ctf_event_class_get_attribute_value_by_name handles a NULL name correctly");
852 ok(!bt_ctf_event_class_get_attribute_value_by_name(event_class, "meow"),
853 "bt_ctf_event_class_get_attribute_value_by_name fails with a non-existing attribute name");
854 obj = bt_ctf_event_class_get_attribute_value_by_name(event_class,
855 "loglevel");
856 int64_value = 0;
857 ret = bt_value_integer_get(obj, &int64_value);
858 ok(obj && !ret && int64_value == 5,
859 "bt_ctf_event_class_get_attribute_value_by_name returns the correct value");
860 BT_PUT(obj);
861
862 obj = bt_value_string_create_init("nu name");
863 assert(obj);
864 assert(!bt_ctf_event_class_set_attribute(event_class, "name", obj));
865 ret_string = bt_ctf_event_class_get_name(event_class);
866 ok(!strcmp(ret_string, "nu name"),
867 "bt_ctf_event_class_set_attribute succeeds in replacing the existing \"name\" attribute");
868 ret = bt_ctf_event_class_set_attribute(event_class, "id", obj);
869 ret &= bt_ctf_event_class_set_attribute(event_class, "loglevel", obj);
870 ok(ret,
871 "bt_ctf_event_class_set_attribute cannot set \"id\" or \"loglevel\" to a string value");
872 BT_PUT(obj);
873 obj = bt_value_string_create_init("http://kernel.org/");
874 assert(obj);
875 assert(!bt_ctf_event_class_set_attribute(event_class, "model.emf.uri", obj));
876 BT_PUT(obj);
877
878 ok(bt_ctf_event_class_get_attribute_count(NULL),
879 "bt_ctf_event_class_get_attribute_count handles a NULL event class");
880 ok(bt_ctf_event_class_get_attribute_count(event_class) == 4,
881 "bt_ctf_event_class_get_attribute_count returns the correct count");
882 ok(!bt_ctf_event_class_get_attribute_name_by_index(NULL, 0),
883 "bt_ctf_event_class_get_attribute_name handles a NULL event class correctly");
884 ok(!bt_ctf_event_class_get_attribute_name_by_index(event_class, 4),
885 "bt_ctf_event_class_get_attribute_name handles a too large index correctly");
886 ok(!bt_ctf_event_class_get_attribute_value_by_index(NULL, 0),
887 "bt_ctf_event_class_get_attribute_value handles a NULL event class correctly");
888 ok(!bt_ctf_event_class_get_attribute_value_by_index(event_class, 4),
889 "bt_ctf_event_class_get_attribute_value handles a too large index correctly");
890
891 memset(&attrs_count, 0, sizeof(attrs_count));
892
893 for (i = 0; i < 4; ++i) {
894 ret_string = bt_ctf_event_class_get_attribute_name_by_index(
895 event_class, i);
896 obj = bt_ctf_event_class_get_attribute_value_by_index(
897 event_class, i);
898 assert(ret_string && obj);
899
900 if (!strcmp(ret_string, "id")) {
901 attrs_count.id++;
902 ok(bt_value_is_integer(obj),
903 "bt_ctf_event_class_get_attribute_value returns the correct type (\"%s\")",
904 ret_string);
905 } else if (!strcmp(ret_string, "name")) {
906 attrs_count.name++;
907 ok(bt_value_is_string(obj),
908 "bt_ctf_event_class_get_attribute_value returns the correct type (\"%s\")",
909 ret_string);
910 } else if (!strcmp(ret_string, "loglevel")) {
911 attrs_count.loglevel++;
912 ok(bt_value_is_integer(obj),
913 "bt_ctf_event_class_get_attribute_value returns the correct type (\"%s\")",
914 ret_string);
915 } else if (!strcmp(ret_string, "model.emf.uri")) {
916 attrs_count.modelemfuri++;
917 ok(bt_value_is_string(obj),
918 "bt_ctf_event_class_get_attribute_value returns the correct type (\"%s\")",
919 ret_string);
920 } else {
921 attrs_count.unknown++;
922 }
923
924 BT_PUT(obj);
925 }
926
927 ok(attrs_count.unknown == 0, "event class has no unknown attributes");
928 ok(attrs_count.id == 1 && attrs_count.name == 1 &&
929 attrs_count.loglevel == 1 && attrs_count.modelemfuri == 1,
930 "event class has one instance of each known attribute");
931
932 /* Add event class to the stream class */
933 ok(bt_ctf_stream_class_add_event_class(stream_class, NULL),
934 "Reject addition of NULL event class to a stream class");
935 ok(bt_ctf_stream_class_add_event_class(stream_class,
936 event_class) == 0, "Add an event class to stream class");
937
938 ok(bt_ctf_event_class_get_stream_class(NULL) == NULL,
939 "bt_ctf_event_class_get_stream_class handles NULL correctly");
940 ret_stream_class = bt_ctf_event_class_get_stream_class(event_class);
941 ok(ret_stream_class == stream_class,
942 "bt_ctf_event_class_get_stream_class returns the correct stream class");
943 bt_put(ret_stream_class);
944
945 ok(bt_ctf_event_class_get_payload_type_field_count(NULL) < 0,
946 "bt_ctf_event_class_get_field_count handles NULL correctly");
947 ok(bt_ctf_event_class_get_payload_type_field_count(event_class) == 3,
948 "bt_ctf_event_class_get_field_count returns a correct value");
949
950 ok(bt_ctf_event_class_get_payload_type_field_by_index(NULL, &ret_string,
951 &ret_field_type, 0) < 0,
952 "bt_ctf_event_class_get_field handles a NULL event class correctly");
953 ok(bt_ctf_event_class_get_payload_type_field_by_index(event_class, NULL,
954 &ret_field_type, 0) == 0,
955 "bt_ctf_event_class_get_field handles a NULL field name correctly");
956 bt_put(ret_field_type);
957 ok(bt_ctf_event_class_get_payload_type_field_by_index(event_class, &ret_string,
958 NULL, 0) == 0,
959 "bt_ctf_event_class_get_field handles a NULL field type correctly");
960 ok(bt_ctf_event_class_get_payload_type_field_by_index(event_class, &ret_string,
961 &ret_field_type, 42) < 0,
962 "bt_ctf_event_class_get_field handles an invalid index correctly");
963 ok(bt_ctf_event_class_get_payload_type_field_by_index(event_class, &ret_string,
964 &ret_field_type, 0) == 0,
965 "bt_ctf_event_class_get_field returns a field");
966 ok(bt_ctf_field_type_compare(ret_field_type, uint_35_type) == 0,
967 "bt_ctf_event_class_get_field returns a correct field type");
968 bt_put(ret_field_type);
969 ok(!strcmp(ret_string, "uint_35"),
970 "bt_ctf_event_class_get_field returns a correct field name");
971 ok(bt_ctf_event_class_get_field_by_name(NULL, "") == NULL,
972 "bt_ctf_event_class_get_field_by_name handles a NULL event class correctly");
973 ok(bt_ctf_event_class_get_field_by_name(event_class, NULL) == NULL,
974 "bt_ctf_event_class_get_field_by_name handles a NULL field name correctly");
975 ok(bt_ctf_event_class_get_field_by_name(event_class, "truie") == NULL,
976 "bt_ctf_event_class_get_field_by_name handles an invalid field name correctly");
977 ret_field_type = bt_ctf_event_class_get_field_by_name(event_class,
978 "complex_structure");
979 ok(bt_ctf_field_type_compare(ret_field_type, complex_structure_type) == 0,
980 "bt_ctf_event_class_get_field_by_name returns a correct field type");
981 bt_put(ret_field_type);
982
983 event = bt_ctf_event_create(event_class);
984 ok(event, "Instanciate a complex event");
985
986 ok(bt_ctf_event_get_class(NULL) == NULL,
987 "bt_ctf_event_get_class handles NULL correctly");
988 ret_event_class = bt_ctf_event_get_class(event);
989 ok(ret_event_class == event_class,
990 "bt_ctf_event_get_class returns the correct event class");
991 bt_put(ret_event_class);
992
993 uint_35_field = bt_ctf_event_get_payload(event, "uint_35");
994 if (!uint_35_field) {
995 printf("uint_35_field is NULL\n");
996 }
997
998 ok(uint_35_field, "Use bt_ctf_event_get_payload to get a field instance ");
999 bt_ctf_field_unsigned_integer_set_value(uint_35_field, 0x0DDF00D);
1000 ok(bt_ctf_field_unsigned_integer_get_value(NULL, &ret_unsigned_int) < 0,
1001 "bt_ctf_field_unsigned_integer_get_value properly properly handles a NULL field.");
1002 ok(bt_ctf_field_unsigned_integer_get_value(uint_35_field, NULL) < 0,
1003 "bt_ctf_field_unsigned_integer_get_value properly handles a NULL return value");
1004 ok(bt_ctf_field_unsigned_integer_get_value(uint_35_field,
1005 &ret_unsigned_int) == 0,
1006 "bt_ctf_field_unsigned_integer_get_value succeeds after setting a value");
1007 ok(ret_unsigned_int == 0x0DDF00D,
1008 "bt_ctf_field_unsigned_integer_get_value returns the correct value");
1009 ok(bt_ctf_field_signed_integer_get_value(uint_35_field,
1010 &ret_signed_int) < 0,
1011 "bt_ctf_field_signed_integer_get_value fails on an unsigned field");
1012 bt_put(uint_35_field);
1013
1014 int_16_field = bt_ctf_event_get_payload(event, "int_16");
1015 bt_ctf_field_signed_integer_set_value(int_16_field, -12345);
1016 ok(bt_ctf_field_signed_integer_get_value(NULL, &ret_signed_int) < 0,
1017 "bt_ctf_field_signed_integer_get_value properly handles a NULL field");
1018 ok(bt_ctf_field_signed_integer_get_value(int_16_field, NULL) < 0,
1019 "bt_ctf_field_signed_integer_get_value properly handles a NULL return value");
1020 ok(bt_ctf_field_signed_integer_get_value(int_16_field,
1021 &ret_signed_int) == 0,
1022 "bt_ctf_field_signed_integer_get_value succeeds after setting a value");
1023 ok(ret_signed_int == -12345,
1024 "bt_ctf_field_signed_integer_get_value returns the correct value");
1025 ok(bt_ctf_field_unsigned_integer_get_value(int_16_field,
1026 &ret_unsigned_int) < 0,
1027 "bt_ctf_field_unsigned_integer_get_value fails on a signed field");
1028 bt_put(int_16_field);
1029
1030 complex_structure_field = bt_ctf_event_get_payload(event,
1031 "complex_structure");
1032
1033 ok(bt_ctf_field_structure_get_field_by_index(NULL, 0) == NULL,
1034 "bt_ctf_field_structure_get_field_by_index handles NULL correctly");
1035 ok(bt_ctf_field_structure_get_field_by_index(NULL, 9) == NULL,
1036 "bt_ctf_field_structure_get_field_by_index handles an invalid index correctly");
1037 inner_structure_field = bt_ctf_field_structure_get_field_by_index(
1038 complex_structure_field, 3);
1039 ret_field_type = bt_ctf_field_get_type(inner_structure_field);
1040 bt_put(inner_structure_field);
1041 ok(bt_ctf_field_type_compare(ret_field_type, inner_structure_type) == 0,
1042 "bt_ctf_field_structure_get_field_by_index returns a correct field");
1043 bt_put(ret_field_type);
1044
1045 inner_structure_field = bt_ctf_field_structure_get_field(
1046 complex_structure_field, "inner_structure");
1047 a_string_field = bt_ctf_field_structure_get_field(
1048 complex_structure_field, "a_string");
1049 enum_variant_field = bt_ctf_field_structure_get_field(
1050 complex_structure_field, "variant_selector");
1051 variant_field = bt_ctf_field_structure_get_field(
1052 complex_structure_field, "variant_value");
1053 uint_35_field = bt_ctf_field_structure_get_field(
1054 inner_structure_field, "seq_len");
1055 a_sequence_field = bt_ctf_field_structure_get_field(
1056 inner_structure_field, "a_sequence");
1057 an_array_field = bt_ctf_field_structure_get_field(
1058 inner_structure_field, "an_array");
1059
1060 enum_container_field = bt_ctf_field_enumeration_get_container(
1061 enum_variant_field);
1062 bt_ctf_field_unsigned_integer_set_value(enum_container_field, 1);
1063 int_16_field = bt_ctf_field_variant_get_field(variant_field,
1064 enum_variant_field);
1065 bt_ctf_field_signed_integer_set_value(int_16_field, -200);
1066 bt_put(int_16_field);
1067 ok(!bt_ctf_field_string_get_value(a_string_field),
1068 "bt_ctf_field_string_get_value returns NULL on an unset field");
1069 bt_ctf_field_string_set_value(a_string_field,
1070 test_string_1);
1071 ok(!bt_ctf_field_string_get_value(NULL),
1072 "bt_ctf_field_string_get_value correctly handles NULL");
1073 ok(bt_ctf_field_string_append(NULL, "yeah"),
1074 "bt_ctf_field_string_append correctly handles a NULL string field");
1075 ok(bt_ctf_field_string_append(a_string_field, NULL),
1076 "bt_ctf_field_string_append correctly handles a NULL string value");
1077 ok(!bt_ctf_field_string_append(a_string_field, test_string_2),
1078 "bt_ctf_field_string_append succeeds");
1079 ok(bt_ctf_field_string_append_len(NULL, "oh noes", 3),
1080 "bt_ctf_field_string_append_len correctly handles a NULL string field");
1081 ok(bt_ctf_field_string_append_len(a_string_field, NULL, 3),
1082 "bt_ctf_field_string_append_len correctly handles a NULL string value");
1083 ok(!bt_ctf_field_string_append_len(a_string_field, test_string_3, 5),
1084 "bt_ctf_field_string_append_len succeeds (append 5 characters)");
1085 ok(!bt_ctf_field_string_append_len(a_string_field, test_string_4, 10),
1086 "bt_ctf_field_string_append_len succeeds (append 4 characters)");
1087 ok(!bt_ctf_field_string_append_len(a_string_field, &test_string_4[4], 3),
1088 "bt_ctf_field_string_append_len succeeds (append 0 characters)");
1089 ok(!bt_ctf_field_string_append_len(a_string_field, test_string_3, 0),
1090 "bt_ctf_field_string_append_len succeeds (append 0 characters)");
1091
1092 ret_string = bt_ctf_field_string_get_value(a_string_field);
1093 ok(ret_string, "bt_ctf_field_string_get_value returns a string");
1094 ok(ret_string ? !strcmp(ret_string, test_string_cat) : 0,
1095 "bt_ctf_field_string_get_value returns a correct value");
1096 bt_ctf_field_unsigned_integer_set_value(uint_35_field,
1097 SEQUENCE_TEST_LENGTH);
1098
1099 ok(bt_ctf_field_type_variant_get_field_type_from_tag(NULL,
1100 enum_container_field) == NULL,
1101 "bt_ctf_field_type_variant_get_field_type_from_tag handles a NULL variant type correctly");
1102 ok(bt_ctf_field_type_variant_get_field_type_from_tag(variant_type,
1103 NULL) == NULL,
1104 "bt_ctf_field_type_variant_get_field_type_from_tag handles a NULL tag correctly");
1105 ret_field_type = bt_ctf_field_type_variant_get_field_type_from_tag(
1106 variant_type, enum_variant_field);
1107 ok(ret_field_type == int_16_type,
1108 "bt_ctf_field_type_variant_get_field_type_from_tag returns the correct field type");
1109
1110 ok(bt_ctf_field_sequence_get_length(a_sequence_field) == NULL,
1111 "bt_ctf_field_sequence_get_length returns NULL when length is unset");
1112 ok(bt_ctf_field_sequence_set_length(a_sequence_field,
1113 uint_35_field) == 0, "Set a sequence field's length");
1114 ret_field = bt_ctf_field_sequence_get_length(a_sequence_field);
1115 ok(ret_field == uint_35_field,
1116 "bt_ctf_field_sequence_get_length returns the correct length field");
1117 ok(bt_ctf_field_sequence_get_length(NULL) == NULL,
1118 "bt_ctf_field_sequence_get_length properly handles NULL");
1119
1120 for (i = 0; i < SEQUENCE_TEST_LENGTH; i++) {
1121 int_16_field = bt_ctf_field_sequence_get_field(
1122 a_sequence_field, i);
1123 bt_ctf_field_signed_integer_set_value(int_16_field, 4 - i);
1124 bt_put(int_16_field);
1125 }
1126
1127 for (i = 0; i < ARRAY_TEST_LENGTH; i++) {
1128 int_16_field = bt_ctf_field_array_get_field(
1129 an_array_field, i);
1130 bt_ctf_field_signed_integer_set_value(int_16_field, i);
1131 bt_put(int_16_field);
1132 }
1133
1134 stream_event_ctx_field = bt_ctf_event_get_stream_event_context(event);
1135 assert(stream_event_ctx_field);
1136 stream_event_ctx_int_field = bt_ctf_field_structure_get_field(
1137 stream_event_ctx_field, "common_event_context");
1138 BT_PUT(stream_event_ctx_field);
1139 bt_ctf_field_unsigned_integer_set_value(stream_event_ctx_int_field, 17);
1140 BT_PUT(stream_event_ctx_int_field);
1141
1142 bt_ctf_clock_set_time(clock, ++current_time);
1143 ok(bt_ctf_stream_append_event(stream, event) == 0,
1144 "Append a complex event to a stream");
1145
1146 /*
1147 * Populate the custom packet context field with a dummy value
1148 * otherwise flush will fail.
1149 */
1150 packet_context = bt_ctf_stream_get_packet_context(stream);
1151 packet_context_field = bt_ctf_field_structure_get_field(packet_context,
1152 "custom_packet_context_field");
1153 bt_ctf_field_unsigned_integer_set_value(packet_context_field, 1);
1154
1155 ok(bt_ctf_stream_flush(stream) == 0,
1156 "Flush a stream containing a complex event");
1157
1158 bt_put(uint_35_field);
1159 bt_put(a_string_field);
1160 bt_put(inner_structure_field);
1161 bt_put(complex_structure_field);
1162 bt_put(a_sequence_field);
1163 bt_put(an_array_field);
1164 bt_put(enum_variant_field);
1165 bt_put(enum_container_field);
1166 bt_put(variant_field);
1167 bt_put(ret_field);
1168 bt_put(packet_context_field);
1169 bt_put(packet_context);
1170 bt_put(uint_35_type);
1171 bt_put(int_16_type);
1172 bt_put(string_type);
1173 bt_put(sequence_type);
1174 bt_put(array_type);
1175 bt_put(inner_structure_type);
1176 bt_put(complex_structure_type);
1177 bt_put(uint_3_type);
1178 bt_put(enum_variant_type);
1179 bt_put(variant_type);
1180 bt_put(ret_field_type);
1181 bt_put(event_class);
1182 bt_put(event);
1183 }
1184
1185 static
1186 void field_copy_tests_validate_same_type(struct bt_ctf_field *field,
1187 struct bt_ctf_field_type *expected_type, const char *name)
1188 {
1189 struct bt_ctf_field_type *copy_type;
1190
1191 copy_type = bt_ctf_field_get_type(field);
1192 ok(copy_type == expected_type,
1193 "bt_ctf_field_copy does not copy the type (%s)", name);
1194 bt_put(copy_type);
1195 }
1196
1197 static
1198 void field_copy_tests_validate_diff_ptrs(struct bt_ctf_field *field_a,
1199 struct bt_ctf_field *field_b, const char *name)
1200 {
1201 ok(field_a != field_b,
1202 "bt_ctf_field_copy creates different pointers (%s)", name);
1203 }
1204
1205 static
1206 void field_copy_tests()
1207 {
1208 struct bt_ctf_field_type *len_type = NULL;
1209 struct bt_ctf_field_type *fp_type = NULL;
1210 struct bt_ctf_field_type *s_type = NULL;
1211 struct bt_ctf_field_type *e_int_type = NULL;
1212 struct bt_ctf_field_type *e_type = NULL;
1213 struct bt_ctf_field_type *v_type = NULL;
1214 struct bt_ctf_field_type *v_label1_type = NULL;
1215 struct bt_ctf_field_type *v_label1_array_type = NULL;
1216 struct bt_ctf_field_type *v_label2_type = NULL;
1217 struct bt_ctf_field_type *v_label2_seq_type = NULL;
1218 struct bt_ctf_field_type *strct_type = NULL;
1219 struct bt_ctf_field *len = NULL;
1220 struct bt_ctf_field *fp = NULL;
1221 struct bt_ctf_field *s = NULL;
1222 struct bt_ctf_field *e_int = NULL;
1223 struct bt_ctf_field *e = NULL;
1224 struct bt_ctf_field *v = NULL;
1225 struct bt_ctf_field *v_selected = NULL;
1226 struct bt_ctf_field *v_selected_cur = NULL;
1227 struct bt_ctf_field *v_selected_0 = NULL;
1228 struct bt_ctf_field *v_selected_1 = NULL;
1229 struct bt_ctf_field *v_selected_2 = NULL;
1230 struct bt_ctf_field *v_selected_3 = NULL;
1231 struct bt_ctf_field *v_selected_4 = NULL;
1232 struct bt_ctf_field *v_selected_5 = NULL;
1233 struct bt_ctf_field *v_selected_6 = NULL;
1234 struct bt_ctf_field *a = NULL;
1235 struct bt_ctf_field *a_0 = NULL;
1236 struct bt_ctf_field *a_1 = NULL;
1237 struct bt_ctf_field *a_2 = NULL;
1238 struct bt_ctf_field *a_3 = NULL;
1239 struct bt_ctf_field *a_4 = NULL;
1240 struct bt_ctf_field *strct = NULL;
1241 struct bt_ctf_field *len_copy = NULL;
1242 struct bt_ctf_field *fp_copy = NULL;
1243 struct bt_ctf_field *s_copy = NULL;
1244 struct bt_ctf_field *e_int_copy = NULL;
1245 struct bt_ctf_field *e_copy = NULL;
1246 struct bt_ctf_field *v_copy = NULL;
1247 struct bt_ctf_field *v_selected_copy = NULL;
1248 struct bt_ctf_field *v_selected_copy_len = NULL;
1249 struct bt_ctf_field *v_selected_0_copy = NULL;
1250 struct bt_ctf_field *v_selected_1_copy = NULL;
1251 struct bt_ctf_field *v_selected_2_copy = NULL;
1252 struct bt_ctf_field *v_selected_3_copy = NULL;
1253 struct bt_ctf_field *v_selected_4_copy = NULL;
1254 struct bt_ctf_field *v_selected_5_copy = NULL;
1255 struct bt_ctf_field *v_selected_6_copy = NULL;
1256 struct bt_ctf_field *a_copy = NULL;
1257 struct bt_ctf_field *a_0_copy = NULL;
1258 struct bt_ctf_field *a_1_copy = NULL;
1259 struct bt_ctf_field *a_2_copy = NULL;
1260 struct bt_ctf_field *a_3_copy = NULL;
1261 struct bt_ctf_field *a_4_copy = NULL;
1262 struct bt_ctf_field *strct_copy = NULL;
1263 struct bt_ctf_field_type_enumeration_mapping_iterator *e_iter = NULL;
1264 uint64_t uint64_t_val;
1265 const char *str_val;
1266 double double_val;
1267 int ret;
1268
1269 /* create len type */
1270 len_type = bt_ctf_field_type_integer_create(32);
1271 assert(len_type);
1272
1273 /* create fp type */
1274 fp_type = bt_ctf_field_type_floating_point_create();
1275 assert(fp_type);
1276
1277 /* create s type */
1278 s_type = bt_ctf_field_type_string_create();
1279 assert(s_type);
1280
1281 /* create e_int type */
1282 e_int_type = bt_ctf_field_type_integer_create(8);
1283 assert(e_int_type);
1284
1285 /* create e type */
1286 e_type = bt_ctf_field_type_enumeration_create(e_int_type);
1287 assert(e_type);
1288 ret = bt_ctf_field_type_enumeration_add_mapping(e_type, "LABEL1",
1289 10, 15);
1290 assert(!ret);
1291 ret = bt_ctf_field_type_enumeration_add_mapping(e_type, "LABEL2",
1292 23, 23);
1293 assert(!ret);
1294
1295 /* create v_label1 type */
1296 v_label1_type = bt_ctf_field_type_string_create();
1297 assert(v_label1_type);
1298
1299 /* create v_label1_array type */
1300 v_label1_array_type = bt_ctf_field_type_array_create(v_label1_type, 5);
1301 assert(v_label1_array_type);
1302
1303 /* create v_label2 type */
1304 v_label2_type = bt_ctf_field_type_integer_create(16);
1305 assert(v_label2_type);
1306
1307 /* create v_label2_seq type */
1308 v_label2_seq_type = bt_ctf_field_type_sequence_create(v_label2_type,
1309 "len");
1310 assert(v_label2_seq_type);
1311
1312 /* create v type */
1313 v_type = bt_ctf_field_type_variant_create(e_type, "e");
1314 assert(v_type);
1315 ret = bt_ctf_field_type_variant_add_field(v_type, v_label1_array_type,
1316 "LABEL1");
1317 assert(!ret);
1318 ret = bt_ctf_field_type_variant_add_field(v_type, v_label2_seq_type,
1319 "LABEL2");
1320 assert(!ret);
1321
1322 /* create strct type */
1323 strct_type = bt_ctf_field_type_structure_create();
1324 assert(strct_type);
1325 ret = bt_ctf_field_type_structure_add_field(strct_type, len_type,
1326 "len");
1327 assert(!ret);
1328 ret = bt_ctf_field_type_structure_add_field(strct_type, fp_type, "fp");
1329 assert(!ret);
1330 ret = bt_ctf_field_type_structure_add_field(strct_type, s_type, "s");
1331 assert(!ret);
1332 ret = bt_ctf_field_type_structure_add_field(strct_type, e_type, "e");
1333 assert(!ret);
1334 ret = bt_ctf_field_type_structure_add_field(strct_type, v_type, "v");
1335 assert(!ret);
1336 ret = bt_ctf_field_type_structure_add_field(strct_type,
1337 v_label1_array_type, "a");
1338 assert(!ret);
1339
1340 /* create strct */
1341 strct = bt_ctf_field_create(strct_type);
1342 assert(strct);
1343
1344 /* get len field */
1345 len = bt_ctf_field_structure_get_field(strct, "len");
1346 assert(len);
1347
1348 /* get fp field */
1349 fp = bt_ctf_field_structure_get_field(strct, "fp");
1350 assert(fp);
1351
1352 /* get s field */
1353 s = bt_ctf_field_structure_get_field(strct, "s");
1354 assert(s);
1355
1356 /* get e field */
1357 e = bt_ctf_field_structure_get_field(strct, "e");
1358 assert(e);
1359
1360 /* get e_int (underlying integer) */
1361 e_int = bt_ctf_field_enumeration_get_container(e);
1362 assert(e_int);
1363
1364 /* get v field */
1365 v = bt_ctf_field_structure_get_field(strct, "v");
1366 assert(v);
1367
1368 /* get a field */
1369 a = bt_ctf_field_structure_get_field(strct, "a");
1370 assert(a);
1371
1372 /* set len field */
1373 ret = bt_ctf_field_unsigned_integer_set_value(len, 7);
1374 assert(!ret);
1375
1376 /* set fp field */
1377 ret = bt_ctf_field_floating_point_set_value(fp, 3.14);
1378 assert(!ret);
1379
1380 /* set s field */
1381 ret = bt_ctf_field_string_set_value(s, "btbt");
1382 assert(!ret);
1383
1384 /* set e field (LABEL2) */
1385 ret = bt_ctf_field_unsigned_integer_set_value(e_int, 23);
1386 assert(!ret);
1387
1388 /* set v field */
1389 v_selected = bt_ctf_field_variant_get_field(v, e);
1390 assert(v_selected);
1391 ok(!bt_ctf_field_variant_get_current_field(NULL),
1392 "bt_ctf_field_variant_get_current_field handles NULL correctly");
1393 v_selected_cur = bt_ctf_field_variant_get_current_field(v);
1394 ok(v_selected_cur == v_selected,
1395 "bt_ctf_field_variant_get_current_field returns the current field");
1396 bt_put(v_selected_cur);
1397
1398 /* set selected v field */
1399 ret = bt_ctf_field_sequence_set_length(v_selected, len);
1400 assert(!ret);
1401 v_selected_0 = bt_ctf_field_sequence_get_field(v_selected, 0);
1402 assert(v_selected_0);
1403 ret = bt_ctf_field_unsigned_integer_set_value(v_selected_0, 7);
1404 assert(!ret);
1405 v_selected_1 = bt_ctf_field_sequence_get_field(v_selected, 1);
1406 assert(v_selected_1);
1407 ret = bt_ctf_field_unsigned_integer_set_value(v_selected_1, 6);
1408 assert(!ret);
1409 v_selected_2 = bt_ctf_field_sequence_get_field(v_selected, 2);
1410 assert(v_selected_2);
1411 ret = bt_ctf_field_unsigned_integer_set_value(v_selected_2, 5);
1412 assert(!ret);
1413 v_selected_3 = bt_ctf_field_sequence_get_field(v_selected, 3);
1414 assert(v_selected_3);
1415 ret = bt_ctf_field_unsigned_integer_set_value(v_selected_3, 4);
1416 assert(!ret);
1417 v_selected_4 = bt_ctf_field_sequence_get_field(v_selected, 4);
1418 assert(v_selected_4);
1419 ret = bt_ctf_field_unsigned_integer_set_value(v_selected_4, 3);
1420 assert(!ret);
1421 v_selected_5 = bt_ctf_field_sequence_get_field(v_selected, 5);
1422 assert(v_selected_5);
1423 ret = bt_ctf_field_unsigned_integer_set_value(v_selected_5, 2);
1424 assert(!ret);
1425 v_selected_6 = bt_ctf_field_sequence_get_field(v_selected, 6);
1426 assert(v_selected_6);
1427 ret = bt_ctf_field_unsigned_integer_set_value(v_selected_6, 1);
1428 assert(!ret);
1429
1430 /* set a field */
1431 a_0 = bt_ctf_field_array_get_field(a, 0);
1432 assert(a_0);
1433 ret = bt_ctf_field_string_set_value(a_0, "a_0");
1434 assert(!ret);
1435 a_1 = bt_ctf_field_array_get_field(a, 1);
1436 assert(a_1);
1437 ret = bt_ctf_field_string_set_value(a_1, "a_1");
1438 assert(!ret);
1439 a_2 = bt_ctf_field_array_get_field(a, 2);
1440 assert(a_2);
1441 ret = bt_ctf_field_string_set_value(a_2, "a_2");
1442 assert(!ret);
1443 a_3 = bt_ctf_field_array_get_field(a, 3);
1444 assert(a_3);
1445 ret = bt_ctf_field_string_set_value(a_3, "a_3");
1446 assert(!ret);
1447 a_4 = bt_ctf_field_array_get_field(a, 4);
1448 assert(a_4);
1449 ret = bt_ctf_field_string_set_value(a_4, "a_4");
1450 assert(!ret);
1451
1452 /* create copy of strct */
1453 ok(!bt_ctf_field_copy(NULL),
1454 "bt_ctf_field_copy handles NULL correctly");
1455 strct_copy = bt_ctf_field_copy(strct);
1456 ok(strct_copy,
1457 "bt_ctf_field_copy returns a valid pointer");
1458
1459 /* get all copied fields */
1460 len_copy = bt_ctf_field_structure_get_field(strct_copy, "len");
1461 assert(len_copy);
1462 fp_copy = bt_ctf_field_structure_get_field(strct_copy, "fp");
1463 assert(fp_copy);
1464 s_copy = bt_ctf_field_structure_get_field(strct_copy, "s");
1465 assert(s_copy);
1466 e_copy = bt_ctf_field_structure_get_field(strct_copy, "e");
1467 assert(e_copy);
1468 e_int_copy = bt_ctf_field_enumeration_get_container(e_copy);
1469 assert(e_int_copy);
1470 v_copy = bt_ctf_field_structure_get_field(strct_copy, "v");
1471 assert(v_copy);
1472 v_selected_copy = bt_ctf_field_variant_get_field(v_copy, e_copy);
1473 assert(v_selected_copy);
1474 v_selected_0_copy = bt_ctf_field_sequence_get_field(v_selected_copy, 0);
1475 assert(v_selected_0_copy);
1476 v_selected_1_copy = bt_ctf_field_sequence_get_field(v_selected_copy, 1);
1477 assert(v_selected_1_copy);
1478 v_selected_2_copy = bt_ctf_field_sequence_get_field(v_selected_copy, 2);
1479 assert(v_selected_2_copy);
1480 v_selected_3_copy = bt_ctf_field_sequence_get_field(v_selected_copy, 3);
1481 assert(v_selected_3_copy);
1482 v_selected_4_copy = bt_ctf_field_sequence_get_field(v_selected_copy, 4);
1483 assert(v_selected_4_copy);
1484 v_selected_5_copy = bt_ctf_field_sequence_get_field(v_selected_copy, 5);
1485 assert(v_selected_5_copy);
1486 v_selected_6_copy = bt_ctf_field_sequence_get_field(v_selected_copy, 6);
1487 assert(v_selected_6_copy);
1488 ok(!bt_ctf_field_sequence_get_field(v_selected_copy, 7),
1489 "sequence field copy is not too large");
1490 a_copy = bt_ctf_field_structure_get_field(strct_copy, "a");
1491 assert(a_copy);
1492 a_0_copy = bt_ctf_field_array_get_field(a_copy, 0);
1493 assert(a_0_copy);
1494 a_1_copy = bt_ctf_field_array_get_field(a_copy, 1);
1495 assert(a_1_copy);
1496 a_2_copy = bt_ctf_field_array_get_field(a_copy, 2);
1497 assert(a_2_copy);
1498 a_3_copy = bt_ctf_field_array_get_field(a_copy, 3);
1499 assert(a_3_copy);
1500 a_4_copy = bt_ctf_field_array_get_field(a_copy, 4);
1501 assert(a_4_copy);
1502 ok(!bt_ctf_field_array_get_field(v_selected_copy, 5),
1503 "array field copy is not too large");
1504
1505 /* make sure copied fields are different pointers */
1506 field_copy_tests_validate_diff_ptrs(strct_copy, strct, "strct");
1507 field_copy_tests_validate_diff_ptrs(len_copy, len, "len");
1508 field_copy_tests_validate_diff_ptrs(fp_copy, fp, "fp");
1509 field_copy_tests_validate_diff_ptrs(s_copy, s, "s");
1510 field_copy_tests_validate_diff_ptrs(e_int_copy, e_int, "e_int");
1511 field_copy_tests_validate_diff_ptrs(e_copy, e, "e");
1512 field_copy_tests_validate_diff_ptrs(v_copy, v, "v");
1513 field_copy_tests_validate_diff_ptrs(v_selected_copy, v_selected,
1514 "v_selected");
1515 field_copy_tests_validate_diff_ptrs(v_selected_0_copy, v_selected_0,
1516 "v_selected_0");
1517 field_copy_tests_validate_diff_ptrs(v_selected_1_copy, v_selected_1,
1518 "v_selected_1");
1519 field_copy_tests_validate_diff_ptrs(v_selected_2_copy, v_selected_2,
1520 "v_selected_2");
1521 field_copy_tests_validate_diff_ptrs(v_selected_3_copy, v_selected_3,
1522 "v_selected_3");
1523 field_copy_tests_validate_diff_ptrs(v_selected_4_copy, v_selected_4,
1524 "v_selected_4");
1525 field_copy_tests_validate_diff_ptrs(v_selected_5_copy, v_selected_5,
1526 "v_selected_5");
1527 field_copy_tests_validate_diff_ptrs(v_selected_6_copy, v_selected_6,
1528 "v_selected_6");
1529 field_copy_tests_validate_diff_ptrs(a_copy, a, "a");
1530 field_copy_tests_validate_diff_ptrs(a_0_copy, a_0, "a_0");
1531 field_copy_tests_validate_diff_ptrs(a_1_copy, a_1, "a_1");
1532 field_copy_tests_validate_diff_ptrs(a_2_copy, a_2, "a_2");
1533 field_copy_tests_validate_diff_ptrs(a_3_copy, a_3, "a_3");
1534 field_copy_tests_validate_diff_ptrs(a_4_copy, a_4, "a_4");
1535
1536 /* make sure copied fields share the same types */
1537 field_copy_tests_validate_same_type(strct_copy, strct_type, "strct");
1538 field_copy_tests_validate_same_type(len_copy, len_type, "len");
1539 field_copy_tests_validate_same_type(fp_copy, fp_type, "fp");
1540 field_copy_tests_validate_same_type(e_int_copy, e_int_type, "e_int");
1541 field_copy_tests_validate_same_type(e_copy, e_type, "e");
1542 field_copy_tests_validate_same_type(v_copy, v_type, "v");
1543 field_copy_tests_validate_same_type(v_selected_copy, v_label2_seq_type,
1544 "v_selected");
1545 field_copy_tests_validate_same_type(v_selected_0_copy, v_label2_type,
1546 "v_selected_0");
1547 field_copy_tests_validate_same_type(v_selected_1_copy, v_label2_type,
1548 "v_selected_1");
1549 field_copy_tests_validate_same_type(v_selected_2_copy, v_label2_type,
1550 "v_selected_2");
1551 field_copy_tests_validate_same_type(v_selected_3_copy, v_label2_type,
1552 "v_selected_3");
1553 field_copy_tests_validate_same_type(v_selected_4_copy, v_label2_type,
1554 "v_selected_4");
1555 field_copy_tests_validate_same_type(v_selected_5_copy, v_label2_type,
1556 "v_selected_5");
1557 field_copy_tests_validate_same_type(v_selected_6_copy, v_label2_type,
1558 "v_selected_6");
1559 field_copy_tests_validate_same_type(a_copy, v_label1_array_type, "a");
1560 field_copy_tests_validate_same_type(a_0_copy, v_label1_type, "a_0");
1561 field_copy_tests_validate_same_type(a_1_copy, v_label1_type, "a_1");
1562 field_copy_tests_validate_same_type(a_2_copy, v_label1_type, "a_2");
1563 field_copy_tests_validate_same_type(a_3_copy, v_label1_type, "a_3");
1564 field_copy_tests_validate_same_type(a_4_copy, v_label1_type, "a_4");
1565
1566 /* validate len copy */
1567 ret = bt_ctf_field_unsigned_integer_get_value(len_copy, &uint64_t_val);
1568 assert(!ret);
1569 ok(uint64_t_val == 7,
1570 "bt_ctf_field_copy creates a valid integer field copy");
1571
1572 /* validate fp copy */
1573 ret = bt_ctf_field_floating_point_get_value(fp_copy, &double_val);
1574 assert(!ret);
1575 ok(double_val == 3.14,
1576 "bt_ctf_field_copy creates a valid floating point number field copy");
1577
1578 /* validate s copy */
1579 str_val = bt_ctf_field_string_get_value(s_copy);
1580 ok(str_val && !strcmp(str_val, "btbt"),
1581 "bt_ctf_field_copy creates a valid string field copy");
1582
1583 /* validate e_int copy */
1584 ret = bt_ctf_field_unsigned_integer_get_value(e_int_copy,
1585 &uint64_t_val);
1586 assert(!ret);
1587 ok(uint64_t_val == 23,
1588 "bt_ctf_field_copy creates a valid enum's integer field copy");
1589
1590 /* validate e copy */
1591 e_iter = bt_ctf_field_enumeration_get_mappings(e_copy);
1592 (void) bt_ctf_field_type_enumeration_mapping_iterator_get_signed(e_iter,
1593 &str_val, NULL, NULL);
1594 ok(str_val && !strcmp(str_val, "LABEL2"),
1595 "bt_ctf_field_copy creates a valid enum field copy");
1596
1597 /* validate v_selected copy */
1598 v_selected_copy_len = bt_ctf_field_sequence_get_length(v_selected);
1599 assert(v_selected_copy_len);
1600 ret = bt_ctf_field_unsigned_integer_get_value(v_selected_copy_len,
1601 &uint64_t_val);
1602 assert(!ret);
1603 ok(uint64_t_val == 7,
1604 "bt_ctf_field_copy creates a sequence field copy with the proper length");
1605 bt_put(v_selected_copy_len);
1606 v_selected_copy_len = NULL;
1607
1608 /* validate v_selected copy fields */
1609 ret = bt_ctf_field_unsigned_integer_get_value(v_selected_0_copy,
1610 &uint64_t_val);
1611 assert(!ret);
1612 ok(uint64_t_val == 7,
1613 "bt_ctf_field_copy creates a valid sequence field element copy (v_selected_0)");
1614 ret = bt_ctf_field_unsigned_integer_get_value(v_selected_1_copy,
1615 &uint64_t_val);
1616 assert(!ret);
1617 ok(uint64_t_val == 6,
1618 "bt_ctf_field_copy creates a valid sequence field element copy (v_selected_1)");
1619 ret = bt_ctf_field_unsigned_integer_get_value(v_selected_2_copy,
1620 &uint64_t_val);
1621 assert(!ret);
1622 ok(uint64_t_val == 5,
1623 "bt_ctf_field_copy creates a valid sequence field element copy (v_selected_2)");
1624 ret = bt_ctf_field_unsigned_integer_get_value(v_selected_3_copy,
1625 &uint64_t_val);
1626 assert(!ret);
1627 ok(uint64_t_val == 4,
1628 "bt_ctf_field_copy creates a valid sequence field element copy (v_selected_3)");
1629 ret = bt_ctf_field_unsigned_integer_get_value(v_selected_4_copy,
1630 &uint64_t_val);
1631 assert(!ret);
1632 ok(uint64_t_val == 3,
1633 "bt_ctf_field_copy creates a valid sequence field element copy (v_selected_4)");
1634 ret = bt_ctf_field_unsigned_integer_get_value(v_selected_5_copy,
1635 &uint64_t_val);
1636 assert(!ret);
1637 ok(uint64_t_val == 2,
1638 "bt_ctf_field_copy creates a valid sequence field element copy (v_selected_5)");
1639 ret = bt_ctf_field_unsigned_integer_get_value(v_selected_6_copy,
1640 &uint64_t_val);
1641 assert(!ret);
1642 ok(uint64_t_val == 1,
1643 "bt_ctf_field_copy creates a valid sequence field element copy (v_selected_6)");
1644
1645 /* validate a copy fields */
1646 str_val = bt_ctf_field_string_get_value(a_0_copy);
1647 ok(str_val && !strcmp(str_val, "a_0"),
1648 "bt_ctf_field_copy creates a valid array field element copy (a_0)");
1649 str_val = bt_ctf_field_string_get_value(a_1_copy);
1650 ok(str_val && !strcmp(str_val, "a_1"),
1651 "bt_ctf_field_copy creates a valid array field element copy (a_1)");
1652 str_val = bt_ctf_field_string_get_value(a_2_copy);
1653 ok(str_val && !strcmp(str_val, "a_2"),
1654 "bt_ctf_field_copy creates a valid array field element copy (a_2)");
1655 str_val = bt_ctf_field_string_get_value(a_3_copy);
1656 ok(str_val && !strcmp(str_val, "a_3"),
1657 "bt_ctf_field_copy creates a valid array field element copy (a_3)");
1658 str_val = bt_ctf_field_string_get_value(a_4_copy);
1659 ok(str_val && !strcmp(str_val, "a_4"),
1660 "bt_ctf_field_copy creates a valid array field element copy (a_4)");
1661
1662 /* put everything */
1663 bt_put(len_type);
1664 bt_put(fp_type);
1665 bt_put(s_type);
1666 bt_put(e_int_type);
1667 bt_put(e_type);
1668 bt_put(v_type);
1669 bt_put(v_label1_type);
1670 bt_put(v_label1_array_type);
1671 bt_put(v_label2_type);
1672 bt_put(v_label2_seq_type);
1673 bt_put(strct_type);
1674 bt_put(len);
1675 bt_put(fp);
1676 bt_put(s);
1677 bt_put(e_int);
1678 bt_put(e);
1679 bt_put(v);
1680 bt_put(v_selected);
1681 bt_put(v_selected_0);
1682 bt_put(v_selected_1);
1683 bt_put(v_selected_2);
1684 bt_put(v_selected_3);
1685 bt_put(v_selected_4);
1686 bt_put(v_selected_5);
1687 bt_put(v_selected_6);
1688 bt_put(a);
1689 bt_put(a_0);
1690 bt_put(a_1);
1691 bt_put(a_2);
1692 bt_put(a_3);
1693 bt_put(a_4);
1694 bt_put(strct);
1695 bt_put(len_copy);
1696 bt_put(fp_copy);
1697 bt_put(s_copy);
1698 bt_put(e_int_copy);
1699 bt_put(e_copy);
1700 bt_put(v_copy);
1701 bt_put(v_selected_copy);
1702 bt_put(v_selected_0_copy);
1703 bt_put(v_selected_1_copy);
1704 bt_put(v_selected_2_copy);
1705 bt_put(v_selected_3_copy);
1706 bt_put(v_selected_4_copy);
1707 bt_put(v_selected_5_copy);
1708 bt_put(v_selected_6_copy);
1709 bt_put(a_copy);
1710 bt_put(a_0_copy);
1711 bt_put(a_1_copy);
1712 bt_put(a_2_copy);
1713 bt_put(a_3_copy);
1714 bt_put(a_4_copy);
1715 bt_put(strct_copy);
1716 bt_put(e_iter);
1717 }
1718
1719 static
1720 void type_field_tests()
1721 {
1722 struct bt_ctf_field *uint_12;
1723 struct bt_ctf_field *int_16;
1724 struct bt_ctf_field *string;
1725 struct bt_ctf_field *enumeration;
1726 struct bt_ctf_field_type *composite_structure_type;
1727 struct bt_ctf_field_type *structure_seq_type;
1728 struct bt_ctf_field_type *string_type;
1729 struct bt_ctf_field_type *sequence_type;
1730 struct bt_ctf_field_type *uint_8_type;
1731 struct bt_ctf_field_type *int_16_type;
1732 struct bt_ctf_field_type *uint_12_type =
1733 bt_ctf_field_type_integer_create(12);
1734 struct bt_ctf_field_type *enumeration_type;
1735 struct bt_ctf_field_type *returned_type;
1736 const char *ret_string;
1737
1738 returned_type = bt_ctf_field_get_type(NULL);
1739 ok(!returned_type, "bt_ctf_field_get_type handles NULL correctly");
1740
1741 ok(uint_12_type, "Create an unsigned integer type");
1742 ok(bt_ctf_field_type_integer_set_base(uint_12_type,
1743 BT_CTF_INTEGER_BASE_BINARY) == 0,
1744 "Set integer type's base as binary");
1745 ok(bt_ctf_field_type_integer_set_base(uint_12_type,
1746 BT_CTF_INTEGER_BASE_DECIMAL) == 0,
1747 "Set integer type's base as decimal");
1748 ok(bt_ctf_field_type_integer_set_base(uint_12_type,
1749 BT_CTF_INTEGER_BASE_UNKNOWN),
1750 "Reject integer type's base set as unknown");
1751 ok(bt_ctf_field_type_integer_set_base(uint_12_type,
1752 BT_CTF_INTEGER_BASE_OCTAL) == 0,
1753 "Set integer type's base as octal");
1754 ok(bt_ctf_field_type_integer_set_base(uint_12_type,
1755 BT_CTF_INTEGER_BASE_HEXADECIMAL) == 0,
1756 "Set integer type's base as hexadecimal");
1757 ok(bt_ctf_field_type_integer_set_base(uint_12_type, 457417),
1758 "Reject unknown integer base value");
1759 ok(bt_ctf_field_type_integer_set_signed(uint_12_type, 952835) == 0,
1760 "Set integer type signedness to signed");
1761 ok(bt_ctf_field_type_integer_set_signed(uint_12_type, 0) == 0,
1762 "Set integer type signedness to unsigned");
1763 ok(bt_ctf_field_type_integer_get_size(NULL) < 0,
1764 "bt_ctf_field_type_integer_get_size handles NULL correctly");
1765 ok(bt_ctf_field_type_integer_get_size(uint_12_type) == 12,
1766 "bt_ctf_field_type_integer_get_size returns a correct value");
1767 ok(bt_ctf_field_type_integer_get_signed(NULL) < 0,
1768 "bt_ctf_field_type_integer_get_signed handles NULL correctly");
1769 ok(bt_ctf_field_type_integer_get_signed(uint_12_type) == 0,
1770 "bt_ctf_field_type_integer_get_signed returns a correct value for unsigned types");
1771
1772 ok(bt_ctf_field_type_set_byte_order(NULL,
1773 BT_CTF_BYTE_ORDER_LITTLE_ENDIAN) < 0,
1774 "bt_ctf_field_type_set_byte_order handles NULL correctly");
1775 ok(bt_ctf_field_type_set_byte_order(uint_12_type,
1776 (enum bt_ctf_byte_order) 42) < 0,
1777 "bt_ctf_field_type_set_byte_order rejects invalid values");
1778 ok(bt_ctf_field_type_set_byte_order(uint_12_type,
1779 BT_CTF_BYTE_ORDER_LITTLE_ENDIAN) == 0,
1780 "Set an integer's byte order to little endian");
1781 ok(bt_ctf_field_type_set_byte_order(uint_12_type,
1782 BT_CTF_BYTE_ORDER_BIG_ENDIAN) == 0,
1783 "Set an integer's byte order to big endian");
1784 ok(bt_ctf_field_type_get_byte_order(uint_12_type) ==
1785 BT_CTF_BYTE_ORDER_BIG_ENDIAN,
1786 "bt_ctf_field_type_get_byte_order returns a correct value");
1787 ok(bt_ctf_field_type_get_byte_order(NULL) ==
1788 BT_CTF_BYTE_ORDER_UNKNOWN,
1789 "bt_ctf_field_type_get_byte_order handles NULL correctly");
1790
1791 ok(bt_ctf_field_type_get_type_id(NULL) ==
1792 BT_CTF_FIELD_TYPE_ID_UNKNOWN,
1793 "bt_ctf_field_type_get_type_id handles NULL correctly");
1794 ok(bt_ctf_field_type_get_type_id(uint_12_type) ==
1795 BT_CTF_FIELD_TYPE_ID_INTEGER,
1796 "bt_ctf_field_type_get_type_id returns a correct value with an integer type");
1797
1798 ok(bt_ctf_field_type_integer_get_base(NULL) ==
1799 BT_CTF_INTEGER_BASE_UNKNOWN,
1800 "bt_ctf_field_type_integer_get_base handles NULL correctly");
1801 ok(bt_ctf_field_type_integer_get_base(uint_12_type) ==
1802 BT_CTF_INTEGER_BASE_HEXADECIMAL,
1803 "bt_ctf_field_type_integer_get_base returns a correct value");
1804
1805 ok(bt_ctf_field_type_integer_set_encoding(NULL,
1806 BT_CTF_STRING_ENCODING_ASCII) < 0,
1807 "bt_ctf_field_type_integer_set_encoding handles NULL correctly");
1808 ok(bt_ctf_field_type_integer_set_encoding(uint_12_type,
1809 (enum bt_ctf_string_encoding) 123) < 0,
1810 "bt_ctf_field_type_integer_set_encoding handles invalid encodings correctly");
1811 ok(bt_ctf_field_type_integer_set_encoding(uint_12_type,
1812 BT_CTF_STRING_ENCODING_UTF8) == 0,
1813 "Set integer type encoding to UTF8");
1814 ok(bt_ctf_field_type_integer_get_encoding(NULL) ==
1815 BT_CTF_STRING_ENCODING_UNKNOWN,
1816 "bt_ctf_field_type_integer_get_encoding handles NULL correctly");
1817 ok(bt_ctf_field_type_integer_get_encoding(uint_12_type) ==
1818 BT_CTF_STRING_ENCODING_UTF8,
1819 "bt_ctf_field_type_integer_get_encoding returns a correct value");
1820
1821 int_16_type = bt_ctf_field_type_integer_create(16);
1822 assert(int_16_type);
1823 ok(!bt_ctf_field_type_integer_set_signed(int_16_type, 1),
1824 "Set signedness of 16 bit integer to true");
1825 ok(bt_ctf_field_type_integer_get_signed(int_16_type) == 1,
1826 "bt_ctf_field_type_integer_get_signed returns a correct value for signed types");
1827 uint_8_type = bt_ctf_field_type_integer_create(8);
1828 sequence_type =
1829 bt_ctf_field_type_sequence_create(int_16_type, "seq_len");
1830 ok(sequence_type, "Create a sequence of int16_t type");
1831 ok(bt_ctf_field_type_get_type_id(sequence_type) ==
1832 BT_CTF_FIELD_TYPE_ID_SEQUENCE,
1833 "bt_ctf_field_type_get_type_id returns a correct value with a sequence type");
1834
1835 ok(bt_ctf_field_type_sequence_get_length_field_name(NULL) == NULL,
1836 "bt_ctf_field_type_sequence_get_length_field_name handles NULL correctly");
1837 ret_string = bt_ctf_field_type_sequence_get_length_field_name(
1838 sequence_type);
1839 ok(!strcmp(ret_string, "seq_len"),
1840 "bt_ctf_field_type_sequence_get_length_field_name returns the correct value");
1841 ok(bt_ctf_field_type_sequence_get_element_type(NULL) == NULL,
1842 "bt_ctf_field_type_sequence_get_element_type handles NULL correctly");
1843 returned_type = bt_ctf_field_type_sequence_get_element_type(
1844 sequence_type);
1845 ok(returned_type == int_16_type,
1846 "bt_ctf_field_type_sequence_get_element_type returns the correct type");
1847 bt_put(returned_type);
1848
1849 string_type = bt_ctf_field_type_string_create();
1850 ok(string_type, "Create a string type");
1851 ok(bt_ctf_field_type_string_set_encoding(string_type,
1852 BT_CTF_STRING_ENCODING_NONE),
1853 "Reject invalid \"None\" string encoding");
1854 ok(bt_ctf_field_type_string_set_encoding(string_type,
1855 42),
1856 "Reject invalid string encoding");
1857 ok(bt_ctf_field_type_string_set_encoding(string_type,
1858 BT_CTF_STRING_ENCODING_ASCII) == 0,
1859 "Set string encoding to ASCII");
1860
1861 ok(bt_ctf_field_type_string_get_encoding(NULL) ==
1862 BT_CTF_STRING_ENCODING_UNKNOWN,
1863 "bt_ctf_field_type_string_get_encoding handles NULL correctly");
1864 ok(bt_ctf_field_type_string_get_encoding(string_type) ==
1865 BT_CTF_STRING_ENCODING_ASCII,
1866 "bt_ctf_field_type_string_get_encoding returns the correct value");
1867
1868 structure_seq_type = bt_ctf_field_type_structure_create();
1869 ok(bt_ctf_field_type_get_type_id(structure_seq_type) ==
1870 BT_CTF_FIELD_TYPE_ID_STRUCT,
1871 "bt_ctf_field_type_get_type_id returns a correct value with a structure type");
1872 ok(structure_seq_type, "Create a structure type");
1873 ok(bt_ctf_field_type_structure_add_field(structure_seq_type,
1874 uint_8_type, "seq_len") == 0,
1875 "Add a uint8_t type to a structure");
1876 ok(bt_ctf_field_type_structure_add_field(structure_seq_type,
1877 sequence_type, "a_sequence") == 0,
1878 "Add a sequence type to a structure");
1879
1880 ok(bt_ctf_field_type_structure_get_field_count(NULL) < 0,
1881 "bt_ctf_field_type_structure_get_field_count handles NULL correctly");
1882 ok(bt_ctf_field_type_structure_get_field_count(structure_seq_type) == 2,
1883 "bt_ctf_field_type_structure_get_field_count returns a correct value");
1884
1885 ok(bt_ctf_field_type_structure_get_field(NULL,
1886 &ret_string, &returned_type, 1) < 0,
1887 "bt_ctf_field_type_structure_get_field handles a NULL type correctly");
1888 ok(bt_ctf_field_type_structure_get_field(structure_seq_type,
1889 NULL, &returned_type, 1) == 0,
1890 "bt_ctf_field_type_structure_get_field handles a NULL name correctly");
1891 bt_put(returned_type);
1892 ok(bt_ctf_field_type_structure_get_field(structure_seq_type,
1893 &ret_string, NULL, 1) == 0,
1894 "bt_ctf_field_type_structure_get_field handles a NULL return type correctly");
1895 ok(bt_ctf_field_type_structure_get_field(structure_seq_type,
1896 &ret_string, &returned_type, 10) < 0,
1897 "bt_ctf_field_type_structure_get_field handles an invalid index correctly");
1898 ok(bt_ctf_field_type_structure_get_field(structure_seq_type,
1899 &ret_string, &returned_type, 1) == 0,
1900 "bt_ctf_field_type_structure_get_field returns a field");
1901 ok(!strcmp(ret_string, "a_sequence"),
1902 "bt_ctf_field_type_structure_get_field returns a correct field name");
1903 ok(returned_type == sequence_type,
1904 "bt_ctf_field_type_structure_get_field returns a correct field type");
1905 bt_put(returned_type);
1906
1907 ok(bt_ctf_field_type_structure_get_field_type_by_name(NULL, "a_sequence") == NULL,
1908 "bt_ctf_field_type_structure_get_field_type_by_name handles a NULL structure correctly");
1909 ok(bt_ctf_field_type_structure_get_field_type_by_name(structure_seq_type, NULL) == NULL,
1910 "bt_ctf_field_type_structure_get_field_type_by_name handles a NULL field name correctly");
1911 returned_type = bt_ctf_field_type_structure_get_field_type_by_name(
1912 structure_seq_type, "a_sequence");
1913 ok(returned_type == sequence_type,
1914 "bt_ctf_field_type_structure_get_field_type_by_name returns the correct field type");
1915 bt_put(returned_type);
1916
1917 composite_structure_type = bt_ctf_field_type_structure_create();
1918 ok(bt_ctf_field_type_structure_add_field(composite_structure_type,
1919 string_type, "a_string") == 0,
1920 "Add a string type to a structure");
1921 ok(bt_ctf_field_type_structure_add_field(composite_structure_type,
1922 structure_seq_type, "inner_structure") == 0,
1923 "Add a structure type to a structure");
1924
1925 ok(bt_ctf_field_type_structure_get_field_type_by_name(
1926 NULL, "a_sequence") == NULL,
1927 "bt_ctf_field_type_structure_get_field_type_by_name handles a NULL field correctly");
1928 ok(bt_ctf_field_type_structure_get_field_type_by_name(
1929 structure_seq_type, NULL) == NULL,
1930 "bt_ctf_field_type_structure_get_field_type_by_name handles a NULL field name correctly");
1931 returned_type = bt_ctf_field_type_structure_get_field_type_by_name(
1932 structure_seq_type, "a_sequence");
1933 ok(returned_type == sequence_type,
1934 "bt_ctf_field_type_structure_get_field_type_by_name returns a correct type");
1935 bt_put(returned_type);
1936
1937 int_16 = bt_ctf_field_create(int_16_type);
1938 ok(int_16, "Instanciate a signed 16-bit integer");
1939 uint_12 = bt_ctf_field_create(uint_12_type);
1940 ok(uint_12, "Instanciate an unsigned 12-bit integer");
1941 returned_type = bt_ctf_field_get_type(int_16);
1942 ok(returned_type == int_16_type,
1943 "bt_ctf_field_get_type returns the correct type");
1944
1945 /* Can't modify types after instanciating them */
1946 ok(bt_ctf_field_type_integer_set_base(uint_12_type,
1947 BT_CTF_INTEGER_BASE_DECIMAL),
1948 "Check an integer type' base can't be modified after instanciation");
1949 ok(bt_ctf_field_type_integer_set_signed(uint_12_type, 0),
1950 "Check an integer type's signedness can't be modified after instanciation");
1951
1952 /* Check signed property is checked */
1953 ok(bt_ctf_field_signed_integer_set_value(uint_12, -52),
1954 "Check bt_ctf_field_signed_integer_set_value is not allowed on an unsigned integer");
1955 ok(bt_ctf_field_unsigned_integer_set_value(int_16, 42),
1956 "Check bt_ctf_field_unsigned_integer_set_value is not allowed on a signed integer");
1957
1958 /* Check overflows are properly tested for */
1959 ok(bt_ctf_field_signed_integer_set_value(int_16, -32768) == 0,
1960 "Check -32768 is allowed for a signed 16-bit integer");
1961 ok(bt_ctf_field_signed_integer_set_value(int_16, 32767) == 0,
1962 "Check 32767 is allowed for a signed 16-bit integer");
1963 ok(bt_ctf_field_signed_integer_set_value(int_16, 32768),
1964 "Check 32768 is not allowed for a signed 16-bit integer");
1965 ok(bt_ctf_field_signed_integer_set_value(int_16, -32769),
1966 "Check -32769 is not allowed for a signed 16-bit integer");
1967 ok(bt_ctf_field_signed_integer_set_value(int_16, -42) == 0,
1968 "Check -42 is allowed for a signed 16-bit integer");
1969
1970 ok(bt_ctf_field_unsigned_integer_set_value(uint_12, 4095) == 0,
1971 "Check 4095 is allowed for an unsigned 12-bit integer");
1972 ok(bt_ctf_field_unsigned_integer_set_value(uint_12, 4096),
1973 "Check 4096 is not allowed for a unsigned 12-bit integer");
1974 ok(bt_ctf_field_unsigned_integer_set_value(uint_12, 0) == 0,
1975 "Check 0 is allowed for an unsigned 12-bit integer");
1976
1977 string = bt_ctf_field_create(string_type);
1978 ok(string, "Instanciate a string field");
1979 ok(bt_ctf_field_string_set_value(string, "A value") == 0,
1980 "Set a string's value");
1981
1982 enumeration_type = bt_ctf_field_type_enumeration_create(uint_12_type);
1983 ok(enumeration_type,
1984 "Create an enumeration type with an unsigned 12-bit integer as container");
1985 enumeration = bt_ctf_field_create(enumeration_type);
1986 ok(!enumeration,
1987 "Check enumeration types are validated before instantiation");
1988
1989 bt_put(string);
1990 bt_put(uint_12);
1991 bt_put(int_16);
1992 bt_put(enumeration);
1993 bt_put(composite_structure_type);
1994 bt_put(structure_seq_type);
1995 bt_put(string_type);
1996 bt_put(sequence_type);
1997 bt_put(uint_8_type);
1998 bt_put(int_16_type);
1999 bt_put(uint_12_type);
2000 bt_put(enumeration_type);
2001 bt_put(returned_type);
2002 }
2003
2004 static
2005 void packet_resize_test(struct bt_ctf_stream_class *stream_class,
2006 struct bt_ctf_stream *stream, struct bt_ctf_clock *clock)
2007 {
2008 /*
2009 * Append enough events to force the underlying packet to be resized.
2010 * Also tests that a new event can be declared after a stream has been
2011 * instantiated and used/flushed.
2012 */
2013 int ret = 0;
2014 int i;
2015 struct bt_ctf_event_class *event_class = bt_ctf_event_class_create(
2016 "Spammy_Event");
2017 struct bt_ctf_field_type *integer_type =
2018 bt_ctf_field_type_integer_create(17);
2019 struct bt_ctf_field_type *string_type =
2020 bt_ctf_field_type_string_create();
2021 struct bt_ctf_event *event = NULL;
2022 struct bt_ctf_field *ret_field = NULL;
2023 struct bt_ctf_field_type *ret_field_type = NULL;
2024 uint64_t ret_uint64;
2025 int events_appended = 0;
2026 struct bt_ctf_field *packet_context = NULL,
2027 *packet_context_field = NULL, *stream_event_context = NULL;
2028 struct bt_ctf_field_type *ep_field_1_type = NULL;
2029 struct bt_ctf_field_type *ep_a_string_type = NULL;
2030 struct bt_ctf_field_type *ep_type = NULL;
2031
2032 ret |= bt_ctf_event_class_add_field(event_class, integer_type,
2033 "field_1");
2034 ret |= bt_ctf_event_class_add_field(event_class, string_type,
2035 "a_string");
2036 ret |= bt_ctf_stream_class_add_event_class(stream_class, event_class);
2037 ok(ret == 0, "Add a new event class to a stream class after writing an event");
2038 if (ret) {
2039 goto end;
2040 }
2041
2042 /*
2043 * bt_ctf_stream_class_add_event_class() copies the field types
2044 * of event_class, so we retrieve the new ones to create the
2045 * appropriate fields.
2046 */
2047 ep_type = bt_ctf_event_class_get_payload_type(event_class);
2048 assert(ep_type);
2049 ep_field_1_type = bt_ctf_field_type_structure_get_field_type_by_name(
2050 ep_type, "field_1");
2051 assert(ep_field_1_type);
2052 ep_a_string_type = bt_ctf_field_type_structure_get_field_type_by_name(
2053 ep_type, "a_string");
2054 assert(ep_a_string_type);
2055
2056 event = bt_ctf_event_create(event_class);
2057 ret_field = bt_ctf_event_get_payload_by_index(event, 0);
2058 ret_field_type = bt_ctf_field_get_type(ret_field);
2059 ok(bt_ctf_field_type_compare(ret_field_type, integer_type) == 0,
2060 "bt_ctf_event_get_payload_by_index returns a correct field");
2061 bt_put(ret_field_type);
2062 bt_put(ret_field);
2063
2064 ok(bt_ctf_event_get_payload_by_index(NULL, 0) == NULL,
2065 "bt_ctf_event_get_payload_by_index handles NULL correctly");
2066 ok(bt_ctf_event_get_payload_by_index(event, 4) == NULL,
2067 "bt_ctf_event_get_payload_by_index handles an invalid index correctly");
2068 bt_put(event);
2069
2070 for (i = 0; i < PACKET_RESIZE_TEST_LENGTH; i++) {
2071 event = bt_ctf_event_create(event_class);
2072 struct bt_ctf_field *integer =
2073 bt_ctf_field_create(ep_field_1_type);
2074 struct bt_ctf_field *string =
2075 bt_ctf_field_create(ep_a_string_type);
2076
2077 ret |= bt_ctf_clock_set_time(clock, ++current_time);
2078 ret |= bt_ctf_field_unsigned_integer_set_value(integer, i);
2079 ret |= bt_ctf_event_set_payload(event, "field_1",
2080 integer);
2081 bt_put(integer);
2082 ret |= bt_ctf_field_string_set_value(string, "This is a test");
2083 ret |= bt_ctf_event_set_payload(event, "a_string",
2084 string);
2085 bt_put(string);
2086
2087 /* Populate stream event context */
2088 stream_event_context =
2089 bt_ctf_event_get_stream_event_context(event);
2090 integer = bt_ctf_field_structure_get_field(stream_event_context,
2091 "common_event_context");
2092 BT_PUT(stream_event_context);
2093 ret |= bt_ctf_field_unsigned_integer_set_value(integer,
2094 i % 42);
2095 bt_put(integer);
2096
2097 ret |= bt_ctf_stream_append_event(stream, event);
2098 bt_put(event);
2099
2100 if (ret) {
2101 break;
2102 }
2103 }
2104
2105 events_appended = !!(i == PACKET_RESIZE_TEST_LENGTH);
2106 ok(bt_ctf_stream_get_discarded_events_count(NULL, &ret_uint64) < 0,
2107 "bt_ctf_stream_get_discarded_events_count handles a NULL stream correctly");
2108 ok(bt_ctf_stream_get_discarded_events_count(stream, NULL) < 0,
2109 "bt_ctf_stream_get_discarded_events_count handles a NULL return pointer correctly");
2110 ret = bt_ctf_stream_get_discarded_events_count(stream, &ret_uint64);
2111 ok(ret == 0 && ret_uint64 == 0,
2112 "bt_ctf_stream_get_discarded_events_count returns a correct number of discarded events when none were discarded");
2113 bt_ctf_stream_append_discarded_events(stream, 1000);
2114 ret = bt_ctf_stream_get_discarded_events_count(stream, &ret_uint64);
2115 ok(ret == 0 && ret_uint64 == 1000,
2116 "bt_ctf_stream_get_discarded_events_count returns a correct number of discarded events when some were discarded");
2117
2118 end:
2119 ok(events_appended, "Append 100 000 events to a stream");
2120
2121 /*
2122 * Populate the custom packet context field with a dummy value
2123 * otherwise flush will fail.
2124 */
2125 packet_context = bt_ctf_stream_get_packet_context(stream);
2126 packet_context_field = bt_ctf_field_structure_get_field(packet_context,
2127 "custom_packet_context_field");
2128 bt_ctf_field_unsigned_integer_set_value(packet_context_field, 2);
2129
2130 ok(bt_ctf_stream_flush(stream) == 0,
2131 "Flush a stream that forces a packet resize");
2132 ret = bt_ctf_stream_get_discarded_events_count(stream, &ret_uint64);
2133 ok(ret == 0 && ret_uint64 == 1000,
2134 "bt_ctf_stream_get_discarded_events_count returns a correct number of discarded events after a flush");
2135 bt_put(integer_type);
2136 bt_put(string_type);
2137 bt_put(packet_context);
2138 bt_put(packet_context_field);
2139 bt_put(stream_event_context);
2140 bt_put(event_class);
2141 bt_put(ep_field_1_type);
2142 bt_put(ep_a_string_type);
2143 bt_put(ep_type);
2144 }
2145
2146 static
2147 void test_empty_stream(struct bt_ctf_writer *writer)
2148 {
2149 int ret = 0;
2150 struct bt_ctf_trace *trace = NULL, *ret_trace = NULL;
2151 struct bt_ctf_stream_class *stream_class = NULL;
2152 struct bt_ctf_stream *stream = NULL;
2153
2154 trace = bt_ctf_writer_get_trace(writer);
2155 if (!trace) {
2156 diag("Failed to get trace from writer");
2157 ret = -1;
2158 goto end;
2159 }
2160
2161 stream_class = bt_ctf_stream_class_create("empty_stream");
2162 if (!stream_class) {
2163 diag("Failed to create stream class");
2164 ret = -1;
2165 goto end;
2166 }
2167
2168 ret = bt_ctf_stream_class_set_packet_context_type(stream_class, NULL);
2169 assert(ret == 0);
2170 ret = bt_ctf_stream_class_set_event_header_type(stream_class, NULL);
2171 assert(ret == 0);
2172
2173 ok(bt_ctf_stream_class_get_trace(NULL) == NULL,
2174 "bt_ctf_stream_class_get_trace handles NULL correctly");
2175 ok(bt_ctf_stream_class_get_trace(stream_class) == NULL,
2176 "bt_ctf_stream_class_get_trace returns NULL when stream class is orphaned");
2177
2178 stream = bt_ctf_writer_create_stream(writer, stream_class);
2179 if (!stream) {
2180 diag("Failed to create writer stream");
2181 ret = -1;
2182 goto end;
2183 }
2184
2185 ret_trace = bt_ctf_stream_class_get_trace(stream_class);
2186 ok(ret_trace == trace,
2187 "bt_ctf_stream_class_get_trace returns the correct trace after a stream has been created");
2188 end:
2189 ok(ret == 0,
2190 "Created a stream class with default attributes and an empty stream");
2191 bt_put(trace);
2192 bt_put(ret_trace);
2193 bt_put(stream);
2194 bt_put(stream_class);
2195 }
2196
2197 static
2198 void test_custom_event_header_stream(struct bt_ctf_writer *writer,
2199 struct bt_ctf_clock *clock)
2200 {
2201 int i, ret;
2202 struct bt_ctf_stream_class *stream_class = NULL;
2203 struct bt_ctf_stream *stream = NULL;
2204 struct bt_ctf_field_type *integer_type = NULL,
2205 *sequence_type = NULL, *event_header_type = NULL;
2206 struct bt_ctf_field *integer = NULL, *sequence = NULL,
2207 *event_header = NULL, *packet_header = NULL;
2208 struct bt_ctf_event_class *event_class = NULL;
2209 struct bt_ctf_event *event = NULL;
2210
2211 stream_class = bt_ctf_stream_class_create("custom_event_header_stream");
2212 if (!stream_class) {
2213 fail("Failed to create stream class");
2214 goto end;
2215 }
2216
2217 ret = bt_ctf_stream_class_set_clock(stream_class, clock);
2218 if (ret) {
2219 fail("Failed to set stream class clock");
2220 goto end;
2221 }
2222
2223 /*
2224 * Customize event header to add an "seq_len" integer member
2225 * which will be used as the length of a sequence in an event of this
2226 * stream.
2227 */
2228 event_header_type = bt_ctf_stream_class_get_event_header_type(
2229 stream_class);
2230 if (!event_header_type) {
2231 fail("Failed to get event header type");
2232 goto end;
2233 }
2234
2235 integer_type = bt_ctf_field_type_integer_create(13);
2236 if (!integer_type) {
2237 fail("Failed to create length integer type");
2238 goto end;
2239 }
2240
2241 ret = bt_ctf_field_type_structure_add_field(event_header_type,
2242 integer_type, "seq_len");
2243 if (ret) {
2244 fail("Failed to add a new field to stream event header");
2245 goto end;
2246 }
2247
2248 event_class = bt_ctf_event_class_create("sequence_event");
2249 if (!event_class) {
2250 fail("Failed to create event class");
2251 goto end;
2252 }
2253
2254 /*
2255 * This event's payload will contain a sequence which references
2256 * stream.event.header.seq_len as its length field.
2257 */
2258 sequence_type = bt_ctf_field_type_sequence_create(integer_type,
2259 "stream.event.header.seq_len");
2260 if (!sequence_type) {
2261 fail("Failed to create a sequence");
2262 goto end;
2263 }
2264
2265 ret = bt_ctf_event_class_add_field(event_class, sequence_type,
2266 "some_sequence");
2267 if (ret) {
2268 fail("Failed to add a sequence to an event class");
2269 goto end;
2270 }
2271
2272 ret = bt_ctf_stream_class_add_event_class(stream_class, event_class);
2273 if (ret) {
2274 fail("Failed to add event class to stream class");
2275 goto end;
2276 }
2277
2278 stream = bt_ctf_writer_create_stream(writer, stream_class);
2279 if (!stream) {
2280 fail("Failed to create stream")
2281 goto end;
2282 }
2283
2284 /*
2285 * We have defined a custom packet header field. We have to populate it
2286 * explicitly.
2287 */
2288 packet_header = bt_ctf_stream_get_packet_header(stream);
2289 if (!packet_header) {
2290 fail("Failed to get stream packet header");
2291 goto end;
2292 }
2293
2294 integer = bt_ctf_field_structure_get_field(packet_header,
2295 "custom_trace_packet_header_field");
2296 if (!integer) {
2297 fail("Failed to retrieve custom_trace_packet_header_field");
2298 goto end;
2299 }
2300
2301 ret = bt_ctf_field_unsigned_integer_set_value(integer, 3487);
2302 if (ret) {
2303 fail("Failed to set custom_trace_packet_header_field value");
2304 goto end;
2305 }
2306 bt_put(integer);
2307
2308 event = bt_ctf_event_create(event_class);
2309 if (!event) {
2310 fail("Failed to create event");
2311 goto end;
2312 }
2313
2314 event_header = bt_ctf_event_get_header(event);
2315 if (!event_header) {
2316 fail("Failed to get event header");
2317 goto end;
2318 }
2319
2320 integer = bt_ctf_field_structure_get_field(event_header,
2321 "seq_len");
2322 if (!integer) {
2323 fail("Failed to get seq_len field from event header");
2324 goto end;
2325 }
2326
2327 ret = bt_ctf_field_unsigned_integer_set_value(integer, 2);
2328 if (ret) {
2329 fail("Failed to set seq_len value in event header");
2330 goto end;
2331 }
2332
2333 /* Populate both sequence integer fields */
2334 sequence = bt_ctf_event_get_payload(event, "some_sequence");
2335 if (!sequence) {
2336 fail("Failed to retrieve sequence from event");
2337 goto end;
2338 }
2339
2340 ret = bt_ctf_field_sequence_set_length(sequence, integer);
2341 if (ret) {
2342 fail("Failed to set sequence length");
2343 goto end;
2344 }
2345 bt_put(integer);
2346
2347 for (i = 0; i < 2; i++) {
2348 integer = bt_ctf_field_sequence_get_field(sequence, i);
2349 if (ret) {
2350 fail("Failed to retrieve sequence element");
2351 goto end;
2352 }
2353
2354 ret = bt_ctf_field_unsigned_integer_set_value(integer, i);
2355 if (ret) {
2356 fail("Failed to set sequence element value");
2357 goto end;
2358 }
2359
2360 bt_put(integer);
2361 integer = NULL;
2362 }
2363
2364 ret = bt_ctf_stream_append_event(stream, event);
2365 if (ret) {
2366 fail("Failed to append event to stream");
2367 goto end;
2368 }
2369
2370 ret = bt_ctf_stream_flush(stream);
2371 if (ret) {
2372 fail("Failed to flush custom_event_header stream");
2373 }
2374 end:
2375 bt_put(stream);
2376 bt_put(stream_class);
2377 bt_put(event_class);
2378 bt_put(event);
2379 bt_put(integer);
2380 bt_put(sequence);
2381 bt_put(event_header);
2382 bt_put(packet_header);
2383 bt_put(sequence_type);
2384 bt_put(integer_type);
2385 bt_put(event_header_type);
2386 }
2387
2388 static
2389 void test_instanciate_event_before_stream(struct bt_ctf_writer *writer,
2390 struct bt_ctf_clock *clock)
2391 {
2392 int ret = 0;
2393 struct bt_ctf_stream_class *stream_class = NULL;
2394 struct bt_ctf_stream *stream = NULL,
2395 *ret_stream = NULL;
2396 struct bt_ctf_event_class *event_class = NULL;
2397 struct bt_ctf_event *event = NULL;
2398 struct bt_ctf_field_type *integer_type = NULL;
2399 struct bt_ctf_field *integer = NULL;
2400
2401 stream_class = bt_ctf_stream_class_create("event_before_stream_test");
2402 if (!stream_class) {
2403 diag("Failed to create stream class");
2404 ret = -1;
2405 goto end;
2406 }
2407
2408 ret = bt_ctf_stream_class_set_clock(stream_class, clock);
2409 if (ret) {
2410 diag("Failed to set stream class clock");
2411 goto end;
2412 }
2413
2414 event_class = bt_ctf_event_class_create("some_event_class_name");
2415 integer_type = bt_ctf_field_type_integer_create(32);
2416 if (!integer_type) {
2417 diag("Failed to create integer field type");
2418 ret = -1;
2419 goto end;
2420 }
2421
2422 ret = bt_ctf_event_class_add_field(event_class, integer_type,
2423 "integer_field");
2424 if (ret) {
2425 diag("Failed to add field to event class");
2426 goto end;
2427 }
2428
2429 ret = bt_ctf_stream_class_add_event_class(stream_class,
2430 event_class);
2431 if (ret) {
2432 diag("Failed to add event class to stream class");
2433 }
2434
2435 event = bt_ctf_event_create(event_class);
2436 if (!event) {
2437 diag("Failed to create event");
2438 ret = -1;
2439 goto end;
2440 }
2441
2442 integer = bt_ctf_event_get_payload_by_index(event, 0);
2443 if (!integer) {
2444 diag("Failed to get integer field payload from event");
2445 ret = -1;
2446 goto end;
2447 }
2448
2449 ret = bt_ctf_field_unsigned_integer_set_value(integer, 1234);
2450 if (ret) {
2451 diag("Failed to set integer field value");
2452 goto end;
2453 }
2454
2455 stream = bt_ctf_writer_create_stream(writer, stream_class);
2456 if (!stream) {
2457 diag("Failed to create writer stream");
2458 ret = -1;
2459 goto end;
2460 }
2461
2462 ok(bt_ctf_event_get_stream(NULL) == NULL,
2463 "bt_ctf_event_get_stream handles NULL correctly");
2464 ok(bt_ctf_event_get_stream(event) == NULL,
2465 "bt_ctf_event_get_stream returns NULL on event which has not yet been appended to a stream");
2466
2467 ret = bt_ctf_stream_append_event(stream, event);
2468 if (ret) {
2469 diag("Failed to append event to stream");
2470 goto end;
2471 }
2472
2473 ret_stream = bt_ctf_event_get_stream(event);
2474 ok(ret_stream == stream,
2475 "bt_ctf_event_get_stream returns an event's stream after it has been appended");
2476 end:
2477 ok(ret == 0,
2478 "Create an event before instanciating its associated stream");
2479 bt_put(stream);
2480 bt_put(ret_stream);
2481 bt_put(stream_class);
2482 bt_put(event_class);
2483 bt_put(event);
2484 bt_put(integer_type);
2485 bt_put(integer);
2486 }
2487
2488 static
2489 void append_existing_event_class(struct bt_ctf_stream_class *stream_class)
2490 {
2491 struct bt_ctf_event_class *event_class;
2492
2493 event_class = bt_ctf_event_class_create("Simple Event");
2494 assert(event_class);
2495 ok(bt_ctf_stream_class_add_event_class(stream_class, event_class) == 0,
2496 "two event classes with the same name may cohabit within the same stream class");
2497 bt_put(event_class);
2498
2499 event_class = bt_ctf_event_class_create("different name, ok");
2500 assert(event_class);
2501 assert(!bt_ctf_event_class_set_id(event_class, 11));
2502 ok(bt_ctf_stream_class_add_event_class(stream_class, event_class),
2503 "two event classes with the same ID cannot cohabit within the same stream class");
2504 bt_put(event_class);
2505 }
2506
2507 static
2508 struct bt_ctf_event_class *create_minimal_event_class(void)
2509 {
2510 struct bt_ctf_event_class *ec = NULL;
2511 struct bt_ctf_field_type *int_ft = NULL;
2512 int ret;
2513
2514 int_ft = bt_ctf_field_type_integer_create(23);
2515 assert(int_ft);
2516 ec = bt_ctf_event_class_create("minimal");
2517 assert(ec);
2518 ret = bt_ctf_event_class_add_field(ec, int_ft, "field");
2519 assert(!ret);
2520 BT_PUT(int_ft);
2521
2522 return ec;
2523 }
2524
2525 static
2526 void test_create_writer_vs_non_writer_mode(void)
2527 {
2528 int ret;
2529 char trace_path[] = "/tmp/ctfwriter_XXXXXX";
2530 const char *writer_stream_name = "writer stream instance";
2531 struct bt_ctf_writer *writer = NULL;
2532 struct bt_ctf_trace *writer_trace = NULL;
2533 struct bt_ctf_stream_class *writer_sc = NULL;
2534 struct bt_ctf_stream *writer_stream = NULL;
2535 struct bt_ctf_stream *writer_stream2 = NULL;
2536 struct bt_ctf_stream *packet_stream = NULL;
2537 struct bt_ctf_trace *non_writer_trace = NULL;
2538 struct bt_ctf_stream_class *non_writer_sc = NULL;
2539 struct bt_ctf_stream *non_writer_stream = NULL;
2540 struct bt_ctf_stream *non_writer_stream2 = NULL;
2541 struct bt_ctf_event_class *writer_ec = NULL;
2542 struct bt_ctf_event_class *non_writer_ec = NULL;
2543 struct bt_ctf_event *event = NULL;
2544 struct bt_ctf_event *event2 = NULL;
2545 struct bt_ctf_field_type *empty_struct_ft = NULL;
2546 struct bt_ctf_field *int_field = NULL;
2547 struct bt_ctf_clock *writer_clock = NULL;
2548 struct bt_ctf_clock_class *non_writer_clock_class = NULL;
2549 struct bt_ctf_packet *packet = NULL;
2550 struct bt_ctf_packet *packet2 = NULL;
2551
2552 if (!bt_mkdtemp(trace_path)) {
2553 perror("# perror");
2554 }
2555
2556 /* Create empty structure field type (event header) */
2557 empty_struct_ft = bt_ctf_field_type_structure_create();
2558 assert(empty_struct_ft);
2559
2560 /* Create writer, writer stream class, stream, and clock */
2561 writer = bt_ctf_writer_create(trace_path);
2562 assert(writer);
2563 writer_clock = bt_ctf_clock_create("writer_clock");
2564 assert(writer_clock);
2565 ret = bt_ctf_writer_add_clock(writer, writer_clock);
2566 assert(!ret);
2567 ret = bt_ctf_writer_set_byte_order(writer, BT_CTF_BYTE_ORDER_LITTLE_ENDIAN);
2568 assert(!ret);
2569 writer_trace = bt_ctf_writer_get_trace(writer);
2570 ok(writer_trace, "bt_ctf_writer_get_trace() returns a trace");
2571 writer_sc = bt_ctf_stream_class_create("writer_sc");
2572 assert(writer_sc);
2573 ret = bt_ctf_stream_class_set_event_header_type(writer_sc,
2574 empty_struct_ft);
2575 assert(!ret);
2576 ret = bt_ctf_stream_class_set_clock(writer_sc, writer_clock);
2577 assert(!ret);
2578 ret = bt_ctf_trace_add_stream_class(writer_trace, writer_sc);
2579 assert(!ret);
2580 writer_stream = bt_ctf_stream_create(writer_sc, writer_stream_name);
2581 assert(writer_stream);
2582 ok(!strcmp(bt_ctf_stream_get_name(writer_stream), writer_stream_name),
2583 "bt_ctf_stream_get_name() returns the stream's name");
2584
2585 /* Create non-writer trace, stream class, stream, and clock */
2586 non_writer_trace = bt_ctf_trace_create();
2587 assert(non_writer_trace);
2588 ret = bt_ctf_trace_set_native_byte_order(non_writer_trace,
2589 BT_CTF_BYTE_ORDER_LITTLE_ENDIAN);
2590 assert(!ret);
2591 non_writer_sc = bt_ctf_stream_class_create("nonwriter_sc");
2592 assert(non_writer_sc);
2593 ret = bt_ctf_stream_class_set_event_header_type(non_writer_sc,
2594 empty_struct_ft);
2595 assert(!ret);
2596 ret = bt_ctf_stream_class_set_packet_context_type(non_writer_sc, NULL);
2597 assert(!ret);
2598 ret = bt_ctf_trace_add_stream_class(non_writer_trace, non_writer_sc);
2599 assert(!ret);
2600 non_writer_stream = bt_ctf_stream_create(non_writer_sc, NULL);
2601 assert(non_writer_stream);
2602 non_writer_clock_class =
2603 bt_ctf_clock_class_create("non_writer_clock_class");
2604 assert(non_writer_clock_class);
2605 ret = bt_ctf_trace_add_clock_class(non_writer_trace,
2606 non_writer_clock_class);
2607 assert(!ret);
2608
2609 /* Create event class and event */
2610 writer_ec = create_minimal_event_class();
2611 assert(writer_ec);
2612 ret = bt_ctf_stream_class_add_event_class(writer_sc, writer_ec);
2613 assert(!ret);
2614 event = bt_ctf_event_create(writer_ec);
2615 assert(event);
2616 int_field = bt_ctf_event_get_payload_by_index(event, 0);
2617 assert(int_field);
2618 bt_ctf_field_unsigned_integer_set_value(int_field, 17);
2619
2620 /*
2621 * Verify non-writer stream: it should be impossible to append
2622 * an event to it.
2623 */
2624 ok(bt_ctf_stream_append_event(non_writer_stream, event),
2625 "bt_ctf_stream_append_event() fails with a non-writer stream");
2626
2627 /*
2628 * Verify writer stream: it should be possible to append an
2629 * event to it.
2630 */
2631 ok(!bt_ctf_stream_append_event(writer_stream, event),
2632 "bt_ctf_stream_append_event() succeeds with a writer stream");
2633
2634 /*
2635 * It should be possible to create a packet from a non-writer
2636 * stream, but not from a writer stream.
2637 */
2638 packet = bt_ctf_packet_create(writer_stream);
2639 ok(!packet, "bt_ctf_packet_create() fails with a writer stream");
2640 packet = bt_ctf_packet_create(non_writer_stream);
2641 ok(packet, "bt_ctf_packet_create() succeeds with a non-writer stream");
2642 packet_stream = bt_ctf_packet_get_stream(packet);
2643 ok(packet_stream == non_writer_stream,
2644 "bt_ctf_packet_get_stream() returns the correct stream");
2645
2646 /*
2647 * It should not be possible to append an event associated to
2648 * a stream to a different stream.
2649 */
2650 writer_stream2 = bt_ctf_stream_create(writer_sc, "zoo");
2651 assert(writer_stream2);
2652 ok(bt_ctf_stream_append_event(writer_stream2, event),
2653 "bt_ctf_stream_append_event() fails with an event associated to another stream");
2654
2655 /*
2656 * It should not be possible to set the packet of an event
2657 * associated to a given stream to a packet associated with
2658 * a different stream.
2659 */
2660 ok(bt_ctf_event_set_packet(event, packet),
2661 "bt_ctf_event_set_packet() fails with a packet not sharing the event's stream");
2662
2663 /*
2664 * It should be possible to set the packet of a fresh event, as
2665 * long as the originating stream classes are the same.
2666 */
2667 event2 = bt_ctf_event_create(writer_ec);
2668 assert(event2);
2669 ok(bt_ctf_event_set_packet(event2, packet),
2670 "bt_ctf_event_set_packet() fails when the event's and the packet's stream class differ");
2671 non_writer_ec = create_minimal_event_class();
2672 assert(non_writer_ec);
2673 ret = bt_ctf_stream_class_add_event_class(non_writer_sc, non_writer_ec);
2674 assert(!ret);
2675 BT_PUT(event2);
2676 event2 = bt_ctf_event_create(non_writer_ec);
2677 assert(event2);
2678 ok(!bt_ctf_event_set_packet(event2, packet),
2679 "bt_ctf_event_set_packet() succeeds when the event's and the packet's stream class are the same");
2680
2681 /*
2682 * It should be possible to set a packet created from the same
2683 * stream to an event with an existing packet.
2684 */
2685 packet2 = bt_ctf_packet_create(non_writer_stream);
2686 assert(packet2);
2687 ok(!bt_ctf_event_set_packet(event2, packet2),
2688 "bt_ctf_event_set_packet() succeeds when the event's current packet has the same stream");
2689 BT_PUT(packet2);
2690
2691 /*
2692 * It should not be possible to set a packet created from a
2693 * different stream to an event with an existing packet.
2694 */
2695 non_writer_stream2 = bt_ctf_stream_create(non_writer_sc, "rj45");
2696 assert(non_writer_stream2);
2697 packet2 = bt_ctf_packet_create(non_writer_stream);
2698 assert(packet2);
2699 ok(!bt_ctf_event_set_packet(event2, packet2),
2700 "bt_ctf_event_set_packet() fails when the event's current packet does not have the same stream");
2701
2702 bt_put(writer);
2703 bt_put(writer_trace);
2704 bt_put(writer_sc);
2705 bt_put(writer_stream);
2706 bt_put(writer_stream2);
2707 bt_put(non_writer_trace);
2708 bt_put(non_writer_sc);
2709 bt_put(non_writer_stream);
2710 bt_put(non_writer_stream2);
2711 bt_put(packet_stream);
2712 bt_put(writer_ec);
2713 bt_put(non_writer_ec);
2714 bt_put(event);
2715 bt_put(event2);
2716 bt_put(int_field);
2717 bt_put(empty_struct_ft);
2718 bt_put(writer_clock);
2719 bt_put(non_writer_clock_class);
2720 bt_put(packet);
2721 bt_put(packet2);
2722 recursive_rmdir(trace_path);
2723 }
2724
2725 static
2726 void test_clock_utils(void)
2727 {
2728 int ret;
2729 struct bt_ctf_clock *clock = NULL;
2730
2731 clock = bt_ctf_clock_create("water");
2732 assert(clock);
2733 ret = bt_ctf_clock_set_offset_s(clock, 1234);
2734 assert(!ret);
2735 ret = bt_ctf_clock_set_offset(clock, 1000);
2736 assert(!ret);
2737 ret = bt_ctf_clock_set_frequency(clock, 1000000000);
2738 assert(!ret);
2739 ret = bt_ctf_clock_set_frequency(clock, 1534);
2740 assert(!ret);
2741
2742 BT_PUT(clock);
2743 }
2744
2745 void test_set_clock_non_writer_stream_class(void)
2746 {
2747 struct bt_ctf_clock *clock;
2748 struct bt_ctf_trace *trace;
2749 struct bt_ctf_stream_class *sc;
2750 int ret;
2751
2752 clock = bt_ctf_clock_create("the_clock");
2753 assert(clock);
2754
2755 trace = bt_ctf_trace_create();
2756 assert(trace);
2757
2758 sc = bt_ctf_stream_class_create(NULL);
2759 assert(sc);
2760
2761 ret = bt_ctf_stream_class_set_clock(sc, clock);
2762 assert(ret == 0);
2763
2764 ret = bt_ctf_trace_add_stream_class(trace, sc);
2765 ok(ret < 0,
2766 "bt_ctf_trace_add_stream_class() fails with a stream class with a registered clock");
2767
2768 bt_put(clock);
2769 bt_put(trace);
2770 bt_put(sc);
2771 }
2772
2773 static
2774 void test_static_trace(void)
2775 {
2776 struct bt_ctf_trace *trace;
2777 struct bt_ctf_stream_class *stream_class;
2778 struct bt_ctf_stream_class *stream_class2;
2779 struct bt_ctf_stream *stream;
2780 struct bt_ctf_clock_class *clock_class;
2781 int ret;
2782
2783 trace = bt_ctf_trace_create();
2784 assert(trace);
2785 ret = bt_ctf_trace_set_native_byte_order(trace,
2786 BT_CTF_BYTE_ORDER_LITTLE_ENDIAN);
2787 assert(ret == 0);
2788 stream_class = bt_ctf_stream_class_create(NULL);
2789 assert(stream_class);
2790 ret = bt_ctf_stream_class_set_packet_context_type(stream_class, NULL);
2791 assert(ret == 0);
2792 ret = bt_ctf_trace_add_stream_class(trace, stream_class);
2793 assert(ret == 0);
2794 stream = bt_ctf_stream_create(stream_class, "hello");
2795 ok(stream, "bt_ctf_stream_create() succeeds with a non-static trace");
2796 bt_put(stream);
2797 ok(!bt_ctf_trace_is_static(trace),
2798 "bt_ctf_trace_is_static() returns the expected value");
2799 ok(bt_ctf_trace_set_is_static(trace) == 0,
2800 "bt_ctf_trace_set_is_static() succeeds");
2801 ok(bt_ctf_trace_is_static(trace),
2802 "bt_ctf_trace_is_static() returns the expected value");
2803 clock_class = bt_ctf_clock_class_create("yes");
2804 assert(clock_class);
2805 stream_class2 = bt_ctf_stream_class_create(NULL);
2806 assert(stream_class2);
2807 ok(bt_ctf_trace_add_stream_class(trace, stream_class2),
2808 "bt_ctf_trace_add_stream_class() fails with a static trace");
2809 ok(bt_ctf_trace_add_clock_class(trace, clock_class),
2810 "bt_ctf_trace_add_clock_class() fails with a static trace");
2811 ok(!bt_ctf_stream_create(stream_class, "hello2"),
2812 "bt_ctf_stream_create() fails with a static trace");
2813
2814 bt_put(trace);
2815 bt_put(stream_class);
2816 bt_put(stream_class2);
2817 bt_put(clock_class);
2818 }
2819
2820 static
2821 void test_trace_uuid(void)
2822 {
2823 struct bt_ctf_trace *trace;
2824 const unsigned char uuid[] = {
2825 0x35, 0x92, 0x63, 0xab, 0xb4, 0xbe, 0x40, 0xb4,
2826 0xb2, 0x60, 0xd3, 0xf1, 0x3b, 0xb0, 0xd8, 0x59,
2827 };
2828 const unsigned char *ret_uuid;
2829
2830 trace = bt_ctf_trace_create();
2831 assert(trace);
2832 ok(!bt_ctf_trace_get_uuid(NULL),
2833 "bt_ctf_trace_get_uuid() handles NULL");
2834 ok(!bt_ctf_trace_get_uuid(trace),
2835 "bt_ctf_trace_get_uuid() returns NULL initially");
2836 ok(bt_ctf_trace_set_uuid(NULL, uuid),
2837 "bt_ctf_trace_set_uuid() handles NULL (trace)");
2838 ok(bt_ctf_trace_set_uuid(trace, NULL),
2839 "bt_ctf_trace_set_uuid() handles NULL (UUID)");
2840 ok(bt_ctf_trace_set_uuid(trace, uuid) == 0,
2841 "bt_ctf_trace_set_uuid() succeeds with a valid UUID");
2842 ret_uuid = bt_ctf_trace_get_uuid(trace);
2843 ok(ret_uuid, "bt_ctf_trace_get_uuid() returns a UUID");
2844 ok(memcmp(uuid, ret_uuid, 16) == 0,
2845 "bt_ctf_trace_get_uuid() returns the expected UUID");
2846
2847 bt_put(trace);
2848 }
2849
2850 int main(int argc, char **argv)
2851 {
2852 char trace_path[] = "/tmp/ctfwriter_XXXXXX";
2853 char metadata_path[sizeof(trace_path) + 9];
2854 const char *clock_name = "test_clock";
2855 const char *clock_description = "This is a test clock";
2856 const char *returned_clock_name;
2857 const char *returned_clock_description;
2858 const uint64_t frequency = 1123456789;
2859 const int64_t offset_s = 1351530929945824323;
2860 const int64_t offset = 1234567;
2861 int64_t get_offset_s,
2862 get_offset;
2863 const uint64_t precision = 10;
2864 const int is_absolute = 0xFF;
2865 char *metadata_string;
2866 struct bt_ctf_writer *writer;
2867 struct utsname name;
2868 char hostname[BABELTRACE_HOST_NAME_MAX];
2869 struct bt_ctf_clock *clock, *ret_clock;
2870 struct bt_ctf_clock_class *ret_clock_class;
2871 struct bt_ctf_stream_class *stream_class, *ret_stream_class;
2872 struct bt_ctf_stream *stream1;
2873 struct bt_ctf_stream *stream;
2874 const char *ret_string;
2875 const unsigned char *ret_uuid;
2876 unsigned char tmp_uuid[16] = { 0 };
2877 struct bt_ctf_field_type *packet_context_type,
2878 *packet_context_field_type,
2879 *packet_header_type,
2880 *packet_header_field_type,
2881 *integer_type,
2882 *stream_event_context_type,
2883 *ret_field_type,
2884 *event_header_field_type;
2885 struct bt_ctf_field *packet_header, *packet_header_field;
2886 struct bt_ctf_trace *trace;
2887 int ret;
2888 int64_t ret_int64_t;
2889 struct bt_value *obj;
2890
2891 if (argc < 2) {
2892 printf("Usage: tests-ctf-writer path_to_babeltrace\n");
2893 return -1;
2894 }
2895
2896 plan_tests(NR_TESTS);
2897
2898 if (!bt_mkdtemp(trace_path)) {
2899 perror("# perror");
2900 }
2901
2902 strcpy(metadata_path, trace_path);
2903 strcat(metadata_path + sizeof(trace_path) - 1, "/metadata");
2904
2905 writer = bt_ctf_writer_create(trace_path);
2906 ok(writer, "bt_ctf_create succeeds in creating trace with path");
2907
2908 ok(!bt_ctf_writer_get_trace(NULL),
2909 "bt_ctf_writer_get_trace correctly handles NULL");
2910 trace = bt_ctf_writer_get_trace(writer);
2911 ok(trace,
2912 "bt_ctf_writer_get_trace returns a bt_ctf_trace object");
2913 ok(bt_ctf_trace_set_native_byte_order(trace, BT_CTF_BYTE_ORDER_BIG_ENDIAN) == 0,
2914 "Set a trace's byte order to big endian");
2915 ok(bt_ctf_trace_get_native_byte_order(trace) == BT_CTF_BYTE_ORDER_BIG_ENDIAN,
2916 "bt_ctf_trace_get_native_byte_order returns a correct endianness");
2917
2918 /* Add environment context to the trace */
2919 ret = gethostname(hostname, sizeof(hostname));
2920 if (ret < 0) {
2921 return ret;
2922 }
2923 ok(bt_ctf_writer_add_environment_field(writer, "host", hostname) == 0,
2924 "Add host (%s) environment field to writer instance",
2925 hostname);
2926 ok(bt_ctf_writer_add_environment_field(NULL, "test_field",
2927 "test_value"),
2928 "bt_ctf_writer_add_environment_field error with NULL writer");
2929 ok(bt_ctf_writer_add_environment_field(writer, NULL,
2930 "test_value"),
2931 "bt_ctf_writer_add_environment_field error with NULL field name");
2932 ok(bt_ctf_writer_add_environment_field(writer, "test_field",
2933 NULL),
2934 "bt_ctf_writer_add_environment_field error with NULL field value");
2935
2936 /* Test bt_ctf_trace_set_environment_field with an integer object */
2937 obj = bt_value_integer_create_init(23);
2938 assert(obj);
2939 ok(bt_ctf_trace_set_environment_field(NULL, "test_env_int_obj", obj),
2940 "bt_ctf_trace_set_environment_field handles a NULL trace correctly");
2941 ok(bt_ctf_trace_set_environment_field(trace, NULL, obj),
2942 "bt_ctf_trace_set_environment_field handles a NULL name correctly");
2943 ok(bt_ctf_trace_set_environment_field(trace, "test_env_int_obj", NULL),
2944 "bt_ctf_trace_set_environment_field handles a NULL value correctly");
2945 ok(!bt_ctf_trace_set_environment_field(trace, "test_env_int_obj", obj),
2946 "bt_ctf_trace_set_environment_field succeeds in adding an integer object");
2947 BT_PUT(obj);
2948
2949 /* Test bt_ctf_trace_set_environment_field with a string object */
2950 obj = bt_value_string_create_init("the value");
2951 assert(obj);
2952 ok(!bt_ctf_trace_set_environment_field(trace, "test_env_str_obj", obj),
2953 "bt_ctf_trace_set_environment_field succeeds in adding a string object");
2954 BT_PUT(obj);
2955
2956 /* Test bt_ctf_trace_set_environment_field_integer */
2957 ok(bt_ctf_trace_set_environment_field_integer(NULL, "test_env_int",
2958 -194875),
2959 "bt_ctf_trace_set_environment_field_integer handles a NULL trace correctly");
2960 ok(bt_ctf_trace_set_environment_field_integer(trace, NULL, -194875),
2961 "bt_ctf_trace_set_environment_field_integer handles a NULL name correctly");
2962 ok(!bt_ctf_trace_set_environment_field_integer(trace, "test_env_int",
2963 -164973),
2964 "bt_ctf_trace_set_environment_field_integer succeeds");
2965
2966 /* Test bt_ctf_trace_set_environment_field_string */
2967 ok(bt_ctf_trace_set_environment_field_string(NULL, "test_env_str",
2968 "yeah"),
2969 "bt_ctf_trace_set_environment_field_string handles a NULL trace correctly");
2970 ok(bt_ctf_trace_set_environment_field_string(trace, NULL, "yeah"),
2971 "bt_ctf_trace_set_environment_field_string handles a NULL name correctly");
2972 ok(bt_ctf_trace_set_environment_field_string(trace, "test_env_str",
2973 NULL),
2974 "bt_ctf_trace_set_environment_field_string handles a NULL value correctly");
2975 ok(!bt_ctf_trace_set_environment_field_string(trace, "test_env_str",
2976 "oh yeah"),
2977 "bt_ctf_trace_set_environment_field_string succeeds");
2978
2979 /* Test bt_ctf_trace_get_environment_field_count */
2980 ok(bt_ctf_trace_get_environment_field_count(NULL) < 0,
2981 "bt_ctf_trace_get_environment_field_count handles a NULL trace correctly");
2982 ok(bt_ctf_trace_get_environment_field_count(trace) == 5,
2983 "bt_ctf_trace_get_environment_field_count returns a correct number of environment fields");
2984
2985 /* Test bt_ctf_trace_get_environment_field_name */
2986 ok(bt_ctf_trace_get_environment_field_name_by_index(NULL, 0) == NULL,
2987 "bt_ctf_trace_get_environment_field_name handles a NULL trace correctly");
2988 ok(bt_ctf_trace_get_environment_field_name_by_index(trace, 5) == NULL,
2989 "bt_ctf_trace_get_environment_field_name handles an invalid index correctly (too large)");
2990 ret_string = bt_ctf_trace_get_environment_field_name_by_index(trace, 0);
2991 ok(ret_string && !strcmp(ret_string, "host"),
2992 "bt_ctf_trace_get_environment_field_name returns a correct field name");
2993 ret_string = bt_ctf_trace_get_environment_field_name_by_index(trace, 1);
2994 ok(ret_string && !strcmp(ret_string, "test_env_int_obj"),
2995 "bt_ctf_trace_get_environment_field_name returns a correct field name");
2996 ret_string = bt_ctf_trace_get_environment_field_name_by_index(trace, 2);
2997 ok(ret_string && !strcmp(ret_string, "test_env_str_obj"),
2998 "bt_ctf_trace_get_environment_field_name returns a correct field name");
2999 ret_string = bt_ctf_trace_get_environment_field_name_by_index(trace, 3);
3000 ok(ret_string && !strcmp(ret_string, "test_env_int"),
3001 "bt_ctf_trace_get_environment_field_name returns a correct field name");
3002 ret_string = bt_ctf_trace_get_environment_field_name_by_index(trace, 4);
3003 ok(ret_string && !strcmp(ret_string, "test_env_str"),
3004 "bt_ctf_trace_get_environment_field_name returns a correct field name");
3005
3006 /* Test bt_ctf_trace_get_environment_field_value */
3007 ok(bt_ctf_trace_get_environment_field_value_by_index(NULL, 0) == NULL,
3008 "bt_ctf_trace_get_environment_field_value handles a NULL trace correctly");
3009 ok(bt_ctf_trace_get_environment_field_value_by_index(trace, 5) == NULL,
3010 "bt_ctf_trace_get_environment_field_value handles an invalid index correctly (too large)");
3011 obj = bt_ctf_trace_get_environment_field_value_by_index(trace, 1);
3012 ret = bt_value_integer_get(obj, &ret_int64_t);
3013 ok(!ret && ret_int64_t == 23,
3014 "bt_ctf_trace_get_environment_field_value succeeds in getting an integer value");
3015 BT_PUT(obj);
3016 obj = bt_ctf_trace_get_environment_field_value_by_index(trace, 2);
3017 ret = bt_value_string_get(obj, &ret_string);
3018 ok(!ret && ret_string && !strcmp(ret_string, "the value"),
3019 "bt_ctf_trace_get_environment_field_value succeeds in getting a string value");
3020 BT_PUT(obj);
3021
3022 /* Test bt_ctf_trace_get_environment_field_value_by_name */
3023 ok(!bt_ctf_trace_get_environment_field_value_by_name(NULL,
3024 "test_env_str"),
3025 "bt_ctf_trace_get_environment_field_value_by_name handles a NULL trace correctly");
3026 ok(!bt_ctf_trace_get_environment_field_value_by_name(trace, NULL),
3027 "bt_ctf_trace_get_environment_field_value_by_name handles a NULL name correctly");
3028 ok(!bt_ctf_trace_get_environment_field_value_by_name(trace, "oh oh"),
3029 "bt_ctf_trace_get_environment_field_value_by_name returns NULL or an unknown field name");
3030 obj = bt_ctf_trace_get_environment_field_value_by_name(trace,
3031 "test_env_str");
3032 ret = bt_value_string_get(obj, &ret_string);
3033 ok(!ret && ret_string && !strcmp(ret_string, "oh yeah"),
3034 "bt_ctf_trace_get_environment_field_value_by_name succeeds in getting an existing field");
3035 BT_PUT(obj);
3036
3037 /* Test environment field replacement */
3038 ok(!bt_ctf_trace_set_environment_field_integer(trace, "test_env_int",
3039 654321),
3040 "bt_ctf_trace_set_environment_field_integer succeeds with an existing name");
3041 ok(bt_ctf_trace_get_environment_field_count(trace) == 5,
3042 "bt_ctf_trace_set_environment_field_integer with an existing key does not increase the environment size");
3043 obj = bt_ctf_trace_get_environment_field_value_by_index(trace, 3);
3044 ret = bt_value_integer_get(obj, &ret_int64_t);
3045 ok(!ret && ret_int64_t == 654321,
3046 "bt_ctf_trace_get_environment_field_value successfully replaces an existing field");
3047 BT_PUT(obj);
3048
3049 /* On Solaris, uname() can return any positive value on success */
3050 if (uname(&name) < 0) {
3051 perror("uname");
3052 return -1;
3053 }
3054
3055 ok(bt_ctf_writer_add_environment_field(writer, "sysname", name.sysname)
3056 == 0, "Add sysname (%s) environment field to writer instance",
3057 name.sysname);
3058 ok(bt_ctf_writer_add_environment_field(writer, "nodename",
3059 name.nodename) == 0,
3060 "Add nodename (%s) environment field to writer instance",
3061 name.nodename);
3062 ok(bt_ctf_writer_add_environment_field(writer, "release", name.release)
3063 == 0, "Add release (%s) environment field to writer instance",
3064 name.release);
3065 ok(bt_ctf_writer_add_environment_field(writer, "version", name.version)
3066 == 0, "Add version (%s) environment field to writer instance",
3067 name.version);
3068 ok(bt_ctf_writer_add_environment_field(writer, "machine", name.machine)
3069 == 0, "Add machine (%s) environment field to writer istance",
3070 name.machine);
3071
3072 /* Define a clock and add it to the trace */
3073 ok(bt_ctf_clock_create("signed") == NULL,
3074 "Illegal clock name rejected");
3075 clock = bt_ctf_clock_create(clock_name);
3076 ok(clock, "Clock created sucessfully");
3077 returned_clock_name = bt_ctf_clock_get_name(clock);
3078 ok(returned_clock_name, "bt_ctf_clock_get_name returns a clock name");
3079 ok(returned_clock_name ? !strcmp(returned_clock_name, clock_name) : 0,
3080 "Returned clock name is valid");
3081
3082 returned_clock_description = bt_ctf_clock_get_description(clock);
3083 ok(!returned_clock_description, "bt_ctf_clock_get_description returns NULL on an unset description");
3084 ok(bt_ctf_clock_set_description(clock, clock_description) == 0,
3085 "Clock description set successfully");
3086
3087 returned_clock_description = bt_ctf_clock_get_description(clock);
3088 ok(returned_clock_description,
3089 "bt_ctf_clock_get_description returns a description.");
3090 ok(returned_clock_description ?
3091 !strcmp(returned_clock_description, clock_description) : 0,
3092 "Returned clock description is valid");
3093
3094 ok(bt_ctf_clock_get_frequency(clock) == DEFAULT_CLOCK_FREQ,
3095 "bt_ctf_clock_get_frequency returns the correct default frequency");
3096 ok(bt_ctf_clock_set_frequency(clock, frequency) == 0,
3097 "Set clock frequency");
3098 ok(bt_ctf_clock_get_frequency(clock) == frequency,
3099 "bt_ctf_clock_get_frequency returns the correct frequency once it is set");
3100
3101 ok(bt_ctf_clock_get_offset_s(clock, &get_offset_s) == 0,
3102 "bt_ctf_clock_get_offset_s succeeds");
3103 ok(get_offset_s == DEFAULT_CLOCK_OFFSET_S,
3104 "bt_ctf_clock_get_offset_s returns the correct default offset (in seconds)");
3105 ok(bt_ctf_clock_set_offset_s(clock, offset_s) == 0,
3106 "Set clock offset (seconds)");
3107 ok(bt_ctf_clock_get_offset_s(clock, &get_offset_s) == 0,
3108 "bt_ctf_clock_get_offset_s succeeds");
3109 ok(get_offset_s == offset_s,
3110 "bt_ctf_clock_get_offset_s returns the correct default offset (in seconds) once it is set");
3111
3112 ok(bt_ctf_clock_get_offset(clock, &get_offset) == 0,
3113 "bt_ctf_clock_get_offset succeeds");
3114 ok(get_offset == DEFAULT_CLOCK_OFFSET,
3115 "bt_ctf_clock_get_offset returns the correct default offset (in ticks)");
3116 ok(bt_ctf_clock_set_offset(clock, offset) == 0, "Set clock offset");
3117 ok(bt_ctf_clock_get_offset(clock, &get_offset) == 0,
3118 "bt_ctf_clock_get_offset succeeds");
3119 ok(get_offset == offset,
3120 "bt_ctf_clock_get_offset returns the correct default offset (in ticks) once it is set");
3121
3122 ok(bt_ctf_clock_get_precision(clock) == DEFAULT_CLOCK_PRECISION,
3123 "bt_ctf_clock_get_precision returns the correct default precision");
3124 ok(bt_ctf_clock_set_precision(clock, precision) == 0,
3125 "Set clock precision");
3126 ok(bt_ctf_clock_get_precision(clock) == precision,
3127 "bt_ctf_clock_get_precision returns the correct precision once it is set");
3128
3129 ok(bt_ctf_clock_get_is_absolute(clock) == DEFAULT_CLOCK_IS_ABSOLUTE,
3130 "bt_ctf_clock_get_precision returns the correct default is_absolute attribute");
3131 ok(bt_ctf_clock_set_is_absolute(clock, is_absolute) == 0,
3132 "Set clock absolute property");
3133 ok(bt_ctf_clock_get_is_absolute(clock) == !!is_absolute,
3134 "bt_ctf_clock_get_precision returns the correct is_absolute attribute once it is set");
3135
3136 ok(bt_ctf_clock_set_time(clock, current_time) == 0,
3137 "Set clock time");
3138
3139 ok(!bt_ctf_clock_get_name(NULL),
3140 "bt_ctf_clock_get_name correctly handles NULL");
3141 ok(!bt_ctf_clock_get_description(NULL),
3142 "bt_ctf_clock_get_description correctly handles NULL");
3143 ok(bt_ctf_clock_get_frequency(NULL) == -1ULL,
3144 "bt_ctf_clock_get_frequency correctly handles NULL");
3145 ok(bt_ctf_clock_get_precision(NULL) == -1ULL,
3146 "bt_ctf_clock_get_precision correctly handles NULL");
3147 ok(bt_ctf_clock_get_offset_s(NULL, &get_offset_s) < 0,
3148 "bt_ctf_clock_get_offset_s correctly handles NULL clock");
3149 ok(bt_ctf_clock_get_offset_s(clock, NULL) < 0,
3150 "bt_ctf_clock_get_offset_s correctly handles NULL output");
3151 ok(bt_ctf_clock_get_offset(NULL, &get_offset) < 0,
3152 "bt_ctf_clock_get_offset correctly handles NULL clock");
3153 ok(bt_ctf_clock_get_offset(clock, NULL) < 0,
3154 "bt_ctf_clock_get_offset correctly handles NULL output");
3155 ok(bt_ctf_clock_get_is_absolute(NULL) < 0,
3156 "bt_ctf_clock_get_is_absolute correctly handles NULL");
3157
3158 ok(bt_ctf_clock_set_description(NULL, NULL) < 0,
3159 "bt_ctf_clock_set_description correctly handles NULL clock");
3160 ok(bt_ctf_clock_set_frequency(NULL, frequency) < 0,
3161 "bt_ctf_clock_set_frequency correctly handles NULL clock");
3162 ok(bt_ctf_clock_set_precision(NULL, precision) < 0,
3163 "bt_ctf_clock_get_precision correctly handles NULL clock");
3164 ok(bt_ctf_clock_set_offset_s(NULL, offset_s) < 0,
3165 "bt_ctf_clock_set_offset_s correctly handles NULL clock");
3166 ok(bt_ctf_clock_set_offset(NULL, offset) < 0,
3167 "bt_ctf_clock_set_offset correctly handles NULL clock");
3168 ok(bt_ctf_clock_set_is_absolute(NULL, is_absolute) < 0,
3169 "bt_ctf_clock_set_is_absolute correctly handles NULL clock");
3170 ok(bt_ctf_clock_set_time(NULL, current_time) < 0,
3171 "bt_ctf_clock_set_time correctly handles NULL clock");
3172 ok(bt_ctf_clock_get_uuid(NULL) == NULL,
3173 "bt_ctf_clock_get_uuid correctly handles NULL clock");
3174 ret_uuid = bt_ctf_clock_get_uuid(clock);
3175 ok(ret_uuid,
3176 "bt_ctf_clock_get_uuid returns a UUID");
3177 if (ret_uuid) {
3178 memcpy(tmp_uuid, ret_uuid, sizeof(tmp_uuid));
3179 /* Slightly modify UUID */
3180 tmp_uuid[sizeof(tmp_uuid) - 1]++;
3181 }
3182
3183 ok(bt_ctf_clock_set_uuid(NULL, tmp_uuid) < 0,
3184 "bt_ctf_clock_set_uuid correctly handles a NULL clock");
3185 ok(bt_ctf_clock_set_uuid(clock, NULL) < 0,
3186 "bt_ctf_clock_set_uuid correctly handles a NULL UUID");
3187 ok(bt_ctf_clock_set_uuid(clock, tmp_uuid) == 0,
3188 "bt_ctf_clock_set_uuid sets a new uuid successfully");
3189 ret_uuid = bt_ctf_clock_get_uuid(clock);
3190 ok(ret_uuid,
3191 "bt_ctf_clock_get_uuid returns a UUID after setting a new one");
3192 ok(uuid_match(ret_uuid, tmp_uuid),
3193 "bt_ctf_clock_get_uuid returns the correct UUID after setting a new one");
3194
3195 /* Define a stream class */
3196 stream_class = bt_ctf_stream_class_create("test_stream");
3197
3198 ok(bt_ctf_stream_class_get_name(NULL) == NULL,
3199 "bt_ctf_stream_class_get_name handles NULL correctly");
3200 ret_string = bt_ctf_stream_class_get_name(stream_class);
3201 ok(ret_string && !strcmp(ret_string, "test_stream"),
3202 "bt_ctf_stream_class_get_name returns a correct stream class name");
3203
3204 ok(bt_ctf_stream_class_get_clock(stream_class) == NULL,
3205 "bt_ctf_stream_class_get_clock returns NULL when a clock was not set");
3206 ok(bt_ctf_stream_class_get_clock(NULL) == NULL,
3207 "bt_ctf_stream_class_get_clock handles NULL correctly");
3208
3209 ok(stream_class, "Create stream class");
3210 ok(bt_ctf_stream_class_set_clock(stream_class, clock) == 0,
3211 "Set a stream class' clock");
3212 ret_clock = bt_ctf_stream_class_get_clock(stream_class);
3213 ok(ret_clock == clock,
3214 "bt_ctf_stream_class_get_clock returns a correct clock");
3215 bt_put(ret_clock);
3216
3217 /* Test the event fields and event types APIs */
3218 type_field_tests();
3219
3220 /* Test fields copying */
3221 field_copy_tests();
3222
3223 ok(bt_ctf_stream_class_get_id(stream_class) < 0,
3224 "bt_ctf_stream_class_get_id returns an error when no id is set");
3225 ok(bt_ctf_stream_class_get_id(NULL) < 0,
3226 "bt_ctf_stream_class_get_id handles NULL correctly");
3227 ok(bt_ctf_stream_class_set_id(NULL, 123) < 0,
3228 "bt_ctf_stream_class_set_id handles NULL correctly");
3229 ok(bt_ctf_stream_class_set_id(stream_class, 123) == 0,
3230 "Set an stream class' id");
3231 ok(bt_ctf_stream_class_get_id(stream_class) == 123,
3232 "bt_ctf_stream_class_get_id returns the correct value");
3233
3234 /* Validate default event header fields */
3235 ok(bt_ctf_stream_class_get_event_header_type(NULL) == NULL,
3236 "bt_ctf_stream_class_get_event_header_type handles NULL correctly");
3237 ret_field_type = bt_ctf_stream_class_get_event_header_type(
3238 stream_class);
3239 ok(ret_field_type,
3240 "bt_ctf_stream_class_get_event_header_type returns an event header type");
3241 ok(bt_ctf_field_type_get_type_id(ret_field_type) == BT_CTF_FIELD_TYPE_ID_STRUCT,
3242 "Default event header type is a structure");
3243 event_header_field_type =
3244 bt_ctf_field_type_structure_get_field_type_by_name(
3245 ret_field_type, "id");
3246 ok(event_header_field_type,
3247 "Default event header type contains an \"id\" field");
3248 ok(bt_ctf_field_type_get_type_id(
3249 event_header_field_type) == BT_CTF_FIELD_TYPE_ID_INTEGER,
3250 "Default event header \"id\" field is an integer");
3251 bt_put(event_header_field_type);
3252 event_header_field_type =
3253 bt_ctf_field_type_structure_get_field_type_by_name(
3254 ret_field_type, "timestamp");
3255 ok(event_header_field_type,
3256 "Default event header type contains a \"timestamp\" field");
3257 ok(bt_ctf_field_type_get_type_id(
3258 event_header_field_type) == BT_CTF_FIELD_TYPE_ID_INTEGER,
3259 "Default event header \"timestamp\" field is an integer");
3260 bt_put(event_header_field_type);
3261 bt_put(ret_field_type);
3262
3263 /* Add a custom trace packet header field */
3264 ok(bt_ctf_trace_get_packet_header_type(NULL) == NULL,
3265 "bt_ctf_trace_get_packet_header_type handles NULL correctly");
3266 packet_header_type = bt_ctf_trace_get_packet_header_type(trace);
3267 ok(packet_header_type,
3268 "bt_ctf_trace_get_packet_header_type returns a packet header");
3269 ok(bt_ctf_field_type_get_type_id(packet_header_type) == BT_CTF_FIELD_TYPE_ID_STRUCT,
3270 "bt_ctf_trace_get_packet_header_type returns a packet header of type struct");
3271 ret_field_type = bt_ctf_field_type_structure_get_field_type_by_name(
3272 packet_header_type, "magic");
3273 ok(ret_field_type, "Default packet header type contains a \"magic\" field");
3274 bt_put(ret_field_type);
3275 ret_field_type = bt_ctf_field_type_structure_get_field_type_by_name(
3276 packet_header_type, "uuid");
3277 ok(ret_field_type, "Default packet header type contains a \"uuid\" field");
3278 bt_put(ret_field_type);
3279 ret_field_type = bt_ctf_field_type_structure_get_field_type_by_name(
3280 packet_header_type, "stream_id");
3281 ok(ret_field_type, "Default packet header type contains a \"stream_id\" field");
3282 bt_put(ret_field_type);
3283
3284 packet_header_field_type = bt_ctf_field_type_integer_create(22);
3285 ok(!bt_ctf_field_type_structure_add_field(packet_header_type,
3286 packet_header_field_type, "custom_trace_packet_header_field"),
3287 "Added a custom trace packet header field successfully");
3288
3289 ok(bt_ctf_trace_set_packet_header_type(NULL, packet_header_type) < 0,
3290 "bt_ctf_trace_set_packet_header_type handles a NULL trace correctly");
3291 ok(!bt_ctf_trace_set_packet_header_type(trace, packet_header_type),
3292 "Set a trace packet_header_type successfully");
3293
3294 ok(bt_ctf_stream_class_get_packet_context_type(NULL) == NULL,
3295 "bt_ctf_stream_class_get_packet_context_type handles NULL correctly");
3296
3297 /* Add a custom field to the stream class' packet context */
3298 packet_context_type = bt_ctf_stream_class_get_packet_context_type(stream_class);
3299 ok(packet_context_type,
3300 "bt_ctf_stream_class_get_packet_context_type returns a packet context type.");
3301 ok(bt_ctf_field_type_get_type_id(packet_context_type) == BT_CTF_FIELD_TYPE_ID_STRUCT,
3302 "Packet context is a structure");
3303
3304 ok(bt_ctf_stream_class_set_packet_context_type(NULL, packet_context_type),
3305 "bt_ctf_stream_class_set_packet_context_type handles a NULL stream class correctly");
3306
3307 integer_type = bt_ctf_field_type_integer_create(32);
3308 ok(bt_ctf_stream_class_set_packet_context_type(stream_class,
3309 integer_type) < 0,
3310 "bt_ctf_stream_class_set_packet_context_type rejects a packet context that is not a structure");
3311 /* Create a "uint5_t" equivalent custom packet context field */
3312 packet_context_field_type = bt_ctf_field_type_integer_create(5);
3313
3314 ret = bt_ctf_field_type_structure_add_field(packet_context_type,
3315 packet_context_field_type, "custom_packet_context_field");
3316 ok(ret == 0, "Packet context field added successfully");
3317
3318 /* Define a stream event context containing a my_integer field. */
3319 ok(bt_ctf_stream_class_get_event_context_type(NULL) == NULL,
3320 "bt_ctf_stream_class_get_event_context_type handles NULL correctly");
3321 stream_event_context_type = bt_ctf_field_type_structure_create();
3322 bt_ctf_field_type_structure_add_field(stream_event_context_type,
3323 integer_type, "common_event_context");
3324
3325 ok(bt_ctf_stream_class_set_event_context_type(NULL,
3326 stream_event_context_type) < 0,
3327 "bt_ctf_stream_class_set_event_context_type handles a NULL stream_class correctly");
3328 ok(bt_ctf_stream_class_set_event_context_type(stream_class,
3329 integer_type) < 0,
3330 "bt_ctf_stream_class_set_event_context_type validates that the event context os a structure");
3331
3332 ok(bt_ctf_stream_class_set_event_context_type(
3333 stream_class, stream_event_context_type) == 0,
3334 "Set a new stream event context type");
3335 ret_field_type = bt_ctf_stream_class_get_event_context_type(
3336 stream_class);
3337 ok(ret_field_type == stream_event_context_type,
3338 "bt_ctf_stream_class_get_event_context_type returns the correct field type.");
3339 bt_put(ret_field_type);
3340
3341 /* Instantiate a stream and append events */
3342 ret = bt_ctf_writer_add_clock(writer, clock);
3343 assert(ret == 0);
3344 ok(bt_ctf_trace_get_stream_count(trace) == 0,
3345 "bt_ctf_trace_get_stream_count() succeeds and returns the correct value (0)");
3346 stream1 = bt_ctf_writer_create_stream(writer, stream_class);
3347 ok(stream1, "Instanciate a stream class from writer");
3348 ok(bt_ctf_trace_get_stream_count(trace) == 1,
3349 "bt_ctf_trace_get_stream_count() succeeds and returns the correct value (1)");
3350 stream = bt_ctf_trace_get_stream_by_index(trace, 0);
3351 ok(stream == stream1,
3352 "bt_ctf_trace_get_stream_by_index() succeeds and returns the correct value");
3353 BT_PUT(stream);
3354
3355 /*
3356 * Creating a stream through a writer adds the given stream
3357 * class to the writer's trace, thus registering the stream
3358 * class's clock to the trace.
3359 */
3360 ok(bt_ctf_trace_get_clock_class_count(NULL) < 0,
3361 "bt_ctf_trace_get_clock_class_count correctly handles NULL");
3362 ok(bt_ctf_trace_get_clock_class_count(trace) == 1,
3363 "bt_ctf_trace_get_clock_class_count returns the correct number of clocks");
3364 ok(!bt_ctf_trace_get_clock_class_by_index(NULL, 0),
3365 "bt_ctf_trace_get_clock_class correctly handles NULL");
3366 ok(!bt_ctf_trace_get_clock_class_by_index(trace, 1),
3367 "bt_ctf_trace_get_clock_class correctly handles out of bound accesses");
3368 ret_clock_class = bt_ctf_trace_get_clock_class_by_index(trace, 0);
3369 ok(strcmp(bt_ctf_clock_class_get_name(ret_clock_class),
3370 bt_ctf_clock_get_name(clock)) == 0,
3371 "bt_ctf_trace_get_clock_class returns the right clock instance");
3372 bt_put(ret_clock_class);
3373 ok(!bt_ctf_trace_get_clock_class_by_name(trace, NULL),
3374 "bt_ctf_trace_get_clock_class_by_name correctly handles NULL (trace)");
3375 ok(!bt_ctf_trace_get_clock_class_by_name(NULL, clock_name),
3376 "bt_ctf_trace_get_clock_by_name correctly handles NULL (clock name)");
3377 ok(!bt_ctf_trace_get_clock_class_by_name(NULL, NULL),
3378 "bt_ctf_trace_get_clock_by_name correctly handles NULL (both)");
3379 ret_clock_class = bt_ctf_trace_get_clock_class_by_name(trace, clock_name);
3380 ok(strcmp(bt_ctf_clock_class_get_name(ret_clock_class),
3381 bt_ctf_clock_get_name(clock)) == 0,
3382 "bt_ctf_trace_get_clock_class returns the right clock instance");
3383 bt_put(ret_clock_class);
3384 ok(!bt_ctf_trace_get_clock_class_by_name(trace, "random"),
3385 "bt_ctf_trace_get_clock_by_name fails when the requested clock doesn't exist");
3386
3387 ok(bt_ctf_stream_get_class(NULL) == NULL,
3388 "bt_ctf_stream_get_class correctly handles NULL");
3389 ret_stream_class = bt_ctf_stream_get_class(stream1);
3390 ok(ret_stream_class,
3391 "bt_ctf_stream_get_class returns a stream class");
3392 ok(ret_stream_class == stream_class,
3393 "Returned stream class is of the correct type");
3394
3395 /*
3396 * Packet header, packet context, event header, and stream
3397 * event context types were copied for the resolving
3398 * process
3399 */
3400 BT_PUT(packet_header_type);
3401 BT_PUT(packet_context_type);
3402 BT_PUT(stream_event_context_type);
3403 packet_header_type = bt_ctf_trace_get_packet_header_type(trace);
3404 assert(packet_header_type);
3405 packet_context_type =
3406 bt_ctf_stream_class_get_packet_context_type(stream_class);
3407 assert(packet_context_type);
3408 stream_event_context_type =
3409 bt_ctf_stream_class_get_event_context_type(stream_class);
3410 assert(stream_event_context_type);
3411
3412 /*
3413 * Try to modify the packet context type after a stream has been
3414 * created.
3415 */
3416 ret = bt_ctf_field_type_structure_add_field(packet_header_type,
3417 packet_header_field_type, "should_fail");
3418 ok(ret < 0,
3419 "Trace packet header type can't be modified once a stream has been instanciated");
3420
3421 /*
3422 * Try to modify the packet context type after a stream has been
3423 * created.
3424 */
3425 ret = bt_ctf_field_type_structure_add_field(packet_context_type,
3426 packet_context_field_type, "should_fail");
3427 ok(ret < 0,
3428 "Packet context type can't be modified once a stream has been instanciated");
3429
3430 /*
3431 * Try to modify the stream event context type after a stream has been
3432 * created.
3433 */
3434 ret = bt_ctf_field_type_structure_add_field(stream_event_context_type,
3435 integer_type, "should_fail");
3436 ok(ret < 0,
3437 "Stream event context type can't be modified once a stream has been instanciated");
3438
3439 /* Should fail after instanciating a stream (frozen) */
3440 ok(bt_ctf_stream_class_set_clock(stream_class, clock),
3441 "Changes to a stream class that was already instantiated fail");
3442
3443 /* Populate the custom packet header field only once for all tests */
3444 ok(bt_ctf_stream_get_packet_header(NULL) == NULL,
3445 "bt_ctf_stream_get_packet_header handles NULL correctly");
3446 packet_header = bt_ctf_stream_get_packet_header(stream1);
3447 ok(packet_header,
3448 "bt_ctf_stream_get_packet_header returns a packet header");
3449 ret_field_type = bt_ctf_field_get_type(packet_header);
3450 ok(ret_field_type == packet_header_type,
3451 "Stream returns a packet header of the appropriate type");
3452 bt_put(ret_field_type);
3453 packet_header_field = bt_ctf_field_structure_get_field(packet_header,
3454 "custom_trace_packet_header_field");
3455 ok(packet_header_field,
3456 "Packet header structure contains a custom field with the appropriate name");
3457 ret_field_type = bt_ctf_field_get_type(packet_header_field);
3458 ok(bt_ctf_field_type_compare(ret_field_type, packet_header_field_type) == 0,
3459 "Custom packet header field is of the expected type");
3460 ok(!bt_ctf_field_unsigned_integer_set_value(packet_header_field,
3461 54321), "Set custom packet header value successfully");
3462 ok(bt_ctf_stream_set_packet_header(stream1, NULL) < 0,
3463 "bt_ctf_stream_set_packet_header handles a NULL packet header correctly");
3464 ok(bt_ctf_stream_set_packet_header(NULL, packet_header) < 0,
3465 "bt_ctf_stream_set_packet_header handles a NULL stream correctly");
3466 ok(bt_ctf_stream_set_packet_header(stream1, packet_header_field) < 0,
3467 "bt_ctf_stream_set_packet_header rejects a packet header of the wrong type");
3468 ok(!bt_ctf_stream_set_packet_header(stream1, packet_header),
3469 "Successfully set a stream's packet header");
3470
3471 ok(bt_ctf_writer_add_environment_field(writer, "new_field", "test") == 0,
3472 "Add environment field to writer after stream creation");
3473
3474 test_clock_utils();
3475
3476 test_create_writer_vs_non_writer_mode();
3477
3478 test_set_clock_non_writer_stream_class();
3479
3480 test_instanciate_event_before_stream(writer, clock);
3481
3482 append_simple_event(stream_class, stream1, clock);
3483
3484 packet_resize_test(stream_class, stream1, clock);
3485
3486 append_complex_event(stream_class, stream1, clock);
3487
3488 append_existing_event_class(stream_class);
3489
3490 test_empty_stream(writer);
3491
3492 test_custom_event_header_stream(writer, clock);
3493
3494 test_static_trace();
3495
3496 test_trace_uuid();
3497
3498 metadata_string = bt_ctf_writer_get_metadata_string(writer);
3499 ok(metadata_string, "Get metadata string");
3500
3501 bt_ctf_writer_flush_metadata(writer);
3502
3503 bt_put(clock);
3504 bt_put(ret_stream_class);
3505 bt_put(writer);
3506 bt_put(stream1);
3507 bt_put(packet_context_type);
3508 bt_put(packet_context_field_type);
3509 bt_put(integer_type);
3510 bt_put(stream_event_context_type);
3511 bt_put(ret_field_type);
3512 bt_put(packet_header_type);
3513 bt_put(packet_header_field_type);
3514 bt_put(packet_header);
3515 bt_put(packet_header_field);
3516 bt_put(trace);
3517 free(metadata_string);
3518 bt_put(stream_class);
3519
3520 validate_trace(argv[1], trace_path);
3521
3522 //recursive_rmdir(trace_path);
3523 return 0;
3524 }
This page took 0.18929 seconds and 5 git commands to generate.