summaryrefslogtreecommitdiffstats
path: root/src/libsystemd/sd-bus/test-bus-introspect.c
blob: 3c026aedb98455959b546b6bed40e375d8e93f64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/* SPDX-License-Identifier: LGPL-2.1-or-later */

#include "bus-introspect.h"
#include "log.h"
#include "tests.h"

#include "test-vtable-data.h"

static void test_manual_introspection_one(const sd_bus_vtable vtable[]) {
        struct introspect intro = {};
        _cleanup_free_ char *s = NULL;

        log_info("/* %s */", __func__);

        assert_se(introspect_begin(&intro, false) >= 0);

        assert_se(introspect_write_interface(&intro, "org.foo", vtable) >= 0);
        /* write again to check if output looks OK for a different interface */
        assert_se(introspect_write_interface(&intro, "org.foo.bar", vtable) >= 0);
        assert_se(introspect_finish(&intro, &s) == 0);

        fputs(s, stdout);
        fputs("\n", stdout);
}

TEST(manual_introspection) {
        test_manual_introspection_one(test_vtable_1);
        test_manual_introspection_one(test_vtable_2);
        test_manual_introspection_one(test_vtable_deprecated);
        test_manual_introspection_one((const sd_bus_vtable *) vtable_format_221);
}

DEFINE_TEST_MAIN(LOG_DEBUG);