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.
19 #define LOG_FILE "c:\\logs\\bookmark_test1_log.txt"
20 #include "std_log_result.h"
21 #define LOG_FILENAME_LINE __FILE__, __LINE__
22 #define in_FILE "file.xbel"
25 void create_xml(int result)
30 testResultXml("bookmark-test1");
38 GBookmarkFile* bookmark;
40 gchar *bookmark_data = NULL;
41 gboolean file_written,file_load;
42 const gchar *rel_path;
44 const gchar *bookmark_filename = argv[1];
46 gchar **bookmark_uri = NULL;
48 bookmark = g_bookmark_file_new();
49 file_load= g_bookmark_file_load_from_file(bookmark, bookmark_filename, &error);
52 std_log(LOG_FILENAME_LINE,"g_bookmark_file_load_from_file fails with err:%s",error->message);
55 bookmark_data = g_bookmark_file_to_data(bookmark,&uris_len,&error);
56 if(bookmark_data == NULL)
58 std_log(LOG_FILENAME_LINE,"Bg_bookmark_file_to_data fails with err:%s",error->message);
61 rel_path = in_FILE; // Code changed to Hardcode the data file in the c:\ private path.
62 file_written = g_bookmark_file_load_from_data_dirs(bookmark, rel_path,NULL, &error);
63 if(file_written == FALSE)
65 std_log(LOG_FILENAME_LINE,"g_bookmark_file_load_from_data_dirs fails with err:%s",error->message);
69 bookmark_uri = g_bookmark_file_get_uris(bookmark, NULL);
70 if(bookmark_uri == NULL)
72 std_log(LOG_FILENAME_LINE,"g_bookmark_file_get_uris fails");
76 bookmark_data = g_bookmark_file_get_mime_type(bookmark,*bookmark_uri,&error);
77 if(bookmark_data == NULL)
79 std_log(LOG_FILENAME_LINE,"URI cannot be found and the error code:%s",error->message);
82 g_bookmark_file_set_is_private(bookmark,*bookmark_uri, TRUE);
83 file_written = g_bookmark_file_get_is_private(bookmark,*bookmark_uri, &error);
84 if(file_written == FALSE)
86 std_log(LOG_FILENAME_LINE,"Private flag is not set in the URI and fails with :%s",error->message);
90 g_bookmark_file_set_added(bookmark,*bookmark_uri,-1);//-1, To use the current time.
91 time = g_bookmark_file_get_added(bookmark,*bookmark_uri,&error);
94 std_log(LOG_FILENAME_LINE,"URI cannot be found and fails with :%s",error->message);
97 g_strfreev(bookmark_uri);
98 g_bookmark_file_free(bookmark);
101 std_log(LOG_FILENAME_LINE,"Test Fail");
103 std_log(LOG_FILENAME_LINE,"Test Successful");
106 create_xml(assert_failed);