Rob Landley | 448c874 | 2014-10-29 18:44:33 -0500 | [diff] [blame] | 1 | #!/bin/echo Run scripts/test.sh |
| 2 | |
| 3 | #testing "name" "command" "result" "infile" "stdin" |
| 4 | |
Rob Landley | c7f0d6c | 2016-07-21 16:37:03 -0500 | [diff] [blame] | 5 | testing 'as cat' 'sed ""' "one\ntwo\nthree" "" "one\ntwo\nthree" |
Rob Landley | e7835d7 | 2014-11-27 20:38:21 -0600 | [diff] [blame] | 6 | # This segfaults ubuntu 12.04's sed. No really. |
Rob Landley | a64e35b | 2015-03-28 20:21:03 -0500 | [diff] [blame] | 7 | SKIP_HOST=1 testing 'sed - - twice' 'sed "" - -' "hello\n" "" "hello\n" |
Rob Landley | c7f0d6c | 2016-07-21 16:37:03 -0500 | [diff] [blame] | 8 | testing '-n' 'sed -n ""' "" "" "one\ntwo\nthree" |
| 9 | testing '-n p' 'sed -n p' "one\ntwo\nthree" "" "one\ntwo\nthree" |
| 10 | testing 'explicit pattern' 'sed -e p -n' "one\ntwo\nthree" "" \ |
Rob Landley | e7835d7 | 2014-11-27 20:38:21 -0600 | [diff] [blame] | 11 | "one\ntwo\nthree" |
Rob Landley | eece7ed | 2014-11-09 14:16:33 -0600 | [diff] [blame] | 12 | |
Rob Landley | 448c874 | 2014-10-29 18:44:33 -0500 | [diff] [blame] | 13 | # Exploring the wonders of sed addressing modes |
| 14 | testing '' 'sed -n 1p' "one\n" "" "one\ntwo\nthree" |
| 15 | testing '' 'sed 2p' "one\ntwo\ntwo\nthree" "" "one\ntwo\nthree" |
| 16 | testing '' 'sed -n 2p' "two\n" "" "one\ntwo\nthree" |
Rob Landley | c7f0d6c | 2016-07-21 16:37:03 -0500 | [diff] [blame] | 17 | testing '-n $p' 'sed -n \$p' "three" "" "one\ntwo\nthree" |
| 18 | testing 'as cat #2' "sed -n '1,\$p'" "one\ntwo\nthree" "" "one\ntwo\nthree" |
| 19 | testing 'no input means no last line' "sed '\$a boing'" "" "" "" |
| 20 | testing '-n $,$p' 'sed -n \$,\$p' 'three' '' 'one\ntwo\nthree' |
Rob Landley | 448c874 | 2014-10-29 18:44:33 -0500 | [diff] [blame] | 21 | testing '' 'sed -n 1,2p' "one\ntwo\n" "" "one\ntwo\nthree" |
| 22 | testing '' 'sed -n 2,3p' "two\nthree" "" "one\ntwo\nthree" |
| 23 | testing '' 'sed -n 2,1p' "two\n" "" "one\ntwo\nthree" |
Rob Landley | c7f0d6c | 2016-07-21 16:37:03 -0500 | [diff] [blame] | 24 | testing '$ with 2 inputs' 'sed -n \$p - input' "four\n" "four\n" \ |
Rob Landley | 448c874 | 2014-10-29 18:44:33 -0500 | [diff] [blame] | 25 | "one\ntwo\nthree" |
Rob Landley | eece7ed | 2014-11-09 14:16:33 -0600 | [diff] [blame] | 26 | testing '' 'sed -n /two/p' "two\n" "" "one\ntwo\nthree" |
| 27 | testing '' 'sed -n 1,/two/p' 'one\ntwo\n' '' 'one\ntwo\nthree' |
| 28 | testing '' 'sed -n /one/,2p' 'one\ntwo\n' '' 'one\ntwo\nthree' |
| 29 | testing '' 'sed -n 1,/one/p' 'one\ntwo\nthree' '' 'one\ntwo\nthree' |
| 30 | testing '' 'sed -n /one/,1p' 'one\n' '' 'one\ntwo\nthree' |
| 31 | testing 'sed -n /two/,$p' 'sed -n /two/,\$p' 'two\nthree' '' 'one\ntwo\nthree' |
| 32 | |
| 33 | |
| 34 | # Fun with newlines! |
| 35 | testing '' 'sed -n 3p' "three" "" "one\ntwo\nthree" |
Rob Landley | c7f0d6c | 2016-07-21 16:37:03 -0500 | [diff] [blame] | 36 | testing 'prodigal newline' "sed -n '1,\$p' - input" \ |
Rob Landley | e7835d7 | 2014-11-27 20:38:21 -0600 | [diff] [blame] | 37 | "one\ntwo\nthree\nfour\n" "four\n" "one\ntwo\nthree" |
Rob Landley | c7f0d6c | 2016-07-21 16:37:03 -0500 | [diff] [blame] | 38 | testing 'Newline only added if further output' "sed -n 3p - input" "three" \ |
Rob Landley | eece7ed | 2014-11-09 14:16:33 -0600 | [diff] [blame] | 39 | "four\n" "one\ntwo\nthree" |
Rob Landley | 448c874 | 2014-10-29 18:44:33 -0500 | [diff] [blame] | 40 | |
Rob Landley | eece7ed | 2014-11-09 14:16:33 -0600 | [diff] [blame] | 41 | # Fun with match delimiters and escapes |
Rob Landley | c7f0d6c | 2016-07-21 16:37:03 -0500 | [diff] [blame] | 42 | testing 'match \t tab' "sed -n '/\t/p'" "\tx\n" "" "\tx\n" |
| 43 | testing 'match t delim disables \t tab' "sed -n '\t\txtp'" "" "" "\tx\n" |
| 44 | testing 'match t delim makes \t literal t' \ |
Rob Landley | 448c874 | 2014-10-29 18:44:33 -0500 | [diff] [blame] | 45 | "sed -n '\t\txtp'" "tx\n" "" "tx\n" |
Rob Landley | c7f0d6c | 2016-07-21 16:37:03 -0500 | [diff] [blame] | 46 | testing 'match n delim' "sed -n '\n\txnp'" "\tx\n" "" "\tx\n" |
| 47 | testing 'match n delim disables \n newline' "sed -n '\n\nxnp'" "" "" "\nx\n" |
| 48 | SKIP_HOST=1 testing 'match \n literal n' "sed -n '\n\nxnp'" "nx\n" "" "nx\n" |
| 49 | testing 'end match does not check starting match line' \ |
Rob Landley | b069d8d | 2014-11-06 16:26:59 -0600 | [diff] [blame] | 50 | "sed -n '/two/,/two/p'" "two\nthree" "" "one\ntwo\nthree" |
Rob Landley | c7f0d6c | 2016-07-21 16:37:03 -0500 | [diff] [blame] | 51 | testing 'end match/start match mixing number/letter' \ |
Rob Landley | b069d8d | 2014-11-06 16:26:59 -0600 | [diff] [blame] | 52 | "sed -n '2,/two/p'" "two\nthree" "" "one\ntwo\nthree" |
Rob Landley | c7f0d6c | 2016-07-21 16:37:03 -0500 | [diff] [blame] | 53 | testing 'num then regex' 'sed -n 2,/d/p' 'b\nc\nd\n' '' 'a\nb\nc\nd\ne\nf\n' |
| 54 | testing 'regex then num' 'sed -n /b/,4p' 'b\nc\nd\n' '' 'a\nb\nc\nd\ne\nf\n' |
| 55 | testing 'multiple regex address match' 'sed -n /on/,/off/p' \ |
Rob Landley | b069d8d | 2014-11-06 16:26:59 -0600 | [diff] [blame] | 56 | 'bone\nturtle\scoff\ntron\nlurid\noffer\n' "" \ |
| 57 | 'zap\nbone\nturtle\scoff\nfred\ntron\nlurid\noffer\nbecause\n' |
Rob Landley | c7f0d6c | 2016-07-21 16:37:03 -0500 | [diff] [blame] | 58 | testing 'regex address overlap' 'sed -n /on/,/off/p' "on\nzap\noffon\n" "" \ |
Rob Landley | b069d8d | 2014-11-06 16:26:59 -0600 | [diff] [blame] | 59 | 'on\nzap\noffon\nping\noff\n' |
Rob Landley | 337c072 | 2016-09-06 00:14:24 -0500 | [diff] [blame] | 60 | testing 'getdelim with nested [:blah:]' 'sed -n "sa\a[a[:space:]bc]*aXXagp"' \ |
| 61 | "ABXXCDXXEFXXGHXXIXX" "" "ABaaCDa EFaa aGHa a Ia " |
Rob Landley | 64cbbab | 2016-10-17 23:52:51 -0500 | [diff] [blame] | 62 | testing '[ in [[]' "sed 's@[[]@X@g'" "X" "" "[" |
| 63 | testing '[[] with ] as delimiter' "sed 's][[]]X]g'" "X" "" "[" |
| 64 | testing '[[] with [ as delimiter' "sed 's[\[\[][X['" "X" "" "[" |
Rob Landley | b069d8d | 2014-11-06 16:26:59 -0600 | [diff] [blame] | 65 | |
Rob Landley | e7835d7 | 2014-11-27 20:38:21 -0600 | [diff] [blame] | 66 | # gGhHlnNpPqrstwxy:= |
| 67 | # s///#comment |
| 68 | # abcdDi |
| 69 | |
Rob Landley | c7f0d6c | 2016-07-21 16:37:03 -0500 | [diff] [blame] | 70 | testing 'prodigaler newline' 'sed -e a\\ -e woo' 'one\nwoo\n' '' 'one' |
Rob Landley | 336c44a | 2016-03-02 15:20:04 -0600 | [diff] [blame] | 71 | testing "aci" \ |
Rob Landley | b069d8d | 2014-11-06 16:26:59 -0600 | [diff] [blame] | 72 | "sed -e '3a boom' -e '/hre/i bang' -e '3a whack' -e '3c bong'" \ |
| 73 | "one\ntwo\nbang\nbong\nboom\nwhack\nfour\n" "" \ |
| 74 | "one\ntwo\nthree\nfour\n" |
Rob Landley | 336c44a | 2016-03-02 15:20:04 -0600 | [diff] [blame] | 75 | testing "b loop" "sed ':woo;=;b woo' | head -n 5" '1\n1\n1\n1\n1\n' "" "X" |
| 76 | testing "b skip" "sed -n '2b zap;d;:zap;p'" "two\n" "" "one\ntwo\nthree" |
| 77 | testing "b end" "sed -n '2b;p'" "one\nthree" "" "one\ntwo\nthree" |
| 78 | testing "c range" "sed '2,4c blah'" "one\nblah\nfive\nsix" "" \ |
Rob Landley | e7835d7 | 2014-11-27 20:38:21 -0600 | [diff] [blame] | 79 | "one\ntwo\nthree\nfour\nfive\nsix" |
Rob Landley | 336c44a | 2016-03-02 15:20:04 -0600 | [diff] [blame] | 80 | testing "c {range}" "sed -e '2,4{c blah' -e '}'" \ |
Rob Landley | e7835d7 | 2014-11-27 20:38:21 -0600 | [diff] [blame] | 81 | "one\nblah\nblah\nblah\nfive\nsix" \ |
| 82 | "" "one\ntwo\nthree\nfour\nfive\nsix" |
Rob Landley | 336c44a | 2016-03-02 15:20:04 -0600 | [diff] [blame] | 83 | testing "c multiple continuation" \ |
Rob Landley | c09b79d | 2014-12-21 23:17:06 -0600 | [diff] [blame] | 84 | "sed -e 'c\\' -e 'two\\' -e ''" "two\n\n" "" "hello" |
Rob Landley | af51034 | 2016-03-24 16:20:36 -0500 | [diff] [blame] | 85 | SKIP_HOST=1 testing "c empty continuation" "sed -e 'c\\'" "\n" "" "hello" |
Rob Landley | 336c44a | 2016-03-02 15:20:04 -0600 | [diff] [blame] | 86 | testing "D further processing depends on whether line is blank" \ |
Rob Landley | e7835d7 | 2014-11-27 20:38:21 -0600 | [diff] [blame] | 87 | "sed -e '/one/,/three/{' -e 'i meep' -e'N;2D;}'" \ |
| 88 | "meep\nmeep\ntwo\nthree\n" "" "one\ntwo\nthree\n" |
Rob Landley | c7f0d6c | 2016-07-21 16:37:03 -0500 | [diff] [blame] | 89 | testing 'newline staying away' 'sed s/o/x/' 'xne\ntwx' '' 'one\ntwo' |
Rob Landley | e7835d7 | 2014-11-27 20:38:21 -0600 | [diff] [blame] | 90 | |
Rob Landley | b069d8d | 2014-11-06 16:26:59 -0600 | [diff] [blame] | 91 | # Why on _earth_ is this not an error? There's a \ with no continuation! |
Rob Landley | e7835d7 | 2014-11-27 20:38:21 -0600 | [diff] [blame] | 92 | #testing 'sed what, _really_?' 'sed -e a\\ && echo yes really' \ |
| 93 | # 'one\nyes really\n' '' 'one\n' |
Rob Landley | eece7ed | 2014-11-09 14:16:33 -0600 | [diff] [blame] | 94 | |
Rob Landley | 1d5f48f | 2014-11-14 16:44:21 -0600 | [diff] [blame] | 95 | # all the s/// test |
| 96 | |
Rob Landley | 336c44a | 2016-03-02 15:20:04 -0600 | [diff] [blame] | 97 | testing "match empty line" "sed -e 's/^\$/@/'" "@\n" "" "\n" |
Rob Landley | 1d5f48f | 2014-11-14 16:44:21 -0600 | [diff] [blame] | 98 | |
Rob Landley | c7f0d6c | 2016-07-21 16:37:03 -0500 | [diff] [blame] | 99 | testing '\1' "sed 's/t\\(w\\)o/za\\1py/'" "one\nzawpy\nthree" "" \ |
Rob Landley | 1d5f48f | 2014-11-14 16:44:21 -0600 | [diff] [blame] | 100 | "one\ntwo\nthree" |
Rob Landley | c7f0d6c | 2016-07-21 16:37:03 -0500 | [diff] [blame] | 101 | testing '\1 p' "sed 's/t\\(w\\)o/za\\1py/p'" "one\nzawpy\nzawpy\nthree" \ |
Rob Landley | 1d5f48f | 2014-11-14 16:44:21 -0600 | [diff] [blame] | 102 | "" "one\ntwo\nthree" |
Rob Landley | c7f0d6c | 2016-07-21 16:37:03 -0500 | [diff] [blame] | 103 | testing '\1 no newline' "sed 's/t\\(w\\)o/za\\1py/'" "one\nzawpy" "" \ |
Rob Landley | 1d5f48f | 2014-11-14 16:44:21 -0600 | [diff] [blame] | 104 | "one\ntwo" |
Rob Landley | c7f0d6c | 2016-07-21 16:37:03 -0500 | [diff] [blame] | 105 | testing '\1 p no newline' "sed 's/t\\(w\\)o/za\\1py/p'" \ |
Rob Landley | 1d5f48f | 2014-11-14 16:44:21 -0600 | [diff] [blame] | 106 | "one\nzawpy\nzawpy" "" "one\ntwo" |
Rob Landley | c7f0d6c | 2016-07-21 16:37:03 -0500 | [diff] [blame] | 107 | testing '-n s//\1/p' "sed -n 's/t\\(w\\)o/za\\1py/p'" "zawpy" "" "one\ntwo" |
| 108 | testing '-n s//\1/p no newline' "sed -n 's/t\\(w\\)o/za\\1py/p'" "zawpy" \ |
Rob Landley | 1d5f48f | 2014-11-14 16:44:21 -0600 | [diff] [blame] | 109 | "" "one\ntwo" |
Rob Landley | c7f0d6c | 2016-07-21 16:37:03 -0500 | [diff] [blame] | 110 | testing 'backref error' \ |
Rob Landley | 0c558f0 | 2014-11-15 16:16:29 -0600 | [diff] [blame] | 111 | "sed 's/w/ale \2 ha/' >/dev/null 2>/dev/null || echo no" \ |
Rob Landley | 1d5f48f | 2014-11-14 16:44:21 -0600 | [diff] [blame] | 112 | "no\n" "" "one\ntwo\nthree" |
Rob Landley | c7f0d6c | 2016-07-21 16:37:03 -0500 | [diff] [blame] | 113 | testing 'empty match after nonempty match' "sed -e 's/a*/c/g'" 'cbcncgc' \ |
Rob Landley | 1d5f48f | 2014-11-14 16:44:21 -0600 | [diff] [blame] | 114 | '' 'baaang' |
Rob Landley | c7f0d6c | 2016-07-21 16:37:03 -0500 | [diff] [blame] | 115 | testing 'empty match' "sed -e 's/[^ac]*/A/g'" 'AaAcA' '' 'abcde' |
| 116 | testing 's///#comment' "sed -e 's/TWO/four/i#comment'" "one\nfour\nthree" \ |
Rob Landley | 0c558f0 | 2014-11-15 16:16:29 -0600 | [diff] [blame] | 117 | "" "one\ntwo\nthree" |
Rob Landley | e7835d7 | 2014-11-27 20:38:21 -0600 | [diff] [blame] | 118 | |
Rob Landley | c7f0d6c | 2016-07-21 16:37:03 -0500 | [diff] [blame] | 119 | testing 'N flushes pending a and advances match counter' \ |
Rob Landley | e7835d7 | 2014-11-27 20:38:21 -0600 | [diff] [blame] | 120 | "sed -e 'a woo' -e 'N;\$p'" 'woo\none\ntwo\none\ntwo' "" 'one\ntwo' |
Rob Landley | 336c44a | 2016-03-02 15:20:04 -0600 | [diff] [blame] | 121 | testing "delimiter in regex [char range] doesn't count" "sed -e 's/[/]//'" \ |
Rob Landley | e7835d7 | 2014-11-27 20:38:21 -0600 | [diff] [blame] | 122 | "onetwo\n" "" 'one/two\n' |
Rob Landley | 336c44a | 2016-03-02 15:20:04 -0600 | [diff] [blame] | 123 | testing "delete regex range start line after trigger" \ |
Rob Landley | e7835d7 | 2014-11-27 20:38:21 -0600 | [diff] [blame] | 124 | "sed -e '/one/,/three/{' -e 'i meep' -e '1D;}'" \ |
| 125 | "meep\nmeep\ntwo\nmeep\nthree" "" "one\ntwo\nthree" |
Rob Landley | 336c44a | 2016-03-02 15:20:04 -0600 | [diff] [blame] | 126 | testing "blank pattern repeats last pattern" \ |
Rob Landley | 88d2077 | 2015-12-04 15:18:15 -0600 | [diff] [blame] | 127 | "sed -e '/^three/s//abc&def/'" \ |
| 128 | "one two three\nabcthreedef four five\nfive six seven\n" "" \ |
| 129 | "one two three\nthree four five\nfive six seven\n" |
Rob Landley | e7835d7 | 2014-11-27 20:38:21 -0600 | [diff] [blame] | 130 | |
Rob Landley | 807a50d | 2014-12-14 13:51:28 -0600 | [diff] [blame] | 131 | # Different ways of parsing line continuations |
| 132 | |
| 133 | testing "" "sed -e '1a\' -e 'huh'" "meep\nhuh\n" "" "meep" |
| 134 | testing "" "sed -f input" "blah\nboom\n" '1a\\\nboom' 'blah' |
Rob Landley | f9b9f8a | 2016-04-11 11:32:36 -0500 | [diff] [blame] | 135 | testing "" "sed -f - input" "blah\nboom\n" 'blah' '1a\\\nboom' |
Rob Landley | 807a50d | 2014-12-14 13:51:28 -0600 | [diff] [blame] | 136 | testing "" "sed '1a\ |
| 137 | hello'" "merp\nhello\n" "" "merp" |
Rob Landley | 8132ad2 | 2015-10-29 01:30:58 -0500 | [diff] [blame] | 138 | |
| 139 | testing "" "sed -e '/x/c\' -e 'y'" 'y\n' '' 'x\n' |
Rob Landley | 769341f | 2015-11-05 00:13:27 -0600 | [diff] [blame] | 140 | testing "" "sed -e 's/a[([]*b/X/'" 'X' '' 'a[(b' |
Rob Landley | 32b3587 | 2016-02-17 19:21:44 -0600 | [diff] [blame] | 141 | testing "" "sed 'y/a\\bc/de\f/'" "db\f" "" "abc" |
Rob Landley | 336c44a | 2016-03-02 15:20:04 -0600 | [diff] [blame] | 142 | testing "[a-a] (for perl)" "sed '"'s/\([^a-zA-Z0-9.:_\-\/]\)/\\\1/g'"'" \ |
Rob Landley | 32b3587 | 2016-02-17 19:21:44 -0600 | [diff] [blame] | 143 | 'he\ llo' "" "he llo" |
Rob Landley | 8132ad2 | 2015-10-29 01:30:58 -0500 | [diff] [blame] | 144 | |
Rob Landley | af51034 | 2016-03-24 16:20:36 -0500 | [diff] [blame] | 145 | # Debian bug https://bugs.debian.org/635570 added code to ensure a file |
| 146 | # ends with a newline via "sed -e '$a\'". Apparently all a\ with no additional |
| 147 | # pattern lines after it does (other than making posix throw up) is |
| 148 | # flush the pending newline as _if_ it had added another line. *shrug* Ok? |
| 149 | testing "trailing a\ (for debian)" "sed 'a\\'" "hello\n" "" "hello" |
| 150 | |
Rob Landley | 2081ec6 | 2016-01-21 13:04:51 -0600 | [diff] [blame] | 151 | # You have to match the first line of a range in order to activate |
| 152 | # the range, numeric and ascii work the same way |
Rob Landley | 336c44a | 2016-03-02 15:20:04 -0600 | [diff] [blame] | 153 | testing "skip start of range" "sed -e n -e '1,2s/b/c/'" "a\nb\n" "" "a\nb\n" |
Rob Landley | 2081ec6 | 2016-01-21 13:04:51 -0600 | [diff] [blame] | 154 | |
Rob Landley | 807a50d | 2014-12-14 13:51:28 -0600 | [diff] [blame] | 155 | #echo meep | sed/sed -e '1a\' -e 'huh' |
| 156 | #echo blah | sed/sed -f <(echo -e "1a\\\\\nboom") |
| 157 | #echo merp | sed/sed "1a\\ |
| 158 | #hello" |
| 159 | |
Rob Landley | 336c44a | 2016-03-02 15:20:04 -0600 | [diff] [blame] | 160 | testing "bonus backslashes" \ |
Rob Landley | a64e35b | 2015-03-28 20:21:03 -0500 | [diff] [blame] | 161 | "sed -e 'a \l \x\' -e \"\$(echo -e 'ab\\\nc')\"" \ |
| 162 | "hello\nl x\nab\nc\n" "" "hello\n" |
Rob Landley | e7835d7 | 2014-11-27 20:38:21 -0600 | [diff] [blame] | 163 | # -i with $ last line test |