diff -r 000000000000 -r e4d67989cc36 glib/tsrc/glib_nonstif/src/cache_test.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/glib/tsrc/glib_nonstif/src/cache_test.c Tue Feb 02 02:01:42 2010 +0200 @@ -0,0 +1,93 @@ +/* +* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: +* +*/ + + + + +#undef G_DISABLE_ASSERT +#undef G_LOG_DOMAIN + +#include +#include +#include "glib.h" + +#ifdef __SYMBIAN32__ +#include "mrt2_glib2_test.h" +#endif /*__SYMBIAN32__*/ + +void function(gchar *key,gchar *value,gint *user_data) +{ + // give the count of the number of times the function was called + (*user_data)++; +} + +void cache_test() +{ + char *str1,*str2,*str3; + GCache *cache = NULL; + gint user_data = 0; + + g_assert((cache = g_cache_new( (GCacheNewFunc) g_ascii_strup, + g_free, (GCacheDupFunc) g_strdup, g_free, g_str_hash, + g_str_hash, g_str_equal)) != NULL); + + str1 = g_cache_insert(cache,"test"); + + g_assert(!strcmp("TEST",str1)); + + str2 = g_cache_insert(cache,"test"); + + g_assert(!strcmp("TEST",str1)); + + str3 = g_cache_insert(cache,"glib"); + + g_assert(!strcmp("GLIB",str3)); + + g_cache_key_foreach (cache,(GHFunc)function,&user_data); + + //g_cache_key_foreach would call function twice and make user_data == 2 + g_assert(user_data == 2); + + g_cache_value_foreach (cache,(GHFunc)function,&user_data); + + //g_cache_value_foreach would call function twice and make user_data == 4 + g_assert(user_data == 4); + + g_cache_remove(cache,str1); + g_cache_remove(cache,str2); + g_cache_remove(cache,str3); + + g_cache_destroy(cache); + +} + + +int main (int argc, + char *argv[]) +{ + #ifdef __SYMBIAN32__ + 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); + #endif /*__SYMBIAN32__*/ + + cache_test(); + + #if __SYMBIAN32__ + testResultXml("cache_test"); + #endif /* EMULATOR */ + + return 0; +} \ No newline at end of file