File: var.c

package info (click to toggle)
proftpd-dfsg 1.3.8.c%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 56,576 kB
  • sloc: perl: 286,353; ansic: 241,458; sh: 16,680; php: 11,586; makefile: 1,092; xml: 93
file content (310 lines) | stat: -rw-r--r-- 9,455 bytes parent folder | download | duplicates (2)
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
/*
 * ProFTPD - FTP server testsuite
 * Copyright (c) 2008-2011 The ProFTPD Project team
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA.
 *
 * As a special exemption, The ProFTPD Project team and other respective
 * copyright holders give permission to link this program with OpenSSL, and
 * distribute the resulting executable, without including the source code for
 * OpenSSL in the source distribution.
 */

/* Var API tests */

#include "tests.h"

static pool *p = NULL;

/* Fixtures */

static void set_up(void) {
  if (p == NULL) {
    p = permanent_pool = make_sub_pool(NULL);
  }

  (void) var_init();
}

static void tear_down(void) {
  (void) var_free();

  if (p) {
    destroy_pool(p);
    p = NULL;
    permanent_pool = NULL;
  } 
}

/* Helper functions */

static const char *var_cb(void *data, size_t datasz) {
  return "baz";
}

/* Tests */

START_TEST (var_set_test) {
  int res;
  const char *key;

  (void) var_free();

  res = pr_var_set(NULL, NULL, NULL, 0, NULL, NULL, 0);
  ck_assert_msg(res == -1, "Failed to handle uninitialized Var table");
  ck_assert_msg(errno == EPERM, "Failed to set errno to EPERM");

  (void) var_init();

  res = pr_var_set(NULL, NULL, NULL, 0, NULL, NULL, 0);
  ck_assert_msg(res == -1, "Failed to handle null arguments");
  ck_assert_msg(errno == EINVAL, "Failed to set errno to EINVAL");

  res = pr_var_set(p, NULL, NULL, 0, NULL, NULL, 0);
  ck_assert_msg(res == -1, "Failed to handle null key");
  ck_assert_msg(errno == EINVAL, "Failed to set errno to EINVAL");

  key = "fo";

  res = pr_var_set(p, key, NULL, 0, NULL, NULL, 0);
  ck_assert_msg(res == -1, "Failed to handle null val");
  ck_assert_msg(errno == EINVAL, "Failed to set errno to EINVAL");

  res = pr_var_set(p, key, NULL, 0, "bar", NULL, 0);
  ck_assert_msg(res == -1, "Failed to handle bad key name");
  ck_assert_msg(errno == EINVAL, "Failed to set errno to EINVAL");

  key = "fooo";

  res = pr_var_set(p, key, NULL, 0, "bar", NULL, 0);
  ck_assert_msg(res == -1, "Failed to handle bad key name");
  ck_assert_msg(errno == EINVAL, "Failed to set errno to EINVAL");

  key = "%{foo";

  res = pr_var_set(p, key, NULL, 0, "bar", NULL, 0);
  ck_assert_msg(res == -1, "Failed to handle bad key name");
  ck_assert_msg(errno == EINVAL, "Failed to set errno to EINVAL");

  key = "%{}";

  res = pr_var_set(p, key, NULL, 0, "bar", NULL, 0);
  ck_assert_msg(res == -1, "Failed to handle bad key name");
  ck_assert_msg(errno == EINVAL, "Failed to set errno to EINVAL");

  key = "%{foo}";

  res = pr_var_set(p, key, NULL, 0, "bar", NULL, 0);
  ck_assert_msg(res == -1, "Failed to handle unknown type");
  ck_assert_msg(errno == EINVAL, "Failed to set errno to EINVAL");

  res = pr_var_set(p, key, NULL, PR_VAR_TYPE_STR, "bar", "bar", 0);
  ck_assert_msg(res == -1, "Failed to handle data with zero len");
  ck_assert_msg(errno == EINVAL, "Failed to set errno to EINVAL");

  res = pr_var_set(p, key, NULL, PR_VAR_TYPE_STR, "bar", NULL, 1);
  ck_assert_msg(res == -1, "Failed to handle null data with non-zero len");
  ck_assert_msg(errno == EINVAL, "Failed to set errno to EINVAL");

  res = pr_var_set(p, key, NULL, PR_VAR_TYPE_STR, "bar", NULL, 0);
  ck_assert_msg(res == 0, "Failed to add str var: %s", strerror(errno));

  res = pr_var_set(p, key, "test", PR_VAR_TYPE_FUNC, var_cb, NULL, 0);
  ck_assert_msg(res == 0, "Failed to add cb var: %s", strerror(errno));
}
END_TEST

START_TEST (var_delete_test) {
  int res;
  const char *key = "%{foo}";

  (void) var_free();

  res = pr_var_delete(NULL);
  ck_assert_msg(res == -1, "Failed to handle uninitialized Var table");
  ck_assert_msg(errno == EPERM, "Failed to set errno to EPERM");

  (void) var_init();

  res = pr_var_delete(NULL);
  ck_assert_msg(res == -1, "Failed to handle null key");
  ck_assert_msg(errno == EINVAL, "Failed to set errno to EINVAL");

  res = pr_var_delete(key);
  ck_assert_msg(res == -1, "Failed to handle absent key");
  ck_assert_msg(errno == ENOENT, "Failed to set errno to ENOENT");

  res = pr_var_set(p, key, "test", PR_VAR_TYPE_STR, "bar", NULL, 0);
  ck_assert_msg(res == 0, "Failed to add var: %s", strerror(errno));

  res = pr_var_delete(key);
  ck_assert_msg(res == 0, "Failed to delete var: %s", strerror(errno));

  res = pr_var_delete(key);
  ck_assert_msg(res == -1, "Failed to handle absent key");
  ck_assert_msg(errno == ENOENT, "Failed to set errno to ENOENT");
}
END_TEST

