blob: 0a1f9cefdd29396ef1814174eebb5c28127e4bad (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
#
# PRE: if update return
#
update request {
Tmp-String-0 = "test"
}
#
# rpad tests
#
if ("%{rpad:&Tmp-String-0 7}" != "test ") {
update reply {
Filter-Id := "fail 1"
}
return
}
if ("%{rpad:&Tmp-String-0 2}" != "te") {
update reply {
Filter-Id := "fail 2"
}
return
}
if ("%{rpad:&Tmp-String-0 7 x}" != "testxxx") {
update reply {
Filter-Id := "fail 1"
}
return
}
#
# lpad tests
#
if ("%{lpad:&Tmp-String-0 7}" != " test") {
update reply {
Filter-Id := "fail 1"
}
return
}
if ("%{lpad:&Tmp-String-0 2}" != "te") {
update reply {
Filter-Id := "fail 2"
}
return
}
if ("%{lpad:&Tmp-String-0 7 x}" != "xxxtest") {
update reply {
Filter-Id := "fail 1"
}
return
}
update reply {
Filter-Id := "filter"
}
|