Blob


1 #!/bin/sh
2 #
3 # Copyright (c) 2019 Stefan Sperling <stsp@openbsd.org>
4 #
5 # Permission to use, copy, modify, and distribute this software for any
6 # purpose with or without fee is hereby granted, provided that the above
7 # copyright notice and this permission notice appear in all copies.
8 #
9 # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 . ./common.sh
19 function test_rm_basic {
20 local testroot=`test_init rm_basic`
22 got checkout $testroot/repo $testroot/wt > /dev/null
23 ret="$?"
24 if [ "$ret" != "0" ]; then
25 test_done "$testroot" "$ret"
26 return 1
27 fi
29 echo 'D alpha' > $testroot/stdout.expected
30 echo 'D beta' >> $testroot/stdout.expected
31 (cd $testroot/wt && got rm alpha beta > $testroot/stdout)
33 cmp -s $testroot/stdout.expected $testroot/stdout
34 ret="$?"
35 if [ "$ret" != "0" ]; then
36 diff -u $testroot/stdout.expected $testroot/stdout
37 test_done "$testroot" "$ret"
38 return 1
39 fi
41 (cd $testroot/wt && got status > $testroot/stdout)
43 cmp -s $testroot/stdout.expected $testroot/stdout
44 ret="$?"
45 if [ "$ret" != "0" ]; then
46 diff -u $testroot/stdout.expected $testroot/stdout
47 test_done "$testroot" "$ret"
48 return 1
49 fi
51 for f in alpha beta; do
52 if [ -e $testroot/wt/$f ]; then
53 echo "removed file $f still exists on disk" >&2
54 test_done "$testroot" "1"
55 return 1
56 fi
57 done
59 test_done "$testroot" "0"
60 }
62 function test_rm_with_local_mods {
63 local testroot=`test_init rm_with_local_mods`
65 got checkout $testroot/repo $testroot/wt > /dev/null
66 ret="$?"
67 if [ "$ret" != "0" ]; then
68 test_done "$testroot" "$ret"
69 return 1
70 fi
72 echo "modified beta" > $testroot/wt/beta
73 echo 'got: beta: file contains modifications' \
74 > $testroot/stderr.expected
75 (cd $testroot/wt && got rm beta 2>$testroot/stderr)
77 cmp -s $testroot/stderr.expected $testroot/stderr
78 ret="$?"
79 if [ "$ret" != "0" ]; then
80 diff -u $testroot/stderr.expected $testroot/stderr
81 test_done "$testroot" "$ret"
82 return 1
83 fi
85 echo 'D beta' > $testroot/stdout.expected
86 (cd $testroot/wt && got rm -f beta > $testroot/stdout)
88 cmp -s $testroot/stdout.expected $testroot/stdout
89 ret="$?"
90 if [ "$ret" != "0" ]; then
91 diff -u $testroot/stdout.expected $testroot/stdout
92 fi
94 if [ -e $testroot/wt/beta ]; then
95 echo "removed file beta still exists on disk" >&2
96 test_done "$testroot" "1"
97 return 1
98 fi
100 test_done "$testroot" "$ret"
103 function test_double_rm {
104 local testroot=`test_init double_rm`
106 got checkout $testroot/repo $testroot/wt > /dev/null
107 ret="$?"
108 if [ "$ret" != "0" ]; then
109 test_done "$testroot" "$ret"
110 return 1
111 fi
113 (cd $testroot/wt && got rm beta > /dev/null)
115 for fflag in "" "-f"; do
116 echo -n > $testroot/stderr.expected
117 (cd $testroot/wt && got rm $fflag beta > $testroot/stdout \
118 2> $testroot/stderr)
119 ret="$?"
120 if [ "$ret" != "0" ]; then
121 echo "got rm command failed unexpectedly" >&2
122 diff -u $testroot/stderr.expected $testroot/stderr
123 test_done "$testroot" "$ret"
124 return 1
125 fi
126 echo -n > $testroot/stdout.expected
127 cmp -s $testroot/stdout.expected $testroot/stdout
128 ret="$?"
129 if [ "$ret" != "0" ]; then
130 diff -u $testroot/stdout.expected $testroot/stdout
131 test_done "$testroot" "$ret"
132 return 1
133 fi
134 done
135 test_done "$testroot" "0"
138 function test_rm_and_add_elsewhere {
139 local testroot=`test_init rm_and_add_elsewhere`
141 got checkout $testroot/repo $testroot/wt > /dev/null
142 ret="$?"
143 if [ "$ret" != "0" ]; then
144 test_done "$testroot" "$ret"
145 return 1
146 fi
148 (cd $testroot/wt && mv alpha epsilon/)
150 (cd $testroot/wt && got status > $testroot/stdout)
152 echo '! alpha' > $testroot/stdout.expected
153 echo '? epsilon/alpha' >> $testroot/stdout.expected
154 cmp -s $testroot/stdout.expected $testroot/stdout
155 ret="$?"
156 if [ "$ret" != "0" ]; then
157 diff -u $testroot/stdout.expected $testroot/stdout
158 test_done "$testroot" "$ret"
159 return 1
160 fi
162 echo 'D alpha' > $testroot/stdout.expected
163 (cd $testroot/wt && got rm alpha > $testroot/stdout)
165 cmp -s $testroot/stdout.expected $testroot/stdout
166 ret="$?"
167 if [ "$ret" != "0" ]; then
168 diff -u $testroot/stdout.expected $testroot/stdout
169 test_done "$testroot" "$ret"
170 return 1
171 fi
173 echo 'A epsilon/alpha' > $testroot/stdout.expected
174 (cd $testroot/wt && got add epsilon/alpha > $testroot/stdout)
176 cmp -s $testroot/stdout.expected $testroot/stdout
177 ret="$?"
178 if [ "$ret" != "0" ]; then
179 diff -u $testroot/stdout.expected $testroot/stdout
180 test_done "$testroot" "$ret"
181 return 1
182 fi
184 (cd $testroot/wt && got status > $testroot/stdout)
186 echo 'D alpha' > $testroot/stdout.expected
187 echo 'A epsilon/alpha' >> $testroot/stdout.expected
188 cmp -s $testroot/stdout.expected $testroot/stdout
189 ret="$?"
190 if [ "$ret" != "0" ]; then
191 diff -u $testroot/stdout.expected $testroot/stdout
192 fi
193 test_done "$testroot" "$ret"
196 run_test test_rm_basic
197 run_test test_rm_with_local_mods
198 run_test test_double_rm
199 run_test test_rm_and_add_elsewhere