os/ossrv/glib/tests/uri-test.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/* GLIB - Library of useful routines for C programming
sl@0
     2
 * Copyright (C) 1995-1997  Peter Mattis, Spencer Kimball and Josh MacDonald
sl@0
     3
 * Portion Copyright © 2008-09 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
sl@0
     4
 * This library is free software; you can redistribute it and/or
sl@0
     5
 * modify it under the terms of the GNU Lesser General Public
sl@0
     6
 * License as published by the Free Software Foundation; either
sl@0
     7
 * version 2 of the License, or (at your option) any later version.
sl@0
     8
 *
sl@0
     9
 * This library is distributed in the hope that it will be useful,
sl@0
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
sl@0
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
sl@0
    12
 * Lesser General Public License for more details.
sl@0
    13
 *
sl@0
    14
 * You should have received a copy of the GNU Lesser General Public
sl@0
    15
 * License along with this library; if not, write to the
sl@0
    16
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
sl@0
    17
 * Boston, MA 02111-1307, USA.
sl@0
    18
 */
sl@0
    19
sl@0
    20
/*
sl@0
    21
 * Modified by the GLib Team and others 1997-2000.  See the AUTHORS
sl@0
    22
 * file for a list of people on the GLib Team.  See the ChangeLog
sl@0
    23
 * files for a list of changes.  These files are distributed with
sl@0
    24
 * GLib at ftp://ftp.gtk.org/pub/gtk/. 
sl@0
    25
 */
sl@0
    26
sl@0
    27
#undef G_DISABLE_ASSERT
sl@0
    28
#undef G_LOG_DOMAIN
sl@0
    29
sl@0
    30
#include "config.h"
sl@0
    31
sl@0
    32
#include <glib.h>
sl@0
    33
#include <stdio.h>
sl@0
    34
#include <string.h>
sl@0
    35
#include <stdlib.h>
sl@0
    36
sl@0
    37
#ifdef __SYMBIAN32__
sl@0
    38
#include "mrt2_glib2_test.h"
sl@0
    39
#endif /*__SYMBIAN32__*/
sl@0
    40
typedef struct
sl@0
    41
{
sl@0
    42
  char *filename;
sl@0
    43
  char *hostname;
sl@0
    44
  char *expected_result;
sl@0
    45
  GConvertError expected_error; /* If failed */
sl@0
    46
}  ToUriTest;
sl@0
    47
sl@0
    48
ToUriTest
sl@0
    49
