glib/tsrc/BC/src/object_extra_tests.c
changeset 0 e4d67989cc36
child 72 403e7f6ed6c5
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/glib/tsrc/BC/src/object_extra_tests.c	Tue Feb 02 02:01:42 2010 +0200
@@ -0,0 +1,268 @@
+/*
+* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
+*
+* This library is free software; you can redistribute it and/or
+* modify it under the terms of the GNU Lesser General Public
+* License as published by the Free Software Foundation; either
+* version 2 of the License, or (at your option) any later version.
+*
+* This library is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+* Lesser General Public License for more details.
+*
+* You should have received a copy of the GNU Lesser General Public
+* License along with this library; if not, write to the
+* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+* Boston, MA 02111-1307, USA.
+*
+* Description:
+*
+*/
+
+#include <unistd.h>
+#include <glib.h>
+#include <glib-object.h>
+
+#include <stdio.h>
+#ifdef SYMBIAN
+#include "mrt2_glib2_test.h"
+#endif /*SYMBIAN*/
+
+
+#define G_TYPE_TEST               (g_test_get_type ())
+#define G_TEST(test)              (G_TYPE_CHECK_INSTANCE_CAST ((test), G_TYPE_TEST, GTest))
+#define G_IS_TEST(test)           (G_TYPE_CHECK_INSTANCE_TYPE ((test), G_TYPE_TEST))
+#define G_TEST_CLASS(tclass)      (G_TYPE_CHECK_CLASS_CAST ((tclass), G_TYPE_TEST, GTestClass))
+#define G_IS_TEST_CLASS(tclass)   (G_TYPE_CHECK_CLASS_TYPE ((tclass), G_TYPE_TEST))
+#define G_TEST_GET_CLASS(test)    (G_TYPE_INSTANCE_GET_CLASS ((test), G_TYPE_TEST, GTestClass))
+
+enum {
+  PROP_0,
+  PROP_DUMMY
+};
+
+typedef struct _GTest GTest;
+typedef struct _GTestClass GTestClass;
+
+struct _GTest
+{
+  GObject object;
+
+  gint dummy;
+};
+
+struct _GTestClass
+{
+  GObjectClass parent_class;
+};
+
+static GType g_test_get_type (void);
+
+static void g_test_class_init (GTestClass * klass);
+static void g_test_init (GTest * test);
+static void g_test_dispose (GObject * object);
+static void g_test_get_property (GObject    *object,
+				 guint       prop_id,
+				 GValue     *value,
+				 GParamSpec *pspec);
+static void g_test_set_property (GObject      *object,
+				 guint         prop_id,
+				 const GValue *value,
+				 GParamSpec   *pspec);
+
+static GObjectClass *parent_class = NULL;
+
+static GType
+g_test_get_type (void)
+{
+  static GType test_type = 0;
+
+  if (!test_type) {
+    static const GTypeInfo test_info = {
+      sizeof (GTestClass),
+      NULL,
+      NULL,
+      (GClassInitFunc) g_test_class_init,
+      NULL,
+      NULL,
+      sizeof (GTest),
+      0,
+      (GInstanceInitFunc) g_test_init,
+      NULL
+    };
+
+    test_type = g_type_register_static (G_TYPE_OBJECT, "GTest",
+        &test_info, 0);
+    if(!test_type)
+    {
+    	g_print("properties2.c : g_type_register_static is failed @ line : %d",__LINE__);
+    	g_assert(FALSE && "properties");
+    }
+  }
+  return test_type;
+}
+
+static void
+g_test_class_init (GTestClass * klass)
+{
+  GObjectClass *gobject_class;
+  GParamSpec *gparam_spec;
+
+  gobject_class = (GObjectClass *) klass;
+
+  parent_class = g_type_class_ref (G_TYPE_OBJECT);
+  if(!parent_class)
+  {
+  	 g_print("properties2.c : g_tupe_class_ref failed @ line : %d",__LINE__);
+  	g_assert(FALSE && "properties");	
+  }
+    
+  
+
+  gobject_class->dispose = g_test_dispose;
+  gobject_class->get_property = g_test_get_property;
+  gobject_class->set_property = g_test_set_property;
+
+  g_object_class_install_property (gobject_class,
+				   PROP_DUMMY,
+				   g_param_spec_int ("dummy",
+						     NULL, 
+						     NULL,
+						     0, G_MAXINT, 0,
+						     G_PARAM_READWRITE));
+  
+}
+
+static void
+g_test_init (GTest * test)
+{
+  //g_print ("init %p\n", test);
+}
+
+static void
+g_test_dispose (GObject * object)
+{
+  GTest *test;
+
+  test = G_TEST (object);
+
+  g_print ("dispose %p!\n", object);
+
+  G_OBJECT_CLASS (parent_class)->dispose (object);
+}
+
+static void 
+g_test_get_property (GObject    *object,
+		     guint       prop_id,
+		     GValue     *value,
+		     GParamSpec *pspec)
+{
+  GTest *test;
+
+  test = G_TEST (object);
+
+  switch (prop_id)
+    {
+    case PROP_DUMMY:
+      g_value_set_int (value, test->dummy);
+      break;
+    default:
+      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
+      break;
+    }
+}
+
+static void 
+g_test_set_property (GObject      *object,
+		     guint         prop_id,
+		     const GValue *value,
+		     GParamSpec   *pspec)
+{
+  GTest *test;
+
+  test = G_TEST (object);
+
+  switch (prop_id)
+    {
+    case PROP_DUMMY:
+      test->dummy = g_value_get_int (value);
+      break;
+    default:
+      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
+      break;
+    }
+}
+
+static gint count = 0;
+
+
+static void
+g_test_do_property (GTest * test)
+{
+  gint returnvalue, passedvalue=4;
+  GValue value1 = { 0, };
+  GValue value2 = { 0, };
+  
+  g_value_init(&value1,G_TYPE_INT);
+  g_value_init(&value2,G_TYPE_INT);
+  
+  g_value_set_int(&value1, passedvalue);
+  
+  
+  g_object_set_property (G_OBJECT(G_TEST(test)), "dummy", &value1);
+  g_object_get_property (G_OBJECT(G_TEST(test)), "dummy",&value2);
+
+  returnvalue = g_value_get_int(&value2);
+  g_assert(returnvalue == passedvalue);
+  
+}
+
+
+void test_float_sink()
+{
+	 GTest *test;
+	 GObject* obj;
+	 test = g_object_new (G_TYPE_TEST, NULL);
+	 obj = G_OBJECT(test);
+	 g_object_force_floating(obj);
+	 g_assert(g_object_is_floating(obj));
+	 g_object_ref_sink(obj);
+	 g_object_unref(obj);
+}
+
+
+int
+main (int argc, char **argv)
+{
+  gint i;
+  gint handle_id = 0;
+  GTest *test;
+
+  #ifdef SYMBIAN
+ 
+  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);
+  g_set_print_handler(mrtPrintHandler);
+  #endif /*SYMBIAN*/
+	  
+
+  g_type_init ();
+  
+  test = g_object_new (G_TYPE_TEST, NULL);
+  if(!test)
+  {
+  	g_print("object_get_property.c : g_object_new is failed @ line : %d",__LINE__);
+	g_assert(FALSE && "properties");
+  }
+
+  g_test_do_property (test);
+  test_float_sink();
+  
+
+  //g_assert (count == test->dummy);
+#ifdef SYMBIAN
+  testResultXml("object_extra_tests");
+#endif /* EMULATOR */
+
+  return 0;
+}