mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-02 07:23:41 +02:00
add array-test.c
* tests/Makefile.am: add array-test.c * tests/array-test.c: New module, tests array family * tests/hash-test.c, tests/list-test.c, tests/slist-test.c, tests/string-test.c, tests/node-test.c: Clean out cruft left over from testglib.
This commit is contained in:
@@ -47,145 +47,8 @@ typedef struct {
|
||||
gchar name[40];
|
||||
} GlibTestInfo;
|
||||
|
||||
|
||||
static gboolean
|
||||
node_build_string (GNode *node,
|
||||
gpointer data)
|
||||
{
|
||||
gchar **p = data;
|
||||
gchar *string;
|
||||
gchar c[2] = "_";
|
||||
|
||||
c[0] = P2C (node->data);
|
||||
|
||||
string = g_strconcat (*p ? *p : "", c, NULL);
|
||||
g_free (*p);
|
||||
*p = string;
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
static void
|
||||
g_node_test (void)
|
||||
{
|
||||
GNode *root;
|
||||
GNode *node;
|
||||
GNode *node_B;
|
||||
GNode *node_F;
|
||||
GNode *node_G;
|
||||
GNode *node_J;
|
||||
guint i;
|
||||
gchar *tstring;
|
||||
|
||||
g_print ("checking n-way trees: ");
|
||||
failed = FALSE;
|
||||
|
||||
root = g_node_new (C2P ('A'));
|
||||
TEST (NULL, g_node_depth (root) == 1 && g_node_max_height (root) == 1);
|
||||
|
||||
node_B = g_node_new (C2P ('B'));
|
||||
g_node_append (root, node_B);
|
||||
TEST (NULL, root->children == node_B);
|
||||
|
||||
g_node_append_data (node_B, C2P ('E'));
|
||||
g_node_prepend_data (node_B, C2P ('C'));
|
||||
g_node_insert (node_B, 1, g_node_new (C2P ('D')));
|
||||
|
||||
node_F = g_node_new (C2P ('F'));
|
||||
g_node_append (root, node_F);
|
||||
TEST (NULL, root->children->next == node_F);
|
||||
|
||||
node_G = g_node_new (C2P ('G'));
|
||||
g_node_append (node_F, node_G);
|
||||
node_J = g_node_new (C2P ('J'));
|
||||
g_node_prepend (node_G, node_J);
|
||||
g_node_insert (node_G, 42, g_node_new (C2P ('K')));
|
||||
g_node_insert_data (node_G, 0, C2P ('H'));
|
||||
g_node_insert (node_G, 1, g_node_new (C2P ('I')));
|
||||
|
||||
TEST (NULL, g_node_depth (root) == 1);
|
||||
TEST (NULL, g_node_max_height (root) == 4);
|
||||
TEST (NULL, g_node_depth (node_G->children->next) == 4);
|
||||
TEST (NULL, g_node_n_nodes (root, G_TRAVERSE_LEAFS) == 7);
|
||||
TEST (NULL, g_node_n_nodes (root, G_TRAVERSE_NON_LEAFS) == 4);
|
||||
TEST (NULL, g_node_n_nodes (root, G_TRAVERSE_ALL) == 11);
|
||||
TEST (NULL, g_node_max_height (node_F) == 3);
|
||||
TEST (NULL, g_node_n_children (node_G) == 4);
|
||||
TEST (NULL, g_node_find_child (root, G_TRAVERSE_ALL, C2P ('F')) == node_F);
|
||||
TEST (NULL, g_node_find (root, G_LEVEL_ORDER, G_TRAVERSE_NON_LEAFS, C2P ('I')) == NULL);
|
||||
TEST (NULL, g_node_find (root, G_IN_ORDER, G_TRAVERSE_LEAFS, C2P ('J')) == node_J);
|
||||
|
||||
for (i = 0; i < g_node_n_children (node_B); i++)
|
||||
{
|
||||
node = g_node_nth_child (node_B, i);
|
||||
TEST (NULL, P2C (node->data) == ('C' + i));
|
||||
}
|
||||
|
||||
for (i = 0; i < g_node_n_children (node_G); i++)
|
||||
TEST (NULL, g_node_child_position (node_G, g_node_nth_child (node_G, i)) == i);
|
||||
|
||||
/* we have built: A
|
||||
* / \
|
||||
* B F
|
||||
* / | \ \
|
||||
* C D E G
|
||||
* / /\ \
|
||||
* H I J K
|
||||
*
|
||||
* for in-order traversal, 'G' is considered to be the "left"
|
||||
* child of 'F', which will cause 'F' to be the last node visited.
|
||||
*/
|
||||
|
||||
tstring = NULL;
|
||||
g_node_traverse (root, G_PRE_ORDER, G_TRAVERSE_ALL, -1, node_build_string, &tstring);
|
||||
TEST (tstring, strcmp (tstring, "ABCDEFGHIJK") == 0);
|
||||
g_free (tstring); tstring = NULL;
|
||||
g_node_traverse (root, G_POST_ORDER, G_TRAVERSE_ALL, -1, node_build_string, &tstring);
|
||||
TEST (tstring, strcmp (tstring, "CDEBHIJKGFA") == 0);
|
||||
g_free (tstring); tstring = NULL;
|
||||
g_node_traverse (root, G_IN_ORDER, G_TRAVERSE_ALL, -1, node_build_string, &tstring);
|
||||
TEST (tstring, strcmp (tstring, "CBDEAHGIJKF") == 0);
|
||||
g_free (tstring); tstring = NULL;
|
||||
g_node_traverse (root, G_LEVEL_ORDER, G_TRAVERSE_ALL, -1, node_build_string, &tstring);
|
||||
TEST (tstring, strcmp (tstring, "ABFCDEGHIJK") == 0);
|
||||
g_free (tstring); tstring = NULL;
|
||||
|
||||
g_node_traverse (root, G_LEVEL_ORDER, G_TRAVERSE_LEAFS, -1, node_build_string, &tstring);
|
||||
TEST (tstring, strcmp (tstring, "CDEHIJK") == 0);
|
||||
g_free (tstring); tstring = NULL;
|
||||
g_node_traverse (root, G_PRE_ORDER, G_TRAVERSE_NON_LEAFS, -1, node_build_string, &tstring);
|
||||
TEST (tstring, strcmp (tstring, "ABFG") == 0);
|
||||
g_free (tstring); tstring = NULL;
|
||||
|
||||
g_node_reverse_children (node_B);
|
||||
g_node_reverse_children (node_G);
|
||||
|
||||
g_node_traverse (root, G_LEVEL_ORDER, G_TRAVERSE_ALL, -1, node_build_string, &tstring);
|
||||
TEST (tstring, strcmp (tstring, "ABFEDCGKJIH") == 0);
|
||||
g_free (tstring); tstring = NULL;
|
||||
|
||||
g_node_destroy (root);
|
||||
|
||||
/* allocation tests */
|
||||
|
||||
root = g_node_new (NULL);
|
||||
node = root;
|
||||
|
||||
for (i = 0; i < 2048; i++)
|
||||
{
|
||||
g_node_append (node, g_node_new (NULL));
|
||||
if ((i%5) == 4)
|
||||
node = node->children->next;
|
||||
}
|
||||
TEST (NULL, g_node_max_height (root) > 100);
|
||||
TEST (NULL, g_node_n_nodes (root, G_TRAVERSE_ALL) == 1 + 2048);
|
||||
|
||||
g_node_destroy (root);
|
||||
|
||||
if (!failed)
|
||||
g_print ("ok\n");
|
||||
}
|
||||
|
||||
gboolean
|
||||
my_hash_callback_remove (gpointer key,
|
||||
gpointer value,
|
||||
gpointer user_data)
|
||||
@@ -198,7 +61,7 @@ my_hash_callback_remove (gpointer key,
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
void
|
||||
static void
|
||||
my_hash_callback_remove_test (gpointer key,
|
||||
gpointer value,
|
||||
gpointer user_data)
|
||||
@@ -209,7 +72,7 @@ my_hash_callback_remove_test (gpointer key,
|
||||
g_print ("bad!\n");
|
||||
}
|
||||
|
||||
void
|
||||
static void
|
||||
my_hash_callback (gpointer key,
|
||||
gpointer value,
|
||||
gpointer user_data)
|
||||
@@ -218,125 +81,26 @@ my_hash_callback (gpointer key,
|
||||
*d = 1;
|
||||
}
|
||||
|
||||
guint
|
||||
static guint
|
||||
my_hash (gconstpointer key)
|
||||
{
|
||||
return (guint) *((const gint*) key);
|
||||
}
|
||||
|
||||
gint
|
||||
static gint
|
||||
my_hash_compare (gconstpointer a,
|
||||
gconstpointer b)
|
||||
{
|
||||
return *((const gint*) a) == *((const gint*) b);
|
||||
}
|
||||
|
||||
gint
|
||||
my_list_compare_one (gconstpointer a, gconstpointer b)
|
||||
{
|
||||
gint one = *((const gint*)a);
|
||||
gint two = *((const gint*)b);
|
||||
return one-two;
|
||||
}
|
||||
|
||||
gint
|
||||
my_list_compare_two (gconstpointer a, gconstpointer b)
|
||||
{
|
||||
gint one = *((const gint*)a);
|
||||
gint two = *((const gint*)b);
|
||||
return two-one;
|
||||
}
|
||||
|
||||
/* void
|
||||
my_list_print (gpointer a, gpointer b)
|
||||
{
|
||||
gint three = *((gint*)a);
|
||||
g_print("%d", three);
|
||||
}; */
|
||||
|
||||
gint
|
||||
my_compare (gconstpointer a,
|
||||
gconstpointer b)
|
||||
{
|
||||
const char *cha = a;
|
||||
const char *chb = b;
|
||||
|
||||
return *cha - *chb;
|
||||
}
|
||||
|
||||
gint
|
||||
my_traverse (gpointer key,
|
||||
gpointer value,
|
||||
gpointer data)
|
||||
{
|
||||
char *ch = key;
|
||||
g_print ("%c ", *ch);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
int
|
||||
main (int argc,
|
||||
char *argv[])
|
||||
{
|
||||
GList *list, *t;
|
||||
GSList *slist, *st;
|
||||
GHashTable *hash_table;
|
||||
GMemChunk *mem_chunk;
|
||||
GStringChunk *string_chunk;
|
||||
GTimer *timer;
|
||||
gint nums[10] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
|
||||
gint morenums[10] = { 8, 9, 7, 0, 3, 2, 5, 1, 4, 6};
|
||||
gchar *string;
|
||||
|
||||
gchar *mem[10000], *tmp_string, *tmp_string_2;
|
||||
gint i, j;
|
||||
GArray *garray;
|
||||
GPtrArray *gparray;
|
||||
GByteArray *gbarray;
|
||||
GString *string1, *string2;
|
||||
GTree *tree;
|
||||
char chars[62];
|
||||
GRelation *relation;
|
||||
GTuples *tuples;
|
||||
gint data [1024];
|
||||
GlibTestInfo *gti;
|
||||
struct {
|
||||
gchar *filename;
|
||||
gchar *dirname;
|
||||
} dirname_checks[] = {
|
||||
#ifndef NATIVE_WIN32
|
||||
{ "/", "/" },
|
||||
{ "////", "/" },
|
||||
{ ".////", "." },
|
||||
{ ".", "." },
|
||||
{ "..", "." },
|
||||
{ "../", ".." },
|
||||
{ "..////", ".." },
|
||||
{ "", "." },
|
||||
{ "a/b", "a" },
|
||||
{ "a/b/", "a/b" },
|
||||
{ "c///", "c" },
|
||||
#else
|
||||
{ "\\", "\\" },
|
||||
{ ".\\\\\\\\", "." },
|
||||
{ ".", "." },
|
||||
{ "..", "." },
|
||||
{ "..\\", ".." },
|
||||
{ "..\\\\\\\\", ".." },
|
||||
{ "", "." },
|
||||
{ "a\\b", "a" },
|
||||
{ "a\\b\\", "a\\b" },
|
||||
{ "c\\\\\\", "c" },
|
||||
#endif
|
||||
};
|
||||
guint n_dirname_checks = sizeof (dirname_checks) / sizeof (dirname_checks[0]);
|
||||
guint16 gu16t1 = 0x44afU, gu16t2 = 0xaf44U;
|
||||
guint32 gu32t1 = 0x02a7f109U, gu32t2 = 0x09f1a702U;
|
||||
#ifdef G_HAVE_GINT64
|
||||
guint64 gu64t1 = G_GINT64_CONSTANT(0x1d636b02300a7aa7U),
|
||||
gu64t2 = G_GINT64_CONSTANT(0xa77a0a30026b631dU);
|
||||
#endif
|
||||
|
||||
gint i;
|
||||
|
||||
hash_table = g_hash_table_new (my_hash, my_hash_compare);
|
||||
for (i = 0; i < 10000; i++)
|
||||
|
Reference in New Issue
Block a user