to_uri_tests[] = {
sl@0
    50
  { "/etc", NULL, "file:///etc"},
sl@0
    51
  { "/etc", "", "file:///etc"},
sl@0
    52
  { "/etc", "otherhost", "file://otherhost/etc"},
sl@0
    53
#if defined(G_OS_WIN32) || defined (__SYMBIAN32__)
sl@0
    54
  { "/etc", "localhost", "file:///etc"},
sl@0
    55
  { "c:\\windows", NULL, "file:///c:/windows"},
sl@0
    56
  { "c:\\windows", "localhost", "file:///c:/windows"},
sl@0
    57
  { "c:\\windows", "otherhost", "file://otherhost/c:/windows"},
sl@0
    58
  { "\\\\server\\share\\dir", NULL, "file:////server/share/dir"},
sl@0
    59
  { "\\\\server\\share\\dir", "localhost", "file:////server/share/dir"},
sl@0
    60
#else
sl@0
    61
  { "/etc", "localhost", "file://localhost/etc"},
sl@0
    62
  { "c:\\windows", NULL, NULL, G_CONVERT_ERROR_NOT_ABSOLUTE_PATH}, /* it's important to get this error on Unix */
sl@0
    63
  { "c:\\windows", "localhost", NULL, G_CONVERT_ERROR_NOT_ABSOLUTE_PATH},
sl@0
    64
  { "c:\\windows", "otherhost", NULL, G_CONVERT_ERROR_NOT_ABSOLUTE_PATH},
sl@0
    65
#endif
sl@0
    66
  { "etc", "localhost", NULL, G_CONVERT_ERROR_NOT_ABSOLUTE_PATH},
sl@0
    67
#ifndef G_PLATFORM_WIN32
sl@0
    68
  { "/etc/\xE5\xE4\xF6", NULL, "file:///etc/%E5%E4%F6" },
sl@0
    69
  { "/etc/\xC3\xB6\xC3\xA4\xC3\xA5", NULL, "file:///etc/%C3%B6%C3%A4%C3%A5"},
sl@0
    70
#endif
sl@0
    71
  { "/etc", "\xC3\xB6\xC3\xA4\xC3\xA5", NULL, G_CONVERT_ERROR_ILLEGAL_SEQUENCE},
sl@0
    72
  { "/etc", "\xE5\xE4\xF6", NULL, G_CONVERT_ERROR_ILLEGAL_SEQUENCE},
sl@0
    73
  { "/etc/file with #%", NULL, "file:///etc/file%20with%20%23%25"},
sl@0
    74
  { "", NULL, NULL, G_CONVERT_ERROR_NOT_ABSOLUTE_PATH},
sl@0
    75
  { "", "", NULL, G_CONVERT_ERROR_NOT_ABSOLUTE_PATH},
sl@0
    76
  { "", "localhost", NULL, G_CONVERT_ERROR_NOT_ABSOLUTE_PATH},
sl@0
    77
  { "", "otherhost", NULL, G_CONVERT_ERROR_NOT_ABSOLUTE_PATH},
sl@0
    78
  { "/0123456789", NULL, "file:///0123456789"},
sl@0
    79
  { "/ABCDEFGHIJKLMNOPQRSTUVWXYZ", NULL, "file:///ABCDEFGHIJKLMNOPQRSTUVWXYZ"},
sl@0
    80
  { "/abcdefghijklmnopqrstuvwxyz", NULL, "file:///abcdefghijklmnopqrstuvwxyz"},
sl@0
    81
  { "/-_.!~*'()", NULL, "file:///-_.!~*'()"},
sl@0
    82
#if defined(G_OS_WIN32) || defined(__SYMBIAN32__)
sl@0
    83
  /* As '\\' is a path separator on Win32, it gets turned into '/' in the URI */
sl@0
    84
  { "/\"#%<>[\\]^`{|}\x7F", NULL, "file:///%22%23%25%3C%3E%5B/%5D%5E%60%7B%7C%7D%7F"},
sl@0
    85
#else
sl@0
    86
  /* On Unix, '\\' is a normal character in the file name */
sl@0
    87
  { "/\"#%<>[\\]^`{|}\x7F", NULL, "file:///%22%23%25%3C%3E%5B%5C%5D%5E%60%7B%7C%7D%7F"},
sl@0
    88
#endif
sl@0
    89
  { "/;@+$,", NULL, "file:///%3B@+$,"},
sl@0
    90
  /* This and some of the following are of course as such illegal file names on Windows,
sl@0
    91
   * and would not occur in real life.
sl@0
    92
   */
sl@0
    93
  { "/:", NULL, "file:///:"},
sl@0
    94
  { "/?&=", NULL, "file:///%3F&="}, 
sl@0
    95
  { "/", "0123456789-", NULL, G_CONVERT_ERROR_ILLEGAL_SEQUENCE},
sl@0
    96
  { "/", "ABCDEFGHIJKLMNOPQRSTUVWXYZ", "file://ABCDEFGHIJKLMNOPQRSTUVWXYZ/"},
sl@0
    97
  { "/", "abcdefghijklmnopqrstuvwxyz", "file://abcdefghijklmnopqrstuvwxyz/"},
sl@0
    98
  { "/", "_.!~*'()", NULL, G_CONVERT_ERROR_ILLEGAL_SEQUENCE},
sl@0
    99
  { "/", "\"#%<>[\\]^`{|}\x7F", NULL, G_CONVERT_ERROR_ILLEGAL_SEQUENCE},
sl@0
   100
  { "/", ";?&=+$,", NULL, G_CONVERT_ERROR_ILLEGAL_SEQUENCE},
sl@0
   101
  { "/", "/", NULL, G_CONVERT_ERROR_ILLEGAL_SEQUENCE},
sl@0
   102
  { "/", "@:", NULL, G_CONVERT_ERROR_ILLEGAL_SEQUENCE},
sl@0
   103
  { "/", "\x80\xFF", NULL, G_CONVERT_ERROR_ILLEGAL_SEQUENCE},
sl@0
   104
  { "/", "\xC3\x80\xC3\xBF", NULL, G_CONVERT_ERROR_ILLEGAL_SEQUENCE},
sl@0
   105
};
sl@0
   106
