1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378
|
/* testlinkedlist.c generated by valac 0.56.17, the Vala compiler
* generated from testlinkedlist.vala, do not modify */
/* testlinkedlist.vala
*
* Copyright (C) 2008 Jürg Billeter
*
* 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.1 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* Authors:
* Jürg Billeter <j@bitron.ch>
* Mark Lee <marklee@src.gnome.org> (port to LinkedList)
* Julien Peeters <contact@julienpeeters.fr>
*/
#include <glib-object.h>
#include <gee.h>
#include <stdlib.h>
#include <string.h>
#include <glib.h>
#if !defined(VALA_STRICT_C)
#if !defined(__clang__) && defined(__GNUC__) && (__GNUC__ >= 14)
#pragma GCC diagnostic warning "-Wincompatible-pointer-types"
#elif defined(__clang__) && (__clang_major__ >= 16)
#pragma clang diagnostic ignored "-Wincompatible-function-pointer-types"
#pragma clang diagnostic ignored "-Wincompatible-pointer-types"
#endif
#endif
#if !defined(VALA_EXTERN)
#if defined(_MSC_VER)
#define VALA_EXTERN __declspec(dllexport) extern
#elif __GNUC__ >= 4
#define VALA_EXTERN __attribute__((visibility("default"))) extern
#else
#define VALA_EXTERN extern
#endif
#endif
#define GEE_TYPE_TEST_CASE (gee_test_case_get_type ())
#define GEE_TEST_CASE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GEE_TYPE_TEST_CASE, GeeTestCase))
#define GEE_TEST_CASE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GEE_TYPE_TEST_CASE, GeeTestCaseClass))
#define GEE_IS_TEST_CASE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GEE_TYPE_TEST_CASE))
#define GEE_IS_TEST_CASE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GEE_TYPE_TEST_CASE))
#define GEE_TEST_CASE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GEE_TYPE_TEST_CASE, GeeTestCaseClass))
typedef struct _GeeTestCase GeeTestCase;
typedef struct _GeeTestCaseClass GeeTestCaseClass;
typedef struct _GeeTestCasePrivate GeeTestCasePrivate;
#define TYPE_COLLECTION_TESTS (collection_tests_get_type ())
#define COLLECTION_TESTS(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_COLLECTION_TESTS, CollectionTests))
#define COLLECTION_TESTS_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_COLLECTION_TESTS, CollectionTestsClass))
#define IS_COLLECTION_TESTS(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_COLLECTION_TESTS))
#define IS_COLLECTION_TESTS_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_COLLECTION_TESTS))
#define COLLECTION_TESTS_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_COLLECTION_TESTS, CollectionTestsClass))
typedef struct _CollectionTests CollectionTests;
typedef struct _CollectionTestsClass CollectionTestsClass;
typedef struct _CollectionTestsPrivate CollectionTestsPrivate;
#define TYPE_LIST_TESTS (list_tests_get_type ())
#define LIST_TESTS(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_LIST_TESTS, ListTests))
#define LIST_TESTS_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_LIST_TESTS, ListTestsClass))
#define IS_LIST_TESTS(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_LIST_TESTS))
#define IS_LIST_TESTS_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_LIST_TESTS))
#define LIST_TESTS_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_LIST_TESTS, ListTestsClass))
typedef struct _ListTests ListTests;
typedef struct _ListTestsClass ListTestsClass;
typedef struct _ListTestsPrivate ListTestsPrivate;
#define TYPE_BIDIR_LIST_TESTS (bidir_list_tests_get_type ())
#define BIDIR_LIST_TESTS(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_BIDIR_LIST_TESTS, BidirListTests))
#define BIDIR_LIST_TESTS_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_BIDIR_LIST_TESTS, BidirListTestsClass))
#define IS_BIDIR_LIST_TESTS(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_BIDIR_LIST_TESTS))
#define IS_BIDIR_LIST_TESTS_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_BIDIR_LIST_TESTS))
#define BIDIR_LIST_TESTS_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_BIDIR_LIST_TESTS, BidirListTestsClass))
typedef struct _BidirListTests BidirListTests;
typedef struct _BidirListTestsClass BidirListTestsClass;
typedef struct _BidirListTestsPrivate BidirListTestsPrivate;
#define TYPE_LINKED_LIST_TESTS (linked_list_tests_get_type ())
#define LINKED_LIST_TESTS(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_LINKED_LIST_TESTS, LinkedListTests))
#define LINKED_LIST_TESTS_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_LINKED_LIST_TESTS, LinkedListTestsClass))
#define IS_LINKED_LIST_TESTS(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_LINKED_LIST_TESTS))
#define IS_LINKED_LIST_TESTS_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_LINKED_LIST_TESTS))
#define LINKED_LIST_TESTS_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_LINKED_LIST_TESTS, LinkedListTestsClass))
typedef struct _LinkedListTests LinkedListTests;
typedef struct _LinkedListTestsClass LinkedListTestsClass;
typedef struct _LinkedListTestsPrivate LinkedListTestsPrivate;
enum {
LINKED_LIST_TESTS_0_PROPERTY,
LINKED_LIST_TESTS_NUM_PROPERTIES
};
static GParamSpec* linked_list_tests_properties[LINKED_LIST_TESTS_NUM_PROPERTIES];
typedef void (*GeeTestCaseTestMethod) (gpointer user_data);
#define _g_object_unref0(var) ((var == NULL) ? NULL : (var = (g_object_unref (var), NULL)))
#define _g_free0(var) (var = (g_free (var), NULL))
#define _vala_assert(expr, msg) if G_LIKELY (expr) ; else g_assertion_message_expr (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, msg);
#define _vala_return_if_fail(expr, msg) if G_LIKELY (expr) ; else { g_return_if_fail_warning (G_LOG_DOMAIN, G_STRFUNC, msg); return; }
#define _vala_return_val_if_fail(expr, msg, val) if G_LIKELY (expr) ; else { g_return_if_fail_warning (G_LOG_DOMAIN, G_STRFUNC, msg); return val; }
#define _vala_warn_if_fail(expr, msg) if G_LIKELY (expr) ; else g_warn_message (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, msg);
struct _GeeTestCase {
GObject parent_instance;
GeeTestCasePrivate * priv;
};
struct _GeeTestCaseClass {
GObjectClass parent_class;
void (*set_up) (GeeTestCase* self);
void (*tear_down) (GeeTestCase* self);
};
struct _CollectionTests {
GeeTestCase parent_instance;
CollectionTestsPrivate * priv;
GeeCollection* test_collection;
};
struct _CollectionTestsClass {
GeeTestCaseClass parent_class;
};
struct _ListTests {
CollectionTests parent_instance;
ListTestsPrivate * priv;
};
struct _ListTestsClass {
CollectionTestsClass parent_class;
void (*test_duplicates_are_retained) (ListTests* self);
};
struct _BidirListTests {
ListTests parent_instance;
BidirListTestsPrivate * priv;
};
struct _BidirListTestsClass {
ListTestsClass parent_class;
};
struct _LinkedListTests {
BidirListTests parent_instance;
LinkedListTestsPrivate * priv;
};
struct _LinkedListTestsClass {
BidirListTestsClass parent_class;
};
static gpointer linked_list_tests_parent_class = NULL;
VALA_EXTERN GType gee_test_case_get_type (void) G_GNUC_CONST ;
G_DEFINE_AUTOPTR_CLEANUP_FUNC (GeeTestCase, g_object_unref)
VALA_EXTERN GType collection_tests_get_type (void) G_GNUC_CONST ;
G_DEFINE_AUTOPTR_CLEANUP_FUNC (CollectionTests, g_object_unref)
VALA_EXTERN GType list_tests_get_type (void) G_GNUC_CONST ;
G_DEFINE_AUTOPTR_CLEANUP_FUNC (ListTests, g_object_unref)
VALA_EXTERN GType bidir_list_tests_get_type (void) G_GNUC_CONST ;
G_DEFINE_AUTOPTR_CLEANUP_FUNC (BidirListTests, g_object_unref)
VALA_EXTERN GType linked_list_tests_get_type (void) G_GNUC_CONST ;
G_DEFINE_AUTOPTR_CLEANUP_FUNC (LinkedListTests, g_object_unref)
VALA_EXTERN void gee_test_case_set_up (GeeTestCase* self);
VALA_EXTERN void gee_test_case_tear_down (GeeTestCase* self);
VALA_EXTERN LinkedListTests* linked_list_tests_new (void);
VALA_EXTERN LinkedListTests* linked_list_tests_construct (GType object_type);
VALA_EXTERN BidirListTests* bidir_list_tests_construct (GType object_type,
const gchar* name);
VALA_EXTERN void gee_test_case_add_test (GeeTestCase* self,
const gchar* name,
GeeTestCaseTestMethod test,
gpointer test_target,
GDestroyNotify test_target_destroy_notify);
static void linked_list_tests_test_sort (LinkedListTests* self);
static void _linked_list_tests_test_sort_gee_test_case_test_method (gpointer self);
static void linked_list_tests_real_set_up (GeeTestCase* base);
static void linked_list_tests_real_tear_down (GeeTestCase* base);
static GType linked_list_tests_get_type_once (void);
static void
_linked_list_tests_test_sort_gee_test_case_test_method (gpointer self)
{
linked_list_tests_test_sort ((LinkedListTests*) self);
}
LinkedListTests*
linked_list_tests_construct (GType object_type)
{
LinkedListTests * self = NULL;
self = (LinkedListTests*) bidir_list_tests_construct (object_type, "LinkedList");
gee_test_case_add_test ((GeeTestCase*) self, "[LinkedList] sort", _linked_list_tests_test_sort_gee_test_case_test_method, g_object_ref (self), g_object_unref);
return self;
}
LinkedListTests*
linked_list_tests_new (void)
{
return linked_list_tests_construct (TYPE_LINKED_LIST_TESTS);
}
static void
linked_list_tests_real_set_up (GeeTestCase* base)
{
LinkedListTests * self;
GeeLinkedList* _tmp0_;
self = (LinkedListTests*) base;
_tmp0_ = gee_linked_list_new (G_TYPE_STRING, (GBoxedCopyFunc) g_strdup, (GDestroyNotify) g_free, NULL, NULL, NULL);
_g_object_unref0 (((CollectionTests*) self)->test_collection);
((CollectionTests*) self)->test_collection = (GeeCollection*) _tmp0_;
}
static void
linked_list_tests_real_tear_down (GeeTestCase* base)
{
LinkedListTests * self;
self = (LinkedListTests*) base;
_g_object_unref0 (((CollectionTests*) self)->test_collection);
((CollectionTests*) self)->test_collection = NULL;
}
static gpointer
_g_object_ref0 (gpointer self)
{
return self ? g_object_ref (self) : NULL;
}
static void
linked_list_tests_test_sort (LinkedListTests* self)
{
GeeLinkedList* test_list = NULL;
GeeCollection* _tmp0_;
GeeLinkedList* _tmp1_;
gpointer _tmp2_;
gchar* _tmp3_;
gpointer _tmp4_;
gchar* _tmp5_;
gpointer _tmp6_;
gchar* _tmp7_;
gpointer _tmp8_;
gchar* _tmp9_;
gpointer _tmp10_;
gchar* _tmp11_;
gpointer _tmp12_;
gchar* _tmp13_;
gpointer _tmp14_;
gchar* _tmp15_;
gpointer _tmp16_;
gchar* _tmp17_;
gpointer _tmp18_;
gchar* _tmp19_;
gpointer _tmp20_;
gchar* _tmp21_;
gpointer _tmp22_;
gchar* _tmp23_;
gpointer _tmp24_;
gchar* _tmp25_;
g_return_if_fail (self != NULL);
_tmp0_ = ((CollectionTests*) self)->test_collection;
_tmp1_ = _g_object_ref0 (G_TYPE_CHECK_INSTANCE_TYPE (_tmp0_, GEE_TYPE_LINKED_LIST) ? ((GeeLinkedList*) _tmp0_) : NULL);
test_list = _tmp1_;
_vala_assert (test_list != NULL, "test_list != null");
gee_abstract_collection_add ((GeeAbstractCollection*) test_list, "one");
gee_abstract_collection_add ((GeeAbstractCollection*) test_list, "two");
gee_abstract_collection_add ((GeeAbstractCollection*) test_list, "three");
gee_abstract_collection_add ((GeeAbstractCollection*) test_list, "four");
gee_abstract_collection_add ((GeeAbstractCollection*) test_list, "five");
gee_abstract_collection_add ((GeeAbstractCollection*) test_list, "six");
gee_abstract_collection_add ((GeeAbstractCollection*) test_list, "seven");
gee_abstract_collection_add ((GeeAbstractCollection*) test_list, "eight");
gee_abstract_collection_add ((GeeAbstractCollection*) test_list, "nine");
gee_abstract_collection_add ((GeeAbstractCollection*) test_list, "ten");
gee_abstract_collection_add ((GeeAbstractCollection*) test_list, "eleven");
gee_abstract_collection_add ((GeeAbstractCollection*) test_list, "twelve");
gee_list_sort ((GeeList*) test_list, NULL, NULL, NULL);
_tmp2_ = gee_abstract_list_get ((GeeAbstractList*) test_list, 0);
_tmp3_ = (gchar*) _tmp2_;
_vala_assert (g_strcmp0 (_tmp3_, "eight") == 0, "test_list.get (0) == \"eight\"");
_g_free0 (_tmp3_);
_tmp4_ = gee_abstract_list_get ((GeeAbstractList*) test_list, 1);
_tmp5_ = (gchar*) _tmp4_;
_vala_assert (g_strcmp0 (_tmp5_, "eleven") == 0, "test_list.get (1) == \"eleven\"");
_g_free0 (_tmp5_);
_tmp6_ = gee_abstract_list_get ((GeeAbstractList*) test_list, 2);
_tmp7_ = (gchar*) _tmp6_;
_vala_assert (g_strcmp0 (_tmp7_, "five") == 0, "test_list.get (2) == \"five\"");
_g_free0 (_tmp7_);
_tmp8_ = gee_abstract_list_get ((GeeAbstractList*) test_list, 3);
_tmp9_ = (gchar*) _tmp8_;
_vala_assert (g_strcmp0 (_tmp9_, "four") == 0, "test_list.get (3) == \"four\"");
_g_free0 (_tmp9_);
_tmp10_ = gee_abstract_list_get ((GeeAbstractList*) test_list, 4);
_tmp11_ = (gchar*) _tmp10_;
_vala_assert (g_strcmp0 (_tmp11_, "nine") == 0, "test_list.get (4) == \"nine\"");
_g_free0 (_tmp11_);
_tmp12_ = gee_abstract_list_get ((GeeAbstractList*) test_list, 5);
_tmp13_ = (gchar*) _tmp12_;
_vala_assert (g_strcmp0 (_tmp13_, "one") == 0, "test_list.get (5) == \"one\"");
_g_free0 (_tmp13_);
_tmp14_ = gee_abstract_list_get ((GeeAbstractList*) test_list, 6);
_tmp15_ = (gchar*) _tmp14_;
_vala_assert (g_strcmp0 (_tmp15_, "seven") == 0, "test_list.get (6) == \"seven\"");
_g_free0 (_tmp15_);
_tmp16_ = gee_abstract_list_get ((GeeAbstractList*) test_list, 7);
_tmp17_ = (gchar*) _tmp16_;
_vala_assert (g_strcmp0 (_tmp17_, "six") == 0, "test_list.get (7) == \"six\"");
_g_free0 (_tmp17_);
_tmp18_ = gee_abstract_list_get ((GeeAbstractList*) test_list, 8);
_tmp19_ = (gchar*) _tmp18_;
_vala_assert (g_strcmp0 (_tmp19_, "ten") == 0, "test_list.get (8) == \"ten\"");
_g_free0 (_tmp19_);
_tmp20_ = gee_abstract_list_get ((GeeAbstractList*) test_list, 9);
_tmp21_ = (gchar*) _tmp20_;
_vala_assert (g_strcmp0 (_tmp21_, "three") == 0, "test_list.get (9) == \"three\"");
_g_free0 (_tmp21_);
_tmp22_ = gee_abstract_list_get ((GeeAbstractList*) test_list, 10);
_tmp23_ = (gchar*) _tmp22_;
_vala_assert (g_strcmp0 (_tmp23_, "twelve") == 0, "test_list.get (10) == \"twelve\"");
_g_free0 (_tmp23_);
_tmp24_ = gee_abstract_list_get ((GeeAbstractList*) test_list, 11);
_tmp25_ = (gchar*) _tmp24_;
_vala_assert (g_strcmp0 (_tmp25_, "two") == 0, "test_list.get (11) == \"two\"");
_g_free0 (_tmp25_);
_g_object_unref0 (test_list);
}
static void
linked_list_tests_class_init (LinkedListTestsClass * klass,
gpointer klass_data)
{
linked_list_tests_parent_class = g_type_class_peek_parent (klass);
((GeeTestCaseClass *) klass)->set_up = (void (*) (GeeTestCase*)) linked_list_tests_real_set_up;
((GeeTestCaseClass *) klass)->tear_down = (void (*) (GeeTestCase*)) linked_list_tests_real_tear_down;
}
static void
linked_list_tests_instance_init (LinkedListTests * self,
gpointer klass)
{
}
static GType
linked_list_tests_get_type_once (void)
{
static const GTypeInfo g_define_type_info = { sizeof (LinkedListTestsClass), (GBaseInitFunc) NULL, (GBaseFinalizeFunc) NULL, (GClassInitFunc) linked_list_tests_class_init, (GClassFinalizeFunc) NULL, NULL, sizeof (LinkedListTests), 0, (GInstanceInitFunc) linked_list_tests_instance_init, NULL };
GType linked_list_tests_type_id;
linked_list_tests_type_id = g_type_register_static (TYPE_BIDIR_LIST_TESTS, "LinkedListTests", &g_define_type_info, 0);
return linked_list_tests_type_id;
}
GType
linked_list_tests_get_type (void)
{
static volatile gsize linked_list_tests_type_id__once = 0;
if (g_once_init_enter (&linked_list_tests_type_id__once)) {
GType linked_list_tests_type_id;
linked_list_tests_type_id = linked_list_tests_get_type_once ();
g_once_init_leave (&linked_list_tests_type_id__once, linked_list_tests_type_id);
}
return linked_list_tests_type_id__once;
}
|