tests/tracing: add DST extra packet context FT members test
authorPhilippe Proulx <eeppeliteloop@gmail.com>
Fri, 25 Sep 2020 00:12:17 +0000 (20:12 -0400)
committerPhilippe Proulx <eeppeliteloop@gmail.com>
Fri, 25 Sep 2020 00:12:17 +0000 (20:12 -0400)
Signed-off-by: Philippe Proulx <eeppeliteloop@gmail.com>
tests/tracing/configs/basic-extra-pc-ft-members/extra-pc-ft-members/extra-pc-ft-members.yaml [new file with mode: 0644]
tests/tracing/expect/basic-extra-pc-ft-members/extra-pc-ft-members/extra-pc-ft-members.data.expect [new file with mode: 0644]
tests/tracing/expect/basic-extra-pc-ft-members/extra-pc-ft-members/extra-pc-ft-members.metadata.expect [new file with mode: 0644]
tests/tracing/src/basic-extra-pc-ft-members/extra-pc-ft-members/extra-pc-ft-members.c [new file with mode: 0644]
tests/tracing/support/basic-extra-pc-ft-members/Makefile [new file with mode: 0644]
tests/tracing/support/basic-extra-pc-ft-members/base.yaml [new file with mode: 0644]
tests/tracing/support/basic-extra-pc-ft-members/test-platform.c [new file with mode: 0644]
tests/tracing/support/basic-extra-pc-ft-members/test-platform.h [new file with mode: 0644]

