blob: 6fcaa19df93ab76b166cb93df5e8909a992eab3b [file] [log] [blame]
Rob Landley990025a2005-11-10 06:26:40 +00001#!/bin/sh
2
3# SUSv3 compliant sed tests.
4# Copyright 2005 by Rob Landley <rob@landley.net>
5# Licensed under GPL v2, see file LICENSE for details.
6
7[ -z "$COMMAND" ] && COMMAND=sed
8. testing.sh
9
10# testing "description" "arguments" "result" "infile" "stdin"
11
12# Corner cases
Rob Landleye8e78112006-03-01 16:32:01 +000013testing "sed no files (stdin)" '""' "hello\n" "" "hello\n"
14testing "sed explicit stdin" '"" -' "hello\n" "" "hello\n"
Rob Landley990025a2005-11-10 06:26:40 +000015testing "sed handles empty lines" "-e 's/\$/@/'" "@\n" "" "\n"
Rob Landleye8e78112006-03-01 16:32:01 +000016testing "sed stdin twice" '"" - -' "hello" "" "hello"
Rob Landley990025a2005-11-10 06:26:40 +000017
Rob Landley990025a2005-11-10 06:26:40 +000018# Trailing EOF.
Rob Landley990025a2005-11-10 06:26:40 +000019# Match $, at end of each file or all files?
Rob Landleye8e78112006-03-01 16:32:01 +000020
Rob Landley990025a2005-11-10 06:26:40 +000021# -e corner cases
22# without -e
23# multiple -e
24# interact with a
25# -eee arg1 arg2 arg3
26# -f corner cases
27# -e -f -e
28# -n corner cases
29# no newline at EOF?
30# -r corner cases
31# Just make sure it works.
32# -i corner cases:
33# sed -i -
34# permissions
35# -i on a symlink
36# on a directory
Rob Landleye8e78112006-03-01 16:32:01 +000037# With $ last-line test
38# Continue with \
39# End of script with trailing \
Rob Landley990025a2005-11-10 06:26:40 +000040
41# command list
42testing "sed accepts blanks before command" "-e '1 d'" "" "" ""
43testing "sed accepts newlines in -e" "-e 'i\
441
45a\
463'" "1\n2\n3\n" "" "2\n"
47testing "sed accepts multiple -e" "-e 'i\' -e '1' -e 'a\' -e '3'" \
48 "1\n2\n3\n" "" "2\n"
49
50# substitutions
51testing "sed -n" "-n -e s/foo/bar/ -e s/bar/baz/" "" "" "foo\n"
52testing "sed s//p" "-e s/foo/bar/p -e s/bar/baz/p" "bar\nbaz\nbaz\n" \
53 "" "foo\n"
54testing "sed -n s//p" "-ne s/abc/def/p" "def\n" "" "abc\n"
55testing "sed s//g (exhaustive)" "-e 's/[[:space:]]*/,/g'" ",1,2,3,4,5,\n" \
56 "" "12345\n"
57testing "sed s arbitrary delimiter" "-e 's woo boing '" "boing\n" "" "woo\n"
58testing "sed s chains" "-e s/foo/bar/ -e s/bar/baz/" "baz\n" "" "foo\n"
59testing "sed s chains2" "-e s/foo/bar/ -e s/baz/nee/" "bar\n" "" "foo\n"
60testing "sed s [delimiter]" "-e 's@[@]@@'" "onetwo" "" "one@two"
61
62# branch
63testing "sed b (branch)" "-e 'b one;p;: one'" "foo\n" "" "foo\n"
64testing "sed b (branch with no label jumps to end)" "-e 'b;p'" \
65 "foo\n" "" "foo\n"
66
67# test and branch
68testing "sed t (test/branch)" "-e 's/a/1/;t one;p;: one;p'" \
69 "1\n1\nb\nb\nb\nc\nc\nc\n" "" "a\nb\nc\n"
70testing "sed t (test/branch clears test bit)" "-e 's/a/b/;:loop;t loop'" \
71 "b\nb\nc\n" "" "a\nb\nc\n"
72testing "sed T (!test/branch)" "-e 's/a/1/;T notone;p;: notone;p'" \
73 "1\n1\n1\nb\nb\nc\nc\n" "" "a\nb\nc\n"
74
75# Normal sed end-of-script doesn't print "c" because n flushed the pattern
76# space. If n hits EOF, pattern space is empty when script ends.
77# Query: how does this interact with no newline at EOF?
78testing "sed n (flushes pattern space, terminates early)" "-e 'n;p'" \
79 "a\nb\nb\nc\n" "" "a\nb\nc\n"
80# N does _not_ flush pattern space, therefore c is still in there @ script end.
81testing "sed N (doesn't flush pattern space when terminating)" "-e 'N;p'" \
82 "a\nb\na\nb\nc\n" "" "a\nb\nc\n"
83testing "sed address match newline" '"/b/N;/b\\nc/i woo"' "a\nwoo\nb\nc\nd\n" \
84 "" "a\nb\nc\nd\n"
85
86# Multiple lines in pattern space
87testing "sed N (stops at end of input) and P (prints to first newline only)" \
88 "-n 'N;P;p'" "a\na\nb\n" "" "a\nb\nc\n"
89
90# Hold space
91testing "sed G (append hold space to pattern space)" 'G' "a\n\nb\n\nc\n\n" \
92 "" "a\nb\nc\n"
93#testing "sed g/G (swap/append hold and patter space)"
94#testing "sed g (swap hold/pattern space)"
95
96testing "sed d ends script iteration" \
97 "-e '/ook/d;s/ook/ping/p;i woot'" "" "" "ook\n"
98testing "sed d ends script iteration (2)" \
99 "-e '/ook/d;a\' -e 'bang'" "woot\nbang\n" "" "ook\nwoot\n"
100
Rob Landley6b6edf92006-02-23 23:13:16 +0000101# Multiple files, with varying newlines and NUL bytes
102testing "sed embedded NUL" "-e 's/woo/bang/'" "\0bang\0woo\0" "" "\0woo\0woo\0"
Rob Landleye8e78112006-03-01 16:32:01 +0000103testing "sed embedded NUL g" "-e 's/woo/bang/g'" "bang\0bang\0" "" "woo\0woo\0"
104echo -e "/woo/a he\0llo" > sed.commands
105testing "sed NUL in command" "-f sed.commands" "woo\nhe\0llo\n" "" "woo"
106rm sed.commands
Rob Landley6b6edf92006-02-23 23:13:16 +0000107
108# sed has funky behavior with newlines at the end of file. Test lots of
109# corner cases with the optional newline appending behavior.
110
111testing "sed normal newlines" "-e 's/woo/bang/' input -" "bang\nbang\n" \
112 "woo\n" "woo\n"
113testing "sed leave off trailing newline" "-e 's/woo/bang/' input -" \
114 "bang\nbang" "woo\n" "woo"
115testing "sed autoinsert newline" "-e 's/woo/bang/' input -" "bang\nbang" \
116 "woo" "woo"
117testing "sed empty file plus cat" "-e 's/nohit//' input -" "one\ntwo" \
118 "" "one\ntwo"
119testing "sed cat plus empty file" "-e 's/nohit//' input -" "one\ntwo" \
120 "one\ntwo" ""
121testing "sed append autoinserts newline" "-e '/woot/a woo' -" "woot\nwoo\n" \
122 "" "woot"
123testing "sed insert doesn't autoinsert newline" "-e '/woot/i woo' -" \
124 "woo\nwoot" "" "woot"
125testing "sed print autoinsert newlines" "-e 'p' -" "one\none" "" "one"
126testing "sed print autoinsert newlines two files" "-e 'p' input -" \
127 "one\none\ntwo\ntwo" "one" "two"
Rob Landley6b6edf92006-02-23 23:13:16 +0000128testing "sed noprint, no match, no newline" "-ne 's/woo/bang/' input" \
129 "" "no\n" ""
Rob Landleye8e78112006-03-01 16:32:01 +0000130testing "sed selective matches with one nl" "-ne 's/woo/bang/p' input -" \
Rob Landley6b6edf92006-02-23 23:13:16 +0000131 "a bang\nc bang\n" "a woo\nb no" "c woo\nd no"
132testing "sed selective matches insert newline" "-ne 's/woo/bang/p' input -" \
133 "a bang\nb bang\nd bang" "a woo\nb woo" "c no\nd woo"
134testing "sed selective matches noinsert newline" "-ne 's/woo/bang/p' input -" \
135 "a bang\nb bang" "a woo\nb woo" "c no\nd no"
136testing "sed clusternewline" "-e '/one/a 111' -e '/two/i 222' -e p input -" \
137 "one\none\n111\n222\ntwo\ntwo" "one" "two"
138
Rob Landleye8e78112006-03-01 16:32:01 +0000139# Test end-of-file matching behavior
140
141testing "sed match EOF" " -e '"'$p'"'" "hello\nthere\nthere" "" "hello\nthere"
142testing "sed match EOF two files" " -e '"'$p'"' input -" \
143 "one\ntwo\nthree\nfour\nfour" "one\ntwo" "three\nfour"
144echo -ne "three\nfour" > input2
145testing "sed match EOF inline" \
146 " -e '"'$i ook'"' -i input input2 && cat input input2" \
147 "one\nook\ntwothree\nook\nfour" "one\ntwo" ""
148rm input2
149
150# Test lie-to-autoconf
151
152testing "sed lie-to-autoconf" "--version | grep -o 'GNU sed version '" \
153 "GNU sed version \n" "" ""
154
155# Jump to nonexistent label
156testing "sed nonexistent label" "-e 'b walrus' 2> /dev/null || echo yes" \
157 "yes\n" "" ""
158
159testing "sed backref from empty s uses range regex" \
160 "-e '/woot/s//eep \0 eep/'" "eep woot eep" "" "woot"
161
162testing "sed backref from empty s uses range regex with newline" \
163 "-e '/woot/s//eep \0 eep/'" "eep woot eep\n" "" "woot\n"
164
165# -i with no filename
166
167touch ./- # Detect gnu failure mode here.
168testing "sed -i with no arg [GNUFAIL]" "-e '' -i 2> /dev/null || echo yes" \
169 "yes\n" "" ""
170rm ./- # Clean up
171
Rob Landley990025a2005-11-10 06:26:40 +0000172# Ponder this a bit more, why "woo not found" from gnu version?
173#testing "sed doesn't substitute in deleted line" \
174# "-e '/ook/d;s/ook//;t woo;a bang;'" "bang" "" "ook\n"
175
176# This makes both seds very unhappy. Why?
177#testing "sed -g (exhaustive)" "sed -e 's/[[:space:]]*/,/g'" ",1,2,3,4,5," \
178# "" "12345"
179
180exit $FAILCOUNT