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.1 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, see <http://www.gnu.org/licenses/>.
17 *
18 * Author: David Zeuthen <davidz@redhat.com>
19 */
20
21 #include <gio/gio.h>
22
23 #ifdef G_OS_UNIX
24 #include <gio/gunixsocketaddress.h>
25 #endif
26
27 /* ---------------------------------------------------------------------------------------------------- */
28
29 static void
test_empty_address(void)30 test_empty_address (void)
31 {
32 GError *error;
33 error = NULL;
34 g_dbus_address_get_stream_sync ("",
35 NULL,
36 NULL,
37 &error);
38 g_assert_error (error, G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT);
39 g_error_free (error);
40 }
41
42 /* Test that g_dbus_is_supported_address() returns FALSE for an unparseable
43 * address. */
44 static void
test_unsupported_address(void)45 test_unsupported_address (void)
46 {
47 GError *error = NULL;
48
49 g_assert_false (g_dbus_is_supported_address (";", &error));
50 g_assert_error (error, G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT);
51 g_clear_error (&error);
52 }
53
54 static void
assert_is_supported_address(const gchar * address)55 assert_is_supported_address (const gchar *address)
56 {
57 GError *error = NULL;
58
59 g_assert_true (g_dbus_is_address (address));
60
61 g_assert_true (g_dbus_is_supported_address (address, NULL));
62 g_assert_true (g_dbus_is_supported_address (address, &error));
63 g_assert_no_error (error);
64 }
65
66 static void
assert_not_supported_address(const gchar * address)67 assert_not_supported_address (const gchar *address)
68 {
69 GError *error = NULL;
70
71 g_assert_true (g_dbus_is_address (address));
72
73 g_assert_false (g_dbus_is_supported_address (address, NULL));
74 g_assert_false (g_dbus_is_supported_address (address, &error));
75 g_assert_error (error, G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT);
76 g_clear_error (&error);
77 }
78
79 /* Test that g_dbus_is_address() returns FALSE for various differently invalid
80 * input strings. */
81 static void
test_address_parsing(void)82 test_address_parsing (void)
83 {
84 assert_not_supported_address ("some-imaginary-transport:foo=bar");
85 g_assert_true (g_dbus_is_address ("some-imaginary-transport:foo=bar"));
86
87 assert_not_supported_address ("some-imaginary-transport:foo=bar;unix:path=/this/is/valid");
88
89 g_assert_false (g_dbus_is_address (""));
90 g_assert_false (g_dbus_is_address (";"));
91 g_assert_false (g_dbus_is_address (":"));
92 g_assert_false (g_dbus_is_address ("=:;"));
93 g_assert_false (g_dbus_is_address (":=;:="));
94 g_assert_false (g_dbus_is_address ("transport-name:="));
95 g_assert_false (g_dbus_is_address ("transport-name:=bar"));
96
97 g_assert_false (g_dbus_is_address ("transport-name:foo"));
98 g_assert_false (g_dbus_is_address ("transport-name:foo=%00"));
99 g_assert_false (g_dbus_is_address ("transport-name:%00=bar"));
100
101 assert_not_supported_address ("magic-tractor:");
102 }
103
104 static void
test_unix_address(void)105 test_unix_address (void)
106 {
107 #ifndef G_OS_UNIX
108 g_test_skip ("unix transport is not supported on non-Unix platforms");
109 #else
110 assert_is_supported_address ("unix:path=/tmp/dbus-test");
111 assert_is_supported_address ("unix:path=/tmp/dbus-test,guid=0");
112 assert_is_supported_address ("unix:abstract=/tmp/dbus-another-test");
113 assert_is_supported_address ("unix:abstract=/tmp/dbus-another-test,guid=1000");
114 assert_not_supported_address ("unix:foo=bar");
115 g_assert_false (g_dbus_is_address ("unix:path=/foo;abstract=/bar"));
116 assert_is_supported_address ("unix:path=/tmp/concrete;unix:abstract=/tmp/abstract");
117 assert_is_supported_address ("unix:tmpdir=/tmp");
118 assert_is_supported_address ("unix:dir=/tmp");
119 assert_not_supported_address ("unix:tmpdir=/tmp,path=/tmp");
120 assert_not_supported_address ("unix:tmpdir=/tmp,abstract=/tmp/foo");
121 assert_not_supported_address ("unix:tmpdir=/tmp,dir=/tmp");
122 assert_not_supported_address ("unix:path=/tmp,abstract=/tmp/foo");
123 assert_not_supported_address ("unix:path=/tmp,dir=/tmp");
124 assert_not_supported_address ("unix:abstract=/tmp/foo,dir=/tmp");
125 assert_not_supported_address ("unix:");
126 #endif
127 }
128
129 static void
test_nonce_tcp_address(void)130 test_nonce_tcp_address (void)
131 {
132 assert_is_supported_address ("nonce-tcp:host=localhost,port=42,noncefile=/foo/bar");
133 assert_is_supported_address ("nonce-tcp:host=localhost,port=42,noncefile=/foo/bar,guid=0");
134 assert_is_supported_address ("nonce-tcp:host=localhost,port=42,noncefile=/foo/bar,family=ipv6");
135 assert_is_supported_address ("nonce-tcp:host=localhost,port=42,noncefile=/foo/bar,family=ipv4");
136 assert_is_supported_address ("nonce-tcp:host=localhost");
137 assert_is_supported_address ("nonce-tcp:host=localhost,guid=1000");
138
139 assert_not_supported_address ("nonce-tcp:host=localhost,port=42,noncefile=/foo/bar,family=blah");
140 assert_not_supported_address ("nonce-tcp:host=localhost,port=420000,noncefile=/foo/bar,family=ipv4");
141 assert_not_supported_address ("nonce-tcp:host=,port=x42,noncefile=/foo/bar,family=ipv4");
142 assert_not_supported_address ("nonce-tcp:host=,port=42x,noncefile=/foo/bar,family=ipv4");
143 assert_not_supported_address ("nonce-tcp:host=,port=420000,noncefile=/foo/bar,family=ipv4");
144 assert_not_supported_address ("nonce-tcp:meaningless-key=blah");
145 assert_not_supported_address ("nonce-tcp:host=localhost,port=-1");
146 assert_not_supported_address ("nonce-tcp:host=localhost,port=420000");
147 assert_not_supported_address ("nonce-tcp:host=localhost,port=42x");
148 assert_not_supported_address ("nonce-tcp:host=localhost,port=");
149 }
150
151 static void
test_tcp_address(void)152 test_tcp_address (void)
153 {
154 assert_is_supported_address ("tcp:host=localhost");
155 assert_is_supported_address ("tcp:host=localhost,guid=1000");
156 assert_not_supported_address ("tcp:host=localhost,noncefile=/tmp/foo");
157 assert_is_supported_address ("tcp:host=localhost,port=42");
158 assert_is_supported_address ("tcp:host=localhost,port=42,guid=1000");
159 assert_not_supported_address ("tcp:host=localhost,port=-1");
160 assert_not_supported_address ("tcp:host=localhost,port=420000");
161 assert_not_supported_address ("tcp:host=localhost,port=42x");
162 assert_not_supported_address ("tcp:host=localhost,port=");
163 assert_is_supported_address ("tcp:host=localhost,port=42,family=ipv4");
164 assert_is_supported_address ("tcp:host=localhost,port=42,family=ipv6");
165 assert_not_supported_address ("tcp:host=localhost,port=42,family=sopranos");
166 }
167
168 static void
test_autolaunch_address(void)169 test_autolaunch_address (void)
170 {
171 assert_is_supported_address ("autolaunch:");
172 }
173
174 static void
test_mixed_address(void)175 test_mixed_address (void)
176 {
177 assert_is_supported_address ("unix:path=/tmp/dbus1;unix:path=/tmp/dbus2");
178 assert_is_supported_address ("tcp:host=localhost,port=42;autolaunch:");
179 assert_not_supported_address ("tcp:host=localhost,port=42;tcp:family=bla");
180 }
181
182 static const struct { const char *before; const char *after; } escaping[] = {
183 { "foo", "foo" },
184 { "/.\\-_", "/.\\-_" },
185 { "<=>", "%3C%3D%3E" },
186 { "/foo~1", "/foo%7E1" },
187 { "\xe2\x98\xad\xff", "%E2%98%AD%FF" },
188 { NULL, NULL }
189 };
190
191 static void
test_escape_address(void)192 test_escape_address (void)
193 {
194 gsize i;
195
196 for (i = 0; escaping[i].before != NULL; i++)
197 {
198 gchar *s = g_dbus_address_escape_value (escaping[i].before);
199
200 g_assert_cmpstr (s, ==, escaping[i].after);
201 g_free (s);
202 }
203 }
204
205 int
main(int argc,char * argv[])206 main (int argc,
207 char *argv[])
208 {
209 g_test_init (&argc, &argv, NULL);
210
211 g_test_add_func ("/gdbus/empty-address", test_empty_address);
212 g_test_add_func ("/gdbus/unsupported-address", test_unsupported_address);
213 g_test_add_func ("/gdbus/address-parsing", test_address_parsing);
214 g_test_add_func ("/gdbus/unix-address", test_unix_address);
215 g_test_add_func ("/gdbus/nonce-tcp-address", test_nonce_tcp_address);
216 g_test_add_func ("/gdbus/tcp-address", test_tcp_address);
217 g_test_add_func ("/gdbus/autolaunch-address", test_autolaunch_address);
218 g_test_add_func ("/gdbus/mixed-address", test_mixed_address);
219 g_test_add_func ("/gdbus/escape-address", test_escape_address);
220
221 return g_test_run();
222 }
223
224