summaryrefslogtreecommitdiff
path: root/testsuite/subst-replacement.sh
blob: c385be3819d819bf1a839728c5a4089580a0496b (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
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
#!/bin/sh
# Test Substitute replacements, e.g. 's/(.)/\U\1/'

# Copyright (C) 2016 Free Software Foundation, Inc.

# 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 3 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, see <http://www.gnu.org/licenses/>.
. "${srcdir=.}/testsuite/init.sh"; path_prepend_ ./sed
print_ver_ sed

fail=0

#
# Backslash followed by unrecognized letter,
# use letter as-is.
echo a > in-rpl1 || framework_failure_
echo Q > exp-rpl1 || framework_failure_
sed -E 's/(.)/\Q/' in-rpl1 > out-rpl1 || fail=1
compare_ exp-rpl1 out-rpl1 || fail=1

#
# numbered backreferences
#
echo 123456789 > in-rpl2 || framework_failure_
for i in 1 2 3 4 5 6 7 8 9 ;
do
    echo $i > exp-rpl2-$i || framework_failure_
    sed -E "s/(.)(.)(.)(.)(.)(.)(.)(.)(.)/\\$i/" in-rpl2 > out-rpl2-$i || fail=1
    compare_ exp-rpl2-$i out-rpl2-$i || fail=1
done

# \0 matches entire pattern (TODO: is this documented?)
# output should be the same as the input.
sed -E 's/(.)(.)(.)(.)(.)(.)(.)(.)(.)/\0/' in-rpl2 > out-rpl2-0 || fail=1
compare_ in-rpl2 out-rpl2-0 || fail=1

# Unescaped '&' matches entire pattern
# output should be the same as the input.
sed -E 's/(.)(.)(.)(.)(.)(.)(.)(.)(.)/&/' in-rpl2 > out-rpl2-amp || fail=1
compare_ in-rpl2 out-rpl2-amp || fail=1


#
# gnu extension: \U \u \L \l \E
#
echo abCde > in-rpl3 || framework_failure_

# \U - all uppercase
echo ABCde > exp-rpl3-U || framework_failure_
sed -E 's/(.)(.)(.)/\U\1\2\3/' in-rpl3 > out-rpl3-U || fail=1
compare_ exp-rpl3-U out-rpl3-U || fail=1

# \u - next-char uppercase
echo AbCde > exp-rpl3-u || framework_failure_
sed -E 's/(.)(.)(.)/\u\1\2\3/' in-rpl3 > out-rpl3-u || fail=1
compare_ exp-rpl3-u out-rpl3-u || fail=1

# \L - all lowercase
echo abcde > exp-rpl3-L || framework_failure_
sed -E 's/(.)(.)(.)/\L\1\2\3/' in-rpl3 > out-rpl3-L || fail=1
compare_ exp-rpl3-L out-rpl3-L || fail=1

# \l - next-char lowercase
echo abCde > exp-rpl3-l || framework_failure_
sed -E 's/(.)(.)(.)/\l\1\2\3/' in-rpl3 > out-rpl3-l || fail=1
compare_ exp-rpl3-l out-rpl3-l || fail=1

# \E - stop \U \u \L \l processing
echo AbCde > exp-rpl3-E1 || framework_failure_
sed -E 's/(.)(.)(.)/\U\1\E\2\3/' in-rpl3 > out-rpl3-E1 || fail=1
compare_ exp-rpl3-E1 out-rpl3-E1 || fail=1

echo abCde > exp-rpl3-E2 || framework_failure_
sed -E 's/(.)(.)(.)/\L\1\2\E\3/' in-rpl3 > out-rpl3-E2 || fail=1
compare_ exp-rpl3-E2 out-rpl3-E2 || fail=1


Exit $fail