Update contrib.
1 // Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #undef G_DISABLE_ASSERT
21 #define LOG_FILE "c:\\logs\\uri_funcs_log.txt"
22 #include "std_log_result.h"
23 #define LOG_FILENAME_LINE __FILE__, __LINE__
25 void create_xml(int result)
30 testResultXml("uri_funcs_log");
34 int main (int argc, char *argv[])
36 gchar *uri = "http:\\\\www.no!ki@a.com";
37 gchar *res_str = ":\\";
42 p = g_uri_parse_scheme(uri);
48 std_log(LOG_FILENAME_LINE,"g_uri_parse_scheme didnt work as expected");
55 std_log(LOG_FILENAME_LINE,"g_uri_parse_scheme returnd NULL. errno = %d", errno);
61 escape_str = g_uri_escape_string(uri, res_str, TRUE);
65 std_log(LOG_FILENAME_LINE, "escape string %s", escape_str);
67 //convert back only a segment
68 q = g_uri_unescape_segment(escape_str, escape_str+16, NULL);
71 std_log(LOG_FILENAME_LINE, "unescape segment string %s", q);
72 if(strcmp(q, "http:\\\\www.no!"))
74 std_log(LOG_FILENAME_LINE,"g_uri_unescape_segment didnt work as expected");
81 std_log(LOG_FILENAME_LINE,"g_uri_unescape_segment returned NULL. errno = %d", errno);
85 //convert back the whole string
86 p = g_uri_unescape_string(escape_str, NULL);
89 std_log(LOG_FILENAME_LINE, "unescape string %s", p);
91 //converted string should be same as original uri string
94 std_log(LOG_FILENAME_LINE,"g_uri_unescape_string returned NULL");
102 std_log(LOG_FILENAME_LINE,"g_uri_unescape_string returned NULL. errno = %d", errno);
110 std_log(LOG_FILENAME_LINE,"g_uri_escape_string returned NULL. errno = %d", errno);
115 std_log(LOG_FILENAME_LINE,"Test Failed");
117 std_log(LOG_FILENAME_LINE,"Test Successful");