START_TEST (var_exists_test) {
  int res;
  const char *key; 

  (void) var_free();

  res = pr_var_exists(NULL);
  ck_assert_msg(res == -1, "Failed to handle uninitialized Var table");
  ck_assert_msg(errno == EPERM, "Failed to set errno to EPERM");

  (void) var_init();

  res = pr_var_exists(NULL);
  ck_assert_msg(res == -1, "Failed to handle null key");
  ck_assert_msg(errno == EINVAL, "Failed to set errno to EINVAL");

  key = "%{foo}";
  res = pr_var_exists(key);
  ck_assert_msg(res == FALSE, "Failed to handle absent key");

  res = pr_var_set(p, key, NULL, PR_VAR_TYPE_STR, "bar", NULL, 0);
  ck_assert_msg(res == 0, "Failed to add var: %s", strerror(errno));

  res = pr_var_exists(key);
  ck_assert_msg(res == TRUE, "Failed to detect present key");
}
END_TEST

START_TEST (var_get_test) {
  int ok;
  const char *key, *res;

  (void) var_free();

  res = pr_var_get(NULL);
  ck_assert_msg(res == NULL, "Failed to handle uninitialized Var table");
  ck_assert_msg(errno == EPERM, "Failed to set errno to EPERM");

  (void) var_init();

  res = pr_var_get(NULL);
  ck_assert_msg(res == NULL, "Failed to handle null key");
  ck_assert_msg(errno == EINVAL, "Failed to set errno to EINVAL");

  key = "%{foo}";

  res = pr_var_get(key);
  ck_assert_msg(res == NULL, "Failed to absent key");
  ck_assert_msg(errno == ENOENT, "Failed to set errno to ENOENT");

  ok = pr_var_set(p, key, NULL, PR_VAR_TYPE_STR, "bar", NULL, 0);
  ck_assert_msg(ok == 0, "Failed to add str var: %s", strerror(errno));

  res = pr_var_get(key);
  ck_assert_msg(res != NULL, "Failed to get str var: %s", strerror(errno));
  ck_assert_msg(strcmp(res, "bar") == 0, "Expected '%s', got '%s'", "bar", res);

  ok = pr_var_set(p, key, "test", PR_VAR_TYPE_FUNC, var_cb, NULL, 0);
  ck_assert_msg(ok == 0, "Failed to add cb var: %s", strerror(errno));

  res = pr_var_get(key);
  ck_assert_msg(res != NULL, "Failed to get str var: %s", strerror(errno));
  ck_assert_msg(strcmp(res, "baz") == 0, "Expected '%s', got '%s'", "baz", res);
}
END_TEST

START_TEST (var_next_test) {
  int ok;
  const char *res, *desc;

  (void) var_free();

  res = pr_var_next(NULL);
  ck_assert_msg(res == NULL, "Failed to handle uninitialized Var table");
  ck_assert_msg(errno == EPERM, "Failed to set errno to EPERM");

  (void) var_init();

  res = pr_var_next(NULL);
  ck_assert_msg(res == NULL, "Failed to handle empty table");

  ok = pr_var_set(p, "%{foo}", NULL, PR_VAR_TYPE_STR, "bar", NULL, 0);
  ck_assert_msg(ok == 0, "Failed to add var: %s", strerror(errno));

  res = pr_var_next(&desc);
  ck_assert_msg(res != NULL, "Failed to get next key: %s", strerror(errno));
  ck_assert_msg(desc == NULL, "Expected no desc, got '%s'", desc);

  res = pr_var_next(&desc);
  ck_assert_msg(res == NULL, "Expected no more keys, got '%s'", res);
}
END_TEST

START_TEST (var_rewind_test) {
  int ok;
  const char *res, *desc;

  (void) var_free();

  mark_point();
  pr_var_rewind();

  (void) var_init();

  pr_var_rewind();

  ok = pr_var_set(p, "%{foo}", "test", PR_VAR_TYPE_STR, "bar", NULL, 0);
  ck_assert_msg(ok == 0, "Failed to add var: %s", strerror(errno));

  res = pr_var_next(&desc);
  ck_assert_msg(res != NULL, "Failed to get next key: %s", strerror(errno));
  ck_assert_msg(desc != NULL, "Expected non-null desc");
  ck_assert_msg(strcmp(desc, "test") == 0, "Expected desc '%s', got '%s'",
    "test", desc);

  res = pr_var_next(&desc);
  ck_assert_msg(res == NULL, "Expected no more keys, got '%s'", res);

  pr_var_rewind();

  res = pr_var_next(&desc);
  ck_assert_msg(res != NULL, "Failed to get next key: %s", strerror(errno));
  ck_assert_msg(desc != NULL, "Expected non-null desc");
  ck_assert_msg(strcmp(desc, "test") == 0, "Expected desc '%s', got '%s'",
    "test", desc);

  res = pr_var_next(&desc);
  ck_assert_msg(res == NULL, "Expected no more keys, got '%s'", res);
}
END_TEST

Suite *tests_get_var_suite(void) {
  Suite *suite;
  TCase *testcase;

  suite = suite_create("var");
  testcase = tcase_create("base");

  tcase_add_checked_fixture(testcase, set_up, tear_down);

  tcase_add_test(testcase, var_set_test);
  tcase_add_test(testcase, var_delete_test);
  tcase_add_test(testcase, var_exists_test);
  tcase_add_test(testcase, var_get_test);
  tcase_add_test(testcase, var_next_test);
  tcase_add_test(testcase, var_rewind_test);

  suite_add_tcase(suite, testcase);
  return suite;
}