sl@0
   107
sl@0
   108
typedef struct
sl@0
   109
{
sl@0
   110
  char *uri;
sl@0
   111
  char *expected_filename;
sl@0
   112
  char *expected_hostname;
sl@0
   113
  GConvertError expected_error; /* If failed */
sl@0
   114
}  FromUriTest;
sl@0
   115
sl@0
   116
FromUriTest
sl@0
   117
from_uri_tests[] = {
sl@0
   118
  { "file:///etc", "\\etc"},
sl@0
   119
  { "file:/etc", "\\etc"},
sl@0
   120
#if defined(G_OS_WIN32) || defined(__SYMBIAN32__)
sl@0
   121
  /* On Win32 we don't return "localhost" hostames, just in case
sl@0
   122
   * it isn't recognized anyway.
sl@0
   123
   */
sl@0
   124
  { "file://localhost/etc", "\\etc", NULL},
sl@0
   125
  /*{ "file://localhost/etc/%23%25%20file", "\\etc/#% file", NULL},*/
sl@0
   126
  { "file://localhost/\xE5\xE4\xF6", "\\\xe5\xe4\xf6", NULL},
sl@0
   127
  { "file://localhost/%E5%E4%F6", "\\\xe5\xe4\xf6", NULL},
sl@0
   128
#else
sl@0
   129
  { "file://localhost/etc", "\etc", "localhost"},
sl@0
   130
  { "file://localhost/etc/%23%25%20file", "/etc/#% file", "localhost"},
sl@0
   131
  { "file://localhost/\xE5\xE4\xF6", "/\xe5\xe4\xf6", "localhost"},
sl@0
   132
  { "file://localhost/%E5%E4%F6", "/\xe5\xe4\xf6", "localhost"},
sl@0
   133
#endif
sl@0
   134
  { "file://otherhost/etc", "\\etc", "otherhost"},
sl@0
   135
  /*{ "file://otherhost/etc/%23%25%20file", "/etc/#% file", "otherhost"},*/
sl@0
   136
  { "file://%C3%B6%C3%A4%C3%A5/etc", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
sl@0
   137
  { "file:////etc/%C3%B6%C3%C3%C3%A5", "\\\\etc\\\xc3\xb6\xc3\xc3\xc3\xa5", NULL},
sl@0
   138
  { "file://\xE5\xE4\xF6/etc", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
sl@0
   139
  { "file://%E5%E4%F6/etc", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
sl@0
   140
  { "file:///some/file#bad", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
sl@0
   141
  { "file://some", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
sl@0
   142
  { "", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
sl@0
   143
  { "file:test", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
sl@0
   144
  { "http://www.yahoo.com/", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
sl@0
   145
  { "file:////etc", "\\\\etc"},
sl@0
   146
  { "file://///etc", "\\\\\\etc"},
sl@0
   147
#if defined(G_OS_WIN32) || defined (__SYMBIAN32__)
sl@0
   148
  /* URIs with backslashes come from some nonstandard application, but accept them anyhow */
sl@0
   149
  { "file:///c:\\foo", "c:\\foo"},
sl@0
   150
  { "file:///c:/foo\\bar", "c:\\foo\\bar"},
sl@0
   151
  /* Accept also the old Netscape drive-letter-and-vertical bar convention */
sl@0
   152
  { "file:///c|/foo", "c:\\foo"},
sl@0
   153
  { "file:////server/share/dir", "\\\\server\\share\\dir"},
sl@0
   154
  { "file://localhost//server/share/foo", "\\\\server\\share\\foo"},
sl@0
   155
  { "file://otherhost//server/share/foo", "\\\\server\\share\\foo", "otherhost"},
sl@0
   156
#else
sl@0
   157
  { "file:///c:\\foo", "/c:\\foo"},
sl@0
   158
  { "file:///c:/foo", "/c:/foo"},
sl@0
   159
  { "file:////c:/foo", "//c:/foo"},
sl@0
   160
#endif
sl@0
   161
  { "file://0123456789/", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
sl@0
   162
  { "file://ABCDEFGHIJKLMNOPQRSTUVWXYZ/", "\\", "ABCDEFGHIJKLMNOPQRSTUVWXYZ"},
sl@0
   163
  { "file://abcdefghijklmnopqrstuvwxyz/", "\\", "abcdefghijklmnopqrstuvwxyz"},
sl@0
   164
  { "file://-_.!~*'()/", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
sl@0
   165
  { "file://\"<>[\\]^`{|}\x7F/", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
sl@0
   166
  { "file://;?&=+$,/", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
sl@0
   167
  { "file://%C3%80%C3%BF/", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
sl@0
   168
  { "file://@/", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
sl@0
   169
  { "file://:/", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
sl@0
   170
  { "file://#/", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
sl@0
   171
  { "file://%23/", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
sl@0
   172
  { "file://%2F/", NULL, NULL, G_CONVERT_ERROR_BAD_URI},
sl@0
   173
};
sl@0
   174
sl@0
   175
sl@0
   176
static gboolean any_failed = FALSE;
sl@0
   177
sl@0
   178
static void
sl@0
   179
run_to_uri_tests (void)
sl@0
   180
{
sl@0
   181
  int i;
sl@0
   182
  gchar *res;
sl@0
   183
  GError *error;
sl@0
   184
  
sl@0
   185
  for (i = 0; i < G_N_ELEMENTS (to_uri_tests); i++)
sl@0
   186
    {
sl@0
   187
      error = NULL;
sl@0
   188
      res = g_filename_to_uri (to_uri_tests[i].filename,
sl@0
   189
			       to_uri_tests[i].hostname,
sl@0
   190
			       &error);
sl@0
   191
sl@0
   192
      if (to_uri_tests[i].expected_result == NULL)
sl@0
   193
	{
sl@0
   194
	  if (res != NULL)
sl@0
   195
	    {
sl@0
   196
	      g_print ("\ng_filename_to_uri() test %d failed, expected to return NULL, actual result: %s\n", i, res);
sl@0
   197
	      any_failed = TRUE;
sl@0
   198
	    }
sl@0
   199
	  else
sl@0
   200
	    {
sl@0
   201
	      if (error == NULL)
sl@0
   202
		{
sl@0
   203
		  g_print ("\ng_filename_to_uri() test %d failed, returned NULL, but didn't set error\n", i);
sl@0
   204
		  any_failed = TRUE;
sl@0
   205
		}
sl@0
   206
	      else if (error->domain != G_CONVERT_ERROR)
sl@0
   207
		{
sl@0
   208
		  g_print ("\ng_filename_to_uri() test %d failed, returned NULL, set non G_CONVERT_ERROR error\n", i);
sl@0
   209
		  any_failed = TRUE;
sl@0
   210
		}
sl@0
   211
	      else if (error->code != to_uri_tests[i].expected_error)
sl@0
   212
		{
sl@0
   213
		  g_print ("\ng_filename_to_uri() test %d failed as expected, but set wrong errorcode %d instead of expected %d \n",
sl@0
   214
			   i, error->code, to_uri_tests[i].expected_error);
sl@0
   215
		  any_failed = TRUE;
sl@0
   216
		}
sl@0
   217
	    }
sl@0
   218
	}
sl@0
   219
      else if (res == NULL || strcmp (res, to_uri_tests[i].expected_result) != 0)
sl@0
   220
	{
sl@0
   221
	  g_print ("\ng_filename_to_uri() test %d failed, expected result: %s, actual result: %s\n",
sl@0
   222
		   i, to_uri_tests[i].expected_result, (res) ? res : "NULL");
sl@0
   223
	  if (error)
sl@0
   224
	    g_print ("Error message: %s\n", error->message);
sl@0
   225
	  any_failed = TRUE;
sl@0
   226
	}
sl@0
   227
      g_free (res);
sl@0
   228
    }
sl@0
   229
}
sl@0
   230
sl@0
   231
static void
sl@0
   232
run_from_uri_tests (void)
sl@0
   233
{
sl@0
   234
  int i;
sl@0
   235
  gchar *res;
sl@0
   236
  gchar *hostname;
sl@0
   237
  GError *error;
sl@0
   238
  
sl@0
   239
  for (i = 0; i < G_N_ELEMENTS (from_uri_tests); i++)
sl@0
   240
    {
sl@0
   241
      error = NULL;
sl@0
   242
      res = g_filename_from_uri (from_uri_tests[i].uri,
sl@0
   243
				 &hostname,
sl@0
   244
				 &error);
sl@0
   245
sl@0
   246
      if (from_uri_tests[i].expected_filename == NULL)
sl@0
   247
	{
sl@0
   248
	  if (res != NULL)
sl@0
   249
	    {
sl@0
   250
	      g_print ("\ng_filename_from_uri() test %d failed, expected to return NULL, actual result: %s\n", i, res);
sl@0
   251
	      any_failed = TRUE;
sl@0
   252
	    }
sl@0
   253
	  else
sl@0
   254
	    {
sl@0
   255
	      if (error == NULL)
sl@0
   256
		{
sl@0
   257
		  g_print ("\ng_filename_from_uri() test %d failed, returned NULL, but didn't set error\n", i);
sl@0
   258
		  any_failed = TRUE;
sl@0
   259
		}
sl@0
   260
	      else if (error->domain != G_CONVERT_ERROR)
sl@0
   261
		{
sl@0
   262
		  g_print ("\ng_filename_from_uri() test %d failed, returned NULL, set non G_CONVERT_ERROR error\n", i);
sl@0
   263
		  any_failed = TRUE;
sl@0
   264
		}
sl@0
   265
	      else if (error->code != from_uri_tests[i].expected_error)
sl@0
   266
		{
sl@0
   267
		  g_print ("\ng_filename_from_uri() test %d failed as expected, but set wrong errorcode %d instead of expected %d \n",
sl@0
   268
			   i, error->code, from_uri_tests[i].expected_error);
sl@0
   269
		  any_failed = TRUE;
sl@0
   270
		}
sl@0
   271
	    }
sl@0
   272
	}
sl@0
   273
      else
sl@0
   274
	{
sl@0
   275
#ifdef G_OS_WIN32
sl@0
   276
	  gchar *slash, *p;
sl@0
   277
sl@0
   278
	  p = from_uri_tests[i].expected_filename = g_strdup (from_uri_tests[i].expected_filename);
sl@0
   279
	  while ((slash = strchr (p, '/')) != NULL)
sl@0
   280
	    {
sl@0
   281
	      *slash = '\\';
sl@0
   282
	      p = slash + 1;
sl@0
   283
	    }
sl@0
   284
#endif
sl@0
   285
	  if (res == NULL || strcmp (res, from_uri_tests[i].expected_filename) != 0)
sl@0
   286
	    {
sl@0
   287
	      g_print ("\ng_filename_from_uri() test %d failed, expected result: %s, actual result: %s\n",
sl@0
   288
		       i, from_uri_tests[i].expected_filename, (res) ? res : "NULL");
sl@0
   289
	      any_failed = TRUE;
sl@0
   290
	    }
sl@0
   291
sl@0
   292
	  if (from_uri_tests[i].expected_hostname == NULL)
sl@0
   293
	    {
sl@0
   294
	      if (hostname != NULL)
sl@0
   295
		{
sl@0
   296
		  g_print ("\ng_filename_from_uri() test %d failed, expected no hostname, got: %s\n",
sl@0
   297
			   i, hostname);
sl@0
   298
		  any_failed = TRUE;
sl@0
   299
		}
sl@0
   300
	    }
sl@0
   301
	  else if (hostname == NULL ||
sl@0
   302
		   strcmp (hostname, from_uri_tests[i].expected_hostname) != 0)
sl@0
   303
	    {
sl@0
   304
	      g_print ("\ng_filename_from_uri() test %d failed, expected hostname: %s, actual result: %s\n",
sl@0
   305
		       i, from_uri_tests[i].expected_hostname, (hostname) ? hostname : "NULL");
sl@0
   306
	      any_failed = TRUE;
sl@0
   307
	    }
sl@0
   308
	}
sl@0
   309
    }
sl@0
   310
}
sl@0
   311
sl@0
   312
static gint
sl@0
   313
safe_strcmp (const gchar *a, const gchar *b)
sl@0
   314
{
sl@0
   315
  return strcmp (a ? a : "", b ? b : "");
sl@0
   316
}
sl@0
   317
sl@0
   318
static gint
sl@0
   319
safe_strcmp_filename (const gchar *a, const gchar *b)
sl@0
   320
{
sl@0
   321
#if !defined(G_OS_WIN32) && !defined(__SYMBIAN32__)
sl@0
   322
  return safe_strcmp (a, b);
sl@0
   323
#else
sl@0
   324
  if (!a || !b)
sl@0
   325
    return safe_strcmp (a, b);
sl@0
   326
  else
sl@0
   327
    {
sl@0
   328
      while (*a && *b)
sl@0
   329
	{
sl@0
   330
	  if ((G_IS_DIR_SEPARATOR (*a) && G_IS_DIR_SEPARATOR (*b)) ||
sl@0
   331
	      *a == *b)
sl@0
   332
	    a++, b++;
sl@0
   333
	  else
sl@0
   334
	    return (*a - *b);
sl@0
   335
	}
sl@0
   336
      return (*a - *b);
sl@0
   337
    }
sl@0
   338
#endif
sl@0
   339
}
sl@0
   340
sl@0
   341
static gint
sl@0
   342
safe_strcmp_hostname (const gchar *a, const gchar *b)
sl@0
   343
{
sl@0
   344
#if !defined(G_OS_WIN32) && !defined(__SYMBIAN32__)
sl@0
   345
  return safe_strcmp (a, b);
sl@0
   346
#else
sl@0
   347
  if (safe_strcmp (a, "localhost") == 0 && b == NULL)
sl@0
   348
    return 0;
sl@0
   349
  else
sl@0
   350
    return safe_strcmp (a, b);
sl@0
   351
#endif
sl@0
   352
}
sl@0
   353
sl@0
   354
static void
sl@0
   355
run_roundtrip_tests (void)
sl@0
   356
{
sl@0
   357
  int i;
sl@0
   358
  gchar *uri, *hostname, *res;
sl@0
   359
  GError *error;
sl@0
   360
  
sl@0
   361
  for (i = 0; i < G_N_ELEMENTS (to_uri_tests); i++)
sl@0
   362
    {
sl@0
   363
      if (to_uri_tests[i].expected_error != 0)
sl@0
   364
	continue;
sl@0
   365
sl@0
   366
      error = NULL;
sl@0
   367
      uri = g_filename_to_uri (to_uri_tests[i].filename,
sl@0
   368
			       to_uri_tests[i].hostname,
sl@0
   369
			       &error);
sl@0
   370
      
sl@0
   371
      if (error != NULL)
sl@0
   372
	{
sl@0
   373
	  g_print ("g_filename_to_uri failed unexpectedly: %s\n", 
sl@0
   374
		   error->message);
sl@0
   375
	  any_failed = TRUE;
sl@0
   376
	  continue;
sl@0
   377
	}
sl@0
   378
      
sl@0
   379
      error = NULL;
sl@0
   380
      res = g_filename_from_uri (uri, &hostname, &error);
sl@0
   381
      if (error != NULL)
sl@0
   382
	{
sl@0
   383
	  g_print ("g_filename_from_uri failed unexpectedly: %s\n", 
sl@0
   384
		   error->message);
sl@0
   385
	  any_failed = TRUE;
sl@0
   386
	  continue;
sl@0
   387
	}
sl@0
   388
sl@0
   389
      if (safe_strcmp_filename (to_uri_tests[i].filename, res))
sl@0
   390
	{
sl@0
   391
	  g_print ("roundtrip test %d failed, filename modified: "
sl@0
   392
		   " expected \"%s\", but got \"%s\"\n",
sl@0
   393
		   i, to_uri_tests[i].filename, res);
sl@0
   394
	  any_failed = TRUE;
sl@0
   395
	}
sl@0
   396
sl@0
   397
      if (safe_strcmp_hostname (to_uri_tests[i].hostname, hostname))
sl@0
   398
	{
sl@0
   399
	  g_print ("roundtrip test %d failed, hostname modified: "
sl@0
   400
		     " expected \"%s\", but got \"%s\"\n",
sl@0
   401
		   i, to_uri_tests[i].hostname, hostname);
sl@0
   402
	  any_failed = TRUE;
sl@0
   403
	}
sl@0
   404
    }
sl@0
   405
}
sl@0
   406
sl@0
   407
static void
sl@0
   408
run_uri_list_tests (void)
sl@0
   409
{
sl@0
   410
  /* straight from the RFC */
sl@0
   411
  gchar *list =
sl@0
   412
    "# urn:isbn:0-201-08372-8\r\n"
sl@0
   413
    "http://www.huh.org/books/foo.html\r\n"
sl@0
   414
    "http://www.huh.org/books/foo.pdf   \r\n"
sl@0
   415
    "   ftp://ftp.foo.org/books/foo.txt\r\n";
sl@0
   416
  gchar *expected_uris[] = {
sl@0
   417
    "http://www.huh.org/books/foo.html",
sl@0
   418
    "http://www.huh.org/books/foo.pdf",
sl@0
   419
    "ftp://ftp.foo.org/books/foo.txt"
sl@0
   420
  };
sl@0
   421
sl@0
   422
  gchar **uris;
sl@0
   423
  gint j;
sl@0
   424
sl@0
   425
  uris = g_uri_list_extract_uris (list);
sl@0
   426
  
sl@0
   427
  if (g_strv_length (uris) != 3)
sl@0
   428
    {
sl@0
   429
      g_print ("uri list test failed: "
sl@0
   430
	       " expected %d uris, but got %d\n",
sl@0
   431
	       3, g_strv_length (uris));
sl@0
   432
      any_failed = TRUE;
sl@0
   433
    }
sl@0
   434
  
sl@0
   435
  for (j = 0; j < 3; j++)
sl@0
   436
    {
sl@0
   437
      if (safe_strcmp (uris[j], expected_uris[j])) 
sl@0
   438
	{
sl@0
   439
	  g_print ("uri list test failed: "
sl@0
   440
		   " expected \"%s\", but got \"%s\"\n",
sl@0
   441
		   expected_uris[j], uris[j]);
sl@0
   442
	  any_failed = TRUE;
sl@0
   443
	}
sl@0
   444
    }
sl@0
   445
sl@0
   446
  g_strfreev (uris);
sl@0
   447
sl@0
   448
  uris = g_uri_list_extract_uris ("# just hot air\r\n# more hot air");
sl@0
   449
  if (g_strv_length (uris) != 0)
sl@0
   450
    {
sl@0
   451
      g_print ("uri list test 2 failed: "
sl@0
   452
	       " expected %d uris, but got %d (first is \"%s\")\n",
sl@0
   453
	       0, g_strv_length (uris), uris[0]);
sl@0
   454
      any_failed = TRUE;
sl@0
   455
    }
sl@0
   456
  
sl@0
   457
}
sl@0
   458
sl@0
   459
int
sl@0
   460
main (int   argc,
sl@0
   461
      char *argv[])
sl@0
   462
{
sl@0
   463
  #ifdef __SYMBIAN32__
sl@0
   464
sl@0
   465
  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);
sl@0
   466
  g_set_print_handler(mrtPrintHandler);
sl@0
   467
  #endif /*__SYMBIAN32__*/
sl@0
   468
#ifdef G_OS_UNIX
sl@0
   469
#  ifdef HAVE_UNSETENV  
sl@0
   470
  unsetenv ("G_BROKEN_FILENAMES");
sl@0
   471
#  else
sl@0
   472
  /* putenv with no = isn't standard, but works to unset the variable
sl@0
   473
   * on some systems
sl@0
   474
   */
sl@0
   475
  putenv ("G_BROKEN_FILENAMES");
sl@0
   476
#  endif  
sl@0
   477
#endif
sl@0
   478
sl@0
   479
  run_to_uri_tests ();
sl@0
   480
  run_from_uri_tests ();
sl@0
   481
  run_roundtrip_tests ();
sl@0
   482
  run_uri_list_tests ();
sl@0
   483
  #ifdef __SYMBIAN32__
sl@0
   484
  assert_failed = any_failed;
sl@0
   485
  testResultXml("uri-test");
sl@0
   486
  #endif /* EMULATOR */
sl@0
   487
sl@0
   488
  return any_failed ? 1 : 0;
sl@0
   489
}