1 /* GLib testing framework examples and tests
3 * Copyright (C) 2008-2010 Red Hat, Inc.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General
16 * Public License along with this library; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18 * Boston, MA 02111-1307, USA.
20 * Author: David Zeuthen <davidz@redhat.com>
27 #include "gdbus-tests.h"
29 /* all tests rely on a shared mainloop */
30 static GMainLoop *loop = NULL;
32 /* ---------------------------------------------------------------------------------------------------- */
33 /* Test introspection parser */
34 /* ---------------------------------------------------------------------------------------------------- */
37 test_introspection (GDBusProxy *proxy)
40 const gchar *xml_data;
41 GDBusNodeInfo *node_info;
42 GDBusInterfaceInfo *interface_info;
43 GDBusMethodInfo *method_info;
44 GDBusSignalInfo *signal_info;
50 * Invoke Introspect(), then parse the output.
52 result = g_dbus_proxy_call_sync (proxy,
53 "org.freedesktop.DBus.Introspectable.Introspect",
55 G_DBUS_CALL_FLAGS_NONE,
59 g_assert_no_error (error);
60 g_assert (result != NULL);
61 g_variant_get (result, "(&s)", &xml_data);
63 node_info = g_dbus_node_info_new_for_xml (xml_data, &error);
64 g_assert_no_error (error);
65 g_assert (node_info != NULL);
67 /* for now we only check a couple of things. TODO: check more things */
69 interface_info = g_dbus_node_info_lookup_interface (node_info, "com.example.NonExistantInterface");
70 g_assert (interface_info == NULL);
72 interface_info = g_dbus_node_info_lookup_interface (node_info, "org.freedesktop.DBus.Introspectable");
73 g_assert (interface_info != NULL);
74 method_info = g_dbus_interface_info_lookup_method (interface_info, "NonExistantMethod");
75 g_assert (method_info == NULL);
76 method_info = g_dbus_interface_info_lookup_method (interface_info, "Introspect");
77 g_assert (method_info != NULL);
78 g_assert (method_info->in_args != NULL);
79 g_assert (method_info->in_args[0] == NULL);
80 g_assert (method_info->out_args != NULL);
81 g_assert (method_info->out_args[0] != NULL);
82 g_assert (method_info->out_args[1] == NULL);
83 g_assert_cmpstr (method_info->out_args[0]->signature, ==, "s");
85 interface_info = g_dbus_node_info_lookup_interface (node_info, "com.example.Frob");
86 g_assert (interface_info != NULL);
87 signal_info = g_dbus_interface_info_lookup_signal (interface_info, "TestSignal");
88 g_assert (signal_info != NULL);
89 g_assert (signal_info->args != NULL);
90 g_assert (signal_info->args[0] != NULL);
91 g_assert_cmpstr (signal_info->args[0]->signature, ==, "s");
92 g_assert (signal_info->args[1] != NULL);
93 g_assert_cmpstr (signal_info->args[1]->signature, ==, "o");
94 g_assert (signal_info->args[2] != NULL);
95 g_assert_cmpstr (signal_info->args[2]->signature, ==, "v");
96 g_assert (signal_info->args[3] == NULL);
98 g_dbus_node_info_unref (node_info);
99 g_variant_unref (result);
101 g_main_loop_quit (loop);
105 test_introspection_parser (void)
108 GDBusConnection *connection;
112 connection = g_bus_get_sync (G_BUS_TYPE_SESSION,
115 g_assert_no_error (error);
117 proxy = g_dbus_proxy_new_sync (connection,
118 G_DBUS_PROXY_FLAGS_NONE,
119 NULL, /* GDBusInterfaceInfo */
120 "com.example.TestService", /* name */
121 "/com/example/TestObject", /* object path */
122 "com.example.Frob", /* interface */
123 NULL, /* GCancellable */
125 g_assert_no_error (error);
127 /* this is safe; testserver will exit once the bus goes away */
128 g_assert (g_spawn_command_line_async ("./gdbus-testserver", NULL));
130 _g_assert_property_notify (proxy, "g-name-owner");
132 test_introspection (proxy);
134 g_object_unref (proxy);
135 g_object_unref (connection);
138 /* check that a parse-generate roundtrip produces identical results
144 GDBusNodeInfo *info2;
145 GDBusInterfaceInfo *iinfo;
146 GDBusMethodInfo *minfo;
147 GDBusSignalInfo *sinfo;
148 GDBusArgInfo *arginfo;
149 GDBusPropertyInfo *pinfo;
150 GDBusAnnotationInfo *aninfo;
153 " <interface name='com.example.Frob'>"
154 " <annotation name='foo' value='bar'/>"
155 " <method name='PairReturn'>"
156 " <annotation name='org.freedesktop.DBus.GLib.Async' value=''/>"
157 " <arg type='u' name='somenumber' direction='in'/>"
158 " <arg type='s' name='somestring' direction='out'/>"
160 " <signal name='HelloWorld'>"
161 " <arg type='s' name='greeting' direction='out'/>"
163 " <method name='Sleep'>"
164 " <arg type='i' name='timeout' direction='in'/>"
166 " <property name='y' type='y' access='readwrite'/>"
175 info = g_dbus_node_info_new_for_xml (data, &error);
176 g_assert_no_error (error);
178 iinfo = g_dbus_node_info_lookup_interface (info, "com.example.Frob");
179 aninfo = iinfo->annotations[0];
180 g_assert_cmpstr (aninfo->key, ==, "foo");
181 g_assert_cmpstr (aninfo->value, ==, "bar");
182 g_assert (iinfo->annotations[1] == NULL);
183 minfo = g_dbus_interface_info_lookup_method (iinfo, "PairReturn");
184 g_assert_cmpstr (g_dbus_annotation_info_lookup (minfo->annotations, "org.freedesktop.DBus.GLib.Async"), ==, "");
185 arginfo = minfo->in_args[0];
186 g_assert_cmpstr (arginfo->name, ==, "somenumber");
187 g_assert_cmpstr (arginfo->signature, ==, "u");
188 g_assert (minfo->in_args[1] == NULL);
189 arginfo = minfo->out_args[0];
190 g_assert_cmpstr (arginfo->name, ==, "somestring");
191 g_assert_cmpstr (arginfo->signature, ==, "s");
192 g_assert (minfo->out_args[1] == NULL);
193 sinfo = g_dbus_interface_info_lookup_signal (iinfo, "HelloWorld");
194 arginfo = sinfo->args[0];
195 g_assert_cmpstr (arginfo->name, ==, "greeting");
196 g_assert_cmpstr (arginfo->signature, ==, "s");
197 g_assert (sinfo->args[1] == NULL);
198 pinfo = g_dbus_interface_info_lookup_property (iinfo, "y");
199 g_assert_cmpstr (pinfo->signature, ==, "y");
200 g_assert_cmpint (pinfo->flags, ==, G_DBUS_PROPERTY_INFO_FLAGS_READABLE |
201 G_DBUS_PROPERTY_INFO_FLAGS_WRITABLE);
203 string = g_string_new ("");
204 g_dbus_node_info_generate_xml (info, 2, string);
206 info2 = g_dbus_node_info_new_for_xml (string->str, &error);
207 string2 = g_string_new ("");
208 g_dbus_node_info_generate_xml (info2, 2, string2);
210 g_assert_cmpstr (string->str, ==, string2->str);
211 g_string_free (string, TRUE);
212 g_string_free (string2, TRUE);
214 g_dbus_node_info_unref (info);
215 g_dbus_node_info_unref (info2);
218 /* test that omitted direction attributes default to 'out' for signals,
219 * and 'in' for methods.
222 test_default_direction (void)
225 GDBusInterfaceInfo *iinfo;
226 GDBusMethodInfo *minfo;
227 GDBusSignalInfo *sinfo;
228 GDBusArgInfo *arginfo;
231 " <interface name='com.example.Frob'>"
232 " <signal name='HelloWorld'>"
233 " <arg type='s' name='greeting'/>"
235 " <method name='Sleep'>"
236 " <arg type='i' name='timeout'/>"
244 info = g_dbus_node_info_new_for_xml (data, &error);
245 g_assert_no_error (error);
247 iinfo = g_dbus_node_info_lookup_interface (info, "com.example.Frob");
248 sinfo = g_dbus_interface_info_lookup_signal (iinfo, "HelloWorld");
249 g_assert (sinfo->args != NULL);
250 arginfo = sinfo->args[0];
251 g_assert_cmpstr (arginfo->name, ==, "greeting");
252 g_assert (sinfo->args[1] == NULL);
253 minfo = g_dbus_interface_info_lookup_method (iinfo, "Sleep");
254 g_assert (minfo->in_args != NULL);
255 arginfo = minfo->in_args[0];
256 g_assert_cmpstr (arginfo->name, ==, "timeout");
257 g_assert (minfo->in_args[1] == NULL);
259 g_dbus_node_info_unref (info);
263 /* XXX: need to figure out how generous we want to be here */
264 /* test that extraneous attributes are ignored
267 test_extra_data (void)
272 " <interface name='com.example.Frob' version='1.0'>"
273 " <annotation name='foo' value='bar' extra='bla'/>"
274 " <method name='PairReturn' anotherattribute='bla'>"
275 " <annotation name='org.freedesktop.DBus.GLib.Async' value=''/>"
276 " <arg type='u' name='somenumber' direction='in' spin='left'/>"
277 " <arg type='s' name='somestring' direction='out'/>"
279 " <signal name='HelloWorld'>"
280 " <arg type='s' name='somestring'/>"
282 " <method name='Sleep'>"
283 " <arg type='i' name='timeout' direction='in'/>"
285 " <property name='y' type='y' access='readwrite'/>"
291 info = g_dbus_node_info_new_for_xml (data, &error);
292 g_assert_no_error (error);
294 g_dbus_node_info_unref (info);
298 /* ---------------------------------------------------------------------------------------------------- */
306 g_test_init (&argc, &argv, NULL);
308 /* all the tests rely on a shared main loop */
309 loop = g_main_loop_new (NULL, FALSE);
313 g_test_add_func ("/gdbus/introspection-parser", test_introspection_parser);
314 g_test_add_func ("/gdbus/introspection-generate", test_generate);
315 g_test_add_func ("/gdbus/introspection-default-direction", test_default_direction);
317 /* XXX: need to figure out how generous we want to be here */
318 g_test_add_func ("/gdbus/introspection-extra-data", test_extra_data);