glib/tsrc/glib_nonstif/src/dataset_test.c
branchRCL_3
changeset 57 2efc27d87e1c
parent 0 e4d67989cc36
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/glib/tsrc/glib_nonstif/src/dataset_test.c	Wed Sep 01 12:36:54 2010 +0100
@@ -0,0 +1,110 @@
+/*
+* 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 <stdio.h>
+#include <string.h>
+#include "glib.h"
+
+#ifdef __SYMBIAN32__
+#include "mrt2_glib2_test.h"
+#endif /*__SYMBIAN32__*/
+
+struct data
+{
+	char a[50],b[50],c[50];
+};
+
+void function(GQuark key_id,gpointer data,gpointer user_data)
+{
+	int *i = (int *)user_data;
+	(*i)++;
+}
+
+void dataset_test()
+{
+	struct data *d = g_malloc(sizeof(struct data));
+	gchar *str1,*str2,*str3,*str4,*str5,*str6;
+	int user_data = 0;
+	
+	GQuark q1,q2,q3;
+	
+	strcpy(d->a,"test1");
+	strcpy(d->b,"test2");
+	strcpy(d->c,"test3");
+	
+	q1 = g_quark_from_string(d->a);
+	q2 = g_quark_from_string(d->b);
+	q3 = g_quark_from_string(d->c);
+	
+	g_dataset_id_set_data_full(d,q1,d->a,NULL);
+	g_dataset_id_set_data_full(d,q2,d->b,NULL);
+	g_dataset_id_set_data_full(d,q3,d->c,NULL);
+	
+	str1 = g_dataset_id_get_data(d,q1);
+	str2 = g_dataset_id_get_data(d,q2);
+	str3 = g_dataset_id_get_data(d,q3);
+	
+	// These assertions will check whether g_dataset_id_set_data_full & 
+	// g_dataset_id_get_data is sucessful or not
+	g_assert(!strcmp(str1,d->a));
+	g_assert(!strcmp(str2,d->b));
+	g_assert(!strcmp(str3,d->c));
+	
+	str4 = g_dataset_id_remove_no_notify(d,q1);
+	str5 = g_dataset_id_get_data(d,q1);
+	
+	//This assertion will check if g_dataset_id_remove_no_notify is sucessful or not
+	g_assert(!strcmp(str4,d->a));
+	g_assert(str5 == NULL);
+	
+	g_dataset_foreach(d,function,&user_data);
+	
+	
+	//This assertion will check if g_dataset_foreach is sucessful or not
+	g_assert(user_data == 2);
+	
+	g_dataset_destroy(d);	
+	
+	str6 = g_dataset_id_get_data(d,q2);
+	
+	//This assertion will check if g_dataset_destroy is successful or not
+	g_assert(str5 == NULL);
+	
+}
+
+
+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__*/
+	
+	dataset_test();
+	
+	#if __SYMBIAN32__
+  	testResultXml("dataset_test");
+  	#endif /* EMULATOR */
+	
+	return 0;
+}
\ No newline at end of file