mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 03:16:17 +01:00
Add paramspec-test
2006-02-18 Matthias Clasen <mclasen@redhat.com> * tests/gobject/Makefile.am: Add paramspec-test * tests/gobject/paramspec-test.c: Some GParamSpec tests.
This commit is contained in:
parent
fb7ae4674a
commit
c773a618e3
@ -1,5 +1,9 @@
|
|||||||
2006-02-18 Matthias Clasen <mclasen@redhat.com>
|
2006-02-18 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* tests/gobject/Makefile.am: Add paramspec-test
|
||||||
|
|
||||||
|
* tests/gobject/paramspec-test.c: Some GParamSpec tests.
|
||||||
|
|
||||||
* tests/gobject/gvalue-test.c: Add more tests.
|
* tests/gobject/gvalue-test.c: Add more tests.
|
||||||
|
|
||||||
2006-02-17 Kang Jeong-Hee <keizie@gmail.com>
|
2006-02-17 Kang Jeong-Hee <keizie@gmail.com>
|
||||||
|
@ -1,5 +1,9 @@
|
|||||||
2006-02-18 Matthias Clasen <mclasen@redhat.com>
|
2006-02-18 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* tests/gobject/Makefile.am: Add paramspec-test
|
||||||
|
|
||||||
|
* tests/gobject/paramspec-test.c: Some GParamSpec tests.
|
||||||
|
|
||||||
* tests/gobject/gvalue-test.c: Add more tests.
|
* tests/gobject/gvalue-test.c: Add more tests.
|
||||||
|
|
||||||
2006-02-17 Kang Jeong-Hee <keizie@gmail.com>
|
2006-02-17 Kang Jeong-Hee <keizie@gmail.com>
|
||||||
|
@ -1,5 +1,9 @@
|
|||||||
2006-02-18 Matthias Clasen <mclasen@redhat.com>
|
2006-02-18 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* tests/gobject/Makefile.am: Add paramspec-test
|
||||||
|
|
||||||
|
* tests/gobject/paramspec-test.c: Some GParamSpec tests.
|
||||||
|
|
||||||
* tests/gobject/gvalue-test.c: Add more tests.
|
* tests/gobject/gvalue-test.c: Add more tests.
|
||||||
|
|
||||||
2006-02-17 Kang Jeong-Hee <keizie@gmail.com>
|
2006-02-17 Kang Jeong-Hee <keizie@gmail.com>
|
||||||
|
@ -47,6 +47,7 @@ LDADD = libtestgobject.la $(libgobject)
|
|||||||
|
|
||||||
test_programs = \
|
test_programs = \
|
||||||
gvalue-test \
|
gvalue-test \
|
||||||
|
paramspec-test \
|
||||||
accumulator \
|
accumulator \
|
||||||
defaultiface \
|
defaultiface \
|
||||||
ifacecheck \
|
ifacecheck \
|
||||||
|
147
tests/gobject/paramspec-test.c
Normal file
147
tests/gobject/paramspec-test.c
Normal file
@ -0,0 +1,147 @@
|
|||||||
|
/* GLIB - Library of useful routines for C programming
|
||||||
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Modified by the GLib Team and others 1997-2000. See the AUTHORS
|
||||||
|
* file for a list of people on the GLib Team. See the ChangeLog
|
||||||
|
* files for a list of changes. These files are distributed with
|
||||||
|
* GLib at ftp://ftp.gtk.org/pub/gtk/.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#undef G_DISABLE_ASSERT
|
||||||
|
#undef G_LOG_DOMAIN
|
||||||
|
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
|
#include <glib.h>
|
||||||
|
#include <glib-object.h>
|
||||||
|
|
||||||
|
static void
|
||||||
|
test_param_spec_char (void)
|
||||||
|
{
|
||||||
|
GParamSpec *pspec;
|
||||||
|
GValue value = { 0, };
|
||||||
|
gboolean modified;
|
||||||
|
|
||||||
|
pspec = g_param_spec_char ("char", "nick", "blurb",
|
||||||
|
20, 40, 30, G_PARAM_READWRITE);
|
||||||
|
|
||||||
|
g_assert (strcmp (g_param_spec_get_name (pspec), "char") == 0);
|
||||||
|
g_assert (strcmp (g_param_spec_get_nick (pspec), "nick") == 0);
|
||||||
|
g_assert (strcmp (g_param_spec_get_blurb (pspec), "blurb") == 0);
|
||||||
|
|
||||||
|
g_value_init (&value, G_TYPE_CHAR);
|
||||||
|
g_value_set_char (&value, 30);
|
||||||
|
|
||||||
|
g_assert (g_param_value_defaults (pspec, &value));
|
||||||
|
|
||||||
|
g_value_set_char (&value, 0);
|
||||||
|
modified = g_param_value_validate (pspec, &value);
|
||||||
|
g_assert (modified && g_value_get_char (&value) == 20);
|
||||||
|
|
||||||
|
g_value_set_char (&value, 20);
|
||||||
|
modified = g_param_value_validate (pspec, &value);
|
||||||
|
g_assert (!modified && g_value_get_char (&value) == 20);
|
||||||
|
|
||||||
|
g_value_set_char (&value, 40);
|
||||||
|
modified = g_param_value_validate (pspec, &value);
|
||||||
|
g_assert (!modified && g_value_get_char (&value) == 40);
|
||||||
|
|
||||||
|
g_value_set_char (&value, 60);
|
||||||
|
modified = g_param_value_validate (pspec, &value);
|
||||||
|
g_assert (modified && g_value_get_char (&value) == 40);
|
||||||
|
|
||||||
|
g_param_spec_unref (pspec);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
test_param_spec_override (void)
|
||||||
|
{
|
||||||
|
GParamSpec *ospec, *pspec;
|
||||||
|
GValue value = { 0, };
|
||||||
|
gboolean modified;
|
||||||
|
|
||||||
|
ospec = g_param_spec_char ("char", "nick", "blurb",
|
||||||
|
20, 40, 30, G_PARAM_READWRITE);
|
||||||
|
|
||||||
|
pspec = g_param_spec_override ("override", ospec);
|
||||||
|
|
||||||
|
g_assert (strcmp (g_param_spec_get_name (pspec), "override") == 0);
|
||||||
|
g_assert (strcmp (g_param_spec_get_nick (pspec), "nick") == 0);
|
||||||
|
g_assert (strcmp (g_param_spec_get_blurb (pspec), "blurb") == 0);
|
||||||
|
|
||||||
|
g_value_init (&value, G_TYPE_CHAR);
|
||||||
|
g_value_set_char (&value, 30);
|
||||||
|
|
||||||
|
g_assert (g_param_value_defaults (pspec, &value));
|
||||||
|
|
||||||
|
g_value_set_char (&value, 0);
|
||||||
|
modified = g_param_value_validate (pspec, &value);
|
||||||
|
g_assert (modified && g_value_get_char (&value) == 20);
|
||||||
|
|
||||||
|
g_value_set_char (&value, 20);
|
||||||
|
modified = g_param_value_validate (pspec, &value);
|
||||||
|
g_assert (!modified && g_value_get_char (&value) == 20);
|
||||||
|
|
||||||
|
g_value_set_char (&value, 40);
|
||||||
|
modified = g_param_value_validate (pspec, &value);
|
||||||
|
g_assert (!modified && g_value_get_char (&value) == 40);
|
||||||
|
|
||||||
|
g_value_set_char (&value, 60);
|
||||||
|
modified = g_param_value_validate (pspec, &value);
|
||||||
|
g_assert (modified && g_value_get_char (&value) == 40);
|
||||||
|
|
||||||
|
g_param_spec_unref (pspec);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
test_param_spec_gtype (void)
|
||||||
|
{
|
||||||
|
GParamSpec *pspec;
|
||||||
|
GValue value = { 0, };
|
||||||
|
gboolean modified;
|
||||||
|
|
||||||
|
pspec = g_param_spec_gtype ("gtype", "nick", "blurb",
|
||||||
|
G_TYPE_PARAM, G_PARAM_READWRITE);
|
||||||
|
|
||||||
|
g_value_init (&value, G_TYPE_GTYPE);
|
||||||
|
g_value_set_gtype (&value, G_TYPE_NONE);
|
||||||
|
|
||||||
|
g_assert (g_param_value_defaults (pspec, &value));
|
||||||
|
|
||||||
|
g_value_set_gtype (&value, G_TYPE_INT);
|
||||||
|
modified = g_param_value_validate (pspec, &value);
|
||||||
|
g_assert (modified && g_value_get_gtype (&value) == G_TYPE_NONE);
|
||||||
|
|
||||||
|
g_value_set_gtype (&value, G_TYPE_PARAM_INT);
|
||||||
|
modified = g_param_value_validate (pspec, &value);
|
||||||
|
g_assert (!modified && g_value_get_gtype (&value) == G_TYPE_PARAM_INT);
|
||||||
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
main (int argc, char *argv[])
|
||||||
|
{
|
||||||
|
g_type_init ();
|
||||||
|
|
||||||
|
test_param_spec_char ();
|
||||||
|
test_param_spec_override ();
|
||||||
|
test_param_spec_gtype ();
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user