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
|
/*
test_expr.c - simple tests for the expr module
This file is part of the nss-pam-ldapd library.
Copyright (C) 2009, 2011 Arthur de Jong
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA
*/
#include "config.h"
#include <stdio.h>
#include <string.h>
#include <assert.h>
#include "common.h"
/* we include expr.c because we want to test the static methods */
#include "common/expr.c"
static void test_parse_name(void)
{
char buffer[20];
int i;
i=0;
assert(parse_name("fooBar",&i,buffer,sizeof(buffer))!=NULL);
assert(i==6);
i=0;
assert(parse_name("nameThatWillNotFitInBuffer",&i,buffer,sizeof(buffer))==NULL);
i=0;
assert(parse_name("foo Bar",&i,buffer,sizeof(buffer))!=NULL);
assert(i==3);
assertstreq(buffer,"foo");
}
static const char *expanderfn(const char *name,void UNUSED(*expander_attr))
{
if (strcmp(name,"empty")==0)
return "";
else
return "foobar";
}
static void test_expr_parse(void)
{
char buffer[1024];
assert(expr_parse("$test1",buffer,sizeof(buffer),expanderfn,NULL)!=NULL);
assertstreq(buffer,"foobar");
assert(expr_parse("$empty",buffer,sizeof(buffer),expanderfn,NULL)!=NULL);
assertstreq(buffer,"");
assert(expr_parse("${test1}\\$",buffer,sizeof(buffer),expanderfn,NULL)!=NULL);
assertstreq(buffer,"foobar$");
assert(expr_parse("${test1:-default}",buffer,sizeof(buffer),expanderfn,NULL)!=NULL);
assertstreq(buffer,"foobar");
assert(expr_parse("${empty:-default}",buffer,sizeof(buffer),expanderfn,NULL)!=NULL);
assertstreq(buffer,"default");
assert(expr_parse("${test1:+setset}",buffer,sizeof(buffer),expanderfn,NULL)!=NULL);
assertstreq(buffer,"setset");
assert(expr_parse("${empty:+setset}",buffer,sizeof(buffer),expanderfn,NULL)!=NULL);
assertstreq(buffer,"");
assert(expr_parse("${empty:-$test1}",buffer,sizeof(buffer),expanderfn,NULL)!=NULL);
assertstreq(buffer,"foobar");
assert(expr_parse("a/$test1/b",buffer,sizeof(buffer),expanderfn,NULL)!=NULL);
assertstreq(buffer,"a/foobar/b");
assert(expr_parse("a/$empty/b",buffer,sizeof(buffer),expanderfn,NULL)!=NULL);
assertstreq(buffer,"a//b");
assert(expr_parse("a${test1}b",buffer,sizeof(buffer),expanderfn,NULL)!=NULL);
assertstreq(buffer,"afoobarb");
assert(expr_parse("a${test1}b${test2:+${test3:-d$test4}e}c",buffer,sizeof(buffer),expanderfn,NULL)!=NULL);
assertstreq(buffer,"afoobarbfoobarec");
assert(expr_parse("a${test1}b${test2:+${empty:-d$test4}e}c",buffer,sizeof(buffer),expanderfn,NULL)!=NULL);
assertstreq(buffer,"afoobarbdfoobarec");
}
static void test_buffer_overflow(void)
{
char buffer[10];
assert(expr_parse("$test1$empty$test1",buffer,sizeof(buffer),expanderfn,NULL)==NULL);
assert(expr_parse("long test value",buffer,sizeof(buffer),expanderfn,NULL)==NULL);
assert(expr_parse("${test1:-long test value}",buffer,sizeof(buffer),expanderfn,NULL)==NULL);
}
static void test_expr_vars(void)
{
SET *set;
/* simple test */
set=set_new();
assert(expr_vars("$a",set)!=NULL);
assert(set_contains(set,"a"));
assert(!set_contains(set,"$a"));
set_free(set);
/* more elaborate test */
set=set_new();
assert(expr_vars("\"${gecos:-$cn}\"",set)!=NULL);
assert(set_contains(set,"gecos"));
assert(set_contains(set,"cn"));
set_free(set);
/* more elaborate test */
set=set_new();
assert(expr_vars("\"${homeDirectory:-/home/$uidNumber/$uid}\"",set)!=NULL);
assert(set_contains(set,"homeDirectory"));
assert(set_contains(set,"uidNumber"));
assert(set_contains(set,"uid"));
set_free(set);
}
/* the main program... */
int main(int UNUSED(argc),char UNUSED(*argv[]))
{
test_parse_name();
test_expr_parse();
test_buffer_overflow();
test_expr_vars();
return EXIT_SUCCESS;
}
|