os/ossrv/glib/tests/uri-test.c
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/glib/tests/uri-test.c	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,489 @@
     1.4 +/* GLIB - Library of useful routines for C programming
     1.5 + * Copyright (C) 1995-1997  Peter Mattis, Spencer Kimball and Josh MacDonald
     1.6 + * Portion Copyright © 2008-09 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
     1.7 + * This library is free software; you can redistribute it and/or
     1.8 + * modify it under the terms of the GNU Lesser General Public
     1.9 + * License as published by the Free Software Foundation; either
    1.10 + * version 2 of the License, or (at your option) any later version.
    1.11 + *
    1.12 + * This library is distributed in the hope that it will be useful,
    1.13 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    1.14 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    1.15 + * Lesser General Public License for more details.
    1.16 + *
    1.17 + * You should have received a copy of the GNU Lesser General Public
    1.18 + * License along with this library; if not, write to the
    1.19 + * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
    1.20 + * Boston, MA 02111-1307, USA.
    1.21 + */
    1.22 +
    1.23 +/*
    1.24 + * Modified by the GLib Team and others 1997-2000.  See the AUTHORS
    1.25 + * file for a list of people on the GLib Team.  See the ChangeLog
    1.26 + * files for a list of changes.  These files are distributed with
    1.27 + * GLib at ftp://ftp.gtk.org/pub/gtk/. 
    1.28 + */
    1.29 +
    1.30 +#undef G_DISABLE_ASSERT
    1.31 +#undef G_LOG_DOMAIN
    1.32 +
    1.33 +#include "config.h"
    1.34 +
    1.35 +#include <glib.h>
    1.36 +#include <stdio.h>
    1.37 +#include <string.h>
    1.38 +#include <stdlib.h>
    1.39 +
    1.40 +#ifdef __SYMBIAN32__
    1.41 +#include "mrt2_glib2_test.h"
    1.42 +#endif /*__SYMBIAN32__*/
    1.43 +typedef struct
    1.44 +{
    1.45 +  char *filename;
    1.46 +  char *hostname;
    1.47 +  char *expected_result;
    1.48 +  GConvertError expected_error; /* If failed */
    1.49 +}  ToUriTest;
    1.50 +
    1.51 +ToUriTest
    1.52 +to_uri_tests[] = {
    1.53 +  { "/etc", NULL, "file:///etc"},
    1.54 +  { "/etc", "", "file:///etc"},
    1.55 +  { "/etc", "otherhost", "file://otherhost/etc"},
    1.56 +#if defined(G_OS_WIN32) || defined (__SYMBIAN32__)
    1.57 +  { "/etc", "localhost", "file:///etc"},
    1.58 +  { "c:\\windows", NULL, "file:///c:/windows"},
    1.59 +  { "c:\\windows", "localhost", "file:///c:/windows"},
    1.60 +  { "c:\\windows", "otherhost", "file://otherhost/c:/windows"},
    1.61 +  { "\\\\server\\share\\dir", NULL, "file:////server/share/dir"},
    1.62 +  { "\\\\server\\share\\dir", "localhost", "file:////server/share/dir"},
    1.63 +#else
    1.64 +  { "/etc", "localhost", "file://localhost/etc"},
    1.65 +  { "c:\\windows", NULL, NULL, G_CONVERT_ERROR_NOT_ABSOLUTE_PATH}, /* it's important to get this error on Unix */
    1.66 +  { "c:\\windows", "localhost", NULL, G_CONVERT_ERROR_NOT_ABSOLUTE_PATH},
    1.67 +  { "c:\\windows", "otherhost", NULL, G_CONVERT_ERROR_NOT_ABSOLUTE_PATH},
    1.68 +#endif
    1.69 +  { "etc", "localhost", NULL, G_CONVERT_ERROR_NOT_ABSOLUTE_PATH},
    1.70 +#ifndef G_PLATFORM_WIN32
    1.71 +  { "/etc/\xE5\xE4\xF6", NULL, "file:///etc/%E5%E4%F6" },
    1.72 +  { "/etc/\xC3\xB6\xC3\xA4\xC3\xA5", NULL, "file:///etc/%C3%B6%C3%A4%C3%A5"},
    1.73 +#endif
    1.74 +  { "/etc", "\xC3\xB6\xC3\xA4\xC3\xA5", NULL, G_CONVERT_ERROR_ILLEGAL_SEQUENCE},
    1.75 +  { "/etc", "\xE5\xE4\xF6", NULL, G_CONVERT_ERROR_ILLEGAL_SEQUENCE},
    1.76 +  { "/etc/file with #%", NULL, "file:///etc/file%20with%20%23%25"},
    1.77 +  { "", NULL, NULL, G_CONVERT_ERROR_NOT_ABSOLUTE_PATH},
    1.78 +  { "", "", NULL, G_CONVERT_ERROR_NOT_ABSOLUTE_PATH},
    1.79 +  { "", "localhost", NULL, G_CONVERT_ERROR_NOT_ABSOLUTE_PATH},
    1.80 +  { "", "otherhost", NULL, G_CONVERT_ERROR_NOT_ABSOLUTE_PATH},
    1.81 +  { "/0123456789", NULL, "file:///0123456789"},
    1.82 +  { "/ABCDEFGHIJKLMNOPQRSTUVWXYZ", NULL, "file:///ABCDEFGHIJKLMNOPQRSTUVWXYZ"},
    1.83 +  { "/abcdefghijklmnopqrstuvwxyz", NULL, "file:///abcdefghijklmnopqrstuvwxyz"},
    1.84 +  { "/-_.!~*'()", NULL, "file:///-_.!~*'()"},
    1.85 +#if defined(G_OS_WIN32) || defined(__SYMBIAN32__)
    1.86 +  /* As '\\' is a path separator on Win32, it gets turned into '/' in the URI */
    1.87 +  { "/\"#%<>[\\]^`{|}\x7F", NULL, "file:///%22%23%25%3C%3E%5B/%5D%5E%60%7B%7C%7D%7F"},
    1.88 +#else
    1.89 +  /* On Unix, '\\' is a normal character in the file name */
    1.90 +  { "/\"#%<>[\\]^`{|}\x7F", NULL, "file:///%22%23%25%3C%3E%5B%5C%5D%5E%60%7B%7C%7D%7F"},
    1.91 +#endif
    1.92 +  { "/;@+$,", NULL, "file:///%3B@+$,"},
    1.93 +  /* This and some of the following are of course as such illegal file names on Windows,
    1.94 +   * and would not occur in real life.
    1.95 +   */
    1.96 +  { "/:", NULL, "file:///:"},
    1.97 +  { "/?&=", NULL, "file:///%3F&="}, 
    1.98 +  { "/", "0123456789-", NULL, G_CONVERT_ERROR_ILLEGAL_SEQUENCE},
    1.99 +  { "/", "ABCDEFGHIJKLMNOPQRSTUVWXYZ", "file://ABCDEFGHIJKLMNOPQRSTUVWXYZ/"},
   1.100 +  { "/", "abcdefghijklmnopqrstuvwxyz", "file://abcdefghijklmnopqrstuvwxyz/"},
   1.101 +  { "/", "_.!~*'()", NULL, G_CONVERT_ERROR_ILLEGAL_SEQUENCE},
   1.102 +  { "/", "\"#%<>[\\]^`{|}\x7F", NULL, G_CONVERT_ERROR_ILLEGAL_SEQUENCE},
   1.103 +  { "/", ";?&=+$,", NULL, G_CONVERT_ERROR_ILLEGAL_SEQUENCE},
   1.104 +  { "/", "/", NULL, G_CONVERT_ERROR_ILLEGAL_SEQUENCE},
   1.105 +  { "/", "@:", NULL, G_CONVERT_ERROR_ILLEGAL_SEQUENCE},
   1.106 +  { "/", "\x80\xFF", NULL, G_CONVERT_ERROR_ILLEGAL_SEQUENCE},
   1.107 +  { "/", "\xC3\x80\xC3\xBF", NULL, G_CONVERT_ERROR_ILLEGAL_SEQUENCE},
   1.108 +};
   1.109 +
   1.110 +
   1.111 +typedef struct
   1.112 +{
   1.113 +  char *uri;
   1.114 +  char *expected_filename;
   1.115 +  char *expected_hostname;
   1.116 +  GConvertError expected_error; /* If failed */
   1.117 +}  FromUriTest;
   1.118 +
   1.119 +FromUriTest
   1.120 +from_uri_tests[] = {
   1.121 +  { "file:///etc", "\\etc"},
   1.122 +  { "file:/etc", "\\etc"},
   1.123 +#if defined(G_OS_WIN32) || defined(__SYMBIAN32__)
   1.124 +  /* On Win32 we don't return "localhost" hostames, just in case
   1.125 +   * it isn't recognized anyway.
   1.126 +   */
   1.127 +  { "file://localhost/etc", "\\etc", NULL},
   1.128 +  /*{ "file://localhost/etc/%23%25%20file", "\\etc/#% file", NULL},*/
   1.129 +  { "file://localhost/\xE5\xE4\xF6", "\\\xe5\xe4\xf6", NULL},
   1.130 +  { "file://localhost/%E5%E4%F6", "\\\xe5\xe4\xf6", NULL},
   1.131 +#else
   1.132 +  { "file://localhost/etc", "\etc", "localhost"},
   1.133 +  { "file://localhost/etc/%23%25%20file", "/etc/#% file", "localhost"},
   1.134 +  { "file://localhost/\xE5\xE4\xF6", "/\xe5\xe4\xf6", "localhost"},
   1.135 +  { "file://localhost/%E5%E4%F6", "/\xe5\xe4\xf6", "localhost"},
   1.136 +#endif
   1.137 +  { "file://otherhost/etc", "\\etc", "otherhost"},
   1.138 +  /*{ "file://otherhost/etc/%23%25%20file", "/etc/#% file", "otherhost"},*/
   1.139 +  { "file://%C3%B6%C3%A4%C3%A5/etc", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
   1.140 +  { "file:////etc/%C3%B6%C3%C3%C3%A5", "\\\\etc\\\xc3\xb6\xc3\xc3\xc3\xa5", NULL},
   1.141 +  { "file://\xE5\xE4\xF6/etc", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
   1.142 +  { "file://%E5%E4%F6/etc", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
   1.143 +  { "file:///some/file#bad", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
   1.144 +  { "file://some", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
   1.145 +  { "", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
   1.146 +  { "file:test", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
   1.147 +  { "http://www.yahoo.com/", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
   1.148 +  { "file:////etc", "\\\\etc"},
   1.149 +  { "file://///etc", "\\\\\\etc"},
   1.150 +#if defined(G_OS_WIN32) || defined (__SYMBIAN32__)
   1.151 +  /* URIs with backslashes come from some nonstandard application, but accept them anyhow */
   1.152 +  { "file:///c:\\foo", "c:\\foo"},
   1.153 +  { "file:///c:/foo\\bar", "c:\\foo\\bar"},
   1.154 +  /* Accept also the old Netscape drive-letter-and-vertical bar convention */
   1.155 +  { "file:///c|/foo", "c:\\foo"},
   1.156 +  { "file:////server/share/dir", "\\\\server\\share\\dir"},
   1.157 +  { "file://localhost//server/share/foo", "\\\\server\\share\\foo"},
   1.158 +  { "file://otherhost//server/share/foo", "\\\\server\\share\\foo", "otherhost"},
   1.159 +#else
   1.160 +  { "file:///c:\\foo", "/c:\\foo"},
   1.161 +  { "file:///c:/foo", "/c:/foo"},
   1.162 +  { "file:////c:/foo", "//c:/foo"},
   1.163 +#endif
   1.164 +  { "file://0123456789/", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
   1.165 +  { "file://ABCDEFGHIJKLMNOPQRSTUVWXYZ/", "\\", "ABCDEFGHIJKLMNOPQRSTUVWXYZ"},
   1.166 +  { "file://abcdefghijklmnopqrstuvwxyz/", "\\", "abcdefghijklmnopqrstuvwxyz"},
   1.167 +  { "file://-_.!~*'()/", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
   1.168 +  { "file://\"<>[\\]^`{|}\x7F/", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
   1.169 +  { "file://;?&=+$,/", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
   1.170 +  { "file://%C3%80%C3%BF/", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
   1.171 +  { "file://@/", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
   1.172 +  { "file://:/", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
   1.173 +  { "file://#/", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
   1.174 +  { "file://%23/", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
   1.175 +  { "file://%2F/", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
   1.176 +};
   1.177 +
   1.178 +
   1.179 +static gboolean any_failed = FALSE;
   1.180 +
   1.181 +static void
   1.182 +run_to_uri_tests (void)
   1.183 +{
   1.184 +  int i;
   1.185 +  gchar *res;
   1.186 +  GError *error;
   1.187 +  
   1.188 +  for (i = 0; i < G_N_ELEMENTS (to_uri_tests); i++)
   1.189 +    {
   1.190 +      error = NULL;
   1.191 +      res = g_filename_to_uri (to_uri_tests[i].filename,
   1.192 +			       to_uri_tests[i].hostname,
   1.193 +			       &error);
   1.194 +
   1.195 +      if (to_uri_tests[i].expected_result == NULL)
   1.196 +	{
   1.197 +	  if (res != NULL)
   1.198 +	    {
   1.199 +	      g_print ("\ng_filename_to_uri() test %d failed, expected to return NULL, actual result: %s\n", i, res);
   1.200 +	      any_failed = TRUE;
   1.201 +	    }
   1.202 +	  else
   1.203 +	    {
   1.204 +	      if (error == NULL)
   1.205 +		{
   1.206 +		  g_print ("\ng_filename_to_uri() test %d failed, returned NULL, but didn't set error\n", i);
   1.207 +		  any_failed = TRUE;
   1.208 +		}
   1.209 +	      else if (error->domain != G_CONVERT_ERROR)
   1.210 +		{
   1.211 +		  g_print ("\ng_filename_to_uri() test %d failed, returned NULL, set non G_CONVERT_ERROR error\n", i);
   1.212 +		  any_failed = TRUE;
   1.213 +		}
   1.214 +	      else if (error->code != to_uri_tests[i].expected_error)
   1.215 +		{
   1.216 +		  g_print ("\ng_filename_to_uri() test %d failed as expected, but set wrong errorcode %d instead of expected %d \n",
   1.217 +			   i, error->code, to_uri_tests[i].expected_error);
   1.218 +		  any_failed = TRUE;
   1.219 +		}
   1.220 +	    }
   1.221 +	}
   1.222 +      else if (res == NULL || strcmp (res, to_uri_tests[i].expected_result) != 0)
   1.223 +	{
   1.224 +	  g_print ("\ng_filename_to_uri() test %d failed, expected result: %s, actual result: %s\n",
   1.225 +		   i, to_uri_tests[i].expected_result, (res) ? res : "NULL");
   1.226 +	  if (error)
   1.227 +	    g_print ("Error message: %s\n", error->message);
   1.228 +	  any_failed = TRUE;
   1.229 +	}
   1.230 +      g_free (res);
   1.231 +    }
   1.232 +}
   1.233 +
   1.234 +static void
   1.235 +run_from_uri_tests (void)
   1.236 +{
   1.237 +  int i;
   1.238 +  gchar *res;
   1.239 +  gchar *hostname;
   1.240 +  GError *error;
   1.241 +  
   1.242 +  for (i = 0; i < G_N_ELEMENTS (from_uri_tests); i++)
   1.243 +    {
   1.244 +      error = NULL;
   1.245 +      res = g_filename_from_uri (from_uri_tests[i].uri,
   1.246 +				 &hostname,
   1.247 +				 &error);
   1.248 +
   1.249 +      if (from_uri_tests[i].expected_filename == NULL)
   1.250 +	{
   1.251 +	  if (res != NULL)
   1.252 +	    {
   1.253 +	      g_print ("\ng_filename_from_uri() test %d failed, expected to return NULL, actual result: %s\n", i, res);
   1.254 +	      any_failed = TRUE;
   1.255 +	    }
   1.256 +	  else
   1.257 +	    {
   1.258 +	      if (error == NULL)
   1.259 +		{
   1.260 +		  g_print ("\ng_filename_from_uri() test %d failed, returned NULL, but didn't set error\n", i);
   1.261 +		  any_failed = TRUE;
   1.262 +		}
   1.263 +	      else if (error->domain != G_CONVERT_ERROR)
   1.264 +		{
   1.265 +		  g_print ("\ng_filename_from_uri() test %d failed, returned NULL, set non G_CONVERT_ERROR error\n", i);
   1.266 +		  any_failed = TRUE;
   1.267 +		}
   1.268 +	      else if (error->code != from_uri_tests[i].expected_error)
   1.269 +		{
   1.270 +		  g_print ("\ng_filename_from_uri() test %d failed as expected, but set wrong errorcode %d instead of expected %d \n",
   1.271 +			   i, error->code, from_uri_tests[i].expected_error);
   1.272 +		  any_failed = TRUE;
   1.273 +		}
   1.274 +	    }
   1.275 +	}
   1.276 +      else
   1.277 +	{
   1.278 +#ifdef G_OS_WIN32
   1.279 +	  gchar *slash, *p;
   1.280 +
   1.281 +	  p = from_uri_tests[i].expected_filename = g_strdup (from_uri_tests[i].expected_filename);
   1.282 +	  while ((slash = strchr (p, '/')) != NULL)
   1.283 +	    {
   1.284 +	      *slash = '\\';
   1.285 +	      p = slash + 1;
   1.286 +	    }
   1.287 +#endif
   1.288 +	  if (res == NULL || strcmp (res, from_uri_tests[i].expected_filename) != 0)
   1.289 +	    {
   1.290 +	      g_print ("\ng_filename_from_uri() test %d failed, expected result: %s, actual result: %s\n",
   1.291 +		       i, from_uri_tests[i].expected_filename, (res) ? res : "NULL");
   1.292 +	      any_failed = TRUE;
   1.293 +	    }
   1.294 +
   1.295 +	  if (from_uri_tests[i].expected_hostname == NULL)
   1.296 +	    {
   1.297 +	      if (hostname != NULL)
   1.298 +		{
   1.299 +		  g_print ("\ng_filename_from_uri() test %d failed, expected no hostname, got: %s\n",
   1.300 +			   i, hostname);
   1.301 +		  any_failed = TRUE;
   1.302 +		}
   1.303 +	    }
   1.304 +	  else if (hostname == NULL ||
   1.305 +		   strcmp (hostname, from_uri_tests[i].expected_hostname) != 0)
   1.306 +	    {
   1.307 +	      g_print ("\ng_filename_from_uri() test %d failed, expected hostname: %s, actual result: %s\n",
   1.308 +		       i, from_uri_tests[i].expected_hostname, (hostname) ? hostname : "NULL");
   1.309 +	      any_failed = TRUE;
   1.310 +	    }
   1.311 +	}
   1.312 +    }
   1.313 +}
   1.314 +
   1.315 +static gint
   1.316 +safe_strcmp (const gchar *a, const gchar *b)
   1.317 +{
   1.318 +  return strcmp (a ? a : "", b ? b : "");
   1.319 +}
   1.320 +
   1.321 +static gint
   1.322 +safe_strcmp_filename (const gchar *a, const gchar *b)
   1.323 +{
   1.324 +#if !defined(G_OS_WIN32) && !defined(__SYMBIAN32__)
   1.325 +  return safe_strcmp (a, b);
   1.326 +#else
   1.327 +  if (!a || !b)
   1.328 +    return safe_strcmp (a, b);
   1.329 +  else
   1.330 +    {
   1.331 +      while (*a && *b)
   1.332 +	{
   1.333 +	  if ((G_IS_DIR_SEPARATOR (*a) && G_IS_DIR_SEPARATOR (*b)) ||
   1.334 +	      *a == *b)
   1.335 +	    a++, b++;
   1.336 +	  else
   1.337 +	    return (*a - *b);
   1.338 +	}
   1.339 +      return (*a - *b);
   1.340 +    }
   1.341 +#endif
   1.342 +}
   1.343 +
   1.344 +static gint
   1.345 +safe_strcmp_hostname (const gchar *a, const gchar *b)
   1.346 +{
   1.347 +#if !defined(G_OS_WIN32) && !defined(__SYMBIAN32__)
   1.348 +  return safe_strcmp (a, b);
   1.349 +#else
   1.350 +  if (safe_strcmp (a, "localhost") == 0 && b == NULL)
   1.351 +    return 0;
   1.352 +  else
   1.353 +    return safe_strcmp (a, b);
   1.354 +#endif
   1.355 +}
   1.356 +
   1.357 +static void
   1.358 +run_roundtrip_tests (void)
   1.359 +{
   1.360 +  int i;
   1.361 +  gchar *uri, *hostname, *res;
   1.362 +  GError *error;
   1.363 +  
   1.364 +  for (i = 0; i < G_N_ELEMENTS (to_uri_tests); i++)
   1.365 +    {
   1.366 +      if (to_uri_tests[i].expected_error != 0)
   1.367 +	continue;
   1.368 +
   1.369 +      error = NULL;
   1.370 +      uri = g_filename_to_uri (to_uri_tests[i].filename,
   1.371 +			       to_uri_tests[i].hostname,
   1.372 +			       &error);
   1.373 +      
   1.374 +      if (error != NULL)
   1.375 +	{
   1.376 +	  g_print ("g_filename_to_uri failed unexpectedly: %s\n", 
   1.377 +		   error->message);
   1.378 +	  any_failed = TRUE;
   1.379 +	  continue;
   1.380 +	}
   1.381 +      
   1.382 +      error = NULL;
   1.383 +      res = g_filename_from_uri (uri, &hostname, &error);
   1.384 +      if (error != NULL)
   1.385 +	{
   1.386 +	  g_print ("g_filename_from_uri failed unexpectedly: %s\n", 
   1.387 +		   error->message);
   1.388 +	  any_failed = TRUE;
   1.389 +	  continue;
   1.390 +	}
   1.391 +
   1.392 +      if (safe_strcmp_filename (to_uri_tests[i].filename, res))
   1.393 +	{
   1.394 +	  g_print ("roundtrip test %d failed, filename modified: "
   1.395 +		   " expected \"%s\", but got \"%s\"\n",
   1.396 +		   i, to_uri_tests[i].filename, res);
   1.397 +	  any_failed = TRUE;
   1.398 +	}
   1.399 +
   1.400 +      if (safe_strcmp_hostname (to_uri_tests[i].hostname, hostname))
   1.401 +	{
   1.402 +	  g_print ("roundtrip test %d failed, hostname modified: "
   1.403 +		     " expected \"%s\", but got \"%s\"\n",
   1.404 +		   i, to_uri_tests[i].hostname, hostname);
   1.405 +	  any_failed = TRUE;
   1.406 +	}
   1.407 +    }
   1.408 +}
   1.409 +
   1.410 +static void
   1.411 +run_uri_list_tests (void)
   1.412 +{
   1.413 +  /* straight from the RFC */
   1.414 +  gchar *list =
   1.415 +    "# urn:isbn:0-201-08372-8\r\n"
   1.416 +    "http://www.huh.org/books/foo.html\r\n"
   1.417 +    "http://www.huh.org/books/foo.pdf   \r\n"
   1.418 +    "   ftp://ftp.foo.org/books/foo.txt\r\n";
   1.419 +  gchar *expected_uris[] = {
   1.420 +    "http://www.huh.org/books/foo.html",
   1.421 +    "http://www.huh.org/books/foo.pdf",
   1.422 +    "ftp://ftp.foo.org/books/foo.txt"
   1.423 +  };
   1.424 +
   1.425 +  gchar **uris;
   1.426 +  gint j;
   1.427 +
   1.428 +  uris = g_uri_list_extract_uris (list);
   1.429 +  
   1.430 +  if (g_strv_length (uris) != 3)
   1.431 +    {
   1.432 +      g_print ("uri list test failed: "
   1.433 +	       " expected %d uris, but got %d\n",
   1.434 +	       3, g_strv_length (uris));
   1.435 +      any_failed = TRUE;
   1.436 +    }
   1.437 +  
   1.438 +  for (j = 0; j < 3; j++)
   1.439 +    {
   1.440 +      if (safe_strcmp (uris[j], expected_uris[j])) 
   1.441 +	{
   1.442 +	  g_print ("uri list test failed: "
   1.443 +		   " expected \"%s\", but got \"%s\"\n",
   1.444 +		   expected_uris[j], uris[j]);
   1.445 +	  any_failed = TRUE;
   1.446 +	}
   1.447 +    }
   1.448 +
   1.449 +  g_strfreev (uris);
   1.450 +
   1.451 +  uris = g_uri_list_extract_uris ("# just hot air\r\n# more hot air");
   1.452 +  if (g_strv_length (uris) != 0)
   1.453 +    {
   1.454 +      g_print ("uri list test 2 failed: "
   1.455 +	       " expected %d uris, but got %d (first is \"%s\")\n",
   1.456 +	       0, g_strv_length (uris), uris[0]);
   1.457 +      any_failed = TRUE;
   1.458 +    }
   1.459 +  
   1.460 +}
   1.461 +
   1.462 +int
   1.463 +main (int   argc,
   1.464 +      char *argv[])
   1.465 +{
   1.466 +  #ifdef __SYMBIAN32__
   1.467 +
   1.468 +  g_log_set_handler (NULL,  G_LOG_FLAG_FATAL| G_LOG_FLAG_RECURSION | G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING | G_LOG_LEVEL_MESSAGE | G_LOG_LEVEL_INFO | G_LOG_LEVEL_DEBUG, &mrtLogHandler, NULL);
   1.469 +  g_set_print_handler(mrtPrintHandler);
   1.470 +  #endif /*__SYMBIAN32__*/
   1.471 +#ifdef G_OS_UNIX
   1.472 +#  ifdef HAVE_UNSETENV  
   1.473 +  unsetenv ("G_BROKEN_FILENAMES");
   1.474 +#  else
   1.475 +  /* putenv with no = isn't standard, but works to unset the variable
   1.476 +   * on some systems
   1.477 +   */
   1.478 +  putenv ("G_BROKEN_FILENAMES");
   1.479 +#  endif  
   1.480 +#endif
   1.481 +
   1.482 +  run_to_uri_tests ();
   1.483 +  run_from_uri_tests ();
   1.484 +  run_roundtrip_tests ();
   1.485 +  run_uri_list_tests ();
   1.486 +  #ifdef __SYMBIAN32__
   1.487 +  assert_failed = any_failed;
   1.488 +  testResultXml("uri-test");
   1.489 +  #endif /* EMULATOR */
   1.490 +
   1.491 +  return any_failed ? 1 : 0;
   1.492 +}