Blame


1 e9ce266e 2022-03-07 op #!/bin/sh
2 e9ce266e 2022-03-07 op #
3 e9ce266e 2022-03-07 op # Copyright (c) 2022 Omar Polo <op@openbsd.org>
4 e9ce266e 2022-03-07 op #
5 e9ce266e 2022-03-07 op # Permission to use, copy, modify, and distribute this software for any
6 e9ce266e 2022-03-07 op # purpose with or without fee is hereby granted, provided that the above
7 e9ce266e 2022-03-07 op # copyright notice and this permission notice appear in all copies.
8 e9ce266e 2022-03-07 op #
9 e9ce266e 2022-03-07 op # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 e9ce266e 2022-03-07 op # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 e9ce266e 2022-03-07 op # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 e9ce266e 2022-03-07 op # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 e9ce266e 2022-03-07 op # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 e9ce266e 2022-03-07 op # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 e9ce266e 2022-03-07 op # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 e9ce266e 2022-03-07 op
17 e9ce266e 2022-03-07 op . ./common.sh
18 e9ce266e 2022-03-07 op
19 e9ce266e 2022-03-07 op test_patch_simple_add_file() {
20 e9ce266e 2022-03-07 op local testroot=`test_init patch_simple_add_file`
21 e9ce266e 2022-03-07 op
22 e9ce266e 2022-03-07 op got checkout $testroot/repo $testroot/wt > /dev/null
23 e9ce266e 2022-03-07 op ret=$?
24 bfbccd0a 2022-03-08 op if [ $ret -ne 0 ]; then
25 e9ce266e 2022-03-07 op test_done $testroot $ret
26 e9ce266e 2022-03-07 op return 1
27 e9ce266e 2022-03-07 op fi
28 e9ce266e 2022-03-07 op
29 e9ce266e 2022-03-07 op cat <<EOF > $testroot/wt/patch
30 e9ce266e 2022-03-07 op --- /dev/null
31 e9ce266e 2022-03-07 op +++ eta
32 e9ce266e 2022-03-07 op @@ -0,0 +1 @@
33 e9ce266e 2022-03-07 op +eta
34 e9ce266e 2022-03-07 op EOF
35 e9ce266e 2022-03-07 op
36 e9ce266e 2022-03-07 op (cd $testroot/wt && got patch patch) > $testroot/stdout
37 e9ce266e 2022-03-07 op ret=$?
38 bfbccd0a 2022-03-08 op if [ $ret -ne 0 ]; then
39 e9ce266e 2022-03-07 op test_done $testroot $ret
40 e9ce266e 2022-03-07 op return 1
41 e9ce266e 2022-03-07 op fi
42 e9ce266e 2022-03-07 op
43 e9ce266e 2022-03-07 op echo "A eta" > $testroot/stdout.expected
44 e9ce266e 2022-03-07 op cmp -s $testroot/stdout.expected $testroot/stdout
45 e9ce266e 2022-03-07 op ret=$?
46 bfbccd0a 2022-03-08 op if [ $ret -ne 0 ]; then
47 e9ce266e 2022-03-07 op diff -u $testroot/stdout.expected $testroot/stdout
48 e9ce266e 2022-03-07 op test_done $testroot $ret
49 e9ce266e 2022-03-07 op return 1
50 e9ce266e 2022-03-07 op fi
51 e9ce266e 2022-03-07 op
52 e9ce266e 2022-03-07 op echo eta > $testroot/wt/eta.expected
53 e9ce266e 2022-03-07 op cmp -s $testroot/wt/eta.expected $testroot/wt/eta
54 e9ce266e 2022-03-07 op ret=$?
55 bfbccd0a 2022-03-08 op if [ $ret -ne 0 ]; then
56 e9ce266e 2022-03-07 op diff -u $testroot/wt/eta.expected $testroot/wt/eta
57 e9ce266e 2022-03-07 op fi
58 e9ce266e 2022-03-07 op test_done $testroot $ret
59 e9ce266e 2022-03-07 op }
60 e9ce266e 2022-03-07 op
61 e9ce266e 2022-03-07 op test_patch_simple_rm_file() {
62 e9ce266e 2022-03-07 op local testroot=`test_init patch_simple_rm_file`
63 e9ce266e 2022-03-07 op
64 e9ce266e 2022-03-07 op got checkout $testroot/repo $testroot/wt > /dev/null
65 e9ce266e 2022-03-07 op ret=$?
66 bfbccd0a 2022-03-08 op if [ $ret -ne 0 ]; then
67 e9ce266e 2022-03-07 op test_done $testroot $ret
68 e9ce266e 2022-03-07 op return 1
69 e9ce266e 2022-03-07 op fi
70 e9ce266e 2022-03-07 op
71 e9ce266e 2022-03-07 op cat <<EOF > $testroot/wt/patch
72 e9ce266e 2022-03-07 op --- alpha
73 e9ce266e 2022-03-07 op +++ /dev/null
74 e9ce266e 2022-03-07 op @@ -1 +0,0 @@
75 e9ce266e 2022-03-07 op -alpha
76 e9ce266e 2022-03-07 op EOF
77 e9ce266e 2022-03-07 op
78 e9ce266e 2022-03-07 op echo "D alpha" > $testroot/stdout.expected
79 e9ce266e 2022-03-07 op
80 e9ce266e 2022-03-07 op (cd $testroot/wt && got patch patch) > $testroot/stdout
81 e9ce266e 2022-03-07 op ret=$?
82 bfbccd0a 2022-03-08 op if [ $ret -ne 0 ]; then
83 e9ce266e 2022-03-07 op test_done $testroot $ret
84 e9ce266e 2022-03-07 op return 1
85 e9ce266e 2022-03-07 op fi
86 e9ce266e 2022-03-07 op
87 e9ce266e 2022-03-07 op cmp -s $testroot/stdout.expected $testroot/stdout
88 e9ce266e 2022-03-07 op ret=$?
89 bfbccd0a 2022-03-08 op if [ $ret -ne 0 ]; then
90 e9ce266e 2022-03-07 op diff -u $testroot/stdout.expected $testroot/stdout
91 e9ce266e 2022-03-07 op test_done $testroot $ret
92 e9ce266e 2022-03-07 op return 1
93 e9ce266e 2022-03-07 op fi
94 e9ce266e 2022-03-07 op
95 e9ce266e 2022-03-07 op if [ -f $testroot/wt/alpha ]; then
96 e9ce266e 2022-03-07 op ret=1
97 e9ce266e 2022-03-07 op echo "alpha still exists!"
98 e9ce266e 2022-03-07 op fi
99 e9ce266e 2022-03-07 op test_done $testroot $ret
100 e9ce266e 2022-03-07 op }
101 e9ce266e 2022-03-07 op
102 e9ce266e 2022-03-07 op test_patch_simple_edit_file() {
103 e9ce266e 2022-03-07 op local testroot=`test_init patch_simple_edit_file`
104 e9ce266e 2022-03-07 op
105 e9ce266e 2022-03-07 op got checkout $testroot/repo $testroot/wt > /dev/null
106 e9ce266e 2022-03-07 op ret=$?
107 bfbccd0a 2022-03-08 op if [ $ret -ne 0 ]; then
108 e9ce266e 2022-03-07 op test_done $testroot $ret
109 e9ce266e 2022-03-07 op return 1
110 e9ce266e 2022-03-07 op fi
111 e9ce266e 2022-03-07 op
112 e9ce266e 2022-03-07 op cat <<EOF > $testroot/wt/patch
113 e9ce266e 2022-03-07 op --- alpha
114 e9ce266e 2022-03-07 op +++ alpha
115 e9ce266e 2022-03-07 op @@ -1 +1 @@
116 e9ce266e 2022-03-07 op -alpha
117 e9ce266e 2022-03-07 op +alpha is my favourite character
118 e9ce266e 2022-03-07 op EOF
119 e9ce266e 2022-03-07 op
120 e9ce266e 2022-03-07 op echo "M alpha" > $testroot/stdout.expected
121 e9ce266e 2022-03-07 op
122 e9ce266e 2022-03-07 op (cd $testroot/wt && got patch patch) > $testroot/stdout
123 e9ce266e 2022-03-07 op ret=$?
124 bfbccd0a 2022-03-08 op if [ $ret -ne 0 ]; then
125 e9ce266e 2022-03-07 op test_done $testroot $ret
126 e9ce266e 2022-03-07 op return 1
127 e9ce266e 2022-03-07 op fi
128 e9ce266e 2022-03-07 op
129 e9ce266e 2022-03-07 op cmp -s $testroot/stdout.expected $testroot/stdout
130 e9ce266e 2022-03-07 op ret=$?
131 bfbccd0a 2022-03-08 op if [ $ret -ne 0 ]; then
132 e9ce266e 2022-03-07 op diff -u $testroot/stdout.expected $testroot/stdout
133 e9ce266e 2022-03-07 op test_done $testroot $ret
134 e9ce266e 2022-03-07 op return 1
135 e9ce266e 2022-03-07 op fi
136 e9ce266e 2022-03-07 op
137 e9ce266e 2022-03-07 op echo 'alpha is my favourite character' > $testroot/wt/alpha.expected
138 e9ce266e 2022-03-07 op cmp -s $testroot/wt/alpha.expected $testroot/wt/alpha
139 e9ce266e 2022-03-07 op ret=$?
140 bfbccd0a 2022-03-08 op if [ $ret -ne 0 ]; then
141 e9ce266e 2022-03-07 op diff -u $testroot/wt/alpha.expected $testroot/wt/alpha
142 e9ce266e 2022-03-07 op fi
143 e9ce266e 2022-03-07 op test_done $testroot $ret
144 e9ce266e 2022-03-07 op }
145 e9ce266e 2022-03-07 op
146 e9ce266e 2022-03-07 op test_patch_prepend_line() {
147 e9ce266e 2022-03-07 op local testroot=`test_init patch_prepend_line`
148 e9ce266e 2022-03-07 op
149 e9ce266e 2022-03-07 op got checkout $testroot/repo $testroot/wt > /dev/null
150 e9ce266e 2022-03-07 op ret=$?
151 bfbccd0a 2022-03-08 op if [ $ret -ne 0 ]; then
152 e9ce266e 2022-03-07 op test_done $testroot $ret
153 e9ce266e 2022-03-07 op return 1
154 e9ce266e 2022-03-07 op fi
155 e9ce266e 2022-03-07 op
156 e9ce266e 2022-03-07 op cat <<EOF > $testroot/wt/patch
157 e9ce266e 2022-03-07 op --- alpha
158 e9ce266e 2022-03-07 op +++ alpha
159 e9ce266e 2022-03-07 op @@ -1 +1,2 @@
160 e9ce266e 2022-03-07 op +hatsuseno
161 e9ce266e 2022-03-07 op alpha
162 e9ce266e 2022-03-07 op EOF
163 e9ce266e 2022-03-07 op
164 e9ce266e 2022-03-07 op echo "M alpha" > $testroot/stdout.expected
165 e9ce266e 2022-03-07 op
166 e9ce266e 2022-03-07 op (cd $testroot/wt && got patch patch) > $testroot/stdout
167 e9ce266e 2022-03-07 op ret=$?
168 bfbccd0a 2022-03-08 op if [ $ret -ne 0 ]; then
169 e9ce266e 2022-03-07 op test_done $testroot $ret
170 e9ce266e 2022-03-07 op return 1
171 e9ce266e 2022-03-07 op fi
172 e9ce266e 2022-03-07 op
173 e9ce266e 2022-03-07 op cmp -s $testroot/stdout.expected $testroot/stdout
174 e9ce266e 2022-03-07 op ret=$?
175 bfbccd0a 2022-03-08 op if [ $ret -ne 0 ]; then
176 e9ce266e 2022-03-07 op diff -u $testroot/stdout.expected $testroot/stdout
177 e9ce266e 2022-03-07 op test_done $testroot $ret
178 e9ce266e 2022-03-07 op return 1
179 e9ce266e 2022-03-07 op fi
180 e9ce266e 2022-03-07 op
181 e9ce266e 2022-03-07 op echo hatsuseno > $testroot/wt/alpha.expected
182 e9ce266e 2022-03-07 op echo alpha >> $testroot/wt/alpha.expected
183 e9ce266e 2022-03-07 op cmp -s $testroot/wt/alpha.expected $testroot/wt/alpha
184 e9ce266e 2022-03-07 op ret=$?
185 bfbccd0a 2022-03-08 op if [ $ret -ne 0 ]; then
186 e9ce266e 2022-03-07 op diff -u $testroot/wt/alpha.expected $testroot/wt/alpha
187 e9ce266e 2022-03-07 op fi
188 e9ce266e 2022-03-07 op test_done $testroot $ret
189 e9ce266e 2022-03-07 op }
190 e9ce266e 2022-03-07 op
191 e9ce266e 2022-03-07 op test_patch_replace_line() {
192 e9ce266e 2022-03-07 op local testroot=`test_init patch_replace_line`
193 e9ce266e 2022-03-07 op
194 e9ce266e 2022-03-07 op got checkout $testroot/repo $testroot/wt > /dev/null
195 e9ce266e 2022-03-07 op ret=$?
196 bfbccd0a 2022-03-08 op if [ $ret -ne 0 ]; then
197 e9ce266e 2022-03-07 op test_done $testroot $ret
198 e9ce266e 2022-03-07 op return 1
199 e9ce266e 2022-03-07 op fi
200 e9ce266e 2022-03-07 op
201 e9ce266e 2022-03-07 op jot 10 > $testroot/wt/numbers
202 e9ce266e 2022-03-07 op (cd $testroot/wt/ && got add numbers && got ci -m 'add numbers') \
203 e9ce266e 2022-03-07 op >/dev/null
204 e9ce266e 2022-03-07 op ret=$?
205 bfbccd0a 2022-03-08 op if [ $ret -ne 0 ]; then
206 e9ce266e 2022-03-07 op test_done $testroot $ret
207 e9ce266e 2022-03-07 op return 1
208 e9ce266e 2022-03-07 op fi
209 e9ce266e 2022-03-07 op
210 e9ce266e 2022-03-07 op cat <<EOF > $testroot/wt/patch
211 e9ce266e 2022-03-07 op --- numbers
212 e9ce266e 2022-03-07 op +++ numbers
213 e9ce266e 2022-03-07 op @@ -3,7 +3,7 @@
214 e9ce266e 2022-03-07 op 3
215 e9ce266e 2022-03-07 op 4
216 e9ce266e 2022-03-07 op 5
217 e9ce266e 2022-03-07 op -6
218 e9ce266e 2022-03-07 op +foo
219 e9ce266e 2022-03-07 op 7
220 e9ce266e 2022-03-07 op 8
221 e9ce266e 2022-03-07 op 9
222 e9ce266e 2022-03-07 op EOF
223 e9ce266e 2022-03-07 op
224 e9ce266e 2022-03-07 op echo "M numbers" > $testroot/stdout.expected
225 e9ce266e 2022-03-07 op
226 e9ce266e 2022-03-07 op (cd $testroot/wt && got patch patch) > $testroot/stdout
227 e9ce266e 2022-03-07 op ret=$?
228 bfbccd0a 2022-03-08 op if [ $ret -ne 0 ]; then
229 e9ce266e 2022-03-07 op test_done $testroot $ret
230 e9ce266e 2022-03-07 op return 1
231 e9ce266e 2022-03-07 op fi
232 e9ce266e 2022-03-07 op
233 e9ce266e 2022-03-07 op cmp -s $testroot/stdout.expected $testroot/stdout
234 e9ce266e 2022-03-07 op ret=$?
235 bfbccd0a 2022-03-08 op if [ $ret -ne 0 ]; then
236 e9ce266e 2022-03-07 op diff -u $testroot/stdout.expected $testroot/stdout
237 e9ce266e 2022-03-07 op test_done $testroot $ret
238 e9ce266e 2022-03-07 op return 1
239 e9ce266e 2022-03-07 op fi
240 e9ce266e 2022-03-07 op
241 e9ce266e 2022-03-07 op jot 10 | sed 's/6/foo/' > $testroot/wt/numbers.expected
242 e9ce266e 2022-03-07 op cmp -s $testroot/wt/numbers.expected $testroot/wt/numbers
243 e9ce266e 2022-03-07 op ret=$?
244 bfbccd0a 2022-03-08 op if [ $ret -ne 0 ]; then
245 e9ce266e 2022-03-07 op diff -u $testroot/wt/numbers.expected $testroot/wt/numbers
246 e9ce266e 2022-03-07 op fi
247 e9ce266e 2022-03-07 op test_done $testroot $ret
248 e9ce266e 2022-03-07 op }
249 e9ce266e 2022-03-07 op
250 e9ce266e 2022-03-07 op test_patch_multiple_hunks() {
251 fd79e2e0 2022-03-08 op local testroot=`test_init patch_replace_multiple_hunks`
252 e9ce266e 2022-03-07 op
253 e9ce266e 2022-03-07 op got checkout $testroot/repo $testroot/wt > /dev/null
254 e9ce266e 2022-03-07 op ret=$?
255 bfbccd0a 2022-03-08 op if [ $ret -ne 0 ]; then
256 e9ce266e 2022-03-07 op test_done $testroot $ret
257 e9ce266e 2022-03-07 op return 1
258 e9ce266e 2022-03-07 op fi
259 e9ce266e 2022-03-07 op
260 e9ce266e 2022-03-07 op jot 100 > $testroot/wt/numbers
261 e9ce266e 2022-03-07 op (cd $testroot/wt/ && got add numbers && got ci -m 'add numbers') \
262 e9ce266e 2022-03-07 op >/dev/null
263 e9ce266e 2022-03-07 op ret=$?
264 bfbccd0a 2022-03-08 op if [ $ret -ne 0 ]; then
265 e9ce266e 2022-03-07 op test_done $testroot $ret
266 e9ce266e 2022-03-07 op return 1
267 e9ce266e 2022-03-07 op fi
268 e9ce266e 2022-03-07 op
269 e9ce266e 2022-03-07 op cat <<EOF > $testroot/wt/patch
270 e9ce266e 2022-03-07 op --- numbers
271 e9ce266e 2022-03-07 op +++ numbers
272 e9ce266e 2022-03-07 op @@ -3,7 +3,7 @@
273 e9ce266e 2022-03-07 op 3
274 e9ce266e 2022-03-07 op 4
275 e9ce266e 2022-03-07 op 5
276 e9ce266e 2022-03-07 op -6
277 e9ce266e 2022-03-07 op +foo
278 e9ce266e 2022-03-07 op 7
279 e9ce266e 2022-03-07 op 8
280 e9ce266e 2022-03-07 op 9
281 e9ce266e 2022-03-07 op @@ -57,7 +57,7 @@
282 e9ce266e 2022-03-07 op 57
283 e9ce266e 2022-03-07 op 58
284 e9ce266e 2022-03-07 op 59
285 e9ce266e 2022-03-07 op -60
286 e9ce266e 2022-03-07 op +foo foo
287 e9ce266e 2022-03-07 op 61
288 e9ce266e 2022-03-07 op 62
289 e9ce266e 2022-03-07 op 63
290 e9ce266e 2022-03-07 op @@ -98,3 +98,6 @@
291 e9ce266e 2022-03-07 op 98
292 e9ce266e 2022-03-07 op 99
293 e9ce266e 2022-03-07 op 100
294 e9ce266e 2022-03-07 op +101
295 e9ce266e 2022-03-07 op +102
296 e9ce266e 2022-03-07 op +...
297 e9ce266e 2022-03-07 op EOF
298 e9ce266e 2022-03-07 op
299 e9ce266e 2022-03-07 op echo "M numbers" > $testroot/stdout.expected
300 e9ce266e 2022-03-07 op
301 e9ce266e 2022-03-07 op (cd $testroot/wt && got patch patch) > $testroot/stdout
302 e9ce266e 2022-03-07 op ret=$?
303 bfbccd0a 2022-03-08 op if [ $ret -ne 0 ]; then
304 e9ce266e 2022-03-07 op test_done $testroot $ret
305 e9ce266e 2022-03-07 op return 1
306 e9ce266e 2022-03-07 op fi
307 e9ce266e 2022-03-07 op
308 e9ce266e 2022-03-07 op cmp -s $testroot/stdout.expected $testroot/stdout
309 e9ce266e 2022-03-07 op ret=$?
310 bfbccd0a 2022-03-08 op if [ $ret -ne 0 ]; then
311 e9ce266e 2022-03-07 op diff -u $testroot/stdout.expected $testroot/stdout
312 e9ce266e 2022-03-07 op test_done $testroot $ret
313 e9ce266e 2022-03-07 op return 1
314 e9ce266e 2022-03-07 op fi
315 e9ce266e 2022-03-07 op
316 e9ce266e 2022-03-07 op jot 100 | sed -e 's/^6$/foo/' -e 's/^60$/foo foo/' \
317 e9ce266e 2022-03-07 op > $testroot/wt/numbers.expected
318 e9ce266e 2022-03-07 op echo "101" >> $testroot/wt/numbers.expected
319 e9ce266e 2022-03-07 op echo "102" >> $testroot/wt/numbers.expected
320 e9ce266e 2022-03-07 op echo "..." >> $testroot/wt/numbers.expected
321 e9ce266e 2022-03-07 op
322 e9ce266e 2022-03-07 op cmp -s $testroot/wt/numbers.expected $testroot/wt/numbers
323 e9ce266e 2022-03-07 op ret=$?
324 bfbccd0a 2022-03-08 op if [ $ret -ne 0 ]; then
325 e9ce266e 2022-03-07 op diff -u $testroot/wt/numbers.expected $testroot/wt/numbers
326 e9ce266e 2022-03-07 op fi
327 e9ce266e 2022-03-07 op test_done $testroot $ret
328 e9ce266e 2022-03-07 op }
329 e9ce266e 2022-03-07 op
330 e9ce266e 2022-03-07 op test_patch_multiple_files() {
331 e9ce266e 2022-03-07 op local testroot=`test_init patch_multiple_files`
332 e9ce266e 2022-03-07 op
333 e9ce266e 2022-03-07 op got checkout $testroot/repo $testroot/wt > /dev/null
334 e9ce266e 2022-03-07 op ret=$?
335 bfbccd0a 2022-03-08 op if [ $ret -ne 0 ]; then
336 e9ce266e 2022-03-07 op test_done $testroot $ret
337 e9ce266e 2022-03-07 op return 1
338 e9ce266e 2022-03-07 op fi
339 e9ce266e 2022-03-07 op
340 e9ce266e 2022-03-07 op cat <<EOF > $testroot/wt/patch
341 e9ce266e 2022-03-07 op --- alpha Mon Mar 7 19:02:07 2022
342 e9ce266e 2022-03-07 op +++ alpha Mon Mar 7 19:01:53 2022
343 e9ce266e 2022-03-07 op @@ -1 +1,3 @@
344 e9ce266e 2022-03-07 op +new
345 e9ce266e 2022-03-07 op alpha
346 e9ce266e 2022-03-07 op +available
347 e9ce266e 2022-03-07 op --- beta Mon Mar 7 19:02:11 2022
348 e9ce266e 2022-03-07 op +++ beta Mon Mar 7 19:01:46 2022
349 e9ce266e 2022-03-07 op @@ -1 +1,3 @@
350 e9ce266e 2022-03-07 op beta
351 e9ce266e 2022-03-07 op +was
352 e9ce266e 2022-03-07 op +improved
353 e9ce266e 2022-03-07 op --- gamma/delta Mon Mar 7 19:02:17 2022
354 e9ce266e 2022-03-07 op +++ gamma/delta Mon Mar 7 19:01:37 2022
355 e9ce266e 2022-03-07 op @@ -1 +1 @@
356 e9ce266e 2022-03-07 op -delta
357 e9ce266e 2022-03-07 op +delta new
358 e9ce266e 2022-03-07 op EOF
359 e9ce266e 2022-03-07 op
360 e9ce266e 2022-03-07 op echo "M alpha" > $testroot/stdout.expected
361 e9ce266e 2022-03-07 op echo "M beta" >> $testroot/stdout.expected
362 e9ce266e 2022-03-07 op echo "M gamma/delta" >> $testroot/stdout.expected
363 e9ce266e 2022-03-07 op
364 e9ce266e 2022-03-07 op (cd $testroot/wt && got patch patch) > $testroot/stdout
365 e9ce266e 2022-03-07 op ret=$?
366 bfbccd0a 2022-03-08 op if [ $ret -ne 0 ]; then
367 fd79e2e0 2022-03-08 op test_done $testroot $ret
368 e9ce266e 2022-03-07 op return 1
369 e9ce266e 2022-03-07 op fi
370 e9ce266e 2022-03-07 op
371 e9ce266e 2022-03-07 op cmp -s $testroot/stdout.expected $testroot/stdout
372 e9ce266e 2022-03-07 op ret=$?
373 bfbccd0a 2022-03-08 op if [ $ret -ne 0 ]; then
374 e9ce266e 2022-03-07 op diff -u $testroot/stdout.expected $testroot/stdout
375 e9ce266e 2022-03-07 op test_done $testroot $ret
376 e9ce266e 2022-03-07 op return 1
377 e9ce266e 2022-03-07 op fi
378 e9ce266e 2022-03-07 op
379 e9ce266e 2022-03-07 op printf 'new\nalpha\navailable\n' > $testroot/wt/alpha.expected
380 e9ce266e 2022-03-07 op printf 'beta\nwas\nimproved\n' > $testroot/wt/beta.expected
381 e9ce266e 2022-03-07 op printf 'delta new\n' > $testroot/wt/gamma/delta.expected
382 e9ce266e 2022-03-07 op
383 e9ce266e 2022-03-07 op for f in alpha beta gamma/delta; do
384 e9ce266e 2022-03-07 op cmp -s $testroot/wt/$f.expected $testroot/wt/$f
385 e9ce266e 2022-03-07 op ret=$?
386 bfbccd0a 2022-03-08 op if [ $ret -ne 0 ]; then
387 e9ce266e 2022-03-07 op diff -u $testroot/wt/$f.expected $testroot/wt/$f
388 e9ce266e 2022-03-07 op test_done $testroot $ret
389 e9ce266e 2022-03-07 op return 1
390 e9ce266e 2022-03-07 op fi
391 e9ce266e 2022-03-07 op done
392 e9ce266e 2022-03-07 op
393 e9ce266e 2022-03-07 op test_done $testroot 0
394 e9ce266e 2022-03-07 op }
395 e9ce266e 2022-03-07 op
396 e9ce266e 2022-03-07 op test_patch_dont_apply() {
397 e9ce266e 2022-03-07 op local testroot=`test_init patch_dont_apply`
398 e9ce266e 2022-03-07 op
399 e9ce266e 2022-03-07 op got checkout $testroot/repo $testroot/wt > /dev/null
400 e9ce266e 2022-03-07 op ret=$?
401 bfbccd0a 2022-03-08 op if [ $ret -ne 0 ]; then
402 e9ce266e 2022-03-07 op test_done $testroot $ret
403 e9ce266e 2022-03-07 op return 1
404 e9ce266e 2022-03-07 op fi
405 e9ce266e 2022-03-07 op
406 5b67f96e 2022-03-13 op jot 100 > $testroot/wt/numbers
407 5b67f96e 2022-03-13 op (cd $testroot/wt && got add numbers && got commit -m 'add numbers') \
408 5b67f96e 2022-03-13 op >/dev/null
409 5b67f96e 2022-03-13 op ret=$?
410 5b67f96e 2022-03-13 op if [ $ret -ne 0 ]; then
411 5b67f96e 2022-03-13 op test_done $testroot $ret
412 5b67f96e 2022-03-13 op return 1
413 5b67f96e 2022-03-13 op fi
414 5b67f96e 2022-03-13 op
415 5b67f96e 2022-03-13 op cat <<EOF > $testroot/wt/patch
416 60aa1fa0 2022-03-17 op --- alpha
417 60aa1fa0 2022-03-17 op +++ alpha
418 60aa1fa0 2022-03-17 op @@ -1 +1,2 @@
419 60aa1fa0 2022-03-17 op +hatsuseno
420 60aa1fa0 2022-03-17 op alpha something
421 5b67f96e 2022-03-13 op --- numbers
422 5b67f96e 2022-03-13 op +++ /dev/null
423 5b67f96e 2022-03-13 op @@ -1,9 +0,0 @@
424 5b67f96e 2022-03-13 op -1
425 5b67f96e 2022-03-13 op -2
426 5b67f96e 2022-03-13 op -3
427 5b67f96e 2022-03-13 op -4
428 5b67f96e 2022-03-13 op -5
429 5b67f96e 2022-03-13 op -6
430 5b67f96e 2022-03-13 op -7
431 5b67f96e 2022-03-13 op -8
432 5b67f96e 2022-03-13 op -9
433 5b67f96e 2022-03-13 op EOF
434 5b67f96e 2022-03-13 op
435 60aa1fa0 2022-03-17 op (cd $testroot/wt && got patch patch) > $testroot/stdout 2> /dev/null
436 5b67f96e 2022-03-13 op ret=$?
437 5b67f96e 2022-03-13 op if [ $ret -eq 0 ]; then # should fail
438 5b67f96e 2022-03-13 op test_done $testroot 1
439 e9ce266e 2022-03-07 op return 1
440 e9ce266e 2022-03-07 op fi
441 e9ce266e 2022-03-07 op
442 60aa1fa0 2022-03-17 op cat <<EOF > $testroot/stdout.expected
443 60aa1fa0 2022-03-17 op # alpha
444 60aa1fa0 2022-03-17 op @@ -1,1 +1,2 @@ hunk failed to apply
445 60aa1fa0 2022-03-17 op # numbers
446 60aa1fa0 2022-03-17 op @@ -1,9 +0,0 @@ hunk failed to apply
447 60aa1fa0 2022-03-17 op EOF
448 60aa1fa0 2022-03-17 op
449 60aa1fa0 2022-03-17 op cmp -s $testroot/stdout.expected $testroot/stdout
450 5b67f96e 2022-03-13 op ret=$?
451 5b67f96e 2022-03-13 op if [ $ret -ne 0 ]; then
452 60aa1fa0 2022-03-17 op diff -u $testroot/stdout.expected $testroot/stdout
453 5b67f96e 2022-03-13 op fi
454 e9ce266e 2022-03-07 op test_done $testroot $ret
455 e9ce266e 2022-03-07 op }
456 e9ce266e 2022-03-07 op
457 e9ce266e 2022-03-07 op test_patch_malformed() {
458 e9ce266e 2022-03-07 op local testroot=`test_init patch_malformed`
459 e9ce266e 2022-03-07 op
460 e9ce266e 2022-03-07 op got checkout $testroot/repo $testroot/wt > /dev/null
461 e9ce266e 2022-03-07 op ret=$?
462 bfbccd0a 2022-03-08 op if [ $ret -ne 0 ]; then
463 e9ce266e 2022-03-07 op test_done $testroot $ret
464 e9ce266e 2022-03-07 op return 1
465 e9ce266e 2022-03-07 op fi
466 e9ce266e 2022-03-07 op
467 e9ce266e 2022-03-07 op # missing "@@"
468 e9ce266e 2022-03-07 op cat <<EOF > $testroot/wt/patch
469 e9ce266e 2022-03-07 op --- alpha
470 e9ce266e 2022-03-07 op +++ alpha
471 e9ce266e 2022-03-07 op @@ -1 +1,2
472 e9ce266e 2022-03-07 op +hatsuseno
473 e9ce266e 2022-03-07 op alpha
474 e9ce266e 2022-03-07 op EOF
475 e9ce266e 2022-03-07 op
476 e9ce266e 2022-03-07 op echo -n > $testroot/stdout.expected
477 e9ce266e 2022-03-07 op echo "got: malformed patch" > $testroot/stderr.expected
478 e9ce266e 2022-03-07 op
479 e9ce266e 2022-03-07 op (cd $testroot/wt && got patch patch) \
480 e9ce266e 2022-03-07 op > $testroot/stdout \
481 e9ce266e 2022-03-07 op 2> $testroot/stderr
482 e9ce266e 2022-03-07 op ret=$?
483 bfbccd0a 2022-03-08 op if [ $ret -eq 0 ]; then
484 e9ce266e 2022-03-07 op echo "got managed to apply an invalid patch"
485 e9ce266e 2022-03-07 op test_done $testroot 1
486 e9ce266e 2022-03-07 op return 1
487 e9ce266e 2022-03-07 op fi
488 e9ce266e 2022-03-07 op
489 e9ce266e 2022-03-07 op cmp -s $testroot/stdout.expected $testroot/stdout
490 e9ce266e 2022-03-07 op ret=$?
491 bfbccd0a 2022-03-08 op if [ $ret -ne 0 ]; then
492 e9ce266e 2022-03-07 op diff -u $testroot/stdout.expected $testroot/stdout
493 e9ce266e 2022-03-07 op test_done $testroot $ret
494 e9ce266e 2022-03-07 op return 1
495 e9ce266e 2022-03-07 op fi
496 e9ce266e 2022-03-07 op
497 e9ce266e 2022-03-07 op cmp -s $testroot/stderr.expected $testroot/stderr
498 e9ce266e 2022-03-07 op ret=$?
499 bfbccd0a 2022-03-08 op if [ $ret -ne 0 ]; then
500 e9ce266e 2022-03-07 op diff -u $testroot/stderr.expected $testroot/stderr
501 e9ce266e 2022-03-07 op test_done $testroot $ret
502 e9ce266e 2022-03-07 op return 1
503 e9ce266e 2022-03-07 op fi
504 e9ce266e 2022-03-07 op
505 e9ce266e 2022-03-07 op # wrong first character
506 e9ce266e 2022-03-07 op cat <<EOF > $testroot/wt/patch
507 e9ce266e 2022-03-07 op --- alpha
508 e9ce266e 2022-03-07 op +++ alpha
509 e9ce266e 2022-03-07 op @@ -1 +1,2 @@
510 e9ce266e 2022-03-07 op +hatsuseno
511 e9ce266e 2022-03-07 op alpha
512 e9ce266e 2022-03-07 op EOF
513 e9ce266e 2022-03-07 op
514 e9ce266e 2022-03-07 op (cd $testroot/wt && got patch patch) \
515 e9ce266e 2022-03-07 op > $testroot/stdout \
516 e9ce266e 2022-03-07 op 2> $testroot/stderr
517 e9ce266e 2022-03-07 op ret=$?
518 bfbccd0a 2022-03-08 op if [ $ret -eq 0 ]; then
519 e9ce266e 2022-03-07 op echo "got managed to apply an invalid patch"
520 e9ce266e 2022-03-07 op test_done $testroot 1
521 e9ce266e 2022-03-07 op return 1
522 e9ce266e 2022-03-07 op fi
523 e9ce266e 2022-03-07 op
524 e9ce266e 2022-03-07 op cmp -s $testroot/stdout.expected $testroot/stdout
525 e9ce266e 2022-03-07 op ret=$?
526 bfbccd0a 2022-03-08 op if [ $ret -ne 0 ]; then
527 e9ce266e 2022-03-07 op diff -u $testroot/stdout.expected $testroot/stdout
528 e9ce266e 2022-03-07 op test_done $testroot $ret
529 e9ce266e 2022-03-07 op return 1
530 e9ce266e 2022-03-07 op fi
531 e9ce266e 2022-03-07 op
532 e9ce266e 2022-03-07 op cmp -s $testroot/stderr.expected $testroot/stderr
533 e9ce266e 2022-03-07 op ret=$?
534 bfbccd0a 2022-03-08 op if [ $ret -ne 0 ]; then
535 e9ce266e 2022-03-07 op diff -u $testroot/stderr.expected $testroot/stderr
536 e9ce266e 2022-03-07 op test_done $testroot $ret
537 e9ce266e 2022-03-07 op return 1
538 e9ce266e 2022-03-07 op fi
539 e9ce266e 2022-03-07 op
540 e9ce266e 2022-03-07 op test_done $testroot $ret
541 e9ce266e 2022-03-07 op }
542 e9ce266e 2022-03-07 op
543 e9ce266e 2022-03-07 op test_patch_no_patch() {
544 e9ce266e 2022-03-07 op local testroot=`test_init patch_no_patch`
545 e9ce266e 2022-03-07 op
546 e9ce266e 2022-03-07 op got checkout $testroot/repo $testroot/wt > /dev/null
547 e9ce266e 2022-03-07 op ret=$?
548 bfbccd0a 2022-03-08 op if [ $ret -ne 0 ]; then
549 e9ce266e 2022-03-07 op test_done $testroot $ret
550 e9ce266e 2022-03-07 op return 1
551 e9ce266e 2022-03-07 op fi
552 e9ce266e 2022-03-07 op
553 e9ce266e 2022-03-07 op cat <<EOF > $testroot/wt/patch
554 e9ce266e 2022-03-07 op hello world!
555 e9ce266e 2022-03-07 op ...
556 e9ce266e 2022-03-07 op
557 e9ce266e 2022-03-07 op some other nonsense
558 e9ce266e 2022-03-07 op ...
559 e9ce266e 2022-03-07 op
560 e9ce266e 2022-03-07 op there's no patch in here!
561 e9ce266e 2022-03-07 op EOF
562 e9ce266e 2022-03-07 op
563 e9ce266e 2022-03-07 op echo -n > $testroot/stdout.expected
564 e9ce266e 2022-03-07 op echo "got: no patch found" > $testroot/stderr.expected
565 e9ce266e 2022-03-07 op
566 e9ce266e 2022-03-07 op (cd $testroot/wt && got patch patch) \
567 e9ce266e 2022-03-07 op > $testroot/stdout \
568 e9ce266e 2022-03-07 op 2> $testroot/stderr
569 e9ce266e 2022-03-07 op ret=$?
570 bfbccd0a 2022-03-08 op if [ $ret -eq 0 ]; then # should fail
571 e9ce266e 2022-03-07 op test_done $testroot 1
572 e9ce266e 2022-03-07 op return 1
573 e9ce266e 2022-03-07 op fi
574 e9ce266e 2022-03-07 op
575 e9ce266e 2022-03-07 op cmp -s $testroot/stdout.expected $testroot/stdout
576 e9ce266e 2022-03-07 op ret=$?
577 bfbccd0a 2022-03-08 op if [ $ret -ne 0 ]; then
578 e9ce266e 2022-03-07 op diff -u $testroot/stdout.expected $testroot/stdout
579 e9ce266e 2022-03-07 op test_done $testroot $ret
580 e9ce266e 2022-03-07 op return 1
581 e9ce266e 2022-03-07 op fi
582 e9ce266e 2022-03-07 op
583 e9ce266e 2022-03-07 op cmp -s $testroot/stderr.expected $testroot/stderr
584 e9ce266e 2022-03-07 op ret=$?
585 bfbccd0a 2022-03-08 op if [ $ret -ne 0 ]; then
586 e9ce266e 2022-03-07 op diff -u $testroot/stderr.expected $testroot/stderr
587 e9ce266e 2022-03-07 op test_done $testroot $ret
588 e9ce266e 2022-03-07 op return 1
589 e9ce266e 2022-03-07 op fi
590 e9ce266e 2022-03-07 op
591 e9ce266e 2022-03-07 op test_done $testroot $ret
592 e9ce266e 2022-03-07 op }
593 e9ce266e 2022-03-07 op
594 e9ce266e 2022-03-07 op test_patch_equals_for_context() {
595 e9ce266e 2022-03-07 op local testroot=`test_init patch_prepend_line`
596 e9ce266e 2022-03-07 op
597 e9ce266e 2022-03-07 op got checkout $testroot/repo $testroot/wt > /dev/null
598 e9ce266e 2022-03-07 op ret=$?
599 bfbccd0a 2022-03-08 op if [ $ret -ne 0 ]; then
600 e9ce266e 2022-03-07 op test_done $testroot $ret
601 e9ce266e 2022-03-07 op return 1
602 e9ce266e 2022-03-07 op fi
603 e9ce266e 2022-03-07 op
604 e9ce266e 2022-03-07 op cat <<EOF > $testroot/wt/patch
605 e9ce266e 2022-03-07 op --- alpha
606 e9ce266e 2022-03-07 op +++ alpha
607 e9ce266e 2022-03-07 op @@ -1 +1,2 @@
608 e9ce266e 2022-03-07 op +hatsuseno
609 e9ce266e 2022-03-07 op =alpha
610 e9ce266e 2022-03-07 op EOF
611 e9ce266e 2022-03-07 op
612 e9ce266e 2022-03-07 op echo "M alpha" > $testroot/stdout.expected
613 e9ce266e 2022-03-07 op
614 e9ce266e 2022-03-07 op (cd $testroot/wt && got patch patch) > $testroot/stdout
615 e9ce266e 2022-03-07 op ret=$?
616 bfbccd0a 2022-03-08 op if [ $ret -ne 0 ]; then
617 e9ce266e 2022-03-07 op test_done $testroot $ret
618 e9ce266e 2022-03-07 op return 1
619 e9ce266e 2022-03-07 op fi
620 e9ce266e 2022-03-07 op
621 e9ce266e 2022-03-07 op cmp -s $testroot/stdout.expected $testroot/stdout
622 e9ce266e 2022-03-07 op ret=$?
623 bfbccd0a 2022-03-08 op if [ $ret -ne 0 ]; then
624 e9ce266e 2022-03-07 op diff -u $testroot/stdout.expected $testroot/stdout
625 e9ce266e 2022-03-07 op test_done $testroot $ret
626 e9ce266e 2022-03-07 op return 1
627 e9ce266e 2022-03-07 op fi
628 e9ce266e 2022-03-07 op
629 e9ce266e 2022-03-07 op echo hatsuseno > $testroot/wt/alpha.expected
630 e9ce266e 2022-03-07 op echo alpha >> $testroot/wt/alpha.expected
631 e9ce266e 2022-03-07 op cmp -s $testroot/wt/alpha.expected $testroot/wt/alpha
632 e9ce266e 2022-03-07 op ret=$?
633 bfbccd0a 2022-03-08 op if [ $ret -ne 0 ]; then
634 e9ce266e 2022-03-07 op diff -u $testroot/wt/alpha.expected $testroot/wt/alpha
635 e9ce266e 2022-03-07 op fi
636 e9ce266e 2022-03-07 op test_done $testroot $ret
637 e9ce266e 2022-03-07 op }
638 6e96b326 2022-03-12 op
639 6e96b326 2022-03-12 op test_patch_rename() {
640 6e96b326 2022-03-12 op local testroot=`test_init patch_rename`
641 6e96b326 2022-03-12 op
642 6e96b326 2022-03-12 op got checkout $testroot/repo $testroot/wt > /dev/null
643 6e96b326 2022-03-12 op ret=$?
644 6e96b326 2022-03-12 op if [ $ret -ne 0 ]; then
645 6e96b326 2022-03-12 op test_done $testroot $ret
646 6e96b326 2022-03-12 op return 1
647 6e96b326 2022-03-12 op fi
648 6e96b326 2022-03-12 op
649 6e96b326 2022-03-12 op cat <<EOF > $testroot/wt/patch
650 6e96b326 2022-03-12 op --- alpha
651 6e96b326 2022-03-12 op +++ eta
652 6e96b326 2022-03-12 op @@ -0,0 +0,0 @@
653 6e96b326 2022-03-12 op EOF
654 e9ce266e 2022-03-07 op
655 6e96b326 2022-03-12 op echo 'D alpha' > $testroot/stdout.expected
656 6e96b326 2022-03-12 op echo 'A eta' >> $testroot/stdout.expected
657 6e96b326 2022-03-12 op
658 6e96b326 2022-03-12 op (cd $testroot/wt && got patch patch) > $testroot/stdout
659 6e96b326 2022-03-12 op ret=$?
660 6e96b326 2022-03-12 op if [ $ret -ne 0 ]; then
661 6e96b326 2022-03-12 op test_done $testroot $ret
662 6e96b326 2022-03-12 op return 1
663 6e96b326 2022-03-12 op fi
664 6e96b326 2022-03-12 op
665 6e96b326 2022-03-12 op cmp -s $testroot/stdout.expected $testroot/stdout
666 6e96b326 2022-03-12 op ret=$?
667 6e96b326 2022-03-12 op if [ $ret -ne 0 ]; then
668 6e96b326 2022-03-12 op diff -u $testroot/stdout.expected $testroot/stdout
669 6e96b326 2022-03-12 op test_done $testroot $ret
670 6e96b326 2022-03-12 op return 1
671 6e96b326 2022-03-12 op fi
672 6e96b326 2022-03-12 op
673 6e96b326 2022-03-12 op if [ -f $testroot/wt/alpha ]; then
674 6e96b326 2022-03-12 op echo "alpha was not removed" >&2
675 6e96b326 2022-03-12 op test_done $testroot 1
676 6e96b326 2022-03-12 op return 1
677 6e96b326 2022-03-12 op fi
678 6e96b326 2022-03-12 op if [ ! -f $testroot/wt/eta ]; then
679 6e96b326 2022-03-12 op echo "eta was not created" >&2
680 6e96b326 2022-03-12 op test_done $testroot 1
681 6e96b326 2022-03-12 op return 1
682 6e96b326 2022-03-12 op fi
683 6e96b326 2022-03-12 op
684 6e96b326 2022-03-12 op echo alpha > $testroot/wt/eta.expected
685 6e96b326 2022-03-12 op cmp -s $testroot/wt/eta.expected $testroot/wt/eta
686 6e96b326 2022-03-12 op ret=$?
687 6e96b326 2022-03-12 op if [ $ret -ne 0 ]; then
688 6e96b326 2022-03-12 op diff -u $testroot/wt/eta.expected $testroot/wt/eta
689 6e96b326 2022-03-12 op test_done $testroot $ret
690 6e96b326 2022-03-12 op return 1
691 6e96b326 2022-03-12 op fi
692 6e96b326 2022-03-12 op
693 6e96b326 2022-03-12 op # revert the changes and try again with a rename + edit
694 6e96b326 2022-03-12 op (cd $testroot/wt && got revert alpha eta) > /dev/null
695 6e96b326 2022-03-12 op ret=$?
696 6e96b326 2022-03-12 op if [ $ret -ne 0 ]; then
697 6e96b326 2022-03-12 op test_done $testroot $ret
698 6e96b326 2022-03-12 op return 1
699 6e96b326 2022-03-12 op fi
700 dbda770b 2022-03-13 op rm $testroot/wt/eta
701 6e96b326 2022-03-12 op
702 6e96b326 2022-03-12 op cat <<EOF > $testroot/wt/patch
703 6e96b326 2022-03-12 op --- alpha
704 6e96b326 2022-03-12 op +++ eta
705 6e96b326 2022-03-12 op @@ -1 +1,2 @@
706 6e96b326 2022-03-12 op alpha
707 6e96b326 2022-03-12 op +but now is eta
708 6e96b326 2022-03-12 op EOF
709 6e96b326 2022-03-12 op
710 6e96b326 2022-03-12 op (cd $testroot/wt && got patch patch) > $testroot/stdout
711 6e96b326 2022-03-12 op ret=$?
712 6e96b326 2022-03-12 op if [ $ret -ne 0 ]; then
713 6e96b326 2022-03-12 op test_done $testroot $ret
714 6e96b326 2022-03-12 op return 1
715 6e96b326 2022-03-12 op fi
716 6e96b326 2022-03-12 op
717 6e96b326 2022-03-12 op cmp -s $testroot/stdout.expected $testroot/stdout
718 6e96b326 2022-03-12 op ret=$?
719 6e96b326 2022-03-12 op if [ $ret -ne 0 ]; then
720 6e96b326 2022-03-12 op diff -u $testroot/stdout.expected $testroot/stdout
721 6e96b326 2022-03-12 op test_done $testroot $ret
722 6e96b326 2022-03-12 op return 1
723 6e96b326 2022-03-12 op fi
724 6e96b326 2022-03-12 op
725 6e96b326 2022-03-12 op if [ -f $testroot/wt/alpha ]; then
726 6e96b326 2022-03-12 op echo "alpha was not removed" >&2
727 6e96b326 2022-03-12 op test_done $testroot 1
728 6e96b326 2022-03-12 op return 1
729 6e96b326 2022-03-12 op fi
730 6e96b326 2022-03-12 op if [ ! -f $testroot/wt/eta ]; then
731 6e96b326 2022-03-12 op echo "eta was not created" >&2
732 6e96b326 2022-03-12 op test_done $testroot 1
733 6e96b326 2022-03-12 op return 1
734 6e96b326 2022-03-12 op fi
735 6e96b326 2022-03-12 op
736 6e96b326 2022-03-12 op echo alpha > $testroot/wt/eta.expected
737 6e96b326 2022-03-12 op echo 'but now is eta' >> $testroot/wt/eta.expected
738 6e96b326 2022-03-12 op cmp -s $testroot/wt/eta.expected $testroot/wt/eta
739 6e96b326 2022-03-12 op ret=$?
740 6e96b326 2022-03-12 op if [ $ret -ne 0 ]; then
741 6e96b326 2022-03-12 op diff -u $testroot/wt/eta.expected $testroot/wt/eta
742 6e96b326 2022-03-12 op fi
743 6e96b326 2022-03-12 op test_done $testroot $ret
744 6e96b326 2022-03-12 op }
745 dbda770b 2022-03-13 op
746 dbda770b 2022-03-13 op test_patch_illegal_status() {
747 dbda770b 2022-03-13 op local testroot=`test_init patch_illegal_status`
748 dbda770b 2022-03-13 op
749 dbda770b 2022-03-13 op got checkout $testroot/repo $testroot/wt > /dev/null
750 dbda770b 2022-03-13 op ret=$?
751 dbda770b 2022-03-13 op if [ $ret -ne 0 ]; then
752 dbda770b 2022-03-13 op test_done $testroot $ret
753 dbda770b 2022-03-13 op return 1
754 dbda770b 2022-03-13 op fi
755 dbda770b 2022-03-13 op
756 60aa1fa0 2022-03-17 op # try to patch an obstructed file, add a versioned one, edit a
757 60aa1fa0 2022-03-17 op # non existent file and an unversioned one, and remove a
758 60aa1fa0 2022-03-17 op # non existent file.
759 dbda770b 2022-03-13 op cat <<EOF > $testroot/wt/patch
760 60aa1fa0 2022-03-17 op --- alpha
761 60aa1fa0 2022-03-17 op +++ alpha
762 60aa1fa0 2022-03-17 op @@ -1 +1,2 @@
763 60aa1fa0 2022-03-17 op alpha
764 60aa1fa0 2022-03-17 op +was edited
765 60aa1fa0 2022-03-17 op --- /dev/null
766 60aa1fa0 2022-03-17 op +++ beta
767 60aa1fa0 2022-03-17 op @@ -0,0 +1 @@
768 60aa1fa0 2022-03-17 op +beta
769 dbda770b 2022-03-13 op --- iota
770 dbda770b 2022-03-13 op +++ iota
771 dbda770b 2022-03-13 op @@ -1 +1 @@
772 60aa1fa0 2022-03-17 op -iota
773 60aa1fa0 2022-03-17 op +IOTA
774 60aa1fa0 2022-03-17 op --- kappa
775 60aa1fa0 2022-03-17 op +++ kappa
776 60aa1fa0 2022-03-17 op @@ -1 +1 @@
777 60aa1fa0 2022-03-17 op -kappa
778 60aa1fa0 2022-03-17 op +KAPPA
779 60aa1fa0 2022-03-17 op --- lambda
780 60aa1fa0 2022-03-17 op +++ /dev/null
781 60aa1fa0 2022-03-17 op @@ -1 +0,0 @@
782 60aa1fa0 2022-03-17 op -lambda
783 dbda770b 2022-03-13 op EOF
784 6e96b326 2022-03-12 op
785 60aa1fa0 2022-03-17 op echo kappa > $testroot/wt/kappa
786 dbda770b 2022-03-13 op rm $testroot/wt/alpha
787 dbda770b 2022-03-13 op mkdir $testroot/wt/alpha
788 dbda770b 2022-03-13 op
789 60aa1fa0 2022-03-17 op (cd $testroot/wt && got patch patch) > $testroot/stdout \
790 dbda770b 2022-03-13 op 2> $testroot/stderr
791 dbda770b 2022-03-13 op ret=$?
792 dbda770b 2022-03-13 op if [ $ret -eq 0 ]; then
793 dbda770b 2022-03-13 op echo "edited a missing file" >&2
794 dbda770b 2022-03-13 op test_done $testroot $ret
795 dbda770b 2022-03-13 op return 1
796 dbda770b 2022-03-13 op fi
797 dbda770b 2022-03-13 op
798 60aa1fa0 2022-03-17 op cat <<EOF > $testroot/stdout.expected
799 60aa1fa0 2022-03-17 op # alpha
800 60aa1fa0 2022-03-17 op # beta
801 60aa1fa0 2022-03-17 op # iota
802 60aa1fa0 2022-03-17 op # kappa
803 60aa1fa0 2022-03-17 op # lambda
804 60aa1fa0 2022-03-17 op EOF
805 dbda770b 2022-03-13 op
806 60aa1fa0 2022-03-17 op cat <<EOF > $testroot/stderr.expected
807 60aa1fa0 2022-03-17 op got: alpha: file has unexpected status
808 60aa1fa0 2022-03-17 op got: beta: file has unexpected status
809 60aa1fa0 2022-03-17 op got: iota: No such file or directory
810 60aa1fa0 2022-03-17 op got: kappa: file has unexpected status
811 60aa1fa0 2022-03-17 op got: lambda: No such file or directory
812 60aa1fa0 2022-03-17 op got: patch failed to apply
813 dbda770b 2022-03-13 op EOF
814 dbda770b 2022-03-13 op
815 60aa1fa0 2022-03-17 op cmp -s $testroot/stdout.expected $testroot/stdout
816 dbda770b 2022-03-13 op ret=$?
817 60aa1fa0 2022-03-17 op if [ $ret -ne 0 ]; then
818 60aa1fa0 2022-03-17 op diff -u $testroot/stdout.expected $testroot/stdout
819 dbda770b 2022-03-13 op test_done $testroot $ret
820 dbda770b 2022-03-13 op return 1
821 dbda770b 2022-03-13 op fi
822 dbda770b 2022-03-13 op
823 dbda770b 2022-03-13 op cmp -s $testroot/stderr.expected $testroot/stderr
824 dbda770b 2022-03-13 op ret=$?
825 60aa1fa0 2022-03-17 op if [ $ret -ne 0 ]; then
826 dbda770b 2022-03-13 op diff -u $testroot/stderr.expected $testroot/stderr
827 dbda770b 2022-03-13 op fi
828 899fcfdf 2022-03-13 op test_done $testroot $ret
829 899fcfdf 2022-03-13 op }
830 899fcfdf 2022-03-13 op
831 899fcfdf 2022-03-13 op test_patch_nop() {
832 899fcfdf 2022-03-13 op local testroot=`test_init patch_nop`
833 899fcfdf 2022-03-13 op
834 899fcfdf 2022-03-13 op got checkout $testroot/repo $testroot/wt > /dev/null
835 899fcfdf 2022-03-13 op ret=$?
836 899fcfdf 2022-03-13 op if [ $ret -ne 0 ]; then
837 899fcfdf 2022-03-13 op test_done $testroot $ret
838 899fcfdf 2022-03-13 op return 1
839 899fcfdf 2022-03-13 op fi
840 899fcfdf 2022-03-13 op
841 899fcfdf 2022-03-13 op cat <<EOF > $testroot/wt/patch
842 899fcfdf 2022-03-13 op --- alpha
843 899fcfdf 2022-03-13 op +++ alpha
844 899fcfdf 2022-03-13 op @@ -1 +1 @@
845 899fcfdf 2022-03-13 op -alpha
846 899fcfdf 2022-03-13 op +cafe alpha
847 899fcfdf 2022-03-13 op --- beta
848 899fcfdf 2022-03-13 op +++ /dev/null
849 899fcfdf 2022-03-13 op @@ -1 +0,0 @@
850 899fcfdf 2022-03-13 op -beta
851 899fcfdf 2022-03-13 op --- gamma/delta
852 899fcfdf 2022-03-13 op +++ gamma/delta.new
853 899fcfdf 2022-03-13 op @@ -1 +1 @@
854 899fcfdf 2022-03-13 op -delta
855 899fcfdf 2022-03-13 op +delta updated and renamed!
856 899fcfdf 2022-03-13 op EOF
857 899fcfdf 2022-03-13 op
858 899fcfdf 2022-03-13 op (cd $testroot/wt && got patch -n patch)
859 899fcfdf 2022-03-13 op ret=$?
860 899fcfdf 2022-03-13 op if [ $ret -ne 0 ]; then
861 899fcfdf 2022-03-13 op test_done $testroot $ret
862 899fcfdf 2022-03-13 op return 1
863 dbda770b 2022-03-13 op fi
864 899fcfdf 2022-03-13 op
865 899fcfdf 2022-03-13 op # remove the patch to avoid the ? entry
866 899fcfdf 2022-03-13 op rm $testroot/wt/patch
867 899fcfdf 2022-03-13 op
868 899fcfdf 2022-03-13 op (cd $testroot/wt && got status) > $testroot/stdout
869 899fcfdf 2022-03-13 op ret=$?
870 899fcfdf 2022-03-13 op if [ $ret -ne 0 ]; then
871 899fcfdf 2022-03-13 op test_done $testroot $ret
872 899fcfdf 2022-03-13 op return 1
873 899fcfdf 2022-03-13 op fi
874 899fcfdf 2022-03-13 op
875 899fcfdf 2022-03-13 op echo -n > $testroot/stdout.expected
876 899fcfdf 2022-03-13 op cmp -s $testroot/stdout.expected $testroot/stdout
877 899fcfdf 2022-03-13 op ret=$?
878 899fcfdf 2022-03-13 op if [ $ret -ne 0 ]; then
879 899fcfdf 2022-03-13 op diff -u $testroot/stdout.expected $testroot/stdout
880 899fcfdf 2022-03-13 op fi
881 dbda770b 2022-03-13 op test_done $testroot $ret
882 2be5e1a2 2022-03-16 op }
883 2be5e1a2 2022-03-16 op
884 2be5e1a2 2022-03-16 op test_patch_preserve_perm() {
885 2be5e1a2 2022-03-16 op local testroot=`test_init patch_preserve_perm`
886 2be5e1a2 2022-03-16 op
887 2be5e1a2 2022-03-16 op got checkout $testroot/repo $testroot/wt > /dev/null
888 2be5e1a2 2022-03-16 op ret=$?
889 2be5e1a2 2022-03-16 op if [ $ret -ne 0 ]; then
890 2be5e1a2 2022-03-16 op test_done $testroot $ret
891 2be5e1a2 2022-03-16 op return 1
892 2be5e1a2 2022-03-16 op fi
893 2be5e1a2 2022-03-16 op
894 2be5e1a2 2022-03-16 op chmod +x $testroot/wt/alpha
895 2be5e1a2 2022-03-16 op (cd $testroot/wt && got commit -m 'alpha executable') > /dev/null
896 2be5e1a2 2022-03-16 op ret=$?
897 2be5e1a2 2022-03-16 op if [ $ret -ne 0 ]; then
898 2be5e1a2 2022-03-16 op test_done $testroot $ret
899 2be5e1a2 2022-03-16 op return 1
900 2be5e1a2 2022-03-16 op fi
901 2be5e1a2 2022-03-16 op
902 2be5e1a2 2022-03-16 op cat <<EOF > $testroot/wt/patch
903 2be5e1a2 2022-03-16 op --- alpha
904 2be5e1a2 2022-03-16 op +++ alpha
905 2be5e1a2 2022-03-16 op @@ -1 +1,2 @@
906 2be5e1a2 2022-03-16 op alpha
907 2be5e1a2 2022-03-16 op +was edited
908 2be5e1a2 2022-03-16 op EOF
909 2be5e1a2 2022-03-16 op
910 2be5e1a2 2022-03-16 op (cd $testroot/wt && got patch patch) > /dev/null
911 2be5e1a2 2022-03-16 op ret=$?
912 2be5e1a2 2022-03-16 op if [ $ret -ne 0 ]; then
913 2be5e1a2 2022-03-16 op test_done $testroot $ret
914 2be5e1a2 2022-03-16 op return 1
915 2be5e1a2 2022-03-16 op fi
916 2be5e1a2 2022-03-16 op
917 2be5e1a2 2022-03-16 op if [ ! -x $testroot/wt/alpha ]; then
918 2be5e1a2 2022-03-16 op echo "alpha is no more executable!" >&2
919 2be5e1a2 2022-03-16 op test_done $testroot 1
920 95d68340 2022-03-16 op return 1
921 95d68340 2022-03-16 op fi
922 95d68340 2022-03-16 op test_done $testroot 0
923 95d68340 2022-03-16 op }
924 95d68340 2022-03-16 op
925 95d68340 2022-03-16 op test_patch_create_dirs() {
926 95d68340 2022-03-16 op local testroot=`test_init patch_create_dirs`
927 95d68340 2022-03-16 op
928 95d68340 2022-03-16 op got checkout $testroot/repo $testroot/wt > /dev/null
929 95d68340 2022-03-16 op ret=$?
930 95d68340 2022-03-16 op if [ $ret -ne 0 ]; then
931 95d68340 2022-03-16 op test_done $testroot $ret
932 95d68340 2022-03-16 op return 1
933 95d68340 2022-03-16 op fi
934 95d68340 2022-03-16 op
935 95d68340 2022-03-16 op cat <<EOF > $testroot/wt/patch
936 95d68340 2022-03-16 op --- /dev/null
937 95d68340 2022-03-16 op +++ iota/kappa/lambda
938 95d68340 2022-03-16 op @@ -0,0 +1 @@
939 95d68340 2022-03-16 op +lambda
940 95d68340 2022-03-16 op EOF
941 95d68340 2022-03-16 op
942 95d68340 2022-03-16 op (cd $testroot/wt && got patch patch) > $testroot/stdout
943 95d68340 2022-03-16 op ret=$?
944 95d68340 2022-03-16 op if [ $ret -ne 0 ]; then
945 95d68340 2022-03-16 op test_done $testroot $ret
946 2be5e1a2 2022-03-16 op return 1
947 2be5e1a2 2022-03-16 op fi
948 95d68340 2022-03-16 op
949 95d68340 2022-03-16 op echo 'A iota/kappa/lambda' >> $testroot/stdout.expected
950 95d68340 2022-03-16 op cmp -s $testroot/stdout.expected $testroot/stdout
951 95d68340 2022-03-16 op ret=$?
952 95d68340 2022-03-16 op if [ $ret -ne 0 ]; then
953 95d68340 2022-03-16 op diff -u $testroot/stdout.expected $testroot/stdout
954 95d68340 2022-03-16 op test_done $testroot $ret
955 95d68340 2022-03-16 op return 1
956 95d68340 2022-03-16 op fi
957 95d68340 2022-03-16 op
958 95d68340 2022-03-16 op if [ ! -f $testroot/wt/iota/kappa/lambda ]; then
959 95d68340 2022-03-16 op echo "file not created!" >&2
960 95d68340 2022-03-16 op test_done $testroot $ret
961 95d68340 2022-03-16 op return 1
962 95d68340 2022-03-16 op fi
963 2be5e1a2 2022-03-16 op test_done $testroot 0
964 dbda770b 2022-03-13 op }
965 dbda770b 2022-03-13 op
966 60aa1fa0 2022-03-17 op test_patch_with_offset() {
967 60aa1fa0 2022-03-17 op local testroot=`test_init patch_with_offset`
968 60aa1fa0 2022-03-17 op
969 60aa1fa0 2022-03-17 op got checkout $testroot/repo $testroot/wt > /dev/null
970 60aa1fa0 2022-03-17 op ret=$?
971 60aa1fa0 2022-03-17 op if [ $ret -ne 0 ]; then
972 60aa1fa0 2022-03-17 op test_done $testroot $ret
973 60aa1fa0 2022-03-17 op return 1
974 60aa1fa0 2022-03-17 op fi
975 60aa1fa0 2022-03-17 op
976 60aa1fa0 2022-03-17 op cat <<EOF > $testroot/wt/patch
977 60aa1fa0 2022-03-17 op --- numbers
978 60aa1fa0 2022-03-17 op +++ numbers
979 60aa1fa0 2022-03-17 op @@ -47,7 +47,7 @@
980 60aa1fa0 2022-03-17 op 47
981 60aa1fa0 2022-03-17 op 48
982 60aa1fa0 2022-03-17 op 49
983 60aa1fa0 2022-03-17 op -50
984 60aa1fa0 2022-03-17 op +midway tru it!
985 60aa1fa0 2022-03-17 op 51
986 60aa1fa0 2022-03-17 op 52
987 60aa1fa0 2022-03-17 op 53
988 60aa1fa0 2022-03-17 op @@ -87,7 +87,7 @@
989 60aa1fa0 2022-03-17 op 87
990 60aa1fa0 2022-03-17 op 88
991 60aa1fa0 2022-03-17 op 89
992 60aa1fa0 2022-03-17 op -90
993 60aa1fa0 2022-03-17 op +almost there!
994 60aa1fa0 2022-03-17 op 91
995 60aa1fa0 2022-03-17 op 92
996 60aa1fa0 2022-03-17 op 93
997 60aa1fa0 2022-03-17 op EOF
998 60aa1fa0 2022-03-17 op
999 60aa1fa0 2022-03-17 op jot 100 > $testroot/wt/numbers
1000 60aa1fa0 2022-03-17 op ed $testroot/wt/numbers <<EOF > /dev/null 2> /dev/null
1001 60aa1fa0 2022-03-17 op 1,10d
1002 60aa1fa0 2022-03-17 op 50r !jot 20
1003 60aa1fa0 2022-03-17 op w
1004 60aa1fa0 2022-03-17 op q
1005 60aa1fa0 2022-03-17 op EOF
1006 60aa1fa0 2022-03-17 op
1007 60aa1fa0 2022-03-17 op (cd $testroot/wt && got add numbers && got commit -m '+numbers') \
1008 60aa1fa0 2022-03-17 op > /dev/null
1009 60aa1fa0 2022-03-17 op ret=$?
1010 60aa1fa0 2022-03-17 op if [ $ret -ne 0 ]; then
1011 60aa1fa0 2022-03-17 op test_done $testroot $ret
1012 60aa1fa0 2022-03-17 op return 1
1013 60aa1fa0 2022-03-17 op fi
1014 60aa1fa0 2022-03-17 op
1015 60aa1fa0 2022-03-17 op (cd $testroot/wt && got patch patch) > $testroot/stdout
1016 60aa1fa0 2022-03-17 op ret=$?
1017 60aa1fa0 2022-03-17 op if [ $ret -ne 0 ]; then
1018 60aa1fa0 2022-03-17 op test_done $testroot/wt $ret
1019 60aa1fa0 2022-03-17 op return 1
1020 60aa1fa0 2022-03-17 op fi
1021 60aa1fa0 2022-03-17 op
1022 60aa1fa0 2022-03-17 op cat <<EOF > $testroot/stdout.expected
1023 60aa1fa0 2022-03-17 op M numbers
1024 60aa1fa0 2022-03-17 op @@ -47,7 +47,7 @@ applied with offset -10
1025 60aa1fa0 2022-03-17 op @@ -87,7 +87,7 @@ applied with offset 10
1026 60aa1fa0 2022-03-17 op EOF
1027 60aa1fa0 2022-03-17 op
1028 60aa1fa0 2022-03-17 op cmp -s $testroot/stdout.expected $testroot/stdout
1029 60aa1fa0 2022-03-17 op ret=$?
1030 60aa1fa0 2022-03-17 op if [ $ret -ne 0 ]; then
1031 60aa1fa0 2022-03-17 op diff -u $testroot/stdout.expected $testroot/stdout
1032 60aa1fa0 2022-03-17 op fi
1033 60aa1fa0 2022-03-17 op test_done $testroot $ret
1034 60aa1fa0 2022-03-17 op }
1035 60aa1fa0 2022-03-17 op
1036 e9ce266e 2022-03-07 op test_parseargs "$@"
1037 e9ce266e 2022-03-07 op run_test test_patch_simple_add_file
1038 e9ce266e 2022-03-07 op run_test test_patch_simple_rm_file
1039 e9ce266e 2022-03-07 op run_test test_patch_simple_edit_file
1040 e9ce266e 2022-03-07 op run_test test_patch_prepend_line
1041 e9ce266e 2022-03-07 op run_test test_patch_replace_line
1042 e9ce266e 2022-03-07 op run_test test_patch_multiple_hunks
1043 e9ce266e 2022-03-07 op run_test test_patch_multiple_files
1044 e9ce266e 2022-03-07 op run_test test_patch_dont_apply
1045 e9ce266e 2022-03-07 op run_test test_patch_malformed
1046 e9ce266e 2022-03-07 op run_test test_patch_no_patch
1047 e9ce266e 2022-03-07 op run_test test_patch_equals_for_context
1048 6e96b326 2022-03-12 op run_test test_patch_rename
1049 dbda770b 2022-03-13 op run_test test_patch_illegal_status
1050 899fcfdf 2022-03-13 op run_test test_patch_nop
1051 2be5e1a2 2022-03-16 op run_test test_patch_preserve_perm
1052 95d68340 2022-03-16 op run_test test_patch_create_dirs
1053 60aa1fa0 2022-03-17 op run_test test_patch_with_offset