Update contrib.
1 /* GObject - GLib Type, Object, Parameter and Signal Library
2 * Copyright (C) 2001, 2003 Red Hat, Inc.
3 * Portions copyright (c) 2006-2009 Nokia Corporation. All rights reserved.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General
15 * Public License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
17 * Boston, MA 02111-1307, USA.
21 #define G_LOG_DOMAIN "TestIfaceProperties"
23 #undef G_DISABLE_ASSERT
24 #undef G_DISABLE_CHECKS
25 #undef G_DISABLE_CAST_CHECKS
29 #include <glib-object.h>
31 #include "testcommon.h"
33 #include <gobject_global.h>
34 #include "mrt2_glib2_test.h"
35 #endif /*__SYMBIAN32__*/
37 /* This test tests interface properties, implementing interface
38 * properties and #GParamSpecOverride.
40 * Four properties are tested:
42 * prop1: Defined in TestIface, Implemented in BaseObject with a GParamSpecOverride
43 * prop2: Defined in TestIface, Implemented in BaseObject with a new property
44 * prop3: Defined in TestIface, Implemented in BaseObject, Overridden in DerivedObject
45 * prop4: Defined in BaseObject, Overridden in DerivedObject
48 static GType base_object_get_type (void);
49 static GType derived_object_get_type (void);
66 * BaseObject, a parent class for DerivedObject
68 #define BASE_TYPE_OBJECT (base_object_get_type ())
69 #define BASE_OBJECT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), BASE_TYPE_OBJECT, BaseObject))
70 typedef struct _BaseObject BaseObject;
71 typedef struct _BaseObjectClass BaseObjectClass;
75 GObject parent_instance;
82 struct _BaseObjectClass
84 GObjectClass parent_class;
87 GObjectClass *base_parent_class;
90 * DerivedObject, the child class of DerivedObject
92 #define DERIVED_TYPE_OBJECT (derived_object_get_type ())
93 typedef struct _DerivedObject DerivedObject;
94 typedef struct _DerivedObjectClass DerivedObjectClass;
98 BaseObject parent_instance;
100 struct _DerivedObjectClass
102 BaseObjectClass parent_class;
108 typedef struct _TestIfaceClass TestIfaceClass;
110 struct _TestIfaceClass
112 GTypeInterface base_iface;
115 #define TEST_TYPE_IFACE (test_iface_get_type ())
117 /* The paramspecs installed on our interface
119 static GParamSpec *iface_spec1, *iface_spec2, *iface_spec3;
121 /* The paramspecs inherited by our derived object
123 static GParamSpec *inherited_spec1, *inherited_spec2, *inherited_spec3, *inherited_spec4;
126 test_iface_default_init (TestIfaceClass *iface_vtable)
128 inherited_spec1 = iface_spec1 = g_param_spec_int ("prop1",
134 G_PARAM_READWRITE | G_PARAM_CONSTRUCT);
135 g_object_interface_install_property (iface_vtable, iface_spec1);
137 iface_spec2 = g_param_spec_int ("prop2",
144 g_object_interface_install_property (iface_vtable, iface_spec2);
146 inherited_spec3 = iface_spec3 = g_param_spec_int ("prop3",
153 g_object_interface_install_property (iface_vtable, iface_spec3);
156 static DEFINE_IFACE (TestIface, test_iface, NULL, test_iface_default_init)
160 base_object_constructor (GType type,
161 guint n_construct_properties,
162 GObjectConstructParam *construct_properties)
164 /* The constructor is the one place where a GParamSpecOverride is visible
165 * to the outside world, so we do a bunch of checks here
167 GValue value1 = { 0, };
168 GValue value2 = { 0, };
171 g_assert (n_construct_properties == 1);
173 pspec = construct_properties->pspec;
175 /* Check we got the param spec we expected
177 g_assert (G_IS_PARAM_SPEC_OVERRIDE (pspec));
178 g_assert (pspec->param_id == BASE_PROP1);
179 g_assert (strcmp (g_param_spec_get_name (pspec), "prop1") == 0);
180 g_assert (g_param_spec_get_redirect_target (pspec) == iface_spec1);
182 /* Test redirection of the nick and blurb to the redirect target
184 g_assert (strcmp (g_param_spec_get_nick (pspec), "Prop1") == 0);
185 g_assert (strcmp (g_param_spec_get_blurb (pspec), "Property 1") == 0);
187 /* Test forwarding of the various GParamSpec methods to the redirect target
189 g_value_init (&value1, G_TYPE_INT);
190 g_value_init (&value2, G_TYPE_INT);
192 g_param_value_set_default (pspec, &value1);
193 g_assert (g_value_get_int (&value1) == 42);
195 g_value_reset (&value1);
196 g_value_set_int (&value1, 0x10000);
197 g_assert (g_param_value_validate (pspec, &value1));
198 g_assert (g_value_get_int (&value1) == 0xFFFF);
199 g_assert (!g_param_value_validate (pspec, &value1));
201 g_value_reset (&value1);
202 g_value_set_int (&value1, 1);
203 g_value_set_int (&value2, 2);
204 g_assert (g_param_values_cmp (pspec, &value1, &value2) < 0);
205 g_assert (g_param_values_cmp (pspec, &value2, &value1) > 0);
207 g_value_unset (&value1);
208 g_value_unset (&value2);
210 return base_parent_class->constructor (type,
211 n_construct_properties,
212 construct_properties);
216 base_object_set_property (GObject *object,
221 BaseObject *base_object = BASE_OBJECT (object);
226 g_assert (pspec == inherited_spec1);
227 base_object->val1 = g_value_get_int (value);
230 g_assert (pspec == inherited_spec2);
231 base_object->val2 = g_value_get_int (value);
234 g_assert_not_reached ();
237 g_assert_not_reached ();
240 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
246 base_object_get_property (GObject *object,
251 BaseObject *base_object = BASE_OBJECT (object);
256 g_assert (pspec == inherited_spec1);
257 g_value_set_int (value, base_object->val1);
260 g_assert (pspec == inherited_spec2);
261 g_value_set_int (value, base_object->val2);
264 g_assert_not_reached ();
267 g_assert_not_reached ();
270 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
276 base_object_notify (GObject *object,
279 /* The property passed to notify is the redirect target, not the
282 g_assert (pspec == inherited_spec1 ||
283 pspec == inherited_spec2 ||
284 pspec == inherited_spec3 ||
285 pspec == inherited_spec4);
289 base_object_class_init (BaseObjectClass *class)
291 GObjectClass *object_class = G_OBJECT_CLASS (class);
293 base_parent_class= g_type_class_peek_parent (class);
295 object_class->constructor = base_object_constructor;
296 object_class->set_property = base_object_set_property;
297 object_class->get_property = base_object_get_property;
298 object_class->notify = base_object_notify;
300 g_object_class_override_property (object_class, BASE_PROP1, "prop1");
302 /* We override this one using a real property, not GParamSpecOverride
303 * We change the flags from READONLY to READWRITE to show that we
304 * can make the flags less restrictive
306 inherited_spec2 = g_param_spec_int ("prop2",
313 g_object_class_install_property (object_class, BASE_PROP2, inherited_spec2);
315 g_object_class_override_property (object_class, BASE_PROP3, "prop3");
317 inherited_spec4 = g_param_spec_int ("prop4",
324 g_object_class_install_property (object_class, BASE_PROP4, inherited_spec4);
328 base_object_init (BaseObject *base_object)
330 base_object->val1 = 42;
333 static DEFINE_TYPE_FULL (BaseObject, base_object,
334 base_object_class_init, NULL, base_object_init,
336 INTERFACE (NULL, TEST_TYPE_IFACE))
339 derived_object_set_property (GObject *object,
344 BaseObject *base_object = BASE_OBJECT (object);
349 g_assert (pspec == inherited_spec3);
350 base_object->val3 = g_value_get_int (value);
353 g_assert (pspec == inherited_spec4);
354 base_object->val4 = g_value_get_int (value);
357 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
363 derived_object_get_property (GObject *object,
368 BaseObject *base_object = BASE_OBJECT (object);
373 g_assert (pspec == inherited_spec3);
374 g_value_set_int (value, base_object->val3);
377 g_assert (pspec == inherited_spec4);
378 g_value_set_int (value, base_object->val4);
381 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
387 derived_object_class_init (DerivedObjectClass *class)
389 GObjectClass *object_class = G_OBJECT_CLASS (class);
391 object_class->set_property = derived_object_set_property;
392 object_class->get_property = derived_object_get_property;
394 /* Overriding a property that is itself overridding an interface property */
395 g_object_class_override_property (object_class, DERIVED_PROP3, "prop3");
397 /* Overriding a property not from an interface */
398 g_object_class_override_property (object_class, DERIVED_PROP4, "prop4");
401 static DEFINE_TYPE (DerivedObject, derived_object,
402 derived_object_class_init, NULL, NULL,
405 /* Helper function for testing ...list_properties()
408 assert_in_properties (GParamSpec *param_spec,
409 GParamSpec **properties,
413 gboolean found = FALSE;
415 for (i = 0; i < n_properties; i++)
417 if (properties[i] == param_spec)
429 GObjectClass *object_class;
430 TestIfaceClass *iface_vtable;
431 GParamSpec **properties;
434 gint val1, val2, val3, val4;
436 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);
437 g_set_print_handler(mrtPrintHandler);
438 #endif /*__SYMBIAN32__*/
440 g_log_set_always_fatal (g_log_set_always_fatal (G_LOG_FATAL_MASK) |
441 G_LOG_LEVEL_WARNING |
442 G_LOG_LEVEL_CRITICAL);
445 object = g_object_new (DERIVED_TYPE_OBJECT, NULL);
447 /* Test setting and getting the properties
449 g_object_set (object,
455 g_object_get (object,
462 g_assert (val1 == 0x0101);
463 g_assert (val2 == 0x0202);
464 g_assert (val3 == 0x0303);
465 g_assert (val4 == 0x0404);
467 /* Test that the right spec is passed on explicit notifications
469 g_object_freeze_notify (G_OBJECT (object));
470 g_object_notify (G_OBJECT (object), "prop1");
471 g_object_notify (G_OBJECT (object), "prop2");
472 g_object_notify (G_OBJECT (object), "prop3");
473 g_object_notify (G_OBJECT (object), "prop4");
474 g_object_thaw_notify (G_OBJECT (object));
476 /* Test g_object_class_find_property() for overridden properties
478 object_class = G_OBJECT_GET_CLASS (object);
480 g_assert (g_object_class_find_property (object_class, "prop1") == inherited_spec1);
481 g_assert (g_object_class_find_property (object_class, "prop2") == inherited_spec2);
482 g_assert (g_object_class_find_property (object_class, "prop3") == inherited_spec3);
483 g_assert (g_object_class_find_property (object_class, "prop4") == inherited_spec4);
485 /* Test g_object_class_list_properties() for overridden properties
487 properties = g_object_class_list_properties (object_class,(guint *) &n_properties);
488 g_assert (n_properties == 4);
489 assert_in_properties (inherited_spec1, properties, n_properties);
490 assert_in_properties (inherited_spec2, properties, n_properties);
491 assert_in_properties (inherited_spec3, properties, n_properties);
492 assert_in_properties (inherited_spec4, properties, n_properties);
495 /* Test g_object_interface_find_property()
497 iface_vtable = g_type_default_interface_peek (TEST_TYPE_IFACE);
499 g_assert (g_object_interface_find_property (iface_vtable, "prop1") == iface_spec1);
500 g_assert (g_object_interface_find_property (iface_vtable, "prop2") == iface_spec2);
501 g_assert (g_object_interface_find_property (iface_vtable, "prop3") == iface_spec3);
503 /* Test g_object_interface_list_properties()
505 properties = g_object_interface_list_properties (iface_vtable, (guint *)&n_properties);
506 g_assert (n_properties == 3);
507 assert_in_properties (iface_spec1, properties, n_properties);
508 assert_in_properties (iface_spec2, properties, n_properties);
509 assert_in_properties (iface_spec3, properties, n_properties);
512 g_object_unref (object);
514 testResultXml("ifaceproperties");
515 #endif /*__SYMBIAN32__*/