blob: 52365851116121c065cbebda2f066ad407790101 (
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
|
#define HTTPD_TEST_REQUIRE_APACHE 2.4
/**
* This module provides utility functions for other tests; it doesn't provide
* test cases of its own.
*/
#define APACHE_HTTPD_TEST_EXTRA_HOOKS util_register_hooks
#include "apache_httpd_test.h"
#include "apr_strings.h"
#include "ap_expr.h"
/**
* The util_strlen() ap_expr function simply returns the length of its string
* argument as a decimal string.
*/
static const char *util_strlen_func(ap_expr_eval_ctx_t *ctx, const void *data,
const char *arg)
{
if (!arg) {
return NULL;
}
return apr_psprintf(ctx->p, "%" APR_SIZE_T_FMT, strlen(arg));
}
static int util_expr_lookup(ap_expr_lookup_parms *parms)
{
switch (parms->type) {
case AP_EXPR_FUNC_STRING:
if (!strcasecmp(parms->name, "util_strlen")) {
*parms->func = util_strlen_func;
*parms->data = "dummy";
return OK;
}
break;
}
return DECLINED;
}
static void util_register_hooks(apr_pool_t *p)
{
ap_hook_expr_lookup(util_expr_lookup, NULL, NULL, APR_HOOK_MIDDLE);
}
APACHE_HTTPD_TEST_MODULE(test_utilities);
|