mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-05 08:56:16 +01:00
1dc774a653
Very many testcases, some GLib tools (resource compiler, etc) and GApplication were calling g_type_init(). Remove those uses, as they are no longer required. https://bugzilla.gnome.org/show_bug.cgi?id=686161
128 lines
3.8 KiB
C
128 lines
3.8 KiB
C
#include <gio/gio.h>
|
|
|
|
static void
|
|
test_basic (void)
|
|
{
|
|
GNetworkAddress *address;
|
|
guint port;
|
|
gchar *hostname;
|
|
gchar *scheme;
|
|
|
|
address = (GNetworkAddress*)g_network_address_new ("www.gnome.org", 8080);
|
|
|
|
g_assert_cmpstr (g_network_address_get_hostname (address), ==, "www.gnome.org");
|
|
g_assert_cmpint (g_network_address_get_port (address), ==, 8080);
|
|
|
|
g_object_get (address, "hostname", &hostname, "port", &port, "scheme", &scheme, NULL);
|
|
g_assert_cmpstr (hostname, ==, "www.gnome.org");
|
|
g_assert_cmpint (port, ==, 8080);
|
|
g_assert (scheme == NULL);
|
|
g_free (hostname);
|
|
|
|
g_object_unref (address);
|
|
}
|
|
|
|
static void
|
|
test_parse_uri (void)
|
|
{
|
|
GNetworkAddress *address;
|
|
GError *error = NULL;
|
|
|
|
address = (GNetworkAddress*)g_network_address_parse_uri ("http://www.gnome.org:2020/start", 8080, &error);
|
|
g_assert_no_error (error);
|
|
g_assert_cmpstr (g_network_address_get_scheme (address), ==, "http");
|
|
g_assert_cmpstr (g_network_address_get_hostname (address), ==, "www.gnome.org");
|
|
g_assert_cmpint (g_network_address_get_port (address), ==, 2020);
|
|
g_object_unref (address);
|
|
|
|
address = (GNetworkAddress*)g_network_address_parse_uri ("ftp://joe~:(*)%46@ftp.gnome.org:2020/start", 8080, &error);
|
|
g_assert_no_error (error);
|
|
g_assert_cmpstr (g_network_address_get_scheme (address), ==, "ftp");
|
|
g_assert_cmpstr (g_network_address_get_hostname (address), ==, "ftp.gnome.org");
|
|
g_assert_cmpint (g_network_address_get_port (address), ==, 2020);
|
|
g_object_unref (address);
|
|
|
|
address = (GNetworkAddress*)g_network_address_parse_uri ("ftp://[fec0::abcd]/start", 8080, &error);
|
|
g_assert_no_error (error);
|
|
g_assert_cmpstr (g_network_address_get_scheme (address), ==, "ftp");
|
|
g_assert_cmpstr (g_network_address_get_hostname (address), ==, "fec0::abcd");
|
|
g_assert_cmpint (g_network_address_get_port (address), ==, 8080);
|
|
g_object_unref (address);
|
|
|
|
address = (GNetworkAddress*)g_network_address_parse_uri ("ftp://joe%x-@ftp.gnome.org:2020/start", 8080, &error);
|
|
g_assert_error (error, G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT);
|
|
g_assert (address == NULL);
|
|
g_error_free (error);
|
|
}
|
|
|
|
typedef struct _ParseTest ParseTest;
|
|
|
|
struct _ParseTest
|
|
{
|
|
const gchar *input;
|
|
const gchar *hostname;
|
|
guint16 port;
|
|
gint error_code;
|
|
};
|
|
|
|
static ParseTest tests[] =
|
|
{
|
|
{ "www.gnome.org", "www.gnome.org", 1234, -1 },
|
|
{ "www.gnome.org:8080", "www.gnome.org", 8080, -1 },
|
|
{ "[2001:db8::1]", "2001:db8::1", 1234, -1 },
|
|
{ "[2001:db8::1]:888", "2001:db8::1", 888, -1 },
|
|
{ "[hostname", NULL, 0, G_IO_ERROR_INVALID_ARGUMENT },
|
|
{ "[hostnam]e", NULL, 0, G_IO_ERROR_INVALID_ARGUMENT },
|
|
{ "hostname:", NULL, 0, G_IO_ERROR_INVALID_ARGUMENT },
|
|
{ "hostname:-1", NULL, 0, G_IO_ERROR_INVALID_ARGUMENT },
|
|
{ "hostname:9999999", NULL, 0, G_IO_ERROR_INVALID_ARGUMENT }
|
|
};
|
|
|
|
static void
|
|
test_parse (gconstpointer d)
|
|
{
|
|
const ParseTest *test = d;
|
|
GNetworkAddress *address;
|
|
GError *error;
|
|
|
|
error = NULL;
|
|
address = (GNetworkAddress*)g_network_address_parse (test->input, 1234, &error);
|
|
|
|
if (address)
|
|
{
|
|
g_assert_cmpstr (g_network_address_get_hostname (address), ==, test->hostname);
|
|
g_assert_cmpint (g_network_address_get_port (address), ==, test->port);
|
|
g_assert_no_error (error);
|
|
}
|
|
else
|
|
{
|
|
g_assert_error (error, G_IO_ERROR, test->error_code);
|
|
}
|
|
|
|
if (address)
|
|
g_object_unref (address);
|
|
if (error)
|
|
g_error_free (error);
|
|
}
|
|
|
|
int
|
|
main (int argc, char *argv[])
|
|
{
|
|
gint i;
|
|
gchar *path;
|
|
|
|
g_test_init (&argc, &argv, NULL);
|
|
|
|
g_test_add_func ("/network-address/basic", test_basic);
|
|
g_test_add_func ("/network-address/parse/uri", test_parse_uri);
|
|
|
|
for (i = 0; i < G_N_ELEMENTS (tests); i++)
|
|
{
|
|
path = g_strdup_printf ("/network-address/parse/%d", i);
|
|
g_test_add_data_func (path, &tests[i], test_parse);
|
|
g_free (path);
|
|
}
|
|
|
|
return g_test_run ();
|
|
}
|