Update contrib.
1 /* Portion Copyright © 2008-09 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.*/
2 #undef G_DISABLE_ASSERT
11 #include "mrt2_glib2_test.h"
12 #endif /*__SYMBIAN32__*/
14 static gboolean verbose = FALSE;
18 check_integrity (GQueue *queue)
26 g_assert (queue->length < 4000000000u);
28 g_assert (g_queue_get_length (queue) == queue->length);
31 g_assert (!queue->tail);
33 g_assert (!queue->head);
37 for (list = queue->head; list != NULL; list = list->next)
43 g_assert (n == queue->length);
44 g_assert (last == queue->tail);
48 for (list = queue->tail; list != NULL; list = list->prev)
54 g_assert (n == queue->length);
55 g_assert (last == queue->head);
58 for (list = queue->head; list != NULL; list = list->next)
59 links = g_list_prepend (links, list);
62 for (list = queue->tail; list != NULL; list = list->prev)
64 g_assert (list == link->data);
70 for (list = queue->tail; list != NULL; list = list->prev)
71 links = g_list_prepend (links, list);
74 for (list = queue->head; list != NULL; list = list->next)
76 g_assert (list == link->data);
85 return g_random_int_range (0, 2);
89 check_max (gpointer elm, gpointer user_data)
91 gint *best = user_data;
92 gint element = GPOINTER_TO_INT (elm);
99 check_min (gpointer elm, gpointer user_data)
101 gint *best = user_data;
102 gint element = GPOINTER_TO_INT (elm);
109 find_min (GQueue *queue)
113 g_queue_foreach (queue, check_min, &min);
119 find_max (GQueue *queue)
123 g_queue_foreach (queue, check_max, &max);
129 delete_elm (gpointer elm, gpointer user_data)
131 g_queue_remove ((GQueue *)user_data, elm);
132 check_integrity ((GQueue *)user_data);
136 delete_all (GQueue *queue)
138 g_queue_foreach (queue, delete_elm, queue);
142 compare_int (gconstpointer a, gconstpointer b, gpointer data)
144 int ai = GPOINTER_TO_INT (a);
145 int bi = GPOINTER_TO_INT (b);
156 get_random_position (GQueue *queue, gboolean allow_offlist)
159 enum { OFF_QUEUE, HEAD, TAIL, MIDDLE, LAST } where;
162 where = g_random_int_range (OFF_QUEUE, LAST);
164 where = g_random_int_range (HEAD, LAST);
180 n = queue->length - 1;
184 if (queue->length == 0)
187 n = g_random_int_range (0, queue->length);
191 g_assert_not_reached();
201 random_test (int seed)
204 IS_EMPTY, GET_LENGTH, REVERSE, COPY,
205 FOREACH, FIND, FIND_CUSTOM, SORT,
206 PUSH_HEAD, PUSH_TAIL, PUSH_NTH, POP_HEAD,
207 POP_TAIL, POP_NTH, PEEK_HEAD, PEEK_TAIL,
208 PEEK_NTH, INDEX, REMOVE, REMOVE_ALL,
209 INSERT_BEFORE, INSERT_AFTER, INSERT_SORTED, PUSH_HEAD_LINK,
210 PUSH_TAIL_LINK, PUSH_NTH_LINK, POP_HEAD_LINK, POP_TAIL_LINK,
211 POP_NTH_LINK, PEEK_HEAD_LINK, PEEK_TAIL_LINK, PEEK_NTH_LINK,
212 LINK_INDEX, UNLINK, DELETE_LINK, LAST_OP
216 #define N_ITERATIONS 50000
218 #define N_ITERATIONS 500000
219 #endif//__SYMBIAN32__
222 #define RANDOM_QUEUE() &(queues[g_random_int_range(0, N_QUEUES)])
224 typedef struct QueueInfo QueueInfo;
235 QueueInfo queues[N_QUEUES];
238 g_print ("seed: %d\n", seed);
240 g_random_set_seed (seed);
242 for (i = 0; i < N_QUEUES; ++i)
244 queues[i].queue = g_queue_new ();
245 queues[i].head = NULL;
246 queues[i].tail = NULL;
247 queues[i].length = 0;
250 for (i = 0; i < N_ITERATIONS; ++i)
253 QueueInfo *qinf = RANDOM_QUEUE();
254 GQueue *q = qinf->queue;
255 op = g_random_int_range (IS_EMPTY, LAST_OP);
257 g_assert (qinf->head == q->head);
258 g_assert (qinf->tail == q->tail);
259 g_assert (qinf->length == q->length);
265 if (g_queue_is_empty (qinf->queue))
267 g_assert (q->head == NULL);
268 g_assert (q->tail == NULL);
269 g_assert (q->length == 0);
275 g_assert (q->length > 0);
283 l = g_queue_get_length (q);
285 g_assert (qinf->length == q->length);
286 g_assert (qinf->length == l);
291 g_assert (qinf->tail == q->head);
292 g_assert (qinf->head == q->tail);
293 g_assert (qinf->length == q->length);
294 qinf->tail = q->tail;
295 qinf->head = q->head;
299 QueueInfo *random_queue = RANDOM_QUEUE();
300 GQueue *new_queue = g_queue_copy (random_queue->queue);
302 g_queue_free (qinf->queue);
303 q = qinf->queue = new_queue;
304 qinf->head = new_queue->head;
305 qinf->tail = g_list_last (new_queue->head);
306 qinf->length = new_queue->length;
317 gboolean find_existing = rnd_bool ();
318 int first = find_max (q);
319 int second = find_min (q);
322 find_existing = FALSE;
331 g_assert (g_queue_find (q, GINT_TO_POINTER (first)));
332 g_assert (g_queue_find (q, GINT_TO_POINTER (second)));
336 g_assert (!g_queue_find (q, GINT_TO_POINTER (first)));
337 g_assert (!g_queue_find (q, GINT_TO_POINTER (second)));
345 if (!g_queue_is_empty (q))
347 int max = find_max (q);
348 int min = find_min (q);
349 g_queue_remove_all (q, GINT_TO_POINTER (max));
351 g_queue_remove_all (q, GINT_TO_POINTER (min));
353 g_queue_push_head (q, GINT_TO_POINTER (max));
355 g_queue_push_head (q, GINT_TO_POINTER (min));
356 qinf->length = q->length;
361 g_queue_sort (q, compare_int, NULL);
365 qinf->head = g_queue_find (q, GINT_TO_POINTER (find_min(q)));
366 qinf->tail = g_queue_find (q, GINT_TO_POINTER (find_max(q)));
368 g_assert (qinf->tail == q->tail);
373 int x = g_random_int_range (0, 435435);
374 g_queue_push_head (q, GINT_TO_POINTER (x));
376 qinf->tail = qinf->head = q->head;
378 qinf->head = qinf->head->prev;
384 int x = g_random_int_range (0, 236546);
385 g_queue_push_tail (q, GINT_TO_POINTER (x));
387 qinf->tail = qinf->head = q->head;
389 qinf->tail = qinf->tail->next;
395 int pos = get_random_position (q, TRUE);
396 int x = g_random_int_range (0, 236546);
397 g_queue_push_nth (q, GINT_TO_POINTER (x), pos);
398 if (qinf->head && qinf->head->prev)
399 qinf->head = qinf->head->prev;
401 qinf->head = q->head;
402 if (qinf->tail && qinf->tail->next)
403 qinf->tail = qinf->tail->next;
405 qinf->tail = g_list_last (qinf->head);
411 qinf->head = qinf->head->next;
414 qinf->length = (qinf->length == 0)? 0 : qinf->length - 1;
415 g_queue_pop_head (q);
419 qinf->tail = qinf->tail->prev;
422 qinf->length = (qinf->length == 0)? 0 : qinf->length - 1;
423 g_queue_pop_tail (q);
426 if (!g_queue_is_empty (q))
428 int n = get_random_position (q, TRUE);
429 gpointer elm = g_queue_peek_nth (q, n);
431 if (n == q->length - 1)
432 qinf->tail = qinf->tail->prev;
435 qinf->head = qinf->head->next;
437 if (n >= 0 && n < q->length)
440 g_assert (elm == g_queue_pop_nth (q, n));
445 g_assert (qinf->head->data == g_queue_peek_head (q));
447 g_assert (g_queue_peek_head (q) == NULL);
451 g_assert (qinf->tail->data == g_queue_peek_tail (q));
453 g_assert (g_queue_peek_tail (q) == NULL);
456 if (g_queue_is_empty (q))
458 for (j = -10; j < 10; ++j)
459 g_assert (g_queue_peek_nth (q, j) == NULL);
464 int n = get_random_position (q, TRUE);
465 if (n < 0 || n >= q->length)
467 g_assert (g_queue_peek_nth (q, n) == NULL);
472 for (j = 0; j < n; ++j)
475 g_assert (list->data == g_queue_peek_nth (q, n));
482 int x = g_random_int_range (0, 386538);
486 g_queue_remove_all (q, GINT_TO_POINTER (x));
488 g_queue_push_tail (q, GINT_TO_POINTER (x));
490 g_queue_sort (q, compare_int, NULL);
494 for (list = q->head; list != NULL; list = list->next)
496 if (list->data == GINT_TO_POINTER (x))
501 g_assert (g_queue_index (q, GINT_TO_POINTER (x)) ==
502 g_queue_link_index (q, list));
503 g_assert (g_queue_link_index (q, list) == n);
505 qinf->head = q->head;
506 qinf->tail = q->tail;
507 qinf->length = q->length;
511 if (!g_queue_is_empty (q))
512 g_queue_remove (q, qinf->tail->data);
513 if (!g_queue_is_empty (q))
514 g_queue_remove (q, qinf->head->data);
515 if (!g_queue_is_empty (q))
516 g_queue_remove (q, g_queue_peek_nth (q, get_random_position (q, TRUE)));
518 qinf->head = q->head;
519 qinf->tail = q->tail;
520 qinf->length = q->length;
523 if (!g_queue_is_empty (q))
524 g_queue_remove_all (q, qinf->tail->data);
525 if (!g_queue_is_empty (q))
526 g_queue_remove_all (q, qinf->head->data);
527 if (!g_queue_is_empty (q))
528 g_queue_remove_all (q, g_queue_peek_nth (q, get_random_position (q, TRUE)));
530 qinf->head = q->head;
531 qinf->tail = q->tail;
532 qinf->length = q->length;
535 if (!g_queue_is_empty (q))
537 gpointer x = GINT_TO_POINTER (g_random_int_range (0, 386538));
539 g_queue_insert_before (q, qinf->tail, x);
540 g_queue_insert_before (q, qinf->head, x);
541 g_queue_insert_before (q, g_queue_find (q, x), x);
543 qinf->head = q->head;
544 qinf->tail = q->tail;
545 qinf->length = q->length;
548 if (!g_queue_is_empty (q))
550 gpointer x = GINT_TO_POINTER (g_random_int_range (0, 386538));
552 g_queue_insert_after (q, qinf->tail, x);
553 g_queue_insert_after (q, qinf->head, x);
554 g_queue_insert_after (q, g_queue_find (q, x), x);
556 qinf->head = q->head;
557 qinf->tail = q->tail;
558 qinf->length = q->length;
562 int max = find_max (q);
563 int min = find_min (q);
565 if (g_queue_is_empty (q))
571 g_queue_sort (q, compare_int, NULL);
573 g_queue_insert_sorted (q, GINT_TO_POINTER (max + 1), compare_int, NULL);
575 g_assert (GPOINTER_TO_INT (q->tail->data) == max + 1);
576 g_queue_insert_sorted (q, GINT_TO_POINTER (min - 1), compare_int, NULL);
578 g_assert (GPOINTER_TO_INT (q->head->data) == min - 1);
579 qinf->head = q->head;
580 qinf->tail = q->tail;
581 qinf->length = q->length;
586 GList *link = g_list_prepend (NULL, GINT_TO_POINTER (i));
587 g_queue_push_head_link (q, link);
596 GList *link = g_list_prepend (NULL, GINT_TO_POINTER (i));
597 g_queue_push_tail_link (q, link);
606 GList *link = g_list_prepend (NULL, GINT_TO_POINTER (i));
607 gint n = get_random_position (q, TRUE);
608 g_queue_push_nth_link (q, n, link);
610 if (qinf->head && qinf->head->prev)
611 qinf->head = qinf->head->prev;
613 qinf->head = q->head;
614 if (qinf->tail && qinf->tail->next)
615 qinf->tail = qinf->tail->next;
617 qinf->tail = g_list_last (qinf->head);
622 if (!g_queue_is_empty (q))
624 qinf->head = qinf->head->next;
628 g_list_free (g_queue_pop_head_link (q));
632 if (!g_queue_is_empty (q))
634 qinf->tail = qinf->tail->prev;
638 g_list_free (g_queue_pop_tail_link (q));
642 if (g_queue_is_empty (q))
643 g_assert (g_queue_pop_nth_link (q, 200) == NULL);
646 int n = get_random_position (q, FALSE);
648 if (n == g_queue_get_length (q) - 1)
649 qinf->tail = qinf->tail->prev;
652 qinf->head = qinf->head->next;
656 g_list_free (g_queue_pop_nth_link (q, n));
660 if (g_queue_is_empty (q))
661 g_assert (g_queue_peek_head_link (q) == NULL);
663 g_assert (g_queue_peek_head_link (q) == qinf->head);
666 if (g_queue_is_empty (q))
667 g_assert (g_queue_peek_tail_link (q) == NULL);
669 g_assert (g_queue_peek_tail_link (q) == qinf->tail);
672 if (g_queue_is_empty(q))
673 g_assert (g_queue_peek_nth_link (q, 1000) == NULL);
676 gint n = get_random_position (q, FALSE);
680 for (j = 0; j < n; ++j)
683 g_assert (g_queue_peek_nth_link (q, n) == link);
687 if (!g_queue_is_empty (q))
689 gint n = g_random_int_range (0, g_queue_get_length (q));
693 for (j = 0; j < n; ++j)
696 g_queue_unlink (q, link);
701 qinf->head = q->head;
702 qinf->tail = q->tail;
707 if (!g_queue_is_empty (q))
709 gint n = g_random_int_range (0, g_queue_get_length (q));
713 for (j = 0; j < n; ++j)
716 g_queue_delete_link (q, link);
719 qinf->head = q->head;
720 qinf->tail = q->tail;
726 g_assert_not_reached();
730 if (qinf->head != q->head ||
731 qinf->tail != q->tail ||
732 qinf->length != q->length)
733 g_print ("op: %d\n", op);
735 g_assert (qinf->head == q->head);
736 g_assert (qinf->tail == q->tail);
737 g_assert (qinf->length == q->length);
739 for (j = 0; j < N_QUEUES; ++j)
740 check_integrity (queues[j].queue);
743 for (i = 0; i < N_QUEUES; ++i)
744 g_queue_free (queues[i].queue);
748 remove_item (gpointer data, gpointer q)
752 g_queue_remove (queue, data);
755 int main(int argc, gchar *args[])
763 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);
764 g_set_print_handler(mrtPrintHandler);
765 #endif /*__SYMBIAN32__*/
767 if (argc > 1 && args[1][0] == '-' && args[1][1] == 'v')
772 g_assert (g_queue_is_empty (q) == TRUE);
774 g_queue_push_head (q, GINT_TO_POINTER (2));
776 g_assert (g_queue_peek_head (q) == GINT_TO_POINTER (2));
778 g_assert (g_queue_is_empty (q) == FALSE);
780 g_assert (g_list_length (q->head) == 1);
781 g_assert (q->head == q->tail);
782 g_queue_push_head (q, GINT_TO_POINTER (1));
784 g_assert (q->head->next == q->tail);
785 g_assert (q->tail->prev == q->head);
786 g_assert (g_list_length (q->head) == 2);
788 g_assert (q->tail->data == GINT_TO_POINTER (2));
789 g_assert (q->head->data == GINT_TO_POINTER (1));
791 g_queue_push_tail (q, GINT_TO_POINTER (3));
792 g_assert (g_list_length (q->head) == 3);
793 g_assert (q->head->data == GINT_TO_POINTER (1));
794 g_assert (q->head->next->data == GINT_TO_POINTER (2));
795 g_assert (q->head->next->next == q->tail);
796 g_assert (q->head->next == q->tail->prev);
797 g_assert (q->tail->data == GINT_TO_POINTER (3));
798 g_queue_push_tail (q, GINT_TO_POINTER (4));
800 g_assert (g_list_length (q->head) == 4);
801 g_assert (q->head->data == GINT_TO_POINTER (1));
802 g_assert (g_queue_peek_tail (q) == GINT_TO_POINTER (4));
803 g_queue_push_tail (q, GINT_TO_POINTER (5));
805 g_assert (g_list_length (q->head) == 5);
807 g_assert (g_queue_is_empty (q) == FALSE);
810 g_assert (q->length == 5);
811 g_assert (q->head->prev == NULL);
812 g_assert (q->head->data == GINT_TO_POINTER (1));
813 g_assert (q->head->next->data == GINT_TO_POINTER (2));
814 g_assert (q->head->next->next->data == GINT_TO_POINTER (3));
815 g_assert (q->head->next->next->next->data == GINT_TO_POINTER (4));
816 g_assert (q->head->next->next->next->next->data == GINT_TO_POINTER (5));
817 g_assert (q->head->next->next->next->next->next == NULL);
818 g_assert (q->head->next->next->next->next == q->tail);
819 g_assert (q->tail->data == GINT_TO_POINTER (5));
820 g_assert (q->tail->prev->data == GINT_TO_POINTER (4));
821 g_assert (q->tail->prev->prev->data == GINT_TO_POINTER (3));
822 g_assert (q->tail->prev->prev->prev->data == GINT_TO_POINTER (2));
823 g_assert (q->tail->prev->prev->prev->prev->data == GINT_TO_POINTER (1));
824 g_assert (q->tail->prev->prev->prev->prev->prev == NULL);
825 g_assert (q->tail->prev->prev->prev->prev == q->head);
826 g_assert (g_queue_peek_tail (q) == GINT_TO_POINTER (5));
827 g_assert (g_queue_peek_head (q) == GINT_TO_POINTER (1));
829 g_assert (g_queue_pop_head (q) == GINT_TO_POINTER (1));
831 g_assert (g_list_length (q->head) == 4 && q->length == 4);
832 g_assert (g_queue_pop_tail (q) == GINT_TO_POINTER (5));
834 g_assert (g_list_length (q->head) == 3);
835 g_assert (g_queue_pop_head_link (q)->data == GINT_TO_POINTER (2));
837 g_assert (g_list_length (q->head) == 2);
838 g_assert (g_queue_pop_tail (q) == GINT_TO_POINTER (4));
840 g_assert (g_list_length (q->head) == 1);
841 g_assert (g_queue_pop_head_link (q)->data == GINT_TO_POINTER (3));
843 g_assert (g_list_length (q->head) == 0);
844 g_assert (g_queue_pop_tail (q) == NULL);
846 g_assert (g_list_length (q->head) == 0);
847 g_assert (g_queue_pop_head (q) == NULL);
849 g_assert (g_list_length (q->head) == 0);
851 g_assert (g_queue_is_empty (q) == TRUE);
854 /************************/
856 g_queue_push_head (q, GINT_TO_POINTER (1));
858 g_assert (g_list_length (q->head) == 1 && 1 == q->length);
859 g_queue_push_head (q, GINT_TO_POINTER (2));
861 g_assert (g_list_length (q->head) == 2 && 2 == q->length);
862 g_queue_push_head (q, GINT_TO_POINTER (3));
864 g_assert (g_list_length (q->head) == 3 && 3 == q->length);
865 g_queue_push_head (q, GINT_TO_POINTER (4));
867 g_assert (g_list_length (q->head) == 4 && 4 == q->length);
868 g_queue_push_head (q, GINT_TO_POINTER (5));
870 g_assert (g_list_length (q->head) == 5 && 5 == q->length);
872 g_assert (g_queue_pop_head (q) == GINT_TO_POINTER (5));
874 g_assert (g_list_length (q->head) == 4);
876 g_assert (node == g_queue_pop_tail_link (q));
878 g_assert (g_list_length (q->head) == 3);
879 data = q->head->data;
880 g_assert (data == g_queue_pop_head (q));
882 g_assert (g_list_length (q->head) == 2);
883 g_assert (g_queue_pop_tail (q) == GINT_TO_POINTER (2));
885 g_assert (g_list_length (q->head) == 1);
886 g_assert (q->head == q->tail);
887 g_assert (g_queue_pop_tail (q) == GINT_TO_POINTER (3));
889 g_assert (g_list_length (q->head) == 0);
890 g_assert (g_queue_pop_head (q) == NULL);
892 g_assert (g_queue_pop_head_link (q) == NULL);
894 g_assert (g_list_length (q->head) == 0);
895 g_assert (g_queue_pop_tail_link (q) == NULL);
897 g_assert (g_list_length (q->head) == 0);
902 g_assert (g_list_length (q->head) == 0);
904 q2 = g_queue_copy (q);
906 check_integrity (q2);
907 g_assert (g_list_length (q->head) == 0);
908 g_assert (g_list_length (q2->head) == 0);
909 g_queue_sort (q, compare_int, NULL);
910 check_integrity (q2);
912 g_queue_sort (q2, compare_int, NULL);
913 check_integrity (q2);
916 for (i = 0; i < 200; ++i)
918 g_queue_push_nth (q, GINT_TO_POINTER (i), i);
919 g_assert (g_queue_find (q, GINT_TO_POINTER (i)));
921 check_integrity (q2);
924 for (i = 0; i < 200; ++i)
926 g_queue_remove (q, GINT_TO_POINTER (i));
928 check_integrity (q2);
931 for (i = 0; i < 200; ++i)
933 GList *l = g_list_prepend (NULL, GINT_TO_POINTER (i));
935 g_queue_push_nth_link (q, i, l);
937 check_integrity (q2);
940 check_integrity (q2);
944 q2 = g_queue_copy (q);
946 g_queue_foreach (q2, remove_item, q2);
947 check_integrity (q2);
950 /* some checks for off by one errors */
951 g_queue_push_tail (q, GINT_TO_POINTER (1234));
953 node = g_queue_peek_tail_link (q);
954 g_assert (node != NULL && node->data == GINT_TO_POINTER (1234));
955 node = g_queue_peek_nth_link (q, g_queue_get_length (q));
956 g_assert (node == NULL);
957 node = g_queue_peek_nth_link (q, g_queue_get_length (q) - 1);
958 g_assert (node->data == GINT_TO_POINTER (1234));
959 node = g_queue_pop_nth_link (q, g_queue_get_length (q));
960 g_assert (node == NULL);
961 node = g_queue_pop_nth_link (q, g_queue_get_length (q) - 1);
962 g_assert (node != NULL && node->data == GINT_TO_POINTER (1234));
966 if (argc > 2 && args[1][0] == '-' && args[1][1] == 'v')
967 random_test (strtol (args[2], NULL, 0));
969 random_test (strtol (args[1], NULL, 0));
971 random_test (time (0));
973 testResultXml("queue-test");
974 #endif /* EMULATOR */