os/ossrv/glib/tests/bookmarkfile-test1.c
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
sl@0
    17
#include<stdio.h>
sl@0
    18
#include <glib.h>
sl@0
    19
#define LOG_FILE "c:\\logs\\bookmark_test1_log.txt"
sl@0
    20
#include "std_log_result.h"
sl@0
    21
#define LOG_FILENAME_LINE __FILE__, __LINE__
sl@0
    22
#define in_FILE "file.xbel"
sl@0
    23
sl@0
    24
sl@0
    25
void create_xml(int result)
sl@0
    26
{
sl@0
    27
    if(result)
sl@0
    28
        assert_failed = 1;
sl@0
    29
    
sl@0
    30
    testResultXml("bookmark-test1");
sl@0
    31
    close_log_file();
sl@0
    32
}
sl@0
    33
sl@0
    34
int
sl@0
    35
main (int   argc,
sl@0
    36
      char *argv[])
sl@0
    37
    {
sl@0
    38
    GBookmarkFile* bookmark;
sl@0
    39
    gsize uris_len;
sl@0
    40
    gchar *bookmark_data = NULL;
sl@0
    41
    gboolean file_written,file_load;
sl@0
    42
    const gchar *rel_path;
sl@0
    43
    time_t time;
sl@0
    44
    const gchar *bookmark_filename = argv[1];
sl@0
    45
    GError        *error = NULL;
sl@0
    46
    gchar **bookmark_uri = NULL;
sl@0
    47
        
sl@0
    48
    bookmark = g_bookmark_file_new();
sl@0
    49
    file_load= g_bookmark_file_load_from_file(bookmark, bookmark_filename, &error);
sl@0
    50
    if(file_load != TRUE)
sl@0
    51
        {
sl@0
    52
        std_log(LOG_FILENAME_LINE,"g_bookmark_file_load_from_file fails with err:%s",error->message);
sl@0
    53
        assert_failed = 1;
sl@0
    54
        }
sl@0
    55
    bookmark_data = g_bookmark_file_to_data(bookmark,&uris_len,&error);
sl@0
    56
    if(bookmark_data == NULL)
sl@0
    57
        {
sl@0
    58
        std_log(LOG_FILENAME_LINE,"Bg_bookmark_file_to_data fails with err:%s",error->message);
sl@0
    59
        assert_failed = 1;
sl@0
    60
        }
sl@0
    61
    rel_path = in_FILE; // Code changed to Hardcode the data file in the c:\ private path. 
sl@0
    62
    file_written = g_bookmark_file_load_from_data_dirs(bookmark, rel_path,NULL, &error);
sl@0
    63
    if(file_written == FALSE)
sl@0
    64
           {
sl@0
    65
           std_log(LOG_FILENAME_LINE,"g_bookmark_file_load_from_data_dirs fails with err:%s",error->message);
sl@0
    66
           assert_failed = 1;
sl@0
    67
           }
sl@0
    68
    
sl@0
    69
    bookmark_uri = g_bookmark_file_get_uris(bookmark, NULL);
sl@0
    70
    if(bookmark_uri == NULL)
sl@0
    71
            {
sl@0
    72
            std_log(LOG_FILENAME_LINE,"g_bookmark_file_get_uris fails");
sl@0
    73
            assert_failed = 1;
sl@0
    74
            }
sl@0
    75
          
sl@0
    76
    bookmark_data = g_bookmark_file_get_mime_type(bookmark,*bookmark_uri,&error);
sl@0
    77
    if(bookmark_data == NULL)
sl@0
    78
        {
sl@0
    79
        std_log(LOG_FILENAME_LINE,"URI cannot be found and the error code:%s",error->message);
sl@0
    80
        assert_failed = 1;
sl@0
    81
        }
sl@0
    82
    g_bookmark_file_set_is_private(bookmark,*bookmark_uri, TRUE);
sl@0
    83
    file_written = g_bookmark_file_get_is_private(bookmark,*bookmark_uri, &error);
sl@0
    84
    if(file_written == FALSE)
sl@0
    85
        {
sl@0
    86
        std_log(LOG_FILENAME_LINE,"Private flag is not set in the URI and fails with :%s",error->message);
sl@0
    87
        assert_failed = 1;
sl@0
    88
        }
sl@0
    89
    
sl@0
    90
    g_bookmark_file_set_added(bookmark,*bookmark_uri,-1);//-1, To use the current time.
sl@0
    91
    time = g_bookmark_file_get_added(bookmark,*bookmark_uri,&error);
sl@0
    92
    if(time == -1)
sl@0
    93
        {
sl@0
    94
        std_log(LOG_FILENAME_LINE,"URI cannot be found and fails with :%s",error->message);
sl@0
    95
        assert_failed = 1;
sl@0
    96
        } 
sl@0
    97
    g_strfreev(bookmark_uri);  
sl@0
    98
    g_bookmark_file_free(bookmark);
sl@0
    99
    
sl@0
   100
    if(assert_failed)
sl@0
   101
        std_log(LOG_FILENAME_LINE,"Test Fail");
sl@0
   102
    else
sl@0
   103
        std_log(LOG_FILENAME_LINE,"Test Successful");
sl@0
   104
         
sl@0
   105
   
sl@0
   106
    create_xml(assert_failed);
sl@0
   107
    return 0;
sl@0
   108
    }