chiark / gitweb /
bus: add kdbus test case
authorLennart Poettering <lennart@poettering.net>
Thu, 11 Apr 2013 22:26:12 +0000 (00:26 +0200)
committerLennart Poettering <lennart@poettering.net>
Thu, 11 Apr 2013 22:26:12 +0000 (00:26 +0200)
.gitignore
Makefile.am
src/libsystemd-bus/bus-message.h
src/libsystemd-bus/test-bus-kernel.c [new file with mode: 0644]

index 8ca7ae89236f03957ac0aadd87af4845240a4919..c1fe85d656b46852a757ec9e76edd82552966e65 100644 (file)
@@ -82,6 +82,7 @@
 /systemd-vconsole-setup
 /tags
 /test-bus-chat
+/test-bus-kernel
 /test-bus-marshal
 /test-bus-match
 /test-bus-signature
index ae58c16969da1e2b83e5b25028d1d920322e38b5..117bbf36765a5444b761002a4b15f873af783200 100644 (file)
@@ -1724,7 +1724,8 @@ noinst_tests += \
        test-bus-signature \
        test-bus-chat \
        test-bus-server \
-       test-bus-match
+       test-bus-match \
+       test-bus-kernel
 
 noinst_PROGRAMS += \
        busctl
@@ -1785,6 +1786,17 @@ test_bus_match_LDADD = \
        libsystemd-bus.la \
        libsystemd-id128-internal.la
 
+test_bus_kernel_SOURCES = \
+       src/libsystemd-bus/test-bus-kernel.c
+
+test_bus_kernel_CFLAGS = \
+       $(AM_CFLAGS)
+
+test_bus_kernel_LDADD = \
+       libsystemd-shared.la \
+       libsystemd-bus.la \
+       libsystemd-id128-internal.la
+
 busctl_SOURCES = \
        src/libsystemd-bus/busctl.c
 
index 3d1bb623342904e750bbe89dd04b7f3e505b7481..d1ab5484ba2b3de5198206f1378d41fc69aad28a 100644 (file)
@@ -28,6 +28,7 @@
 #include "macro.h"
 #include "sd-bus.h"
 #include "kdbus.h"
+#include "time-util.h"
 
 struct bus_container {
         char enclosing;
diff --git a/src/libsystemd-bus/test-bus-kernel.c b/src/libsystemd-bus/test-bus-kernel.c
new file mode 100644 (file)
index 0000000..143b9d5
--- /dev/null
@@ -0,0 +1,71 @@
+/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
+
+/***
+  This file is part of systemd.
+
+  Copyright 2013 Lennart Poettering
+
+  systemd is free software; you can redistribute it and/or modify it
+  under the terms of the GNU Lesser General Public License as published by
+  the Free Software Foundation; either version 2.1 of the License, or
+  (at your option) any later version.
+
+  systemd is distributed in the hope that it will be useful, but
+  WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+  Lesser General Public License for more details.
+
+  You should have received a copy of the GNU Lesser General Public License
+  along with systemd; If not, see <http://www.gnu.org/licenses/>.
+***/
+
+#include "util.h"
+
+#include "sd-bus.h"
+#include "bus-message.h"
+#include "bus-error.h"
+#include "bus-kernel.h"
+
+int main(int argc, char *argv[]) {
+        _cleanup_close_ int bus_ref = -1;
+        _cleanup_free_ char *bus_name = NULL, *address = NULL;
+        const char *ua = NULL, *ub = NULL;
+        sd_bus *a, *b;
+        int r;
+
+        bus_ref = bus_kernel_create("deine-mutter", &bus_name);
+        assert_se(bus_ref >= 0);
+
+        address = strappend("kernel:", bus_name);
+        assert_se(address);
+
+        r = sd_bus_new(&a);
+        assert_se(r >= 0);
+
+        r = sd_bus_new(&b);
+        assert_se(r >= 0);
+
+        r = sd_bus_set_address(a, address);
+        assert_se(r >= 0);
+
+        r = sd_bus_set_address(b, address);
+        assert_se(r >= 0);
+
+        r = sd_bus_start(a);
+        assert_se(r >= 0);
+
+        r = sd_bus_start(b);
+        assert_se(r >= 0);
+
+        r = sd_bus_get_unique_name(a, &ua);
+        assert_se(r >= 0);
+
+        printf("unique a: %s", ua);
+
+        r = sd_bus_get_unique_name(b, &ub);
+        assert_se(r >= 0);
+
+        printf("unique b: %s", ub);
+
+        return 0;
+}