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.1 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, see <http://www.gnu.org/licenses/>.
18 * Author: David Zeuthen <davidz@redhat.com>
24 #include <gio/gunixsocketaddress.h>
27 /* ---------------------------------------------------------------------------------------------------- */
30 test_empty_address (void)
34 g_dbus_address_get_stream_sync ("",
38 g_assert_error (error
, G_IO_ERROR
, G_IO_ERROR_INVALID_ARGUMENT
);
44 test_unix_address (void)
46 g_assert (!g_dbus_is_supported_address ("some-imaginary-transport:foo=bar", NULL
));
47 g_assert (g_dbus_is_supported_address ("unix:path=/tmp/dbus-test", NULL
));
48 g_assert (g_dbus_is_supported_address ("unix:abstract=/tmp/dbus-another-test", NULL
));
49 g_assert (g_dbus_is_address ("unix:foo=bar"));
50 g_assert (!g_dbus_is_supported_address ("unix:foo=bar", NULL
));
51 g_assert (!g_dbus_is_address ("unix:path=/foo;abstract=/bar"));
52 g_assert (!g_dbus_is_supported_address ("unix:path=/foo;abstract=/bar", NULL
));
53 g_assert (g_dbus_is_supported_address ("unix:path=/tmp/concrete;unix:abstract=/tmp/abstract", NULL
));
54 g_assert (g_dbus_is_address ("some-imaginary-transport:foo=bar"));
56 g_assert (g_dbus_is_address ("some-imaginary-transport:foo=bar;unix:path=/this/is/valid"));
57 g_assert (!g_dbus_is_supported_address ("some-imaginary-transport:foo=bar;unix:path=/this/is/valid", NULL
));
62 test_nonce_tcp_address (void)
64 g_assert (g_dbus_is_supported_address ("nonce-tcp:host=localhost,port=42,noncefile=/foo/bar", NULL
));
65 g_assert (g_dbus_is_supported_address ("nonce-tcp:host=localhost,port=42,noncefile=/foo/bar,family=ipv6", NULL
));
66 g_assert (g_dbus_is_supported_address ("nonce-tcp:host=localhost,port=42,noncefile=/foo/bar,family=ipv4", NULL
));
68 g_assert (!g_dbus_is_supported_address ("nonce-tcp:host=localhost,port=42,noncefile=/foo/bar,family=blah", NULL
));
69 g_assert (!g_dbus_is_supported_address ("nonce-tcp:host=localhost,port=420000,noncefile=/foo/bar,family=ipv4", NULL
));
70 g_assert (!g_dbus_is_supported_address ("nonce-tcp:host=,port=x42,noncefile=/foo/bar,family=ipv4", NULL
));
71 g_assert (!g_dbus_is_supported_address ("nonce-tcp:host=,port=42x,noncefile=/foo/bar,family=ipv4", NULL
));
72 g_assert (!g_dbus_is_supported_address ("nonce-tcp:host=,port=420000,noncefile=/foo/bar,family=ipv4", NULL
));
76 test_tcp_address (void)
78 g_assert (g_dbus_is_supported_address ("tcp:host=localhost", NULL
));
79 g_assert (!g_dbus_is_supported_address ("tcp:host=localhost,noncefile=/tmp/foo", NULL
));
80 g_assert (g_dbus_is_supported_address ("tcp:host=localhost,port=42", NULL
));
81 g_assert (!g_dbus_is_supported_address ("tcp:host=localhost,port=-1", NULL
));
82 g_assert (!g_dbus_is_supported_address ("tcp:host=localhost,port=420000", NULL
));
83 g_assert (!g_dbus_is_supported_address ("tcp:host=localhost,port=42x", NULL
));
84 g_assert (g_dbus_is_supported_address ("tcp:host=localhost,port=42,family=ipv4", NULL
));
85 g_assert (g_dbus_is_supported_address ("tcp:host=localhost,port=42,family=ipv6", NULL
));
86 g_assert (!g_dbus_is_supported_address ("tcp:host=localhost,port=42,family=sopranos", NULL
));
90 test_autolaunch_address (void)
92 g_assert (g_dbus_is_supported_address ("autolaunch:", NULL
));
96 test_mixed_address (void)
98 g_assert (g_dbus_is_supported_address ("unix:path=/tmp/dbus1;unix:path=/tmp/dbus2", NULL
));
99 g_assert (g_dbus_is_supported_address ("tcp:host=localhost,port=42;autolaunch:", NULL
));
100 g_assert (!g_dbus_is_supported_address ("tcp:host=localhost,port=42;tcp:family=bla", NULL
));
103 static const struct { const char *before
; const char *after
; } escaping
[] = {
105 { "/.\\-_", "/.\\-_" },
106 { "<=>", "%3C%3D%3E" },
107 { "/foo~1", "/foo%7E1" },
108 { "\xe2\x98\xad\xff", "%E2%98%AD%FF" },
113 test_escape_address (void)
117 for (i
= 0; escaping
[i
].before
!= NULL
; i
++)
119 gchar
*s
= g_dbus_address_escape_value (escaping
[i
].before
);
121 g_assert_cmpstr (s
, ==, escaping
[i
].after
);
130 g_test_init (&argc
, &argv
, NULL
);
132 g_test_add_func ("/gdbus/empty-address", test_empty_address
);
134 g_test_add_func ("/gdbus/unix-address", test_unix_address
);
136 g_test_add_func ("/gdbus/nonce-tcp-address", test_nonce_tcp_address
);
137 g_test_add_func ("/gdbus/tcp-address", test_tcp_address
);
138 g_test_add_func ("/gdbus/autolaunch-address", test_autolaunch_address
);
139 g_test_add_func ("/gdbus/mixed-address", test_mixed_address
);
140 g_test_add_func ("/gdbus/escape-address", test_escape_address
);