glib/tsrc/glib_nonstif/src/hook_test.c
changeset 0 e4d67989cc36
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/glib/tsrc/glib_nonstif/src/hook_test.c	Tue Feb 02 02:01:42 2010 +0200
@@ -0,0 +1,216 @@
+/*
+* 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__*/
+
+gboolean func1(int *data)
+{
+	*data = 1;
+	return TRUE;
+}
+
+gboolean func2(int *data)
+{
+	*data = 2;
+	return TRUE;
+}
+
+gboolean func3(int *data)
+{
+	*data = 3;
+	return FALSE;
+}
+
+gboolean func4(int *data)
+{
+	*data = 4;
+	return TRUE;
+}
+
+gint sort_func(GHook *new_hook,GHook *sibling)
+{
+	if(new_hook->hook_id < sibling->hook_id)
+		return 0;
+	else
+		return 1;
+}
+
+gboolean find_func(GHook *hook,gpointer data)
+{
+	if(hook->hook_id == 1)
+		return TRUE;
+	else
+		return FALSE;
+}
+
+void marshaller(GHook *hook,gpointer mashal_data)
+{
+	gint *data = (int *)hook->data;
+	*data = -1;
+}
+
+gboolean check_marshaller(GHook *hook,gpointer mashal_data)
+{
+	if(hook->hook_id == 2) // for hook2 id is 2
+		return FALSE;
+	else
+		return TRUE;
+}
+
+
+void hook_test()
+{
+	GHookList hooklist;
+	GHook *hook1 = NULL,*hook2 = NULL,*hook3 = NULL,*hook4 = NULL,*temp_hook;
+	int data1 = 0,data2 = 0,data3 = 0,data4 = 0;
+	int comp_value;
+	gboolean val;
+	
+	g_hook_list_init(&hooklist,sizeof(GHook));
+	
+	hook1 = g_hook_alloc(&hooklist);
+	hook1->func = (gpointer)func1;
+	hook1->data = &data1;
+	
+	hook2 = g_hook_alloc(&hooklist);
+	hook2->func = (gpointer)func2;
+	hook2->data = &data2;
+	
+	hook3 = g_hook_alloc(&hooklist);
+	hook3->func = (gpointer)func3;
+	hook3->data = &data3;
+	
+	hook4 = g_hook_alloc(&hooklist);
+	hook4->func = (gpointer)func4;
+	hook4->data = &data4;
+	
+	g_hook_append(&hooklist,hook4);
+	g_hook_prepend(&hooklist,hook3);
+	g_hook_insert_before(&hooklist,hook3,hook2);
+	g_hook_insert_sorted(&hooklist,hook1,sort_func);
+	
+	g_hook_list_invoke(&hooklist,FALSE);
+	
+	// checks g_hook_list_init,g_hook_alloc,g_hook_append,g_hook_prepend,g_hook_insert_before,g_hook_insert_sorted
+	g_assert(data1 == 1 && data2 == 2 && data3 == 3 && data4 == 4);
+	
+	comp_value = g_hook_compare_ids(hook2,hook1);
+	
+	//checks g_hook_compare_ids
+	g_assert(comp_value < 0);
+	
+	temp_hook = g_hook_get(&hooklist,10);
+	
+	//checks g_hook_get
+	g_assert(temp_hook == NULL);
+	
+	temp_hook = g_hook_get(&hooklist,1);
+	
+	//checks g_hook_get
+	g_assert(temp_hook == hook4);
+	
+	temp_hook = NULL;
+	
+	temp_hook = g_hook_find(&hooklist,TRUE,find_func,NULL);
+	
+	//checks g_hook_find
+	g_assert(temp_hook == hook4);
+	
+	temp_hook = NULL;
+	
+	temp_hook = g_hook_find_data(&hooklist,TRUE,&data1);
+	
+	//checks g_hook_find_data
+	g_assert(temp_hook == hook1);
+	
+	temp_hook = NULL;
+	
+	temp_hook = g_hook_find_func(&hooklist,TRUE,(gpointer)func2);
+	
+	//checks g_hook_find_func
+	g_assert(temp_hook == hook2);
+	
+	temp_hook = g_hook_find_func_data(&hooklist,TRUE,(gpointer)func2,&data1);
+	
+	//checks g_hook_find_func_data
+	g_assert(temp_hook == NULL);
+	
+	temp_hook = g_hook_find_func_data(&hooklist,TRUE,(gpointer)func1,&data1);
+	
+	//checks g_hook_find_func_data
+	g_assert(temp_hook == hook1);
+		
+	temp_hook = NULL;
+	
+	temp_hook = g_hook_ref(&hooklist,hook3);
+	
+	//checks g_hook_ref
+	g_assert(hook3->ref_count == 2);
+	
+	g_hook_unref(&hooklist,hook3);
+	
+	//checks g_hook_unref
+	g_assert(hook3->ref_count == 1);
+	
+	g_hook_list_marshal(&hooklist,TRUE,marshaller,NULL);
+	
+	//checks g_hook_list_marshal
+	g_assert(data1 == -1 && data2 == -1 && data3 == -1 && data4 == -1);
+	
+	g_hook_list_marshal_check(&hooklist,TRUE,check_marshaller,NULL);
+	
+	// checks g_hook_list_marshal_check
+	// func3 is for hook3 and the check_marshaller returns FALSE for hook3
+	// As a rsult the hook is deleted from the hook list.
+	g_assert(g_hook_find_func(&hooklist,TRUE,(gpointer)func3) == NULL);
+	
+	g_hook_list_clear(&hooklist);
+	
+	//checks g_hook_list_clear
+	g_assert(hooklist.hooks == 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__*/
+	
+	hook_test();
+	
+	#if __SYMBIAN32__
+  	testResultXml("hook_test");
+  	#endif /* EMULATOR */
+	
+	return 0;
+	
+}
\ No newline at end of file