about summary refs log tree commit diff stats
path: root/test_prof_history.c
blob: 6b42a160c60e6cffa4b3504dba262c3f4180abea (plain) (blame)
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
#include <stdio.h>
#include <head-unit.h>
#include "prof_history.h"

void previous_on_empty_returns_current(void)
{
    PHistory history = p_history_new(10);
    char *item = p_history_previous(history, "inp");

    assert_string_equals("inp", item);
}

void next_on_empty_returns_current(void)
{
    PHistory history = p_history_new(10);
    char *item = p_history_next(history, "inp");

    assert_string_equals("inp", item);
}

void previous_once_returns_last(void)
{
    PHistory history = p_history_new(10);
    p_history_append(history, "Hello");

    char *item = p_history_previous(history, "inp");

    assert_string_equals("Hello", item);
}

void previous_twice_when_one_returns_first(void)
{
    PHistory history = p_history_new(10);
    p_history_append(history, "Hello");

    char *item1 = p_history_previous(history, NULL);
    char *item2 = p_history_previous(history, item1);

    assert_string_equals("Hello", item2);
}

void previous_always_stops_at_first(void)
{
    PHistory history = p_history_new(10);
    p_history_append(history, "Hello");

    char *item1 = p_history_previous(history, NULL);
    char *item2 = p_history_previous(history, item1);
    char *item3 = p_history_previous(history, item2);
    char *item4 = p_history_previous(history, item3);
    char *item5 = p_history_previous(history, item4);
    char *item6 = p_history_previous(history, item5);

    assert_string_equals("Hello", item6);
}

void previous_goes_to_correct_element(void)
{
    PHistory history = p_history_new(10);
    p_history_append(history, "Hello");
    p_history_append(history, "world");
    p_history_append(history, "whats");
    p_history_append(history, "going");
    p_history_append(history, "on");
    p_history_append(history, "here");

    char *item1 = p_history_previous(history, NULL);
    char *item2 = p_history_previous(history, item1);
    char *item3 = p_history_previous(history, item2);
    
    assert_string_equals("going", item3); 
}

void prev_then_next_returns_empty(void)
{
    PHistory history = p_history_new(10);
    p_history_append(history, "Hello");

    char *item1 = p_history_previous(history, NULL);
    char *item2 = p_history_next(history, item1);

    assert_string_equals("", item2);
}

void prev_with_val_then_next_returns_val(void)
{
    PHistory history = p_history_new(10);
    p_history_append(history, "Hello");

    char *item1 = p_history_previous(history, "Oioi");
    char *item2 = p_history_next(history, item1);

    assert_string_equals("Oioi", item2);
}

void prev_with_val_then_next_twice_returns_val(void)
{
    PHistory history = p_history_new(10);
    p_history_append(history, "Hello");

    char *item1 = p_history_previous(history, "Oioi");
    char *item2 = p_history_next(history, item1);
    char *item3 = p_history_next(history, item2);

    assert_string_equals("Oioi", item3);
}

void register_prof_history_tests(void)
{
    TEST_MODULE("prof_history tests");
    TEST(previous_on_empty_returns_current);
    TEST(next_on_empty_returns_current);
    TEST(previous_once_returns_last);
    TEST(previous_twice_when_one_returns_first);
    TEST(previous_always_stops_at_first);
    TEST(previous_goes_to_correct_element);
    TEST(prev_then_next_returns_empty);
    TEST(prev_with_val_then_next_returns_val);
    TEST(prev_with_val_then_next_twice_returns_val);
}