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
|
/* Copyright (c) 2010-2018 Dovecot authors, see the included COPYING file */
#include "lib.h"
#include "ioloop.h"
#include "penalty.h"
#include "test-common.h"
static void test_penalty_checksum(void)
{
struct penalty *penalty;
struct ioloop *ioloop;
time_t t;
unsigned int i, j;
test_begin("penalty");
ioloop = io_loop_create();
penalty = penalty_init();
test_assert(penalty_get(penalty, "foo", &t) == 0);
for (i = 1; i <= 10; i++) {
ioloop_time = 12345678 + i;
penalty_inc(penalty, "foo", i, 5+i);
for (j = I_MIN(1, i-1); j <= i; j++) {
test_assert(penalty_get(penalty, "foo", &t) == 5+i);
test_assert(t == (time_t)(12345678 + i));
test_assert(penalty_has_checksum(penalty, "foo", i));
}
test_assert(penalty_get(penalty, "foo", &t) == 5+i);
test_assert(t == (time_t)(12345678 + i));
test_assert(!penalty_has_checksum(penalty, "foo", j));
}
test_assert(penalty_get(penalty, "foo2", &t) == 0);
/* overflows checksum array */
ioloop_time = 12345678 + i;
penalty_inc(penalty, "foo", i, 5 + i);
penalty_inc(penalty, "foo", i, 5 + i);
penalty_inc(penalty, "foo", 0, 5 + i);
test_assert(penalty_get(penalty, "foo", &t) == 5+i);
test_assert(t == (time_t)(12345678 + i));
test_assert(!penalty_has_checksum(penalty, "foo", 1));
for (j = 2; j <= i; j++) {
test_assert(penalty_get(penalty, "foo", &t) == 5+i);
test_assert(t == (time_t)(12345678 + i));
test_assert(penalty_has_checksum(penalty, "foo", i));
}
penalty_deinit(&penalty);
io_loop_destroy(&ioloop);
test_end();
}
int main(void)
{
static void (*const test_functions[])(void) = {
test_penalty_checksum,
NULL
};
return test_run(test_functions);
}
|