[vala/0.52] tests: Add more "DBus" tests to increase coverage
- From: Rico Tzschichholz <ricotz src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [vala/0.52] tests: Add more "DBus" tests to increase coverage
- Date: Mon, 26 Apr 2021 10:58:17 +0000 (UTC)
commit 2626014834e01f871dc79e20ef86f97207a7b4fa
Author: Rico Tzschichholz <ricotz ubuntu com>
Date: Mon Apr 19 19:15:17 2021 +0200
tests: Add more "DBus" tests to increase coverage
tests/Makefile.am | 2 ++
tests/dbus/dbus-name-missing.test | 9 ++++++
tests/dbus/generics.test | 61 +++++++++++++++++++++++++++++++++++++++
3 files changed, 72 insertions(+)
---
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 0dea39dee..e6bb3f81a 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -704,8 +704,10 @@ TESTS = \
dbus/async-connection.test \
dbus/async-errors.test \
dbus/connection.test \
+ dbus/dbus-name-missing.test \
dbus/dynamic-method.test \
dbus/enum-string-marshalling.vala \
+ dbus/generics.test \
dbus/signals.test \
dbus/filedescriptor.test \
dbus/filedescriptor-async.test \
diff --git a/tests/dbus/dbus-name-missing.test b/tests/dbus/dbus-name-missing.test
new file mode 100644
index 000000000..5da397fe7
--- /dev/null
+++ b/tests/dbus/dbus-name-missing.test
@@ -0,0 +1,9 @@
+Invalid Code
+
+class Test : Object {
+}
+
+void main () {
+ var conn = Bus.get_sync (BusType.SESSION);
+ conn.register_object<Test> ("/org/example/test", new Test ());
+}
diff --git a/tests/dbus/generics.test b/tests/dbus/generics.test
new file mode 100644
index 000000000..732d6a8a0
--- /dev/null
+++ b/tests/dbus/generics.test
@@ -0,0 +1,61 @@
+Packages: gio-2.0
+D-Bus
+
+Program: client
+
+[DBus (name = "org.example.Test")]
+interface Test : Object {
+ public abstract int get_test () throws DBusError, IOError;
+}
+
+T call<T> (DBusConnection conn, string name, string object_path) {
+ return conn.get_proxy_sync<T> (name, object_path);
+}
+
+void main () {
+ // client
+ var conn = Bus.get_sync (BusType.SESSION);
+
+ var test = call<Test> (conn, "org.example.Test", "/org/example/test");
+ int i = test.get_test ();
+ assert (i == 23);
+}
+
+Program: server
+
+[DBus (name = "org.example.Test")]
+class Test : Object {
+ public int get_test () throws DBusError, IOError {
+ return 23;
+ }
+}
+
+MainLoop main_loop;
+
+void client_exit (Pid pid, int status) {
+ // client finished, terminate server
+ assert (status == 0);
+ main_loop.quit ();
+}
+
+void reg<T> (DBusConnection conn, T t) throws Error {
+ conn.register_object<T> ("/org/example/test", t);
+}
+
+void main () {
+ var conn = Bus.get_sync (BusType.SESSION);
+ reg (conn, new Test ());
+
+ // try to register service in session bus
+ var request_result = conn.call_sync ("org.freedesktop.DBus", "/org/freedesktop/DBus",
"org.freedesktop.DBus", "RequestName",
+ new Variant ("(su)", "org.example.Test", 0x4), null, 0, -1);
+ assert ((uint) request_result.get_child_value (0) == 1);
+
+ // server ready, spawn client
+ Pid client_pid;
+ Process.spawn_async (null, { "dbus_generics_client" }, null, SpawnFlags.DO_NOT_REAP_CHILD, null, out
client_pid);
+ ChildWatch.add (client_pid, client_exit);
+
+ main_loop = new MainLoop ();
+ main_loop.run ();
+}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]