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 3313bcd8 2022-04-19 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 f1d6cebb 2022-04-23 op local testroot=`test_init patch_equals_for_context`
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 4379a9aa 2022-05-02 op diff --git a/beta b/iota
651 4379a9aa 2022-05-02 op similarity index 100%
652 4379a9aa 2022-05-02 op rename from beta
653 4379a9aa 2022-05-02 op rename to iota
654 7a30b5cb 2022-03-20 op diff --git a/alpha b/eta
655 7a30b5cb 2022-03-20 op --- a/alpha
656 7a30b5cb 2022-03-20 op +++ b/eta
657 4379a9aa 2022-05-02 op @@ -1 +1 @@
658 4379a9aa 2022-05-02 op -alpha
659 4379a9aa 2022-05-02 op +eta
660 6e96b326 2022-03-12 op EOF
661 e9ce266e 2022-03-07 op
662 4379a9aa 2022-05-02 op echo 'D beta' > $testroot/stdout.expected
663 4379a9aa 2022-05-02 op echo 'A iota' >> $testroot/stdout.expected
664 4379a9aa 2022-05-02 op echo 'D alpha' >> $testroot/stdout.expected
665 4379a9aa 2022-05-02 op echo 'A eta' >> $testroot/stdout.expected
666 6e96b326 2022-03-12 op
667 6e96b326 2022-03-12 op (cd $testroot/wt && got patch patch) > $testroot/stdout
668 6e96b326 2022-03-12 op ret=$?
669 6e96b326 2022-03-12 op if [ $ret -ne 0 ]; then
670 6e96b326 2022-03-12 op test_done $testroot $ret
671 6e96b326 2022-03-12 op return 1
672 6e96b326 2022-03-12 op fi
673 6e96b326 2022-03-12 op
674 6e96b326 2022-03-12 op cmp -s $testroot/stdout.expected $testroot/stdout
675 6e96b326 2022-03-12 op ret=$?
676 6e96b326 2022-03-12 op if [ $ret -ne 0 ]; then
677 6e96b326 2022-03-12 op diff -u $testroot/stdout.expected $testroot/stdout
678 6e96b326 2022-03-12 op test_done $testroot $ret
679 6e96b326 2022-03-12 op return 1
680 6e96b326 2022-03-12 op fi
681 6e96b326 2022-03-12 op
682 4379a9aa 2022-05-02 op if [ -f $testroot/wt/alpha -o -f $testroot/wt/beta ]; then
683 4379a9aa 2022-05-02 op echo "alpha or beta were not removed" >&2
684 6e96b326 2022-03-12 op test_done $testroot 1
685 6e96b326 2022-03-12 op return 1
686 6e96b326 2022-03-12 op fi
687 4379a9aa 2022-05-02 op if [ ! -f $testroot/wt/iota -o ! -f $testroot/wt/eta ]; then
688 4379a9aa 2022-05-02 op echo "iota or eta were not created" >&2
689 6e96b326 2022-03-12 op test_done $testroot 1
690 6e96b326 2022-03-12 op return 1
691 6e96b326 2022-03-12 op fi
692 6e96b326 2022-03-12 op
693 4379a9aa 2022-05-02 op echo beta > $testroot/wt/iota.expected
694 4379a9aa 2022-05-02 op cmp -s $testroot/wt/iota.expected $testroot/wt/iota
695 6e96b326 2022-03-12 op ret=$?
696 6e96b326 2022-03-12 op if [ $ret -ne 0 ]; then
697 4379a9aa 2022-05-02 op diff -u $testroot/wt/iota.expected $testroot/wt/iota
698 6e96b326 2022-03-12 op test_done $testroot $ret
699 6e96b326 2022-03-12 op return 1
700 6e96b326 2022-03-12 op fi
701 6e96b326 2022-03-12 op
702 4379a9aa 2022-05-02 op echo eta > $testroot/wt/eta.expected
703 4379a9aa 2022-05-02 op cmp -s $testroot/wt/eta.expected $testroot/wt/eta
704 6e96b326 2022-03-12 op ret=$?
705 6e96b326 2022-03-12 op if [ $ret -ne 0 ]; then
706 4379a9aa 2022-05-02 op diff -u $testroot/wt/eta.expected $testroot/wt/eta
707 6e96b326 2022-03-12 op test_done $testroot $ret
708 6e96b326 2022-03-12 op return 1
709 6e96b326 2022-03-12 op fi
710 6e96b326 2022-03-12 op
711 6e96b326 2022-03-12 op test_done $testroot $ret
712 6e96b326 2022-03-12 op }
713 dbda770b 2022-03-13 op
714 dbda770b 2022-03-13 op test_patch_illegal_status() {
715 dbda770b 2022-03-13 op local testroot=`test_init patch_illegal_status`
716 dbda770b 2022-03-13 op
717 dbda770b 2022-03-13 op got checkout $testroot/repo $testroot/wt > /dev/null
718 dbda770b 2022-03-13 op ret=$?
719 dbda770b 2022-03-13 op if [ $ret -ne 0 ]; then
720 dbda770b 2022-03-13 op test_done $testroot $ret
721 dbda770b 2022-03-13 op return 1
722 dbda770b 2022-03-13 op fi
723 dbda770b 2022-03-13 op
724 60aa1fa0 2022-03-17 op # try to patch an obstructed file, add a versioned one, edit a
725 60aa1fa0 2022-03-17 op # non existent file and an unversioned one, and remove a
726 60aa1fa0 2022-03-17 op # non existent file.
727 dbda770b 2022-03-13 op cat <<EOF > $testroot/wt/patch
728 60aa1fa0 2022-03-17 op --- alpha
729 60aa1fa0 2022-03-17 op +++ alpha
730 60aa1fa0 2022-03-17 op @@ -1 +1,2 @@
731 60aa1fa0 2022-03-17 op alpha
732 60aa1fa0 2022-03-17 op +was edited
733 60aa1fa0 2022-03-17 op --- /dev/null
734 60aa1fa0 2022-03-17 op +++ beta
735 60aa1fa0 2022-03-17 op @@ -0,0 +1 @@
736 60aa1fa0 2022-03-17 op +beta
737 dbda770b 2022-03-13 op --- iota
738 dbda770b 2022-03-13 op +++ iota
739 dbda770b 2022-03-13 op @@ -1 +1 @@
740 60aa1fa0 2022-03-17 op -iota
741 60aa1fa0 2022-03-17 op +IOTA
742 60aa1fa0 2022-03-17 op --- kappa
743 60aa1fa0 2022-03-17 op +++ kappa
744 60aa1fa0 2022-03-17 op @@ -1 +1 @@
745 60aa1fa0 2022-03-17 op -kappa
746 60aa1fa0 2022-03-17 op +KAPPA
747 60aa1fa0 2022-03-17 op --- lambda
748 60aa1fa0 2022-03-17 op +++ /dev/null
749 60aa1fa0 2022-03-17 op @@ -1 +0,0 @@
750 60aa1fa0 2022-03-17 op -lambda
751 dbda770b 2022-03-13 op EOF
752 6e96b326 2022-03-12 op
753 60aa1fa0 2022-03-17 op echo kappa > $testroot/wt/kappa
754 dbda770b 2022-03-13 op rm $testroot/wt/alpha
755 dbda770b 2022-03-13 op mkdir $testroot/wt/alpha
756 dbda770b 2022-03-13 op
757 60aa1fa0 2022-03-17 op (cd $testroot/wt && got patch patch) > $testroot/stdout \
758 dbda770b 2022-03-13 op 2> $testroot/stderr
759 dbda770b 2022-03-13 op ret=$?
760 dbda770b 2022-03-13 op if [ $ret -eq 0 ]; then
761 dbda770b 2022-03-13 op echo "edited a missing file" >&2
762 dbda770b 2022-03-13 op test_done $testroot $ret
763 dbda770b 2022-03-13 op return 1
764 dbda770b 2022-03-13 op fi
765 dbda770b 2022-03-13 op
766 60aa1fa0 2022-03-17 op cat <<EOF > $testroot/stdout.expected
767 60aa1fa0 2022-03-17 op # alpha
768 60aa1fa0 2022-03-17 op # beta
769 60aa1fa0 2022-03-17 op # iota
770 60aa1fa0 2022-03-17 op # kappa
771 60aa1fa0 2022-03-17 op # lambda
772 60aa1fa0 2022-03-17 op EOF
773 dbda770b 2022-03-13 op
774 60aa1fa0 2022-03-17 op cat <<EOF > $testroot/stderr.expected
775 60aa1fa0 2022-03-17 op got: alpha: file has unexpected status
776 60aa1fa0 2022-03-17 op got: beta: file has unexpected status
777 60aa1fa0 2022-03-17 op got: iota: No such file or directory
778 60aa1fa0 2022-03-17 op got: kappa: file has unexpected status
779 60aa1fa0 2022-03-17 op got: lambda: No such file or directory
780 60aa1fa0 2022-03-17 op got: patch failed to apply
781 dbda770b 2022-03-13 op EOF
782 dbda770b 2022-03-13 op
783 60aa1fa0 2022-03-17 op cmp -s $testroot/stdout.expected $testroot/stdout
784 dbda770b 2022-03-13 op ret=$?
785 60aa1fa0 2022-03-17 op if [ $ret -ne 0 ]; then
786 60aa1fa0 2022-03-17 op diff -u $testroot/stdout.expected $testroot/stdout
787 dbda770b 2022-03-13 op test_done $testroot $ret
788 dbda770b 2022-03-13 op return 1
789 dbda770b 2022-03-13 op fi
790 dbda770b 2022-03-13 op
791 dbda770b 2022-03-13 op cmp -s $testroot/stderr.expected $testroot/stderr
792 dbda770b 2022-03-13 op ret=$?
793 60aa1fa0 2022-03-17 op if [ $ret -ne 0 ]; then
794 dbda770b 2022-03-13 op diff -u $testroot/stderr.expected $testroot/stderr
795 78f5ac24 2022-03-19 op test_done $testroot $ret
796 78f5ac24 2022-03-19 op return 1
797 dbda770b 2022-03-13 op fi
798 78f5ac24 2022-03-19 op
799 78f5ac24 2022-03-19 op (cd $testroot/wt && got status) > $testroot/stdout
800 78f5ac24 2022-03-19 op cat <<EOF > $testroot/stdout.expected
801 78f5ac24 2022-03-19 op ~ alpha
802 78f5ac24 2022-03-19 op ? kappa
803 78f5ac24 2022-03-19 op ? patch
804 78f5ac24 2022-03-19 op EOF
805 78f5ac24 2022-03-19 op
806 78f5ac24 2022-03-19 op cmp -s $testroot/stdout.expected $testroot/stdout
807 78f5ac24 2022-03-19 op ret=$?
808 78f5ac24 2022-03-19 op if [ $ret -ne 0 ]; then
809 78f5ac24 2022-03-19 op diff -u $testroot/stdout.expected $testroot/stdout
810 78f5ac24 2022-03-19 op fi
811 899fcfdf 2022-03-13 op test_done $testroot $ret
812 899fcfdf 2022-03-13 op }
813 899fcfdf 2022-03-13 op
814 899fcfdf 2022-03-13 op test_patch_nop() {
815 899fcfdf 2022-03-13 op local testroot=`test_init patch_nop`
816 899fcfdf 2022-03-13 op
817 899fcfdf 2022-03-13 op got checkout $testroot/repo $testroot/wt > /dev/null
818 899fcfdf 2022-03-13 op ret=$?
819 899fcfdf 2022-03-13 op if [ $ret -ne 0 ]; then
820 899fcfdf 2022-03-13 op test_done $testroot $ret
821 899fcfdf 2022-03-13 op return 1
822 899fcfdf 2022-03-13 op fi
823 899fcfdf 2022-03-13 op
824 899fcfdf 2022-03-13 op cat <<EOF > $testroot/wt/patch
825 899fcfdf 2022-03-13 op --- alpha
826 899fcfdf 2022-03-13 op +++ alpha
827 899fcfdf 2022-03-13 op @@ -1 +1 @@
828 899fcfdf 2022-03-13 op -alpha
829 899fcfdf 2022-03-13 op +cafe alpha
830 899fcfdf 2022-03-13 op --- beta
831 899fcfdf 2022-03-13 op +++ /dev/null
832 899fcfdf 2022-03-13 op @@ -1 +0,0 @@
833 899fcfdf 2022-03-13 op -beta
834 7a30b5cb 2022-03-20 op diff --git a/gamma/delta b/gamma/delta.new
835 899fcfdf 2022-03-13 op --- gamma/delta
836 899fcfdf 2022-03-13 op +++ gamma/delta.new
837 899fcfdf 2022-03-13 op @@ -1 +1 @@
838 899fcfdf 2022-03-13 op -delta
839 899fcfdf 2022-03-13 op +delta updated and renamed!
840 899fcfdf 2022-03-13 op EOF
841 899fcfdf 2022-03-13 op
842 899fcfdf 2022-03-13 op (cd $testroot/wt && got patch -n patch)
843 899fcfdf 2022-03-13 op ret=$?
844 899fcfdf 2022-03-13 op if [ $ret -ne 0 ]; then
845 899fcfdf 2022-03-13 op test_done $testroot $ret
846 899fcfdf 2022-03-13 op return 1
847 dbda770b 2022-03-13 op fi
848 899fcfdf 2022-03-13 op
849 899fcfdf 2022-03-13 op # remove the patch to avoid the ? entry
850 899fcfdf 2022-03-13 op rm $testroot/wt/patch
851 899fcfdf 2022-03-13 op
852 899fcfdf 2022-03-13 op (cd $testroot/wt && got status) > $testroot/stdout
853 899fcfdf 2022-03-13 op ret=$?
854 899fcfdf 2022-03-13 op if [ $ret -ne 0 ]; then
855 899fcfdf 2022-03-13 op test_done $testroot $ret
856 899fcfdf 2022-03-13 op return 1
857 899fcfdf 2022-03-13 op fi
858 899fcfdf 2022-03-13 op
859 899fcfdf 2022-03-13 op echo -n > $testroot/stdout.expected
860 899fcfdf 2022-03-13 op cmp -s $testroot/stdout.expected $testroot/stdout
861 899fcfdf 2022-03-13 op ret=$?
862 899fcfdf 2022-03-13 op if [ $ret -ne 0 ]; then
863 899fcfdf 2022-03-13 op diff -u $testroot/stdout.expected $testroot/stdout
864 899fcfdf 2022-03-13 op fi
865 dbda770b 2022-03-13 op test_done $testroot $ret
866 2be5e1a2 2022-03-16 op }
867 2be5e1a2 2022-03-16 op
868 2be5e1a2 2022-03-16 op test_patch_preserve_perm() {
869 2be5e1a2 2022-03-16 op local testroot=`test_init patch_preserve_perm`
870 2be5e1a2 2022-03-16 op
871 2be5e1a2 2022-03-16 op got checkout $testroot/repo $testroot/wt > /dev/null
872 2be5e1a2 2022-03-16 op ret=$?
873 2be5e1a2 2022-03-16 op if [ $ret -ne 0 ]; then
874 2be5e1a2 2022-03-16 op test_done $testroot $ret
875 2be5e1a2 2022-03-16 op return 1
876 2be5e1a2 2022-03-16 op fi
877 2be5e1a2 2022-03-16 op
878 2be5e1a2 2022-03-16 op chmod +x $testroot/wt/alpha
879 2be5e1a2 2022-03-16 op (cd $testroot/wt && got commit -m 'alpha executable') > /dev/null
880 2be5e1a2 2022-03-16 op ret=$?
881 2be5e1a2 2022-03-16 op if [ $ret -ne 0 ]; then
882 2be5e1a2 2022-03-16 op test_done $testroot $ret
883 2be5e1a2 2022-03-16 op return 1
884 2be5e1a2 2022-03-16 op fi
885 2be5e1a2 2022-03-16 op
886 2be5e1a2 2022-03-16 op cat <<EOF > $testroot/wt/patch
887 2be5e1a2 2022-03-16 op --- alpha
888 2be5e1a2 2022-03-16 op +++ alpha
889 2be5e1a2 2022-03-16 op @@ -1 +1,2 @@
890 2be5e1a2 2022-03-16 op alpha
891 2be5e1a2 2022-03-16 op +was edited
892 2be5e1a2 2022-03-16 op EOF
893 2be5e1a2 2022-03-16 op
894 2be5e1a2 2022-03-16 op (cd $testroot/wt && got patch patch) > /dev/null
895 2be5e1a2 2022-03-16 op ret=$?
896 2be5e1a2 2022-03-16 op if [ $ret -ne 0 ]; then
897 2be5e1a2 2022-03-16 op test_done $testroot $ret
898 2be5e1a2 2022-03-16 op return 1
899 2be5e1a2 2022-03-16 op fi
900 2be5e1a2 2022-03-16 op
901 2be5e1a2 2022-03-16 op if [ ! -x $testroot/wt/alpha ]; then
902 2be5e1a2 2022-03-16 op echo "alpha is no more executable!" >&2
903 2be5e1a2 2022-03-16 op test_done $testroot 1
904 95d68340 2022-03-16 op return 1
905 95d68340 2022-03-16 op fi
906 95d68340 2022-03-16 op test_done $testroot 0
907 95d68340 2022-03-16 op }
908 95d68340 2022-03-16 op
909 95d68340 2022-03-16 op test_patch_create_dirs() {
910 95d68340 2022-03-16 op local testroot=`test_init patch_create_dirs`
911 95d68340 2022-03-16 op
912 95d68340 2022-03-16 op got checkout $testroot/repo $testroot/wt > /dev/null
913 95d68340 2022-03-16 op ret=$?
914 95d68340 2022-03-16 op if [ $ret -ne 0 ]; then
915 95d68340 2022-03-16 op test_done $testroot $ret
916 95d68340 2022-03-16 op return 1
917 95d68340 2022-03-16 op fi
918 95d68340 2022-03-16 op
919 95d68340 2022-03-16 op cat <<EOF > $testroot/wt/patch
920 95d68340 2022-03-16 op --- /dev/null
921 95d68340 2022-03-16 op +++ iota/kappa/lambda
922 95d68340 2022-03-16 op @@ -0,0 +1 @@
923 95d68340 2022-03-16 op +lambda
924 95d68340 2022-03-16 op EOF
925 95d68340 2022-03-16 op
926 95d68340 2022-03-16 op (cd $testroot/wt && got patch patch) > $testroot/stdout
927 95d68340 2022-03-16 op ret=$?
928 95d68340 2022-03-16 op if [ $ret -ne 0 ]; then
929 95d68340 2022-03-16 op test_done $testroot $ret
930 2be5e1a2 2022-03-16 op return 1
931 2be5e1a2 2022-03-16 op fi
932 95d68340 2022-03-16 op
933 95d68340 2022-03-16 op echo 'A iota/kappa/lambda' >> $testroot/stdout.expected
934 95d68340 2022-03-16 op cmp -s $testroot/stdout.expected $testroot/stdout
935 95d68340 2022-03-16 op ret=$?
936 95d68340 2022-03-16 op if [ $ret -ne 0 ]; then
937 95d68340 2022-03-16 op diff -u $testroot/stdout.expected $testroot/stdout
938 95d68340 2022-03-16 op test_done $testroot $ret
939 95d68340 2022-03-16 op return 1
940 95d68340 2022-03-16 op fi
941 95d68340 2022-03-16 op
942 95d68340 2022-03-16 op if [ ! -f $testroot/wt/iota/kappa/lambda ]; then
943 95d68340 2022-03-16 op echo "file not created!" >&2
944 95d68340 2022-03-16 op test_done $testroot $ret
945 95d68340 2022-03-16 op return 1
946 95d68340 2022-03-16 op fi
947 2be5e1a2 2022-03-16 op test_done $testroot 0
948 dbda770b 2022-03-13 op }
949 dbda770b 2022-03-13 op
950 60aa1fa0 2022-03-17 op test_patch_with_offset() {
951 60aa1fa0 2022-03-17 op local testroot=`test_init patch_with_offset`
952 60aa1fa0 2022-03-17 op
953 60aa1fa0 2022-03-17 op got checkout $testroot/repo $testroot/wt > /dev/null
954 60aa1fa0 2022-03-17 op ret=$?
955 60aa1fa0 2022-03-17 op if [ $ret -ne 0 ]; then
956 60aa1fa0 2022-03-17 op test_done $testroot $ret
957 60aa1fa0 2022-03-17 op return 1
958 60aa1fa0 2022-03-17 op fi
959 60aa1fa0 2022-03-17 op
960 60aa1fa0 2022-03-17 op cat <<EOF > $testroot/wt/patch
961 60aa1fa0 2022-03-17 op --- numbers
962 60aa1fa0 2022-03-17 op +++ numbers
963 60aa1fa0 2022-03-17 op @@ -47,7 +47,7 @@
964 60aa1fa0 2022-03-17 op 47
965 60aa1fa0 2022-03-17 op 48
966 60aa1fa0 2022-03-17 op 49
967 60aa1fa0 2022-03-17 op -50
968 60aa1fa0 2022-03-17 op +midway tru it!
969 60aa1fa0 2022-03-17 op 51
970 60aa1fa0 2022-03-17 op 52
971 60aa1fa0 2022-03-17 op 53
972 60aa1fa0 2022-03-17 op @@ -87,7 +87,7 @@
973 60aa1fa0 2022-03-17 op 87
974 60aa1fa0 2022-03-17 op 88
975 60aa1fa0 2022-03-17 op 89
976 60aa1fa0 2022-03-17 op -90
977 60aa1fa0 2022-03-17 op +almost there!
978 60aa1fa0 2022-03-17 op 91
979 60aa1fa0 2022-03-17 op 92
980 60aa1fa0 2022-03-17 op 93
981 60aa1fa0 2022-03-17 op EOF
982 60aa1fa0 2022-03-17 op
983 60aa1fa0 2022-03-17 op jot 100 > $testroot/wt/numbers
984 60aa1fa0 2022-03-17 op ed $testroot/wt/numbers <<EOF > /dev/null 2> /dev/null
985 60aa1fa0 2022-03-17 op 1,10d
986 60aa1fa0 2022-03-17 op 50r !jot 20
987 60aa1fa0 2022-03-17 op w
988 60aa1fa0 2022-03-17 op q
989 60aa1fa0 2022-03-17 op EOF
990 60aa1fa0 2022-03-17 op
991 60aa1fa0 2022-03-17 op (cd $testroot/wt && got add numbers && got commit -m '+numbers') \
992 60aa1fa0 2022-03-17 op > /dev/null
993 60aa1fa0 2022-03-17 op ret=$?
994 60aa1fa0 2022-03-17 op if [ $ret -ne 0 ]; then
995 60aa1fa0 2022-03-17 op test_done $testroot $ret
996 60aa1fa0 2022-03-17 op return 1
997 60aa1fa0 2022-03-17 op fi
998 60aa1fa0 2022-03-17 op
999 60aa1fa0 2022-03-17 op (cd $testroot/wt && got patch patch) > $testroot/stdout
1000 60aa1fa0 2022-03-17 op ret=$?
1001 60aa1fa0 2022-03-17 op if [ $ret -ne 0 ]; then
1002 60aa1fa0 2022-03-17 op test_done $testroot/wt $ret
1003 60aa1fa0 2022-03-17 op return 1
1004 60aa1fa0 2022-03-17 op fi
1005 60aa1fa0 2022-03-17 op
1006 60aa1fa0 2022-03-17 op cat <<EOF > $testroot/stdout.expected
1007 60aa1fa0 2022-03-17 op M numbers
1008 60aa1fa0 2022-03-17 op @@ -47,7 +47,7 @@ applied with offset -10
1009 60aa1fa0 2022-03-17 op @@ -87,7 +87,7 @@ applied with offset 10
1010 7a30b5cb 2022-03-20 op EOF
1011 7a30b5cb 2022-03-20 op
1012 7a30b5cb 2022-03-20 op cmp -s $testroot/stdout.expected $testroot/stdout
1013 7a30b5cb 2022-03-20 op ret=$?
1014 7a30b5cb 2022-03-20 op if [ $ret -ne 0 ]; then
1015 7a30b5cb 2022-03-20 op diff -u $testroot/stdout.expected $testroot/stdout
1016 7a30b5cb 2022-03-20 op fi
1017 7a30b5cb 2022-03-20 op test_done $testroot $ret
1018 7a30b5cb 2022-03-20 op }
1019 7a30b5cb 2022-03-20 op
1020 7a30b5cb 2022-03-20 op test_patch_prefer_new_path() {
1021 7a30b5cb 2022-03-20 op local testroot=`test_init patch_orig`
1022 7a30b5cb 2022-03-20 op
1023 7a30b5cb 2022-03-20 op got checkout $testroot/repo $testroot/wt > /dev/null
1024 7a30b5cb 2022-03-20 op ret=$?
1025 7a30b5cb 2022-03-20 op if [ $ret -ne 0 ]; then
1026 7a30b5cb 2022-03-20 op test_done $testroot $ret
1027 7a30b5cb 2022-03-20 op return 1
1028 7a30b5cb 2022-03-20 op fi
1029 7a30b5cb 2022-03-20 op
1030 7a30b5cb 2022-03-20 op cat <<EOF > $testroot/wt/patch
1031 7a30b5cb 2022-03-20 op --- alpha.orig
1032 7a30b5cb 2022-03-20 op +++ alpha
1033 7a30b5cb 2022-03-20 op @@ -1 +1,2 @@
1034 7a30b5cb 2022-03-20 op alpha
1035 7a30b5cb 2022-03-20 op +was edited
1036 60aa1fa0 2022-03-17 op EOF
1037 60aa1fa0 2022-03-17 op
1038 7a30b5cb 2022-03-20 op (cd $testroot/wt && got patch patch) > $testroot/stdout
1039 7a30b5cb 2022-03-20 op ret=$?
1040 7a30b5cb 2022-03-20 op if [ $ret -ne 0 ]; then
1041 7a30b5cb 2022-03-20 op test_done $testroot $ret
1042 7a30b5cb 2022-03-20 op return 1
1043 7a30b5cb 2022-03-20 op fi
1044 7a30b5cb 2022-03-20 op
1045 3313bcd8 2022-04-19 op echo 'M alpha' > $testroot/stdout.expected
1046 60aa1fa0 2022-03-17 op cmp -s $testroot/stdout.expected $testroot/stdout
1047 60aa1fa0 2022-03-17 op ret=$?
1048 60aa1fa0 2022-03-17 op if [ $ret -ne 0 ]; then
1049 60aa1fa0 2022-03-17 op diff -u $testroot/stdout.expected $testroot/stdout
1050 60aa1fa0 2022-03-17 op fi
1051 60aa1fa0 2022-03-17 op test_done $testroot $ret
1052 60aa1fa0 2022-03-17 op }
1053 60aa1fa0 2022-03-17 op
1054 b3c57ab2 2022-03-22 op test_patch_no_newline() {
1055 b3c57ab2 2022-03-22 op local testroot=`test_init patch_no_newline`
1056 b3c57ab2 2022-03-22 op
1057 b3c57ab2 2022-03-22 op got checkout $testroot/repo $testroot/wt > /dev/null
1058 b3c57ab2 2022-03-22 op ret=$?
1059 b3c57ab2 2022-03-22 op if [ $ret -ne 0 ]; then
1060 b3c57ab2 2022-03-22 op test_done $testroot $ret
1061 b3c57ab2 2022-03-22 op return 1
1062 b3c57ab2 2022-03-22 op fi
1063 b3c57ab2 2022-03-22 op
1064 b3c57ab2 2022-03-22 op cat <<EOF > $testroot/wt/patch
1065 b3c57ab2 2022-03-22 op --- /dev/null
1066 b3c57ab2 2022-03-22 op +++ eta
1067 b3c57ab2 2022-03-22 op @@ -0,0 +1 @@
1068 b3c57ab2 2022-03-22 op +eta
1069 b3c57ab2 2022-03-22 op \ No newline at end of file
1070 b3c57ab2 2022-03-22 op EOF
1071 b3c57ab2 2022-03-22 op
1072 b3c57ab2 2022-03-22 op (cd $testroot/wt && got patch patch) > $testroot/stdout
1073 b3c57ab2 2022-03-22 op ret=$?
1074 b3c57ab2 2022-03-22 op if [ $ret -ne 0 ]; then
1075 b3c57ab2 2022-03-22 op test_done $testroot $ret
1076 b3c57ab2 2022-03-22 op return 1
1077 b3c57ab2 2022-03-22 op fi
1078 b3c57ab2 2022-03-22 op
1079 b3c57ab2 2022-03-22 op echo "A eta" > $testroot/stdout.expected
1080 b3c57ab2 2022-03-22 op cmp -s $testroot/stdout.expected $testroot/stdout
1081 b3c57ab2 2022-03-22 op ret=$?
1082 b3c57ab2 2022-03-22 op if [ $ret -ne 0 ]; then
1083 b3c57ab2 2022-03-22 op diff -u $testroot/stdout.expected $testroot/stdout
1084 b3c57ab2 2022-03-22 op test_done $testroot $ret
1085 b3c57ab2 2022-03-22 op return 1
1086 b3c57ab2 2022-03-22 op fi
1087 b3c57ab2 2022-03-22 op
1088 b3c57ab2 2022-03-22 op echo -n eta > $testroot/wt/eta.expected
1089 b3c57ab2 2022-03-22 op cmp -s $testroot/wt/eta.expected $testroot/wt/eta
1090 b3c57ab2 2022-03-22 op ret=$?
1091 b3c57ab2 2022-03-22 op if [ $ret -ne 0 ]; then
1092 b3c57ab2 2022-03-22 op diff -u $testroot/wt/eta.expected $testroot/wt/eta
1093 b3c57ab2 2022-03-22 op test_done $testroot $ret
1094 b3c57ab2 2022-03-22 op return 1
1095 b3c57ab2 2022-03-22 op fi
1096 b3c57ab2 2022-03-22 op
1097 b3c57ab2 2022-03-22 op (cd $testroot/wt && got commit -m 'add eta') > /dev/null
1098 b3c57ab2 2022-03-22 op ret=$?
1099 b3c57ab2 2022-03-22 op if [ $ret -ne 0 ]; then
1100 b3c57ab2 2022-03-22 op test_done $testroot $ret
1101 b3c57ab2 2022-03-22 op return 1
1102 b3c57ab2 2022-03-22 op fi
1103 b3c57ab2 2022-03-22 op
1104 b3c57ab2 2022-03-22 op cat <<EOF > $testroot/wt/patch
1105 b3c57ab2 2022-03-22 op --- eta
1106 b3c57ab2 2022-03-22 op +++ eta
1107 b3c57ab2 2022-03-22 op @@ -1 +1 @@
1108 b3c57ab2 2022-03-22 op -eta
1109 b3c57ab2 2022-03-22 op \ No newline at end of file
1110 b3c57ab2 2022-03-22 op +ETA
1111 b3c57ab2 2022-03-22 op \ No newline at end of file
1112 b3c57ab2 2022-03-22 op EOF
1113 b3c57ab2 2022-03-22 op
1114 b3c57ab2 2022-03-22 op (cd $testroot/wt && got patch patch) > $testroot/stdout
1115 b3c57ab2 2022-03-22 op ret=$?
1116 b3c57ab2 2022-03-22 op if [ $ret -ne 0 ]; then
1117 b3c57ab2 2022-03-22 op test_done $testroot $ret
1118 b3c57ab2 2022-03-22 op return 1
1119 b3c57ab2 2022-03-22 op fi
1120 b3c57ab2 2022-03-22 op
1121 b3c57ab2 2022-03-22 op echo "M eta" > $testroot/stdout.expected
1122 b3c57ab2 2022-03-22 op cmp -s $testroot/stdout.expected $testroot/stdout
1123 b3c57ab2 2022-03-22 op ret=$?
1124 b3c57ab2 2022-03-22 op if [ $ret -ne 0 ]; then
1125 b3c57ab2 2022-03-22 op diff -u $testroot/stdout.expected $testroot/stdout
1126 b3c57ab2 2022-03-22 op test_done $testroot $ret
1127 b3c57ab2 2022-03-22 op return 1
1128 b3c57ab2 2022-03-22 op fi
1129 b3c57ab2 2022-03-22 op
1130 b3c57ab2 2022-03-22 op echo -n ETA > $testroot/wt/eta.expected
1131 b3c57ab2 2022-03-22 op cmp -s $testroot/wt/eta.expected $testroot/wt/eta
1132 b3c57ab2 2022-03-22 op ret=$?
1133 b3c57ab2 2022-03-22 op if [ $ret -ne 0 ]; then
1134 b3c57ab2 2022-03-22 op diff -u $testroot/wt/eta.expected $testroot/wt/eta
1135 b3c57ab2 2022-03-22 op test_done $testroot $ret
1136 b3c57ab2 2022-03-22 op return 1
1137 b3c57ab2 2022-03-22 op fi
1138 b3c57ab2 2022-03-22 op
1139 b3c57ab2 2022-03-22 op (cd $testroot/wt && got commit -m 'edit eta') > /dev/null
1140 b3c57ab2 2022-03-22 op ret=$?
1141 b3c57ab2 2022-03-22 op if [ $ret -ne 0 ]; then
1142 b3c57ab2 2022-03-22 op test_done $testroot $ret
1143 b3c57ab2 2022-03-22 op return 1
1144 b3c57ab2 2022-03-22 op fi
1145 b3c57ab2 2022-03-22 op
1146 b3c57ab2 2022-03-22 op cat <<EOF > $testroot/wt/patch
1147 b3c57ab2 2022-03-22 op --- eta
1148 b3c57ab2 2022-03-22 op +++ eta
1149 b3c57ab2 2022-03-22 op @@ -1 +1 @@
1150 b3c57ab2 2022-03-22 op -ETA
1151 b3c57ab2 2022-03-22 op \ No newline at end of file
1152 b3c57ab2 2022-03-22 op +eta
1153 b3c57ab2 2022-03-22 op EOF
1154 b3c57ab2 2022-03-22 op
1155 b3c57ab2 2022-03-22 op (cd $testroot/wt && got patch patch) > $testroot/stdout
1156 b3c57ab2 2022-03-22 op ret=$?
1157 b3c57ab2 2022-03-22 op if [ $ret -ne 0 ]; then
1158 b3c57ab2 2022-03-22 op test_done $testroot $ret
1159 b3c57ab2 2022-03-22 op return 1
1160 b3c57ab2 2022-03-22 op fi
1161 b3c57ab2 2022-03-22 op
1162 b3c57ab2 2022-03-22 op echo "M eta" > $testroot/stdout.expected
1163 b3c57ab2 2022-03-22 op cmp -s $testroot/stdout.expected $testroot/stdout
1164 b3c57ab2 2022-03-22 op ret=$?
1165 b3c57ab2 2022-03-22 op if [ $ret -ne 0 ]; then
1166 b3c57ab2 2022-03-22 op diff -u $testroot/stdout.expected $testroot/stdout
1167 b3c57ab2 2022-03-22 op test_done $testroot $ret
1168 b3c57ab2 2022-03-22 op return 1
1169 b3c57ab2 2022-03-22 op fi
1170 b3c57ab2 2022-03-22 op
1171 b3c57ab2 2022-03-22 op echo eta > $testroot/wt/eta.expected
1172 b3c57ab2 2022-03-22 op cmp -s $testroot/wt/eta.expected $testroot/wt/eta
1173 b3c57ab2 2022-03-22 op ret=$?
1174 b3c57ab2 2022-03-22 op if [ $ret -ne 0 ]; then
1175 b3c57ab2 2022-03-22 op diff -u $testroot/wt/eta.expected $testroot/wt/eta
1176 b3c57ab2 2022-03-22 op fi
1177 b3c57ab2 2022-03-22 op test_done $testroot $ret
1178 b3c57ab2 2022-03-22 op }
1179 b3c57ab2 2022-03-22 op
1180 9d6cabd5 2022-04-07 op test_patch_strip() {
1181 9d6cabd5 2022-04-07 op local testroot=`test_init patch_strip`
1182 9d6cabd5 2022-04-07 op
1183 9d6cabd5 2022-04-07 op got checkout $testroot/repo $testroot/wt > /dev/null
1184 9d6cabd5 2022-04-07 op ret=$?
1185 9d6cabd5 2022-04-07 op if [ $ret -ne 0 ]; then
1186 9d6cabd5 2022-04-07 op test_done $testroot $ret
1187 9d6cabd5 2022-04-07 op return 1
1188 9d6cabd5 2022-04-07 op fi
1189 9d6cabd5 2022-04-07 op
1190 9d6cabd5 2022-04-07 op cat <<EOF > $testroot/wt/patch
1191 9d6cabd5 2022-04-07 op --- foo/bar/alpha.orig
1192 9d6cabd5 2022-04-07 op +++ foo/bar/alpha
1193 9d6cabd5 2022-04-07 op @@ -1 +1 @@
1194 9d6cabd5 2022-04-07 op -alpha
1195 9d6cabd5 2022-04-07 op +ALPHA
1196 9d6cabd5 2022-04-07 op EOF
1197 9d6cabd5 2022-04-07 op
1198 9d6cabd5 2022-04-07 op (cd $testroot/wt && got patch -p2 patch) > $testroot/stdout
1199 9d6cabd5 2022-04-07 op ret=$?
1200 9d6cabd5 2022-04-07 op if [ $ret -ne 0 ]; then
1201 9d6cabd5 2022-04-07 op test_done $testroot $ret
1202 9d6cabd5 2022-04-07 op return 1
1203 9d6cabd5 2022-04-07 op fi
1204 9d6cabd5 2022-04-07 op
1205 9d6cabd5 2022-04-07 op echo "M alpha" >> $testroot/stdout.expected
1206 9d6cabd5 2022-04-07 op cmp -s $testroot/stdout.expected $testroot/stdout
1207 9d6cabd5 2022-04-07 op ret=$?
1208 9d6cabd5 2022-04-07 op if [ $ret -ne 0 ]; then
1209 9d6cabd5 2022-04-07 op diff -u $testroot/stdout.expected $testroot/stdout
1210 9d6cabd5 2022-04-07 op test_done $testroot $ret
1211 9d6cabd5 2022-04-07 op return 1
1212 9d6cabd5 2022-04-07 op fi
1213 9d6cabd5 2022-04-07 op
1214 9d6cabd5 2022-04-07 op (cd $testroot/wt && got revert alpha) > /dev/null 2>&1
1215 9d6cabd5 2022-04-07 op ret=$?
1216 9d6cabd5 2022-04-07 op if [ $ret -ne 0 ]; then
1217 9d6cabd5 2022-04-07 op test_done $testroot $ret
1218 9d6cabd5 2022-04-07 op return 1
1219 9d6cabd5 2022-04-07 op fi
1220 9d6cabd5 2022-04-07 op
1221 9d6cabd5 2022-04-07 op (cd $testroot/wt && got patch -p3 patch) \
1222 9d6cabd5 2022-04-07 op 2> $testroot/stderr
1223 9d6cabd5 2022-04-07 op ret=$?
1224 9d6cabd5 2022-04-07 op if [ $ret -eq 0 ]; then
1225 9d6cabd5 2022-04-07 op echo "stripped more components than available!"
1226 9d6cabd5 2022-04-07 op test_done $testroot 1
1227 9d6cabd5 2022-04-07 op return 1
1228 9d6cabd5 2022-04-07 op fi
1229 9d6cabd5 2022-04-07 op
1230 9d6cabd5 2022-04-07 op cat <<EOF > $testroot/stderr.expected
1231 9d6cabd5 2022-04-07 op got: can't strip 1 path-components from foo/bar/alpha: bad path
1232 9d6cabd5 2022-04-07 op EOF
1233 9d6cabd5 2022-04-07 op
1234 9d6cabd5 2022-04-07 op cmp -s $testroot/stderr.expected $testroot/stderr
1235 9d6cabd5 2022-04-07 op ret=$?
1236 9d6cabd5 2022-04-07 op if [ $ret -ne 0 ]; then
1237 9d6cabd5 2022-04-07 op diff -u $testroot/stderr.expected $testroot/stderr
1238 9d6cabd5 2022-04-07 op fi
1239 9d6cabd5 2022-04-07 op test_done $testroot 0
1240 9d6cabd5 2022-04-07 op }
1241 ed3bff83 2022-04-23 op
1242 ed3bff83 2022-04-23 op test_patch_relative_paths() {
1243 f1d6cebb 2022-04-23 op local testroot=`test_init patch_relative_paths`
1244 ed3bff83 2022-04-23 op
1245 ed3bff83 2022-04-23 op got checkout $testroot/repo $testroot/wt > /dev/null
1246 ed3bff83 2022-04-23 op ret=$?
1247 ed3bff83 2022-04-23 op if [ $ret -ne 0 ]; then
1248 ed3bff83 2022-04-23 op test_done $testroot $ret
1249 ed3bff83 2022-04-23 op return 1
1250 ed3bff83 2022-04-23 op fi
1251 9d6cabd5 2022-04-07 op
1252 ed3bff83 2022-04-23 op cat <<EOF > $testroot/wt/gamma/patch
1253 ed3bff83 2022-04-23 op --- delta
1254 ed3bff83 2022-04-23 op +++ delta
1255 ed3bff83 2022-04-23 op @@ -1 +1 @@
1256 ed3bff83 2022-04-23 op -delta
1257 ed3bff83 2022-04-23 op +DELTA
1258 ed3bff83 2022-04-23 op --- /dev/null
1259 ed3bff83 2022-04-23 op +++ eta
1260 ed3bff83 2022-04-23 op @@ -0,0 +1 @@
1261 ed3bff83 2022-04-23 op +eta
1262 ed3bff83 2022-04-23 op EOF
1263 ed3bff83 2022-04-23 op
1264 ed3bff83 2022-04-23 op (cd $testroot/wt/gamma && got patch patch) > $testroot/stdout
1265 ed3bff83 2022-04-23 op ret=$?
1266 ed3bff83 2022-04-23 op if [ $ret -ne 0 ]; then
1267 ed3bff83 2022-04-23 op test_done $testroot $ret
1268 ed3bff83 2022-04-23 op return 1
1269 ed3bff83 2022-04-23 op fi
1270 ed3bff83 2022-04-23 op
1271 ed3bff83 2022-04-23 op echo 'M gamma/delta' > $testroot/stdout.expected
1272 ed3bff83 2022-04-23 op echo 'A gamma/eta' >> $testroot/stdout.expected
1273 15e1bda6 2022-04-23 op
1274 15e1bda6 2022-04-23 op cmp -s $testroot/stdout.expected $testroot/stdout
1275 15e1bda6 2022-04-23 op ret=$?
1276 15e1bda6 2022-04-23 op if [ $ret -ne 0 ]; then
1277 15e1bda6 2022-04-23 op diff -u $testroot/stdout.expected $testroot/stdout
1278 15e1bda6 2022-04-23 op fi
1279 15e1bda6 2022-04-23 op test_done $testroot $ret
1280 15e1bda6 2022-04-23 op }
1281 15e1bda6 2022-04-23 op
1282 15e1bda6 2022-04-23 op test_patch_with_path_prefix() {
1283 15e1bda6 2022-04-23 op local testroot=`test_init patch_with_path_prefix`
1284 15e1bda6 2022-04-23 op
1285 15e1bda6 2022-04-23 op got checkout -p gamma $testroot/repo $testroot/wt > /dev/null
1286 15e1bda6 2022-04-23 op ret=$?
1287 15e1bda6 2022-04-23 op if [ $ret -ne 0 ]; then
1288 15e1bda6 2022-04-23 op test_done $testroot $ret
1289 15e1bda6 2022-04-23 op return 1
1290 15e1bda6 2022-04-23 op fi
1291 15e1bda6 2022-04-23 op
1292 15e1bda6 2022-04-23 op cat <<EOF > $testroot/wt/patch
1293 15e1bda6 2022-04-23 op --- delta
1294 15e1bda6 2022-04-23 op +++ delta
1295 15e1bda6 2022-04-23 op @@ -1 +1 @@
1296 15e1bda6 2022-04-23 op -delta
1297 15e1bda6 2022-04-23 op +DELTA
1298 15e1bda6 2022-04-23 op --- /dev/null
1299 15e1bda6 2022-04-23 op +++ eta
1300 15e1bda6 2022-04-23 op @@ -0,0 +1 @@
1301 15e1bda6 2022-04-23 op +eta
1302 15e1bda6 2022-04-23 op EOF
1303 15e1bda6 2022-04-23 op
1304 15e1bda6 2022-04-23 op (cd $testroot/wt && got patch patch) > $testroot/stdout
1305 15e1bda6 2022-04-23 op ret=$?
1306 15e1bda6 2022-04-23 op if [ $ret -ne 0 ]; then
1307 15e1bda6 2022-04-23 op test_done $testroot $ret
1308 15e1bda6 2022-04-23 op return 1
1309 15e1bda6 2022-04-23 op fi
1310 15e1bda6 2022-04-23 op
1311 15e1bda6 2022-04-23 op echo 'M delta' > $testroot/stdout.expected
1312 15e1bda6 2022-04-23 op echo 'A eta' >> $testroot/stdout.expected
1313 15e1bda6 2022-04-23 op
1314 15e1bda6 2022-04-23 op cmp -s $testroot/stdout.expected $testroot/stdout
1315 15e1bda6 2022-04-23 op ret=$?
1316 15e1bda6 2022-04-23 op if [ $ret -ne 0 ]; then
1317 15e1bda6 2022-04-23 op diff -u $testroot/stdout.expected $testroot/stdout
1318 15e1bda6 2022-04-23 op fi
1319 15e1bda6 2022-04-23 op test_done $testroot $ret
1320 15e1bda6 2022-04-23 op }
1321 ed3bff83 2022-04-23 op
1322 15e1bda6 2022-04-23 op test_patch_relpath_with_path_prefix() {
1323 15e1bda6 2022-04-23 op local testroot=`test_init patch_relpaths_with_path_prefix`
1324 15e1bda6 2022-04-23 op
1325 15e1bda6 2022-04-23 op got checkout -p gamma $testroot/repo $testroot/wt > /dev/null
1326 15e1bda6 2022-04-23 op ret=$?
1327 15e1bda6 2022-04-23 op if [ $ret -ne 0 ]; then
1328 15e1bda6 2022-04-23 op test_done $testroot $ret
1329 15e1bda6 2022-04-23 op return 1
1330 15e1bda6 2022-04-23 op fi
1331 15e1bda6 2022-04-23 op
1332 15e1bda6 2022-04-23 op mkdir -p $testroot/wt/epsilon/zeta/
1333 15e1bda6 2022-04-23 op
1334 15e1bda6 2022-04-23 op cat <<EOF > $testroot/wt/patch
1335 15e1bda6 2022-04-23 op --- /dev/null
1336 15e1bda6 2022-04-23 op +++ zeta/theta
1337 15e1bda6 2022-04-23 op @@ -0,0 +1 @@
1338 15e1bda6 2022-04-23 op +theta
1339 15e1bda6 2022-04-23 op EOF
1340 15e1bda6 2022-04-23 op
1341 15e1bda6 2022-04-23 op (cd $testroot/wt/epsilon/zeta && got patch -p1 $testroot/wt/patch) \
1342 15e1bda6 2022-04-23 op > $testroot/stdout
1343 15e1bda6 2022-04-23 op ret=$?
1344 15e1bda6 2022-04-23 op if [ $ret -ne 0 ]; then
1345 15e1bda6 2022-04-23 op test_done $testroot $ret
1346 15e1bda6 2022-04-23 op return 1
1347 15e1bda6 2022-04-23 op fi
1348 15e1bda6 2022-04-23 op
1349 15e1bda6 2022-04-23 op echo 'A epsilon/zeta/theta' >> $testroot/stdout.expected
1350 15e1bda6 2022-04-23 op
1351 ed3bff83 2022-04-23 op cmp -s $testroot/stdout.expected $testroot/stdout
1352 ed3bff83 2022-04-23 op ret=$?
1353 ed3bff83 2022-04-23 op if [ $ret -ne 0 ]; then
1354 ed3bff83 2022-04-23 op diff -u $testroot/stdout.expected $testroot/stdout
1355 15e1bda6 2022-04-23 op test_done $testroot $ret
1356 15e1bda6 2022-04-23 op return 1
1357 ed3bff83 2022-04-23 op fi
1358 15e1bda6 2022-04-23 op
1359 15e1bda6 2022-04-23 op echo 'theta' > $testroot/theta.expected
1360 15e1bda6 2022-04-23 op cmp -s $testroot/wt/epsilon/zeta/theta $testroot/theta.expected
1361 15e1bda6 2022-04-23 op ret=$?
1362 15e1bda6 2022-04-23 op if [ $ret -ne 0 ]; then
1363 15e1bda6 2022-04-23 op diff -u $testroot/wt/epsilon/zeta/theta $testroot/theta.expected
1364 15e1bda6 2022-04-23 op fi
1365 ed3bff83 2022-04-23 op test_done $testroot $ret
1366 ed3bff83 2022-04-23 op }
1367 bad961bf 2022-04-23 op
1368 bad961bf 2022-04-23 op test_patch_reverse() {
1369 bad961bf 2022-04-23 op local testroot=`test_init patch_reverse`
1370 bad961bf 2022-04-23 op
1371 bad961bf 2022-04-23 op got checkout $testroot/repo $testroot/wt > /dev/null
1372 bad961bf 2022-04-23 op ret=$?
1373 bad961bf 2022-04-23 op if [ $ret -ne 0 ]; then
1374 bad961bf 2022-04-23 op test_done $testroot $ret
1375 bad961bf 2022-04-23 op return 1
1376 bad961bf 2022-04-23 op fi
1377 bad961bf 2022-04-23 op
1378 bad961bf 2022-04-23 op cat <<EOF > $testroot/wt/patch
1379 bad961bf 2022-04-23 op --- alpha
1380 bad961bf 2022-04-23 op +++ alpha
1381 bad961bf 2022-04-23 op @@ -1 +1 @@
1382 bad961bf 2022-04-23 op -ALPHA
1383 bad961bf 2022-04-23 op \ No newline at end of file
1384 bad961bf 2022-04-23 op +alpha
1385 bad961bf 2022-04-23 op EOF
1386 ed3bff83 2022-04-23 op
1387 bad961bf 2022-04-23 op (cd $testroot/wt && got patch -R patch) > $testroot/stdout
1388 bad961bf 2022-04-23 op ret=$?
1389 bad961bf 2022-04-23 op if [ $ret -ne 0 ]; then
1390 bad961bf 2022-04-23 op test_done $testroot $ret
1391 bad961bf 2022-04-23 op return 1
1392 bad961bf 2022-04-23 op fi
1393 bad961bf 2022-04-23 op
1394 bad961bf 2022-04-23 op echo "M alpha" > $testroot/stdout.expected
1395 bad961bf 2022-04-23 op cmp -s $testroot/stdout.expected $testroot/stdout
1396 bad961bf 2022-04-23 op ret=$?
1397 bad961bf 2022-04-23 op if [ $ret -ne 0 ]; then
1398 bad961bf 2022-04-23 op diff -u $testroot/stdout.expected $testroot/stdout
1399 bad961bf 2022-04-23 op test_done $testroot $ret
1400 bad961bf 2022-04-23 op return 1
1401 bad961bf 2022-04-23 op fi
1402 bad961bf 2022-04-23 op
1403 bad961bf 2022-04-23 op echo -n ALPHA > $testroot/wt/alpha.expected
1404 bad961bf 2022-04-23 op cmp -s $testroot/wt/alpha.expected $testroot/wt/alpha
1405 bad961bf 2022-04-23 op ret=$?
1406 bad961bf 2022-04-23 op if [ $ret -ne 0 ]; then
1407 bad961bf 2022-04-23 op diff -u $testroot/wt/alpha.expected $testroot/wt/alpha
1408 bad961bf 2022-04-23 op fi
1409 bad961bf 2022-04-23 op test_done $testroot $ret
1410 bad961bf 2022-04-23 op }
1411 bad961bf 2022-04-23 op
1412 e9ce266e 2022-03-07 op test_parseargs "$@"
1413 e9ce266e 2022-03-07 op run_test test_patch_simple_add_file
1414 e9ce266e 2022-03-07 op run_test test_patch_simple_rm_file
1415 e9ce266e 2022-03-07 op run_test test_patch_simple_edit_file
1416 e9ce266e 2022-03-07 op run_test test_patch_prepend_line
1417 e9ce266e 2022-03-07 op run_test test_patch_replace_line
1418 e9ce266e 2022-03-07 op run_test test_patch_multiple_hunks
1419 e9ce266e 2022-03-07 op run_test test_patch_multiple_files
1420 e9ce266e 2022-03-07 op run_test test_patch_dont_apply
1421 e9ce266e 2022-03-07 op run_test test_patch_malformed
1422 e9ce266e 2022-03-07 op run_test test_patch_no_patch
1423 e9ce266e 2022-03-07 op run_test test_patch_equals_for_context
1424 6e96b326 2022-03-12 op run_test test_patch_rename
1425 dbda770b 2022-03-13 op run_test test_patch_illegal_status
1426 899fcfdf 2022-03-13 op run_test test_patch_nop
1427 2be5e1a2 2022-03-16 op run_test test_patch_preserve_perm
1428 95d68340 2022-03-16 op run_test test_patch_create_dirs
1429 60aa1fa0 2022-03-17 op run_test test_patch_with_offset
1430 7a30b5cb 2022-03-20 op run_test test_patch_prefer_new_path
1431 b3c57ab2 2022-03-22 op run_test test_patch_no_newline
1432 9d6cabd5 2022-04-07 op run_test test_patch_strip
1433 ed3bff83 2022-04-23 op run_test test_patch_relative_paths
1434 15e1bda6 2022-04-23 op run_test test_patch_with_path_prefix
1435 15e1bda6 2022-04-23 op run_test test_patch_relpath_with_path_prefix
1436 bad961bf 2022-04-23 op run_test test_patch_reverse