diff --git a/tests/tracing/configs/basic-extra-pc-ft-members/extra-pc-ft-members/extra-pc-ft-members.yaml b/tests/tracing/configs/basic-extra-pc-ft-members/extra-pc-ft-members/extra-pc-ft-members.yaml
new file mode 100644 (file)
index 0000000..5e0ea1b
--- /dev/null
@@ -0,0 +1,29 @@
+# The MIT License (MIT)
+#
+# Copyright (c) 2020 Philippe Proulx <pproulx@efficios.com>
+#
+# Permission is hereby granted, free of charge, to any person obtaining
+# a copy of this software and associated documentation files (the
+# "Software"), to deal in the Software without restriction, including
+# without limitation the rights to use, copy, modify, merge, publish,
+# distribute, sublicense, and/or sell copies of the Software, and to
+# permit persons to whom the Software is furnished to do so, subject to
+# the following conditions:
+#
+# The above copyright notice and this permission notice shall be
+# included in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+%YAML 1.2
+--- !<tag:barectf.org,2020/3/config>
+trace:
+  type:
+    $include:
+      - base.yaml
diff --git a/tests/tracing/expect/basic-extra-pc-ft-members/extra-pc-ft-members/extra-pc-ft-members.data.expect b/tests/tracing/expect/basic-extra-pc-ft-members/extra-pc-ft-members/extra-pc-ft-members.data.expect
new file mode 100644 (file)
index 0000000..b43ca4c
Binary files /dev/null and b/tests/tracing/expect/basic-extra-pc-ft-members/extra-pc-ft-members/extra-pc-ft-members.data.expect differ
diff --git a/tests/tracing/expect/basic-extra-pc-ft-members/extra-pc-ft-members/extra-pc-ft-members.metadata.expect b/tests/tracing/expect/basic-extra-pc-ft-members/extra-pc-ft-members/extra-pc-ft-members.metadata.expect
new file mode 100644 (file)
index 0000000..f35b802
--- /dev/null
@@ -0,0 +1,109 @@
+/* CTF 1.8 */
+
+/*
+ * The MIT License (MIT)
+ *
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining
+ * a copy of this software and associated documentation files (the
+ * "Software"), to deal in the Software without restriction, including
+ * without limitation the rights to use, copy, modify, merge, publish,
+ * distribute, sublicense, and/or sell copies of the Software, and to
+ * permit persons to whom the Software is furnished to do so, subject to
+ * the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be
+ * included in all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
+ * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ *
+ * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
+ *
+ *
+ * For more details, see <https://barectf.org/>.
+ */
+
+trace {
+       major = 1;
+       minor = 8;
+       byte_order = le;
+       packet.header := struct {
+               integer {
+                       signed = false;
+                       size = 32;
+                       align = 8;
+                       byte_order = native;
+                       base = 10;
+               } magic;
+               integer {
+                       signed = false;
+                       size = 64;
+                       align = 8;
+                       byte_order = native;
+                       base = 10;
+               } stream_id;
+       } align(8);
+};
+
+env {
+       domain = "bare";
+       tracer_name = "barectf";
+};
+
+/* Data stream type `default` */
+stream {
+       id = 0;
+       packet.context := struct {
+               integer {
+                       signed = false;
+                       size = 64;
+                       align = 8;
+                       byte_order = native;
+                       base = 10;
+               } packet_size;
+               integer {
+                       signed = false;
+                       size = 64;
+                       align = 8;
+                       byte_order = native;
+                       base = 10;
+               } content_size;
+               integer {
+                       signed = false;
+                       size = 32;
+                       align = 8;
+                       byte_order = native;
+                       base = 10;
+               } a;
+               string {
+                       encoding = UTF8;
+               } b;
+       } align(8);
+       event.header := struct {
+               integer {
+                       signed = false;
+                       size = 64;
+                       align = 8;
+                       byte_order = native;
+                       base = 10;
+               } id;
+       } align(8);
+};
+
+event {
+       stream_id = 0;
+       id = 0;
+       name = "dummy";
+       fields := struct {
+               string {
+                       encoding = UTF8;
+               } u;
+       } align(1);
+};
diff --git a/tests/tracing/src/basic-extra-pc-ft-members/extra-pc-ft-members/extra-pc-ft-members.c b/tests/tracing/src/basic-extra-pc-ft-members/extra-pc-ft-members/extra-pc-ft-members.c
new file mode 100644 (file)
index 0000000..97f04b6
--- /dev/null
@@ -0,0 +1,40 @@
+/*
+ * The MIT License (MIT)
+ *
+ * Copyright (c) 2020 Philippe Proulx <pproulx@efficios.com>
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining
+ * a copy of this software and associated documentation files (the
+ * "Software"), to deal in the Software without restriction, including
+ * without limitation the rights to use, copy, modify, merge, publish,
+ * distribute, sublicense, and/or sell copies of the Software, and to
+ * permit persons to whom the Software is furnished to do so, subject to
+ * the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be
+ * included in all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
+ * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+
+#include <assert.h>
+#include <stdint.h>
+
+#include "test-platform.h"
+#include "barectf.h"
+
+int main(void)
+{
+       struct test_platform_ctx * const platform_ctx = test_platform_init(512);
+
+       assert(platform_ctx);
+       test_platform_fini(platform_ctx);
+       return 0;
+}
diff --git a/tests/tracing/support/basic-extra-pc-ft-members/Makefile b/tests/tracing/support/basic-extra-pc-ft-members/Makefile
new file mode 100644 (file)
index 0000000..a572962
--- /dev/null
@@ -0,0 +1,31 @@
+# The MIT License (MIT)
+#
+# Copyright (c) 2016-2020 Philippe Proulx <pproulx@efficios.com>
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+CFLAGS += -O0 -g -Wall -pedantic -Wno-unused-function
+TARGET = test
+OBJS = $(TARGET).o barectf.o test-platform.o
+
+$(TARGET): $(OBJS)
+       $(CC) -o $@ $(LDFLAGS) $^
+
+barectf.o: barectf.c
+       $(CC) $(CFLAGS) -ansi -c $<
diff --git a/tests/tracing/support/basic-extra-pc-ft-members/base.yaml b/tests/tracing/support/basic-extra-pc-ft-members/base.yaml
new file mode 100644 (file)
index 0000000..1f571b3
--- /dev/null
@@ -0,0 +1,23 @@
+native-byte-order: le
+data-stream-types:
+  default:
+    $is-default: true
+    $features:
+      packet:
+        discarded-event-records-counter-snapshot-field-type: false
+    packet-context-field-type-extra-members:
+      - a:
+          field-type:
+            class: uint
+            size: 32
+      - b:
+          field-type:
+            class: str
+    event-record-types:
+      dummy:
+        payload-field-type:
+          class: struct
+          members:
+            - u:
+                field-type:
+                  class: str
diff --git a/tests/tracing/support/basic-extra-pc-ft-members/test-platform.c b/tests/tracing/support/basic-extra-pc-ft-members/test-platform.c
new file mode 100644 (file)
index 0000000..b1f61b8
--- /dev/null
@@ -0,0 +1,103 @@
+/*
+ * Copyright (c) 2020 Philippe Proulx <pproulx@efficios.com>
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <stdint.h>
+#include <string.h>
+#include <assert.h>
+
+#include "barectf.h"
+#include "test-platform.h"
+
+struct test_platform_ctx {
+       struct barectf_default_ctx ctx;
+       FILE *fh;
+};
+
+static void write_packet(struct test_platform_ctx * const platform_ctx)
+{
+       const size_t nmemb = fwrite(barectf_packet_buf(&platform_ctx->ctx),
+               barectf_packet_buf_size(&platform_ctx->ctx), 1,
+                       platform_ctx->fh);
+
+       assert(nmemb == 1);
+}
+
+static int is_backend_full(void * const data)
+{
+       return 0;
+}
+
+static void open_packet(void * const data)
+{
+       struct test_platform_ctx * const platform_ctx = (void *) data;
+
+       memset(barectf_packet_buf(&platform_ctx->ctx), 0,
+               barectf_packet_buf_size(&platform_ctx->ctx));
+       barectf_default_open_packet(&platform_ctx->ctx, 23, "salut");
+}
+
+static void close_packet(void * const data)
+{
+       struct test_platform_ctx * const platform_ctx = (void *) data;
+
+       barectf_default_close_packet(&platform_ctx->ctx);
+       write_packet(platform_ctx);
+}
+
+struct test_platform_ctx *test_platform_init(const size_t buf_size)
+{
+       uint8_t *buf;
+       struct test_platform_ctx *platform_ctx;
+       struct barectf_platform_callbacks cbs;
+
+       cbs.is_backend_full = is_backend_full;
+       cbs.open_packet = open_packet;
+       cbs.close_packet = close_packet;
+       platform_ctx = malloc(sizeof(*platform_ctx));
+       assert(platform_ctx);
+       buf = malloc(buf_size);
+       assert(buf);
+       platform_ctx->fh = fopen("stream", "wb");
+       assert(platform_ctx->fh);
+       barectf_init(&platform_ctx->ctx, buf, buf_size, cbs, platform_ctx);
+       open_packet(platform_ctx);
+       return platform_ctx;
+}
+
+void test_platform_fini(struct test_platform_ctx * const platform_ctx)
+{
+       if (barectf_packet_is_open(&platform_ctx->ctx)) {
+               close_packet(platform_ctx);
+       }
+
+       fclose(platform_ctx->fh);
+       free(barectf_packet_buf(&platform_ctx->ctx));
+       free(platform_ctx);
+}
+
+struct barectf_default_ctx *test_platform_barectf_ctx(
+       struct test_platform_ctx * const platform_ctx)
+{
+       return &platform_ctx->ctx;
+}
diff --git a/tests/tracing/support/basic-extra-pc-ft-members/test-platform.h b/tests/tracing/support/basic-extra-pc-ft-members/test-platform.h
new file mode 100644 (file)
index 0000000..53e033d
--- /dev/null
@@ -0,0 +1,36 @@
+#ifndef _BARECTF_TEST_PLATFORM_H
+#define _BARECTF_TEST_PLATFORM_H
+
+/*
+ * Copyright (c) 2020 Philippe Proulx <pproulx@efficios.com>
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+
+#include <stdlib.h>
+
+struct test_platform_ctx;
+struct barectf_default_ctx;
+
+struct test_platform_ctx *test_platform_init(size_t buf_size);
+void test_platform_fini(struct test_platform_ctx *platform_ctx);
+struct barectf_default_ctx *test_platform_barectf_ctx(
+       struct test_platform_ctx *platform_ctx);
+
+#endif /* _BARECTF_TEST_PLATFORM_H */
This page took 0.029562 seconds and 4 git commands to generate.