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
121
122
123
124
125
|
/* Copyright (c) 2014-2018 Dovecot authors, see the included COPYING file */
#include "lib.h"
#include "test-common.h"
#include "settings-parser.h"
#include "master-service-private.h"
#include "master-service-settings.h"
#include "master-service-settings-cache.h"
struct master_service *master_service;
static struct master_service test_master_service;
static struct master_service_settings set;
static struct master_service_settings_input input;
static struct master_service_settings_output output;
static struct master_service_settings_cache *cache;
struct test_service_settings {
const char *foo;
};
#undef DEF
#define DEF(type, name) \
SETTING_DEFINE_STRUCT_##type(#name, name, struct test_service_settings)
static const struct setting_define test_setting_defines[] = {
DEF(STR, foo),
SETTING_DEFINE_LIST_END
};
static const struct test_service_settings test_default_settings = {
.foo = ""
};
static const struct setting_parser_info test_setting_parser_info = {
.module_name = "module",
.defines = test_setting_defines,
.defaults = &test_default_settings,
.type_offset = SIZE_MAX,
.struct_size = sizeof(struct test_service_settings),
.parent_offset = SIZE_MAX
};
int master_service_settings_read(struct master_service *service ATTR_UNUSED,
const struct master_service_settings_input *input ATTR_UNUSED,
struct master_service_settings_output *output_r,
const char **error_r ATTR_UNUSED)
{
*output_r = output;
return 0;
}
int master_service_settings_get_filters(struct master_service *service ATTR_UNUSED,
const char *const **filters ATTR_UNUSED,
const char **error_r ATTR_UNUSED)
{
return -1;
}
const struct master_service_settings *
master_service_settings_get(struct master_service *service ATTR_UNUSED)
{
return &set;
}
static void test_master_service_settings_cache_once(void)
{
const struct setting_parser_context *parser;
const char *error;
output.used_local = output.service_uses_local && i_rand_limit(2) != 0;
if (output.used_local) {
input.local_ip.family = AF_INET;
input.local_ip.u.ip4.s_addr = i_rand_minmax(100, 199);
}
output.used_remote = output.service_uses_remote && i_rand_limit(2) != 0;
if (output.used_remote) {
input.remote_ip.family = AF_INET;
input.remote_ip.u.ip4.s_addr = i_rand_minmax(100, 199);
}
test_assert(master_service_settings_cache_read(cache, &input, NULL, &parser, &error) == 0);
}
static void test_master_service_settings_cache(void)
{
int i, j;
for (i = 1; i < 4; i++) {
cache = master_service_settings_cache_init(master_service,
"module", "service_name");
output.service_uses_local = (i & 1) != 0;
output.service_uses_remote = (i & 2) != 0;
for (j = 0; j < 1000; j++)
test_master_service_settings_cache_once();
master_service_settings_cache_deinit(&cache);
}
}
int main(void)
{
static void (*const test_functions[])(void) = {
test_master_service_settings_cache,
NULL
};
pool_t pool;
int ret;
i_zero(&input);
input.module = "module";
input.service = "service_name";
set.config_cache_size = 1024*4;
pool = pool_alloconly_create("set pool", 1024);
test_master_service.set_parser =
settings_parser_init(pool, &test_setting_parser_info, 0);
master_service = &test_master_service;
ret = test_run(test_functions);
settings_parser_deinit(&test_master_service.set_parser);
pool_unref(&pool);
return ret;
}
|