Bug 621213 – GDBusProxy and well-known names
[platform/upstream/glib.git] / gio / tests / gdbus-introspection.c
1 /* GLib testing framework examples and tests
2  *
3  * Copyright (C) 2008-2010 Red Hat, Inc.
4  *
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.
9  *
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.
14  *
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.
19  *
20  * Author: David Zeuthen <davidz@redhat.com>
21  */
22
23 #include <gio/gio.h>
24 #include <unistd.h>
25 #include <string.h>
26
27 #include "gdbus-tests.h"
28
29 /* all tests rely on a shared mainloop */
30 static GMainLoop *loop = NULL;
31
32 /* ---------------------------------------------------------------------------------------------------- */
33 /* Test introspection parser */
34 /* ---------------------------------------------------------------------------------------------------- */
35
36 static void
37 test_introspection (GDBusProxy *proxy)
38 {
39   GError *error;
40   const gchar *xml_data;
41   GDBusNodeInfo *node_info;
42   const GDBusInterfaceInfo *interface_info;
43   const GDBusMethodInfo *method_info;
44   const GDBusSignalInfo *signal_info;
45   GVariant *result;
46
47   error = NULL;
48
49   /*
50    * Invoke Introspect(), then parse the output.
51    */
52   result = g_dbus_proxy_call_sync (proxy,
53                                    "org.freedesktop.DBus.Introspectable.Introspect",
54                                    NULL,
55                                    G_DBUS_CALL_FLAGS_NONE,
56                                    -1,
57                                    NULL,
58                                    &error);
59   g_assert_no_error (error);
60   g_assert (result != NULL);
61   g_variant_get (result, "(&s)", &xml_data);
62
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);
66
67   /* for now we only check a couple of things. TODO: check more things */
68
69   interface_info = g_dbus_node_info_lookup_interface (node_info, "com.example.NonExistantInterface");
70   g_assert (interface_info == NULL);
71
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->out_args != NULL);
80   g_assert (method_info->out_args[0] != NULL);
81   g_assert (method_info->out_args[1] == NULL);
82   g_assert_cmpstr (method_info->out_args[0]->signature, ==, "s");
83
84   interface_info = g_dbus_node_info_lookup_interface (node_info, "com.example.Frob");
85   g_assert (interface_info != NULL);
86   signal_info = g_dbus_interface_info_lookup_signal (interface_info, "TestSignal");
87   g_assert (signal_info != NULL);
88   g_assert (signal_info->args != NULL);
89   g_assert (signal_info->args[0] != NULL);
90   g_assert_cmpstr (signal_info->args[0]->signature, ==, "s");
91   g_assert (signal_info->args[1] != NULL);
92   g_assert_cmpstr (signal_info->args[1]->signature, ==, "o");
93   g_assert (signal_info->args[2] != NULL);
94   g_assert_cmpstr (signal_info->args[2]->signature, ==, "v");
95   g_assert (signal_info->args[3] == NULL);
96
97   g_dbus_node_info_unref (node_info);
98   g_variant_unref (result);
99
100   g_main_loop_quit (loop);
101 }
102
103 static void
104 test_introspection_parser (void)
105 {
106   GDBusProxy *proxy;
107   GDBusConnection *connection;
108   GError *error;
109
110   session_bus_up ();
111
112   /* TODO: wait a bit for the bus to come up.. ideally session_bus_up() won't return
113    * until one can connect to the bus but that's not how things work right now
114    */
115   usleep (500 * 1000);
116
117   error = NULL;
118   connection = g_bus_get_sync (G_BUS_TYPE_SESSION,
119                                NULL,
120                                &error);
121   g_assert_no_error (error);
122   error = NULL;
123   proxy = g_dbus_proxy_new_sync (connection,
124                                  G_DBUS_PROXY_FLAGS_NONE,
125                                  NULL,                      /* GDBusInterfaceInfo */
126                                  "com.example.TestService", /* name */
127                                  "/com/example/TestObject", /* object path */
128                                  "com.example.Frob",        /* interface */
129                                  NULL, /* GCancellable */
130                                  &error);
131   g_assert_no_error (error);
132
133   /* this is safe; testserver will exit once the bus goes away */
134   g_assert (g_spawn_command_line_async (SRCDIR "/gdbus-testserver.py", NULL));
135
136   _g_assert_property_notify (proxy, "g-name-owner");
137
138   test_introspection (proxy);
139
140   g_object_unref (proxy);
141   g_object_unref (connection);
142 }
143
144 /* ---------------------------------------------------------------------------------------------------- */
145
146 int
147 main (int   argc,
148       char *argv[])
149 {
150   g_type_init ();
151   g_test_init (&argc, &argv, NULL);
152
153   /* all the tests rely on a shared main loop */
154   loop = g_main_loop_new (NULL, FALSE);
155
156   /* all the tests use a session bus with a well-known address that we can bring up and down
157    * using session_bus_up() and session_bus_down().
158    */
159   g_unsetenv ("DISPLAY");
160   g_setenv ("DBUS_SESSION_BUS_ADDRESS", session_bus_get_temporary_address (), TRUE);
161
162   g_test_add_func ("/gdbus/introspection-parser", test_introspection_parser);
163   return g_test_run();
164 }