summaryrefslogtreecommitdiffstats
path: root/test/history-test.c
blob: 2ac2c84660fe4f99ff4c388ac8326b46c94eba09 (plain)
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
#include <unistd.h>

#include <stdio.h>
#include <assert.h>
#include <glib.h>
#include <history.h>
#include <string.h>


static int test = 0;

#define TASSERT(a) {\
    assert ( a );\
    printf("Test %i passed (%s)\n", ++test, #a);\
}

const char *file = "text";

void history_test()
{
    unlink(file);

    // Empty list.
    unsigned int length= 0;
    char **retv = history_get_list ( file, &length);

    TASSERT ( retv  == NULL );
    TASSERT ( length  == 0 );

    // 1 item 
    history_set( file, "aap");

    retv = history_get_list ( file, &length);

    TASSERT ( retv  != NULL );
    TASSERT ( length  == 1 );

    TASSERT ( strcmp(retv[0], "aap") == 0 );

    g_strfreev(retv);

    // Remove entry
    history_remove ( file, "aap" );

    length= 0;
    retv = history_get_list ( file, &length);

    TASSERT ( retv  == NULL );
    TASSERT ( length  == 0 );

    // 2 items 
    history_set( file, "aap");
    history_set( file, "aap");

    retv = history_get_list ( file, &length);

    TASSERT ( retv  != NULL );
    TASSERT ( length  == 1 );

    TASSERT ( strcmp(retv[0], "aap") == 0 );

    g_strfreev(retv);

    for(unsigned int in=length+1; in < 26; in++) {
        char *p = g_strdup_printf("aap%i", in);
        printf("%s- %d\n",p, in);
        history_set( file, p);
        retv = history_get_list ( file, &length);

        TASSERT ( retv  != NULL );
        TASSERT ( length  == (in) );

        g_strfreev(retv);

        g_free(p);
    }
    // Max 25 entries.
    history_set( file, "blaat" );
    retv = history_get_list ( file, &length);

    TASSERT ( retv  != NULL );
    TASSERT ( length  == 25 );

    g_strfreev(retv);

}

int main (  G_GNUC_UNUSED int argc, G_GNUC_UNUSED char **argv )
{
    history_test();

    return 0;
}