4 * Copyright (C) 2009 Red Hat Inc.
7 * Luiz Capitulino <lcapitulino@redhat.com>
9 * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
10 * See the COPYING.LIB file in the top-level directory.
12 #include "qemu/osdep.h"
14 #include "qapi/qmp/qint.h"
15 #include "qapi/qmp/qlist.h"
18 * Public Interface test-cases
20 * (with some violations to access 'private' data)
23 static void qlist_new_test(void)
28 g_assert(qlist
!= NULL
);
29 g_assert(qlist
->base
.refcnt
== 1);
30 g_assert(qobject_type(QOBJECT(qlist
)) == QTYPE_QLIST
);
32 // destroy doesn't exist yet
36 static void qlist_append_test(void)
42 qi
= qint_from_int(42);
45 qlist_append(qlist
, qi
);
47 entry
= QTAILQ_FIRST(&qlist
->head
);
48 g_assert(entry
!= NULL
);
49 g_assert(entry
->value
== QOBJECT(qi
));
51 // destroy doesn't exist yet
57 static void qobject_to_qlist_test(void)
63 g_assert(qobject_to_qlist(QOBJECT(qlist
)) == qlist
);
65 // destroy doesn't exist yet
69 static void qlist_destroy_test(void)
76 for (i
= 0; i
< 42; i
++)
77 qlist_append_int(qlist
, i
);
82 static int iter_called
;
83 static const int iter_max
= 42;
85 static void iter_func(QObject
*obj
, void *opaque
)
89 g_assert(opaque
== NULL
);
91 qi
= qobject_to_qint(obj
);
93 g_assert((qint_get_int(qi
) >= 0) && (qint_get_int(qi
) <= iter_max
));
98 static void qlist_iter_test(void)
105 for (i
= 0; i
< iter_max
; i
++)
106 qlist_append_int(qlist
, i
);
109 qlist_iter(qlist
, iter_func
, NULL
);
111 g_assert(iter_called
== iter_max
);
116 int main(int argc
, char **argv
)
118 g_test_init(&argc
, &argv
, NULL
);
120 g_test_add_func("/public/new", qlist_new_test
);
121 g_test_add_func("/public/append", qlist_append_test
);
122 g_test_add_func("/public/to_qlist", qobject_to_qlist_test
);
123 g_test_add_func("/public/destroy", qlist_destroy_test
);
124 g_test_add_func("/public/iter", qlist_iter_test
);