Blame


1 0ebf8283 2019-07-24 stsp #!/bin/sh
2 0ebf8283 2019-07-24 stsp #
3 0ebf8283 2019-07-24 stsp # Copyright (c) 2019 Stefan Sperling <stsp@openbsd.org>
4 0ebf8283 2019-07-24 stsp #
5 0ebf8283 2019-07-24 stsp # Permission to use, copy, modify, and distribute this software for any
6 0ebf8283 2019-07-24 stsp # purpose with or without fee is hereby granted, provided that the above
7 0ebf8283 2019-07-24 stsp # copyright notice and this permission notice appear in all copies.
8 0ebf8283 2019-07-24 stsp #
9 0ebf8283 2019-07-24 stsp # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 0ebf8283 2019-07-24 stsp # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 0ebf8283 2019-07-24 stsp # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 0ebf8283 2019-07-24 stsp # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 0ebf8283 2019-07-24 stsp # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 0ebf8283 2019-07-24 stsp # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 0ebf8283 2019-07-24 stsp # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 0ebf8283 2019-07-24 stsp
17 0ebf8283 2019-07-24 stsp . ./common.sh
18 0ebf8283 2019-07-24 stsp
19 f6cae3ed 2020-09-13 naddy test_histedit_no_op() {
20 0ebf8283 2019-07-24 stsp local testroot=`test_init histedit_no_op`
21 0ebf8283 2019-07-24 stsp
22 0ebf8283 2019-07-24 stsp local orig_commit=`git_show_head $testroot/repo`
23 e600f124 2021-03-21 stsp local orig_author_time=`git_show_author_time $testroot/repo`
24 0ebf8283 2019-07-24 stsp
25 0ebf8283 2019-07-24 stsp echo "modified alpha on master" > $testroot/repo/alpha
26 f73bf5bd 2023-10-01 naddy git -C $testroot/repo rm -q beta
27 0ebf8283 2019-07-24 stsp echo "new file on master" > $testroot/repo/epsilon/new
28 f73bf5bd 2023-10-01 naddy git -C $testroot/repo add epsilon/new
29 0ebf8283 2019-07-24 stsp git_commit $testroot/repo -m "committing changes"
30 0ebf8283 2019-07-24 stsp local old_commit1=`git_show_head $testroot/repo`
31 ad324bf5 2021-09-21 stsp local old_author_time1=`git_show_author_time $testroot/repo`
32 0ebf8283 2019-07-24 stsp
33 0ebf8283 2019-07-24 stsp echo "modified zeta on master" > $testroot/repo/epsilon/zeta
34 0ebf8283 2019-07-24 stsp git_commit $testroot/repo -m "committing to zeta on master"
35 0ebf8283 2019-07-24 stsp local old_commit2=`git_show_head $testroot/repo`
36 e600f124 2021-03-21 stsp local old_author_time2=`git_show_author_time $testroot/repo`
37 0ebf8283 2019-07-24 stsp
38 86ac67ee 2019-07-25 stsp got diff -r $testroot/repo $orig_commit $old_commit2 \
39 86ac67ee 2019-07-25 stsp > $testroot/diff.expected
40 86ac67ee 2019-07-25 stsp
41 0ebf8283 2019-07-24 stsp got checkout -c $orig_commit $testroot/repo $testroot/wt > /dev/null
42 49c543a6 2022-03-31 naddy ret=$?
43 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
44 0ebf8283 2019-07-24 stsp test_done "$testroot" "$ret"
45 0ebf8283 2019-07-24 stsp return 1
46 0ebf8283 2019-07-24 stsp fi
47 0ebf8283 2019-07-24 stsp
48 0ebf8283 2019-07-24 stsp echo "pick $old_commit1" > $testroot/histedit-script
49 0ebf8283 2019-07-24 stsp echo "pick $old_commit2" >> $testroot/histedit-script
50 0ebf8283 2019-07-24 stsp
51 0ebf8283 2019-07-24 stsp (cd $testroot/wt && got histedit -F $testroot/histedit-script \
52 0ebf8283 2019-07-24 stsp > $testroot/stdout)
53 0ebf8283 2019-07-24 stsp
54 0ebf8283 2019-07-24 stsp local new_commit1=`git_show_parent_commit $testroot/repo`
55 0ebf8283 2019-07-24 stsp local new_commit2=`git_show_head $testroot/repo`
56 e600f124 2021-03-21 stsp local new_author_time2=`git_show_author_time $testroot/repo`
57 0ebf8283 2019-07-24 stsp
58 0ebf8283 2019-07-24 stsp local short_old_commit1=`trim_obj_id 28 $old_commit1`
59 0ebf8283 2019-07-24 stsp local short_old_commit2=`trim_obj_id 28 $old_commit2`
60 0ebf8283 2019-07-24 stsp local short_new_commit1=`trim_obj_id 28 $new_commit1`
61 0ebf8283 2019-07-24 stsp local short_new_commit2=`trim_obj_id 28 $new_commit2`
62 0ebf8283 2019-07-24 stsp
63 0ebf8283 2019-07-24 stsp echo "G alpha" > $testroot/stdout.expected
64 0ebf8283 2019-07-24 stsp echo "D beta" >> $testroot/stdout.expected
65 0ebf8283 2019-07-24 stsp echo "A epsilon/new" >> $testroot/stdout.expected
66 0ebf8283 2019-07-24 stsp echo "$short_old_commit1 -> $short_new_commit1: committing changes" \
67 0ebf8283 2019-07-24 stsp >> $testroot/stdout.expected
68 0ebf8283 2019-07-24 stsp echo "G epsilon/zeta" >> $testroot/stdout.expected
69 0ebf8283 2019-07-24 stsp echo -n "$short_old_commit2 -> $short_new_commit2: " \
70 0ebf8283 2019-07-24 stsp >> $testroot/stdout.expected
71 0ebf8283 2019-07-24 stsp echo "committing to zeta on master" >> $testroot/stdout.expected
72 0ebf8283 2019-07-24 stsp echo "Switching work tree to refs/heads/master" \
73 0ebf8283 2019-07-24 stsp >> $testroot/stdout.expected
74 0ebf8283 2019-07-24 stsp
75 0ebf8283 2019-07-24 stsp cmp -s $testroot/stdout.expected $testroot/stdout
76 49c543a6 2022-03-31 naddy ret=$?
77 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
78 0ebf8283 2019-07-24 stsp diff -u $testroot/stdout.expected $testroot/stdout
79 0ebf8283 2019-07-24 stsp test_done "$testroot" "$ret"
80 0ebf8283 2019-07-24 stsp return 1
81 0ebf8283 2019-07-24 stsp fi
82 0ebf8283 2019-07-24 stsp
83 0ebf8283 2019-07-24 stsp echo "modified alpha on master" > $testroot/content.expected
84 0ebf8283 2019-07-24 stsp cat $testroot/wt/alpha > $testroot/content
85 0ebf8283 2019-07-24 stsp cmp -s $testroot/content.expected $testroot/content
86 49c543a6 2022-03-31 naddy ret=$?
87 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
88 0ebf8283 2019-07-24 stsp diff -u $testroot/content.expected $testroot/content
89 0ebf8283 2019-07-24 stsp test_done "$testroot" "$ret"
90 0ebf8283 2019-07-24 stsp return 1
91 0ebf8283 2019-07-24 stsp fi
92 0ebf8283 2019-07-24 stsp
93 0ebf8283 2019-07-24 stsp if [ -e $testroot/wt/beta ]; then
94 0ebf8283 2019-07-24 stsp echo "removed file beta still exists on disk" >&2
95 0ebf8283 2019-07-24 stsp test_done "$testroot" "1"
96 0ebf8283 2019-07-24 stsp return 1
97 0ebf8283 2019-07-24 stsp fi
98 0ebf8283 2019-07-24 stsp
99 0ebf8283 2019-07-24 stsp echo "new file on master" > $testroot/content.expected
100 0ebf8283 2019-07-24 stsp cat $testroot/wt/epsilon/new > $testroot/content
101 0ebf8283 2019-07-24 stsp cmp -s $testroot/content.expected $testroot/content
102 49c543a6 2022-03-31 naddy ret=$?
103 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
104 0ebf8283 2019-07-24 stsp diff -u $testroot/content.expected $testroot/content
105 0ebf8283 2019-07-24 stsp test_done "$testroot" "$ret"
106 0ebf8283 2019-07-24 stsp return 1
107 0ebf8283 2019-07-24 stsp fi
108 0ebf8283 2019-07-24 stsp
109 0ebf8283 2019-07-24 stsp (cd $testroot/wt && got status > $testroot/stdout)
110 0ebf8283 2019-07-24 stsp
111 0ebf8283 2019-07-24 stsp echo -n > $testroot/stdout.expected
112 0ebf8283 2019-07-24 stsp cmp -s $testroot/stdout.expected $testroot/stdout
113 49c543a6 2022-03-31 naddy ret=$?
114 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
115 0ebf8283 2019-07-24 stsp diff -u $testroot/stdout.expected $testroot/stdout
116 0ebf8283 2019-07-24 stsp test_done "$testroot" "$ret"
117 0ebf8283 2019-07-24 stsp return 1
118 0ebf8283 2019-07-24 stsp fi
119 0ebf8283 2019-07-24 stsp
120 0ebf8283 2019-07-24 stsp (cd $testroot/wt && got log -l3 | grep ^commit > $testroot/stdout)
121 0ebf8283 2019-07-24 stsp echo "commit $new_commit2 (master)" > $testroot/stdout.expected
122 0ebf8283 2019-07-24 stsp echo "commit $new_commit1" >> $testroot/stdout.expected
123 0ebf8283 2019-07-24 stsp echo "commit $orig_commit" >> $testroot/stdout.expected
124 0ebf8283 2019-07-24 stsp cmp -s $testroot/stdout.expected $testroot/stdout
125 49c543a6 2022-03-31 naddy ret=$?
126 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
127 0ebf8283 2019-07-24 stsp diff -u $testroot/stdout.expected $testroot/stdout
128 86ac67ee 2019-07-25 stsp test_done "$testroot" "$ret"
129 86ac67ee 2019-07-25 stsp return 1
130 0ebf8283 2019-07-24 stsp fi
131 86ac67ee 2019-07-25 stsp
132 86ac67ee 2019-07-25 stsp got diff -r $testroot/repo $orig_commit $new_commit2 \
133 86ac67ee 2019-07-25 stsp > $testroot/diff
134 885e96df 2023-03-06 naddy ed -s $testroot/diff.expected <<-EOF
135 885e96df 2023-03-06 naddy ,s/$old_commit2/$new_commit2/
136 885e96df 2023-03-06 naddy w
137 885e96df 2023-03-06 naddy EOF
138 86ac67ee 2019-07-25 stsp cmp -s $testroot/diff.expected $testroot/diff
139 49c543a6 2022-03-31 naddy ret=$?
140 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
141 86ac67ee 2019-07-25 stsp diff -u $testroot/diff.expected $testroot/diff
142 a615e0e7 2020-12-16 stsp test_done "$testroot" "$ret"
143 a615e0e7 2020-12-16 stsp return 1
144 86ac67ee 2019-07-25 stsp fi
145 a615e0e7 2020-12-16 stsp
146 a615e0e7 2020-12-16 stsp (cd $testroot/wt && got update > $testroot/stdout)
147 a615e0e7 2020-12-16 stsp
148 a615e0e7 2020-12-16 stsp echo 'Already up-to-date' > $testroot/stdout.expected
149 e600f124 2021-03-21 stsp cmp -s $testroot/stdout.expected $testroot/stdout
150 49c543a6 2022-03-31 naddy ret=$?
151 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
152 e600f124 2021-03-21 stsp diff -u $testroot/stdout.expected $testroot/stdout
153 e600f124 2021-03-21 stsp test_done "$testroot" "$ret"
154 a9662115 2021-08-29 naddy return 1
155 e600f124 2021-03-21 stsp fi
156 e600f124 2021-03-21 stsp
157 e600f124 2021-03-21 stsp # We should have a backup of old commits
158 e600f124 2021-03-21 stsp (cd $testroot/repo && got histedit -l > $testroot/stdout)
159 ad324bf5 2021-09-21 stsp d_orig1=`date -u -r $old_author_time1 +"%G-%m-%d"`
160 3a6b8760 2021-08-31 naddy d_orig2=`date -u -r $old_author_time2 +"%a %b %e %X %Y UTC"`
161 3a6b8760 2021-08-31 naddy d_new2=`date -u -r $new_author_time2 +"%G-%m-%d"`
162 3a6b8760 2021-08-31 naddy d_orig=`date -u -r $orig_author_time +"%G-%m-%d"`
163 e600f124 2021-03-21 stsp cat > $testroot/stdout.expected <<EOF
164 e600f124 2021-03-21 stsp -----------------------------------------------
165 e600f124 2021-03-21 stsp commit $old_commit2 (formerly master)
166 e600f124 2021-03-21 stsp from: $GOT_AUTHOR
167 e600f124 2021-03-21 stsp date: $d_orig2
168 e600f124 2021-03-21 stsp
169 e600f124 2021-03-21 stsp committing to zeta on master
170 e600f124 2021-03-21 stsp
171 e600f124 2021-03-21 stsp has become commit $new_commit2 (master)
172 e600f124 2021-03-21 stsp $d_new2 $GOT_AUTHOR_11 committing to zeta on master
173 ad324bf5 2021-09-21 stsp EOF
174 ad324bf5 2021-09-21 stsp
175 ad324bf5 2021-09-21 stsp local is_forked=true d_fork fork_commit fork_commit_msg
176 ad324bf5 2021-09-21 stsp
177 ad324bf5 2021-09-21 stsp if [ "$old_commit1" = "$new_commit1" ]; then
178 ad324bf5 2021-09-21 stsp if [ "$old_commit2" = "$new_commit2" ]; then
179 ad324bf5 2021-09-21 stsp is_forked=false
180 ad324bf5 2021-09-21 stsp else
181 ad324bf5 2021-09-21 stsp d_fork=$d_orig1
182 ad324bf5 2021-09-21 stsp fork_commit=$new_commit1
183 ad324bf5 2021-09-21 stsp fork_commit_msg="committing changes"
184 ad324bf5 2021-09-21 stsp fi
185 ad324bf5 2021-09-21 stsp else
186 ad324bf5 2021-09-21 stsp d_fork=$d_orig
187 ad324bf5 2021-09-21 stsp fork_commit=$orig_commit
188 ad324bf5 2021-09-21 stsp fork_commit_msg="adding the test tree"
189 ad324bf5 2021-09-21 stsp fi
190 ad324bf5 2021-09-21 stsp
191 ad324bf5 2021-09-21 stsp $is_forked && cat >> $testroot/stdout.expected <<EOF
192 ad324bf5 2021-09-21 stsp history forked at $fork_commit
193 ad324bf5 2021-09-21 stsp $d_fork $GOT_AUTHOR_11 $fork_commit_msg
194 e600f124 2021-03-21 stsp EOF
195 ad324bf5 2021-09-21 stsp
196 a615e0e7 2020-12-16 stsp cmp -s $testroot/stdout.expected $testroot/stdout
197 49c543a6 2022-03-31 naddy ret=$?
198 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
199 a615e0e7 2020-12-16 stsp diff -u $testroot/stdout.expected $testroot/stdout
200 643b85bc 2021-07-16 stsp test_done "$testroot" "$ret"
201 643b85bc 2021-07-16 stsp return 1
202 a615e0e7 2020-12-16 stsp fi
203 643b85bc 2021-07-16 stsp
204 643b85bc 2021-07-16 stsp (cd $testroot/repo && got histedit -X master \
205 643b85bc 2021-07-16 stsp > $testroot/stdout 2> $testroot/stderr)
206 643b85bc 2021-07-16 stsp echo -n "Deleted refs/got/backup/histedit/master/$new_commit2: " \
207 643b85bc 2021-07-16 stsp > $testroot/stdout.expected
208 643b85bc 2021-07-16 stsp echo "$old_commit2" >> $testroot/stdout.expected
209 643b85bc 2021-07-16 stsp echo -n > $testroot/stderr.expected
210 643b85bc 2021-07-16 stsp cmp -s $testroot/stdout.expected $testroot/stdout
211 49c543a6 2022-03-31 naddy ret=$?
212 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
213 643b85bc 2021-07-16 stsp diff -u $testroot/stdout.expected $testroot/stdout
214 643b85bc 2021-07-16 stsp test_done "$testroot" "$ret"
215 643b85bc 2021-07-16 stsp return 1
216 643b85bc 2021-07-16 stsp fi
217 643b85bc 2021-07-16 stsp cmp -s $testroot/stderr.expected $testroot/stderr
218 49c543a6 2022-03-31 naddy ret=$?
219 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
220 643b85bc 2021-07-16 stsp diff -u $testroot/stderr.expected $testroot/stderr
221 643b85bc 2021-07-16 stsp test_done "$testroot" "$ret"
222 643b85bc 2021-07-16 stsp return 1
223 643b85bc 2021-07-16 stsp fi
224 643b85bc 2021-07-16 stsp
225 643b85bc 2021-07-16 stsp (cd $testroot/repo && got histedit -l > $testroot/stdout)
226 643b85bc 2021-07-16 stsp echo -n > $testroot/stdout.expected
227 643b85bc 2021-07-16 stsp cmp -s $testroot/stdout.expected $testroot/stdout
228 49c543a6 2022-03-31 naddy ret=$?
229 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
230 643b85bc 2021-07-16 stsp diff -u $testroot/stdout.expected $testroot/stdout
231 643b85bc 2021-07-16 stsp fi
232 0ebf8283 2019-07-24 stsp test_done "$testroot" "$ret"
233 0ebf8283 2019-07-24 stsp }
234 0ebf8283 2019-07-24 stsp
235 f6cae3ed 2020-09-13 naddy test_histedit_swap() {
236 0ebf8283 2019-07-24 stsp local testroot=`test_init histedit_swap`
237 0ebf8283 2019-07-24 stsp
238 0ebf8283 2019-07-24 stsp local orig_commit=`git_show_head $testroot/repo`
239 0ebf8283 2019-07-24 stsp
240 0ebf8283 2019-07-24 stsp echo "modified alpha on master" > $testroot/repo/alpha
241 f73bf5bd 2023-10-01 naddy git -C $testroot/repo rm -q beta
242 0ebf8283 2019-07-24 stsp echo "new file on master" > $testroot/repo/epsilon/new
243 f73bf5bd 2023-10-01 naddy git -C $testroot/repo add epsilon/new
244 0ebf8283 2019-07-24 stsp git_commit $testroot/repo -m "committing changes"
245 0ebf8283 2019-07-24 stsp local old_commit1=`git_show_head $testroot/repo`
246 0ebf8283 2019-07-24 stsp
247 0ebf8283 2019-07-24 stsp echo "modified zeta on master" > $testroot/repo/epsilon/zeta
248 0ebf8283 2019-07-24 stsp git_commit $testroot/repo -m "committing to zeta on master"
249 0ebf8283 2019-07-24 stsp local old_commit2=`git_show_head $testroot/repo`
250 0ebf8283 2019-07-24 stsp
251 86ac67ee 2019-07-25 stsp got diff -r $testroot/repo $orig_commit $old_commit2 \
252 86ac67ee 2019-07-25 stsp > $testroot/diff.expected
253 86ac67ee 2019-07-25 stsp
254 0ebf8283 2019-07-24 stsp got checkout -c $orig_commit $testroot/repo $testroot/wt > /dev/null
255 49c543a6 2022-03-31 naddy ret=$?
256 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
257 0ebf8283 2019-07-24 stsp test_done "$testroot" "$ret"
258 0ebf8283 2019-07-24 stsp return 1
259 0ebf8283 2019-07-24 stsp fi
260 0ebf8283 2019-07-24 stsp
261 0ebf8283 2019-07-24 stsp echo "pick $old_commit2" > $testroot/histedit-script
262 0ebf8283 2019-07-24 stsp echo "pick $old_commit1" >> $testroot/histedit-script
263 0ebf8283 2019-07-24 stsp
264 0ebf8283 2019-07-24 stsp (cd $testroot/wt && got histedit -F $testroot/histedit-script \
265 0ebf8283 2019-07-24 stsp > $testroot/stdout)
266 0ebf8283 2019-07-24 stsp
267 0ebf8283 2019-07-24 stsp local new_commit2=`git_show_parent_commit $testroot/repo`
268 0ebf8283 2019-07-24 stsp local new_commit1=`git_show_head $testroot/repo`
269 0ebf8283 2019-07-24 stsp
270 0ebf8283 2019-07-24 stsp local short_old_commit1=`trim_obj_id 28 $old_commit1`
271 0ebf8283 2019-07-24 stsp local short_old_commit2=`trim_obj_id 28 $old_commit2`
272 0ebf8283 2019-07-24 stsp local short_new_commit1=`trim_obj_id 28 $new_commit1`
273 0ebf8283 2019-07-24 stsp local short_new_commit2=`trim_obj_id 28 $new_commit2`
274 0ebf8283 2019-07-24 stsp
275 0ebf8283 2019-07-24 stsp echo "G epsilon/zeta" > $testroot/stdout.expected
276 0ebf8283 2019-07-24 stsp echo -n "$short_old_commit2 -> $short_new_commit2: " \
277 0ebf8283 2019-07-24 stsp >> $testroot/stdout.expected
278 0ebf8283 2019-07-24 stsp echo "committing to zeta on master" >> $testroot/stdout.expected
279 0ebf8283 2019-07-24 stsp echo "G alpha" >> $testroot/stdout.expected
280 0ebf8283 2019-07-24 stsp echo "D beta" >> $testroot/stdout.expected
281 0ebf8283 2019-07-24 stsp echo "A epsilon/new" >> $testroot/stdout.expected
282 0ebf8283 2019-07-24 stsp echo "$short_old_commit1 -> $short_new_commit1: committing changes" \
283 0ebf8283 2019-07-24 stsp >> $testroot/stdout.expected
284 0ebf8283 2019-07-24 stsp echo "Switching work tree to refs/heads/master" \
285 0ebf8283 2019-07-24 stsp >> $testroot/stdout.expected
286 0ebf8283 2019-07-24 stsp
287 0ebf8283 2019-07-24 stsp cmp -s $testroot/stdout.expected $testroot/stdout
288 49c543a6 2022-03-31 naddy ret=$?
289 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
290 0ebf8283 2019-07-24 stsp diff -u $testroot/stdout.expected $testroot/stdout
291 0ebf8283 2019-07-24 stsp test_done "$testroot" "$ret"
292 0ebf8283 2019-07-24 stsp return 1
293 0ebf8283 2019-07-24 stsp fi
294 0ebf8283 2019-07-24 stsp
295 0ebf8283 2019-07-24 stsp echo "modified alpha on master" > $testroot/content.expected
296 0ebf8283 2019-07-24 stsp cat $testroot/wt/alpha > $testroot/content
297 0ebf8283 2019-07-24 stsp cmp -s $testroot/content.expected $testroot/content
298 49c543a6 2022-03-31 naddy ret=$?
299 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
300 0ebf8283 2019-07-24 stsp diff -u $testroot/content.expected $testroot/content
301 0ebf8283 2019-07-24 stsp test_done "$testroot" "$ret"
302 0ebf8283 2019-07-24 stsp return 1
303 0ebf8283 2019-07-24 stsp fi
304 0ebf8283 2019-07-24 stsp
305 0ebf8283 2019-07-24 stsp if [ -e $testroot/wt/beta ]; then
306 0ebf8283 2019-07-24 stsp echo "removed file beta still exists on disk" >&2
307 0ebf8283 2019-07-24 stsp test_done "$testroot" "1"
308 0ebf8283 2019-07-24 stsp return 1
309 0ebf8283 2019-07-24 stsp fi
310 0ebf8283 2019-07-24 stsp
311 0ebf8283 2019-07-24 stsp echo "new file on master" > $testroot/content.expected
312 0ebf8283 2019-07-24 stsp cat $testroot/wt/epsilon/new > $testroot/content
313 0ebf8283 2019-07-24 stsp cmp -s $testroot/content.expected $testroot/content
314 49c543a6 2022-03-31 naddy ret=$?
315 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
316 0ebf8283 2019-07-24 stsp diff -u $testroot/content.expected $testroot/content
317 0ebf8283 2019-07-24 stsp test_done "$testroot" "$ret"
318 0ebf8283 2019-07-24 stsp return 1
319 0ebf8283 2019-07-24 stsp fi
320 0ebf8283 2019-07-24 stsp
321 0ebf8283 2019-07-24 stsp (cd $testroot/wt && got status > $testroot/stdout)
322 0ebf8283 2019-07-24 stsp
323 0ebf8283 2019-07-24 stsp echo -n > $testroot/stdout.expected
324 0ebf8283 2019-07-24 stsp cmp -s $testroot/stdout.expected $testroot/stdout
325 49c543a6 2022-03-31 naddy ret=$?
326 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
327 0ebf8283 2019-07-24 stsp diff -u $testroot/stdout.expected $testroot/stdout
328 0ebf8283 2019-07-24 stsp test_done "$testroot" "$ret"
329 0ebf8283 2019-07-24 stsp return 1
330 0ebf8283 2019-07-24 stsp fi
331 0ebf8283 2019-07-24 stsp
332 0ebf8283 2019-07-24 stsp (cd $testroot/wt && got log -l3 | grep ^commit > $testroot/stdout)
333 0ebf8283 2019-07-24 stsp echo "commit $new_commit1 (master)" > $testroot/stdout.expected
334 0ebf8283 2019-07-24 stsp echo "commit $new_commit2" >> $testroot/stdout.expected
335 0ebf8283 2019-07-24 stsp echo "commit $orig_commit" >> $testroot/stdout.expected
336 0ebf8283 2019-07-24 stsp cmp -s $testroot/stdout.expected $testroot/stdout
337 49c543a6 2022-03-31 naddy ret=$?
338 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
339 0ebf8283 2019-07-24 stsp diff -u $testroot/stdout.expected $testroot/stdout
340 86ac67ee 2019-07-25 stsp test_done "$testroot" "$ret"
341 86ac67ee 2019-07-25 stsp return 1
342 86ac67ee 2019-07-25 stsp fi
343 86ac67ee 2019-07-25 stsp
344 86ac67ee 2019-07-25 stsp got diff -r $testroot/repo $orig_commit $new_commit1 \
345 86ac67ee 2019-07-25 stsp > $testroot/diff
346 885e96df 2023-03-06 naddy ed -s $testroot/diff.expected <<-EOF
347 885e96df 2023-03-06 naddy ,s/$old_commit2/$new_commit1/
348 885e96df 2023-03-06 naddy w
349 885e96df 2023-03-06 naddy EOF
350 86ac67ee 2019-07-25 stsp cmp -s $testroot/diff.expected $testroot/diff
351 49c543a6 2022-03-31 naddy ret=$?
352 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
353 86ac67ee 2019-07-25 stsp diff -u $testroot/diff.expected $testroot/diff
354 0ebf8283 2019-07-24 stsp fi
355 0ebf8283 2019-07-24 stsp test_done "$testroot" "$ret"
356 0ebf8283 2019-07-24 stsp }
357 0ebf8283 2019-07-24 stsp
358 f6cae3ed 2020-09-13 naddy test_histedit_drop() {
359 0ebf8283 2019-07-24 stsp local testroot=`test_init histedit_drop`
360 0ebf8283 2019-07-24 stsp local orig_commit=`git_show_head $testroot/repo`
361 0ebf8283 2019-07-24 stsp
362 0ebf8283 2019-07-24 stsp echo "modified alpha on master" > $testroot/repo/alpha
363 f73bf5bd 2023-10-01 naddy git -C $testroot/repo rm -q beta
364 0ebf8283 2019-07-24 stsp echo "new file on master" > $testroot/repo/epsilon/new
365 f73bf5bd 2023-10-01 naddy git -C $testroot/repo add epsilon/new
366 0ebf8283 2019-07-24 stsp git_commit $testroot/repo -m "committing changes"
367 0ebf8283 2019-07-24 stsp local old_commit1=`git_show_head $testroot/repo`
368 0ebf8283 2019-07-24 stsp
369 0ebf8283 2019-07-24 stsp echo "modified zeta on master" > $testroot/repo/epsilon/zeta
370 0ebf8283 2019-07-24 stsp git_commit $testroot/repo -m "committing to zeta on master"
371 0ebf8283 2019-07-24 stsp local old_commit2=`git_show_head $testroot/repo`
372 0ebf8283 2019-07-24 stsp
373 86ac67ee 2019-07-25 stsp got diff -r $testroot/repo $old_commit1 $old_commit2 \
374 86ac67ee 2019-07-25 stsp > $testroot/diff.expected
375 86ac67ee 2019-07-25 stsp
376 0ebf8283 2019-07-24 stsp got checkout -c $orig_commit $testroot/repo $testroot/wt > /dev/null
377 49c543a6 2022-03-31 naddy ret=$?
378 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
379 0ebf8283 2019-07-24 stsp test_done "$testroot" "$ret"
380 0ebf8283 2019-07-24 stsp return 1
381 0ebf8283 2019-07-24 stsp fi
382 0ebf8283 2019-07-24 stsp
383 0ebf8283 2019-07-24 stsp echo "drop $old_commit1" > $testroot/histedit-script
384 0ebf8283 2019-07-24 stsp echo "pick $old_commit2" >> $testroot/histedit-script
385 0ebf8283 2019-07-24 stsp
386 0ebf8283 2019-07-24 stsp (cd $testroot/wt && got histedit -F $testroot/histedit-script \
387 0ebf8283 2019-07-24 stsp > $testroot/stdout)
388 0ebf8283 2019-07-24 stsp
389 0ebf8283 2019-07-24 stsp local new_commit2=`git_show_head $testroot/repo`
390 0ebf8283 2019-07-24 stsp
391 0ebf8283 2019-07-24 stsp local short_old_commit1=`trim_obj_id 28 $old_commit1`
392 0ebf8283 2019-07-24 stsp local short_old_commit2=`trim_obj_id 28 $old_commit2`
393 0ebf8283 2019-07-24 stsp local short_new_commit2=`trim_obj_id 28 $new_commit2`
394 0ebf8283 2019-07-24 stsp
395 0ebf8283 2019-07-24 stsp echo "$short_old_commit1 -> drop commit: committing changes" \
396 0ebf8283 2019-07-24 stsp > $testroot/stdout.expected
397 0ebf8283 2019-07-24 stsp echo "G epsilon/zeta" >> $testroot/stdout.expected
398 0ebf8283 2019-07-24 stsp echo -n "$short_old_commit2 -> $short_new_commit2: " \
399 0ebf8283 2019-07-24 stsp >> $testroot/stdout.expected
400 0ebf8283 2019-07-24 stsp echo "committing to zeta on master" >> $testroot/stdout.expected
401 0ebf8283 2019-07-24 stsp echo "Switching work tree to refs/heads/master" \
402 0ebf8283 2019-07-24 stsp >> $testroot/stdout.expected
403 0ebf8283 2019-07-24 stsp
404 0ebf8283 2019-07-24 stsp cmp -s $testroot/stdout.expected $testroot/stdout
405 49c543a6 2022-03-31 naddy ret=$?
406 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
407 0ebf8283 2019-07-24 stsp diff -u $testroot/stdout.expected $testroot/stdout
408 0ebf8283 2019-07-24 stsp test_done "$testroot" "$ret"
409 0ebf8283 2019-07-24 stsp return 1
410 0ebf8283 2019-07-24 stsp fi
411 0ebf8283 2019-07-24 stsp
412 0ebf8283 2019-07-24 stsp for f in alpha beta; do
413 0ebf8283 2019-07-24 stsp echo "$f" > $testroot/content.expected
414 0ebf8283 2019-07-24 stsp cat $testroot/wt/$f > $testroot/content
415 0ebf8283 2019-07-24 stsp cmp -s $testroot/content.expected $testroot/content
416 49c543a6 2022-03-31 naddy ret=$?
417 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
418 0ebf8283 2019-07-24 stsp diff -u $testroot/content.expected $testroot/content
419 0ebf8283 2019-07-24 stsp test_done "$testroot" "$ret"
420 0ebf8283 2019-07-24 stsp return 1
421 0ebf8283 2019-07-24 stsp fi
422 0ebf8283 2019-07-24 stsp done
423 0ebf8283 2019-07-24 stsp
424 0ebf8283 2019-07-24 stsp if [ -e $testroot/wt/new ]; then
425 0ebf8283 2019-07-24 stsp echo "file new exists on disk but should not" >&2
426 0ebf8283 2019-07-24 stsp test_done "$testroot" "1"
427 0ebf8283 2019-07-24 stsp return 1
428 0ebf8283 2019-07-24 stsp fi
429 0ebf8283 2019-07-24 stsp
430 0ebf8283 2019-07-24 stsp (cd $testroot/wt && got status > $testroot/stdout)
431 0ebf8283 2019-07-24 stsp
432 0ebf8283 2019-07-24 stsp echo -n > $testroot/stdout.expected
433 0ebf8283 2019-07-24 stsp cmp -s $testroot/stdout.expected $testroot/stdout
434 49c543a6 2022-03-31 naddy ret=$?
435 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
436 0ebf8283 2019-07-24 stsp diff -u $testroot/stdout.expected $testroot/stdout
437 0ebf8283 2019-07-24 stsp test_done "$testroot" "$ret"
438 0ebf8283 2019-07-24 stsp return 1
439 0ebf8283 2019-07-24 stsp fi
440 0ebf8283 2019-07-24 stsp
441 0ebf8283 2019-07-24 stsp (cd $testroot/wt && got log -l3 | grep ^commit > $testroot/stdout)
442 0ebf8283 2019-07-24 stsp echo "commit $new_commit2 (master)" > $testroot/stdout.expected
443 0ebf8283 2019-07-24 stsp echo "commit $orig_commit" >> $testroot/stdout.expected
444 0ebf8283 2019-07-24 stsp cmp -s $testroot/stdout.expected $testroot/stdout
445 49c543a6 2022-03-31 naddy ret=$?
446 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
447 0ebf8283 2019-07-24 stsp diff -u $testroot/stdout.expected $testroot/stdout
448 86ac67ee 2019-07-25 stsp test_done "$testroot" "$ret"
449 86ac67ee 2019-07-25 stsp return 1
450 86ac67ee 2019-07-25 stsp fi
451 86ac67ee 2019-07-25 stsp
452 86ac67ee 2019-07-25 stsp got diff -r $testroot/repo $orig_commit $new_commit2 \
453 86ac67ee 2019-07-25 stsp > $testroot/diff
454 885e96df 2023-03-06 naddy ed -s $testroot/diff.expected <<-EOF
455 885e96df 2023-03-06 naddy ,s/$old_commit1/$orig_commit/
456 885e96df 2023-03-06 naddy ,s/$old_commit2/$new_commit2/
457 885e96df 2023-03-06 naddy w
458 885e96df 2023-03-06 naddy EOF
459 86ac67ee 2019-07-25 stsp cmp -s $testroot/diff.expected $testroot/diff
460 49c543a6 2022-03-31 naddy ret=$?
461 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
462 86ac67ee 2019-07-25 stsp diff -u $testroot/diff.expected $testroot/diff
463 0ebf8283 2019-07-24 stsp fi
464 0ebf8283 2019-07-24 stsp test_done "$testroot" "$ret"
465 0ebf8283 2019-07-24 stsp }
466 0ebf8283 2019-07-24 stsp
467 f6cae3ed 2020-09-13 naddy test_histedit_fold() {
468 0ebf8283 2019-07-24 stsp local testroot=`test_init histedit_fold`
469 0ebf8283 2019-07-24 stsp
470 0ebf8283 2019-07-24 stsp local orig_commit=`git_show_head $testroot/repo`
471 0ebf8283 2019-07-24 stsp
472 0ebf8283 2019-07-24 stsp echo "modified alpha on master" > $testroot/repo/alpha
473 f73bf5bd 2023-10-01 naddy git -C $testroot/repo rm -q beta
474 0ebf8283 2019-07-24 stsp echo "new file on master" > $testroot/repo/epsilon/new
475 f73bf5bd 2023-10-01 naddy git -C $testroot/repo add epsilon/new
476 0ebf8283 2019-07-24 stsp git_commit $testroot/repo -m "committing changes"
477 0ebf8283 2019-07-24 stsp local old_commit1=`git_show_head $testroot/repo`
478 0ebf8283 2019-07-24 stsp
479 0ebf8283 2019-07-24 stsp echo "modified zeta on master" > $testroot/repo/epsilon/zeta
480 0ebf8283 2019-07-24 stsp git_commit $testroot/repo -m "committing to zeta on master"
481 0ebf8283 2019-07-24 stsp local old_commit2=`git_show_head $testroot/repo`
482 3f9de99f 2019-07-24 stsp
483 3f9de99f 2019-07-24 stsp echo "modified delta on master" > $testroot/repo/gamma/delta
484 3f9de99f 2019-07-24 stsp git_commit $testroot/repo -m "committing to delta on master"
485 3f9de99f 2019-07-24 stsp local old_commit3=`git_show_head $testroot/repo`
486 0ebf8283 2019-07-24 stsp
487 0ebf8283 2019-07-24 stsp got checkout -c $orig_commit $testroot/repo $testroot/wt > /dev/null
488 49c543a6 2022-03-31 naddy ret=$?
489 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
490 0ebf8283 2019-07-24 stsp test_done "$testroot" "$ret"
491 0ebf8283 2019-07-24 stsp return 1
492 0ebf8283 2019-07-24 stsp fi
493 14eb0fef 2023-10-26 stsp
494 14eb0fef 2023-10-26 stsp cat > $testroot/editor.sh <<EOF
495 14eb0fef 2023-10-26 stsp #!/bin/sh
496 14eb0fef 2023-10-26 stsp ed -s "\$1" <<-EOF
497 14eb0fef 2023-10-26 stsp ,s/.*/committing folded changes/
498 14eb0fef 2023-10-26 stsp w
499 14eb0fef 2023-10-26 stsp EOF
500 14eb0fef 2023-10-26 stsp EOF
501 14eb0fef 2023-10-26 stsp chmod +x $testroot/editor.sh
502 0ebf8283 2019-07-24 stsp
503 0ebf8283 2019-07-24 stsp echo "fold $old_commit1" > $testroot/histedit-script
504 3f9de99f 2019-07-24 stsp echo "drop $old_commit2" >> $testroot/histedit-script
505 3f9de99f 2019-07-24 stsp echo "pick $old_commit3" >> $testroot/histedit-script
506 0ebf8283 2019-07-24 stsp
507 14eb0fef 2023-10-26 stsp (cd $testroot/wt && env EDITOR="$testroot/editor.sh" \
508 14eb0fef 2023-10-26 stsp VISUAL="$testroot/editor.sh" \
509 14eb0fef 2023-10-26 stsp got histedit -F $testroot/histedit-script > $testroot/stdout)
510 0ebf8283 2019-07-24 stsp
511 0ebf8283 2019-07-24 stsp local new_commit1=`git_show_parent_commit $testroot/repo`
512 0ebf8283 2019-07-24 stsp local new_commit2=`git_show_head $testroot/repo`
513 0ebf8283 2019-07-24 stsp
514 0ebf8283 2019-07-24 stsp local short_old_commit1=`trim_obj_id 28 $old_commit1`
515 0ebf8283 2019-07-24 stsp local short_old_commit2=`trim_obj_id 28 $old_commit2`
516 3f9de99f 2019-07-24 stsp local short_old_commit3=`trim_obj_id 28 $old_commit3`
517 0ebf8283 2019-07-24 stsp local short_new_commit1=`trim_obj_id 28 $new_commit1`
518 0ebf8283 2019-07-24 stsp local short_new_commit2=`trim_obj_id 28 $new_commit2`
519 0ebf8283 2019-07-24 stsp
520 0ebf8283 2019-07-24 stsp echo "G alpha" > $testroot/stdout.expected
521 0ebf8283 2019-07-24 stsp echo "D beta" >> $testroot/stdout.expected
522 0ebf8283 2019-07-24 stsp echo "A epsilon/new" >> $testroot/stdout.expected
523 0ebf8283 2019-07-24 stsp echo "$short_old_commit1 -> fold commit: committing changes" \
524 0ebf8283 2019-07-24 stsp >> $testroot/stdout.expected
525 3f9de99f 2019-07-24 stsp echo -n "$short_old_commit2 -> " >> $testroot/stdout.expected
526 3f9de99f 2019-07-24 stsp echo "drop commit: committing to zeta on master" \
527 0ebf8283 2019-07-24 stsp >> $testroot/stdout.expected
528 3f9de99f 2019-07-24 stsp echo "G gamma/delta" >> $testroot/stdout.expected
529 3f9de99f 2019-07-24 stsp echo -n "$short_old_commit3 -> $short_new_commit2: " \
530 3f9de99f 2019-07-24 stsp >> $testroot/stdout.expected
531 0ebf8283 2019-07-24 stsp echo "committing folded changes" >> $testroot/stdout.expected
532 0ebf8283 2019-07-24 stsp echo "Switching work tree to refs/heads/master" \
533 0ebf8283 2019-07-24 stsp >> $testroot/stdout.expected
534 0ebf8283 2019-07-24 stsp
535 0ebf8283 2019-07-24 stsp cmp -s $testroot/stdout.expected $testroot/stdout
536 49c543a6 2022-03-31 naddy ret=$?
537 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
538 0ebf8283 2019-07-24 stsp diff -u $testroot/stdout.expected $testroot/stdout
539 0ebf8283 2019-07-24 stsp test_done "$testroot" "$ret"
540 0ebf8283 2019-07-24 stsp return 1
541 0ebf8283 2019-07-24 stsp fi
542 0ebf8283 2019-07-24 stsp
543 0ebf8283 2019-07-24 stsp echo "modified alpha on master" > $testroot/content.expected
544 0ebf8283 2019-07-24 stsp cat $testroot/wt/alpha > $testroot/content
545 0ebf8283 2019-07-24 stsp cmp -s $testroot/content.expected $testroot/content
546 49c543a6 2022-03-31 naddy ret=$?
547 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
548 0ebf8283 2019-07-24 stsp diff -u $testroot/content.expected $testroot/content
549 0ebf8283 2019-07-24 stsp test_done "$testroot" "$ret"
550 0ebf8283 2019-07-24 stsp return 1
551 0ebf8283 2019-07-24 stsp fi
552 0ebf8283 2019-07-24 stsp
553 0ebf8283 2019-07-24 stsp if [ -e $testroot/wt/beta ]; then
554 0ebf8283 2019-07-24 stsp echo "removed file beta still exists on disk" >&2
555 0ebf8283 2019-07-24 stsp test_done "$testroot" "1"
556 0ebf8283 2019-07-24 stsp return 1
557 0ebf8283 2019-07-24 stsp fi
558 0ebf8283 2019-07-24 stsp
559 0ebf8283 2019-07-24 stsp echo "new file on master" > $testroot/content.expected
560 0ebf8283 2019-07-24 stsp cat $testroot/wt/epsilon/new > $testroot/content
561 0ebf8283 2019-07-24 stsp cmp -s $testroot/content.expected $testroot/content
562 49c543a6 2022-03-31 naddy ret=$?
563 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
564 0ebf8283 2019-07-24 stsp diff -u $testroot/content.expected $testroot/content
565 0ebf8283 2019-07-24 stsp test_done "$testroot" "$ret"
566 0ebf8283 2019-07-24 stsp return 1
567 0ebf8283 2019-07-24 stsp fi
568 0ebf8283 2019-07-24 stsp
569 0ebf8283 2019-07-24 stsp (cd $testroot/wt && got status > $testroot/stdout)
570 0ebf8283 2019-07-24 stsp
571 0ebf8283 2019-07-24 stsp echo -n > $testroot/stdout.expected
572 0ebf8283 2019-07-24 stsp cmp -s $testroot/stdout.expected $testroot/stdout
573 49c543a6 2022-03-31 naddy ret=$?
574 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
575 0ebf8283 2019-07-24 stsp diff -u $testroot/stdout.expected $testroot/stdout
576 0ebf8283 2019-07-24 stsp test_done "$testroot" "$ret"
577 0ebf8283 2019-07-24 stsp return 1
578 0ebf8283 2019-07-24 stsp fi
579 0ebf8283 2019-07-24 stsp
580 0ebf8283 2019-07-24 stsp (cd $testroot/wt && got log -l3 | grep ^commit > $testroot/stdout)
581 0ebf8283 2019-07-24 stsp echo "commit $new_commit2 (master)" > $testroot/stdout.expected
582 0ebf8283 2019-07-24 stsp echo "commit $orig_commit" >> $testroot/stdout.expected
583 0ebf8283 2019-07-24 stsp cmp -s $testroot/stdout.expected $testroot/stdout
584 49c543a6 2022-03-31 naddy ret=$?
585 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
586 0ebf8283 2019-07-24 stsp diff -u $testroot/stdout.expected $testroot/stdout
587 0ebf8283 2019-07-24 stsp fi
588 0ebf8283 2019-07-24 stsp test_done "$testroot" "$ret"
589 0ebf8283 2019-07-24 stsp }
590 0ebf8283 2019-07-24 stsp
591 f6cae3ed 2020-09-13 naddy test_histedit_edit() {
592 0ebf8283 2019-07-24 stsp local testroot=`test_init histedit_edit`
593 0ebf8283 2019-07-24 stsp
594 0ebf8283 2019-07-24 stsp local orig_commit=`git_show_head $testroot/repo`
595 0ebf8283 2019-07-24 stsp
596 0ebf8283 2019-07-24 stsp echo "modified alpha on master" > $testroot/repo/alpha
597 f73bf5bd 2023-10-01 naddy git -C $testroot/repo rm -q beta
598 0ebf8283 2019-07-24 stsp echo "new file on master" > $testroot/repo/epsilon/new
599 f73bf5bd 2023-10-01 naddy git -C $testroot/repo add epsilon/new
600 0ebf8283 2019-07-24 stsp git_commit $testroot/repo -m "committing changes"
601 0ebf8283 2019-07-24 stsp local old_commit1=`git_show_head $testroot/repo`
602 0ebf8283 2019-07-24 stsp
603 0ebf8283 2019-07-24 stsp echo "modified zeta on master" > $testroot/repo/epsilon/zeta
604 0ebf8283 2019-07-24 stsp git_commit $testroot/repo -m "committing to zeta on master"
605 0ebf8283 2019-07-24 stsp local old_commit2=`git_show_head $testroot/repo`
606 0ebf8283 2019-07-24 stsp
607 0ebf8283 2019-07-24 stsp got checkout -c $orig_commit $testroot/repo $testroot/wt > /dev/null
608 49c543a6 2022-03-31 naddy ret=$?
609 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
610 0ebf8283 2019-07-24 stsp test_done "$testroot" "$ret"
611 0ebf8283 2019-07-24 stsp return 1
612 0ebf8283 2019-07-24 stsp fi
613 0ebf8283 2019-07-24 stsp
614 0ebf8283 2019-07-24 stsp echo "edit $old_commit1" > $testroot/histedit-script
615 0ebf8283 2019-07-24 stsp echo "pick $old_commit2" >> $testroot/histedit-script
616 0ebf8283 2019-07-24 stsp
617 0ebf8283 2019-07-24 stsp (cd $testroot/wt && got histedit -F $testroot/histedit-script \
618 0ebf8283 2019-07-24 stsp > $testroot/stdout)
619 0ebf8283 2019-07-24 stsp
620 0ebf8283 2019-07-24 stsp local short_old_commit1=`trim_obj_id 28 $old_commit1`
621 0ebf8283 2019-07-24 stsp local short_old_commit2=`trim_obj_id 28 $old_commit2`
622 0ebf8283 2019-07-24 stsp
623 0ebf8283 2019-07-24 stsp echo "G alpha" > $testroot/stdout.expected
624 0ebf8283 2019-07-24 stsp echo "D beta" >> $testroot/stdout.expected
625 0ebf8283 2019-07-24 stsp echo "A epsilon/new" >> $testroot/stdout.expected
626 0ebf8283 2019-07-24 stsp echo "Stopping histedit for amending commit $old_commit1" \
627 0ebf8283 2019-07-24 stsp >> $testroot/stdout.expected
628 0ebf8283 2019-07-24 stsp cmp -s $testroot/stdout.expected $testroot/stdout
629 49c543a6 2022-03-31 naddy ret=$?
630 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
631 0ebf8283 2019-07-24 stsp diff -u $testroot/stdout.expected $testroot/stdout
632 0ebf8283 2019-07-24 stsp test_done "$testroot" "$ret"
633 0ebf8283 2019-07-24 stsp return 1
634 0ebf8283 2019-07-24 stsp fi
635 0ebf8283 2019-07-24 stsp
636 0ebf8283 2019-07-24 stsp echo "edited modified alpha on master" > $testroot/wt/alpha
637 0ebf8283 2019-07-24 stsp
638 f032f1f7 2019-08-04 stsp # test interaction of 'got stage' and histedit -c
639 f032f1f7 2019-08-04 stsp (cd $testroot/wt && got stage alpha > /dev/null)
640 f032f1f7 2019-08-04 stsp (cd $testroot/wt && got histedit -c > $testroot/stdout \
641 f032f1f7 2019-08-04 stsp 2> $testroot/stderr)
642 49c543a6 2022-03-31 naddy ret=$?
643 49c543a6 2022-03-31 naddy if [ $ret -eq 0 ]; then
644 f032f1f7 2019-08-04 stsp echo "histedit succeeded unexpectedly" >&2
645 f032f1f7 2019-08-04 stsp test_done "$testroot" "1"
646 f032f1f7 2019-08-04 stsp return 1
647 f032f1f7 2019-08-04 stsp fi
648 f032f1f7 2019-08-04 stsp echo -n "got: work tree contains files with staged changes; " \
649 f032f1f7 2019-08-04 stsp > $testroot/stderr.expected
650 f032f1f7 2019-08-04 stsp echo "these changes must be committed or unstaged first" \
651 f032f1f7 2019-08-04 stsp >> $testroot/stderr.expected
652 f032f1f7 2019-08-04 stsp cmp -s $testroot/stderr.expected $testroot/stderr
653 49c543a6 2022-03-31 naddy ret=$?
654 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
655 f032f1f7 2019-08-04 stsp diff -u $testroot/stderr.expected $testroot/stderr
656 f032f1f7 2019-08-04 stsp test_done "$testroot" "$ret"
657 f032f1f7 2019-08-04 stsp return 1
658 f032f1f7 2019-08-04 stsp fi
659 f032f1f7 2019-08-04 stsp
660 f032f1f7 2019-08-04 stsp (cd $testroot/wt && got unstage alpha > /dev/null)
661 0ebf8283 2019-07-24 stsp
662 14eb0fef 2023-10-26 stsp cat > $testroot/editor.sh <<EOF
663 14eb0fef 2023-10-26 stsp #!/bin/sh
664 14eb0fef 2023-10-26 stsp ed -s "\$1" <<-EOF
665 14eb0fef 2023-10-26 stsp ,s/.*/committing changes/
666 14eb0fef 2023-10-26 stsp w
667 14eb0fef 2023-10-26 stsp EOF
668 14eb0fef 2023-10-26 stsp EOF
669 14eb0fef 2023-10-26 stsp chmod +x $testroot/editor.sh
670 14eb0fef 2023-10-26 stsp
671 14eb0fef 2023-10-26 stsp (cd $testroot/wt && env EDITOR="$testroot/editor.sh" \
672 14eb0fef 2023-10-26 stsp VISUAL="$testroot/editor.sh" \
673 14eb0fef 2023-10-26 stsp got histedit -c > $testroot/stdout)
674 14eb0fef 2023-10-26 stsp
675 0ebf8283 2019-07-24 stsp local new_commit1=`git_show_parent_commit $testroot/repo`
676 0ebf8283 2019-07-24 stsp local new_commit2=`git_show_head $testroot/repo`
677 0ebf8283 2019-07-24 stsp
678 0ebf8283 2019-07-24 stsp local short_new_commit1=`trim_obj_id 28 $new_commit1`
679 0ebf8283 2019-07-24 stsp local short_new_commit2=`trim_obj_id 28 $new_commit2`
680 0ebf8283 2019-07-24 stsp
681 0ebf8283 2019-07-24 stsp echo "$short_old_commit1 -> $short_new_commit1: committing changes" \
682 0ebf8283 2019-07-24 stsp > $testroot/stdout.expected
683 0ebf8283 2019-07-24 stsp echo "G epsilon/zeta" >> $testroot/stdout.expected
684 0ebf8283 2019-07-24 stsp echo -n "$short_old_commit2 -> $short_new_commit2: " \
685 0ebf8283 2019-07-24 stsp >> $testroot/stdout.expected
686 0ebf8283 2019-07-24 stsp echo "committing to zeta on master" >> $testroot/stdout.expected
687 0ebf8283 2019-07-24 stsp echo "Switching work tree to refs/heads/master" \
688 0ebf8283 2019-07-24 stsp >> $testroot/stdout.expected
689 0ebf8283 2019-07-24 stsp
690 0ebf8283 2019-07-24 stsp cmp -s $testroot/stdout.expected $testroot/stdout
691 49c543a6 2022-03-31 naddy ret=$?
692 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
693 0ebf8283 2019-07-24 stsp diff -u $testroot/stdout.expected $testroot/stdout
694 0ebf8283 2019-07-24 stsp test_done "$testroot" "$ret"
695 0ebf8283 2019-07-24 stsp return 1
696 0ebf8283 2019-07-24 stsp fi
697 0ebf8283 2019-07-24 stsp
698 0ebf8283 2019-07-24 stsp echo "edited modified alpha on master" > $testroot/content.expected
699 0ebf8283 2019-07-24 stsp cat $testroot/wt/alpha > $testroot/content
700 0ebf8283 2019-07-24 stsp cmp -s $testroot/content.expected $testroot/content
701 49c543a6 2022-03-31 naddy ret=$?
702 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
703 0ebf8283 2019-07-24 stsp diff -u $testroot/content.expected $testroot/content
704 0ebf8283 2019-07-24 stsp test_done "$testroot" "$ret"
705 0ebf8283 2019-07-24 stsp return 1
706 0ebf8283 2019-07-24 stsp fi
707 0ebf8283 2019-07-24 stsp
708 0ebf8283 2019-07-24 stsp if [ -e $testroot/wt/beta ]; then
709 0ebf8283 2019-07-24 stsp echo "removed file beta still exists on disk" >&2
710 0ebf8283 2019-07-24 stsp test_done "$testroot" "1"
711 0ebf8283 2019-07-24 stsp return 1
712 0ebf8283 2019-07-24 stsp fi
713 0ebf8283 2019-07-24 stsp
714 0ebf8283 2019-07-24 stsp echo "new file on master" > $testroot/content.expected
715 0ebf8283 2019-07-24 stsp cat $testroot/wt/epsilon/new > $testroot/content
716 0ebf8283 2019-07-24 stsp cmp -s $testroot/content.expected $testroot/content
717 49c543a6 2022-03-31 naddy ret=$?
718 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
719 0ebf8283 2019-07-24 stsp diff -u $testroot/content.expected $testroot/content
720 0ebf8283 2019-07-24 stsp test_done "$testroot" "$ret"
721 0ebf8283 2019-07-24 stsp return 1
722 0ebf8283 2019-07-24 stsp fi
723 0ebf8283 2019-07-24 stsp
724 0ebf8283 2019-07-24 stsp (cd $testroot/wt && got status > $testroot/stdout)
725 0ebf8283 2019-07-24 stsp
726 0ebf8283 2019-07-24 stsp echo -n > $testroot/stdout.expected
727 0ebf8283 2019-07-24 stsp cmp -s $testroot/stdout.expected $testroot/stdout
728 49c543a6 2022-03-31 naddy ret=$?
729 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
730 0ebf8283 2019-07-24 stsp diff -u $testroot/stdout.expected $testroot/stdout
731 0ebf8283 2019-07-24 stsp test_done "$testroot" "$ret"
732 0ebf8283 2019-07-24 stsp return 1
733 0ebf8283 2019-07-24 stsp fi
734 0ebf8283 2019-07-24 stsp
735 0ebf8283 2019-07-24 stsp (cd $testroot/wt && got log -l3 | grep ^commit > $testroot/stdout)
736 0ebf8283 2019-07-24 stsp echo "commit $new_commit2 (master)" > $testroot/stdout.expected
737 0ebf8283 2019-07-24 stsp echo "commit $new_commit1" >> $testroot/stdout.expected
738 0ebf8283 2019-07-24 stsp echo "commit $orig_commit" >> $testroot/stdout.expected
739 0ebf8283 2019-07-24 stsp cmp -s $testroot/stdout.expected $testroot/stdout
740 49c543a6 2022-03-31 naddy ret=$?
741 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
742 0ebf8283 2019-07-24 stsp diff -u $testroot/stdout.expected $testroot/stdout
743 0ebf8283 2019-07-24 stsp fi
744 0ebf8283 2019-07-24 stsp test_done "$testroot" "$ret"
745 0ebf8283 2019-07-24 stsp }
746 0ebf8283 2019-07-24 stsp
747 f6cae3ed 2020-09-13 naddy test_histedit_fold_last_commit() {
748 0ebf8283 2019-07-24 stsp local testroot=`test_init histedit_fold_last_commit`
749 0ebf8283 2019-07-24 stsp
750 0ebf8283 2019-07-24 stsp local orig_commit=`git_show_head $testroot/repo`
751 0ebf8283 2019-07-24 stsp
752 0ebf8283 2019-07-24 stsp echo "modified alpha on master" > $testroot/repo/alpha
753 f73bf5bd 2023-10-01 naddy git -C $testroot/repo rm -q beta
754 0ebf8283 2019-07-24 stsp echo "new file on master" > $testroot/repo/epsilon/new
755 f73bf5bd 2023-10-01 naddy git -C $testroot/repo add epsilon/new
756 0ebf8283 2019-07-24 stsp git_commit $testroot/repo -m "committing changes"
757 0ebf8283 2019-07-24 stsp local old_commit1=`git_show_head $testroot/repo`
758 0ebf8283 2019-07-24 stsp
759 0ebf8283 2019-07-24 stsp echo "modified zeta on master" > $testroot/repo/epsilon/zeta
760 0ebf8283 2019-07-24 stsp git_commit $testroot/repo -m "committing to zeta on master"
761 0ebf8283 2019-07-24 stsp local old_commit2=`git_show_head $testroot/repo`
762 0ebf8283 2019-07-24 stsp
763 0ebf8283 2019-07-24 stsp got checkout -c $orig_commit $testroot/repo $testroot/wt > /dev/null
764 49c543a6 2022-03-31 naddy ret=$?
765 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
766 0ebf8283 2019-07-24 stsp test_done "$testroot" "$ret"
767 0ebf8283 2019-07-24 stsp return 1
768 0ebf8283 2019-07-24 stsp fi
769 0ebf8283 2019-07-24 stsp
770 0ebf8283 2019-07-24 stsp echo "pick $old_commit1" > $testroot/histedit-script
771 0ebf8283 2019-07-24 stsp echo "fold $old_commit2" >> $testroot/histedit-script
772 0ebf8283 2019-07-24 stsp
773 0ebf8283 2019-07-24 stsp (cd $testroot/wt && got histedit -F $testroot/histedit-script \
774 0ebf8283 2019-07-24 stsp > $testroot/stdout 2> $testroot/stderr)
775 0ebf8283 2019-07-24 stsp
776 49c543a6 2022-03-31 naddy ret=$?
777 49c543a6 2022-03-31 naddy if [ $ret -eq 0 ]; then
778 0ebf8283 2019-07-24 stsp echo "histedit succeeded unexpectedly" >&2
779 0ebf8283 2019-07-24 stsp test_done "$testroot" "1"
780 0ebf8283 2019-07-24 stsp return 1
781 0ebf8283 2019-07-24 stsp fi
782 0ebf8283 2019-07-24 stsp
783 0ebf8283 2019-07-24 stsp echo "got: last commit in histedit script cannot be folded" \
784 0ebf8283 2019-07-24 stsp > $testroot/stderr.expected
785 0ebf8283 2019-07-24 stsp
786 0ebf8283 2019-07-24 stsp cmp -s $testroot/stderr.expected $testroot/stderr
787 49c543a6 2022-03-31 naddy ret=$?
788 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
789 0ebf8283 2019-07-24 stsp diff -u $testroot/stderr.expected $testroot/stderr
790 0ebf8283 2019-07-24 stsp fi
791 0ebf8283 2019-07-24 stsp test_done "$testroot" "$ret"
792 0ebf8283 2019-07-24 stsp }
793 0ebf8283 2019-07-24 stsp
794 14eb0fef 2023-10-26 stsp test_histedit_missing_commit_pick() {
795 0ebf8283 2019-07-24 stsp local testroot=`test_init histedit_missing_commit`
796 0ebf8283 2019-07-24 stsp
797 0ebf8283 2019-07-24 stsp local orig_commit=`git_show_head $testroot/repo`
798 0ebf8283 2019-07-24 stsp
799 0ebf8283 2019-07-24 stsp echo "modified alpha on master" > $testroot/repo/alpha
800 f73bf5bd 2023-10-01 naddy git -C $testroot/repo rm -q beta
801 0ebf8283 2019-07-24 stsp echo "new file on master" > $testroot/repo/epsilon/new
802 f73bf5bd 2023-10-01 naddy git -C $testroot/repo add epsilon/new
803 0ebf8283 2019-07-24 stsp git_commit $testroot/repo -m "committing changes"
804 0ebf8283 2019-07-24 stsp local old_commit1=`git_show_head $testroot/repo`
805 0ebf8283 2019-07-24 stsp
806 0ebf8283 2019-07-24 stsp echo "modified zeta on master" > $testroot/repo/epsilon/zeta
807 0ebf8283 2019-07-24 stsp git_commit $testroot/repo -m "committing to zeta on master"
808 0ebf8283 2019-07-24 stsp local old_commit2=`git_show_head $testroot/repo`
809 0ebf8283 2019-07-24 stsp
810 0ebf8283 2019-07-24 stsp got checkout -c $orig_commit $testroot/repo $testroot/wt > /dev/null
811 49c543a6 2022-03-31 naddy ret=$?
812 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
813 0ebf8283 2019-07-24 stsp test_done "$testroot" "$ret"
814 0ebf8283 2019-07-24 stsp return 1
815 0ebf8283 2019-07-24 stsp fi
816 0ebf8283 2019-07-24 stsp
817 0ebf8283 2019-07-24 stsp echo "pick $old_commit1" > $testroot/histedit-script
818 0ebf8283 2019-07-24 stsp
819 0ebf8283 2019-07-24 stsp (cd $testroot/wt && got histedit -F $testroot/histedit-script \
820 0ebf8283 2019-07-24 stsp > $testroot/stdout 2> $testroot/stderr)
821 0ebf8283 2019-07-24 stsp
822 49c543a6 2022-03-31 naddy ret=$?
823 49c543a6 2022-03-31 naddy if [ $ret -eq 0 ]; then
824 0ebf8283 2019-07-24 stsp echo "histedit succeeded unexpectedly" >&2
825 0ebf8283 2019-07-24 stsp test_done "$testroot" "1"
826 0ebf8283 2019-07-24 stsp return 1
827 0ebf8283 2019-07-24 stsp fi
828 0ebf8283 2019-07-24 stsp
829 0ebf8283 2019-07-24 stsp echo "got: commit $old_commit2 missing from histedit script" \
830 0ebf8283 2019-07-24 stsp > $testroot/stderr.expected
831 0ebf8283 2019-07-24 stsp
832 0ebf8283 2019-07-24 stsp cmp -s $testroot/stderr.expected $testroot/stderr
833 49c543a6 2022-03-31 naddy ret=$?
834 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
835 0ebf8283 2019-07-24 stsp diff -u $testroot/stderr.expected $testroot/stderr
836 0ebf8283 2019-07-24 stsp fi
837 0ebf8283 2019-07-24 stsp test_done "$testroot" "$ret"
838 0ebf8283 2019-07-24 stsp }
839 0ebf8283 2019-07-24 stsp
840 14eb0fef 2023-10-26 stsp test_histedit_missing_commit_mesg() {
841 14eb0fef 2023-10-26 stsp local testroot=`test_init histedit_missing_commit`
842 14eb0fef 2023-10-26 stsp
843 14eb0fef 2023-10-26 stsp local orig_commit=`git_show_head $testroot/repo`
844 14eb0fef 2023-10-26 stsp
845 14eb0fef 2023-10-26 stsp echo "modified alpha on master" > $testroot/repo/alpha
846 14eb0fef 2023-10-26 stsp git -C $testroot/repo rm -q beta
847 14eb0fef 2023-10-26 stsp echo "new file on master" > $testroot/repo/epsilon/new
848 14eb0fef 2023-10-26 stsp git -C $testroot/repo add epsilon/new
849 14eb0fef 2023-10-26 stsp git_commit $testroot/repo -m "committing changes"
850 14eb0fef 2023-10-26 stsp local old_commit1=`git_show_head $testroot/repo`
851 14eb0fef 2023-10-26 stsp
852 14eb0fef 2023-10-26 stsp echo "modified zeta on master" > $testroot/repo/epsilon/zeta
853 14eb0fef 2023-10-26 stsp git_commit $testroot/repo -m "committing to zeta on master"
854 14eb0fef 2023-10-26 stsp local old_commit2=`git_show_head $testroot/repo`
855 14eb0fef 2023-10-26 stsp
856 14eb0fef 2023-10-26 stsp got checkout -c $orig_commit $testroot/repo $testroot/wt > /dev/null
857 14eb0fef 2023-10-26 stsp ret=$?
858 14eb0fef 2023-10-26 stsp if [ $ret -ne 0 ]; then
859 14eb0fef 2023-10-26 stsp test_done "$testroot" "$ret"
860 14eb0fef 2023-10-26 stsp return 1
861 14eb0fef 2023-10-26 stsp fi
862 14eb0fef 2023-10-26 stsp
863 14eb0fef 2023-10-26 stsp cat > $testroot/editor.sh <<EOF
864 14eb0fef 2023-10-26 stsp #!/bin/sh
865 14eb0fef 2023-10-26 stsp ed -s "\$1" <<-EOF
866 14eb0fef 2023-10-26 stsp ,s/.*/committing folded changes/
867 14eb0fef 2023-10-26 stsp w
868 14eb0fef 2023-10-26 stsp EOF
869 14eb0fef 2023-10-26 stsp EOF
870 14eb0fef 2023-10-26 stsp chmod +x $testroot/editor.sh
871 14eb0fef 2023-10-26 stsp
872 14eb0fef 2023-10-26 stsp echo "mesg $old_commit1" > $testroot/histedit-script
873 14eb0fef 2023-10-26 stsp
874 14eb0fef 2023-10-26 stsp (cd $testroot/wt && env EDITOR="$testroot/editor.sh" \
875 14eb0fef 2023-10-26 stsp VISUAL="$testroot/editor.sh" \
876 14eb0fef 2023-10-26 stsp got histedit -F $testroot/histedit-script > $testroot/stdout \
877 14eb0fef 2023-10-26 stsp 2>$testroot/stderr)
878 14eb0fef 2023-10-26 stsp
879 14eb0fef 2023-10-26 stsp ret=$?
880 14eb0fef 2023-10-26 stsp if [ $ret -eq 0 ]; then
881 14eb0fef 2023-10-26 stsp echo "histedit succeeded unexpectedly" >&2
882 14eb0fef 2023-10-26 stsp test_done "$testroot" "1"
883 14eb0fef 2023-10-26 stsp return 1
884 14eb0fef 2023-10-26 stsp fi
885 14eb0fef 2023-10-26 stsp
886 14eb0fef 2023-10-26 stsp echo "got: commit $old_commit2 missing from histedit script" \
887 14eb0fef 2023-10-26 stsp > $testroot/stderr.expected
888 14eb0fef 2023-10-26 stsp
889 14eb0fef 2023-10-26 stsp cmp -s $testroot/stderr.expected $testroot/stderr
890 14eb0fef 2023-10-26 stsp ret=$?
891 14eb0fef 2023-10-26 stsp if [ $ret -ne 0 ]; then
892 14eb0fef 2023-10-26 stsp diff -u $testroot/stderr.expected $testroot/stderr
893 14eb0fef 2023-10-26 stsp fi
894 14eb0fef 2023-10-26 stsp test_done "$testroot" "$ret"
895 14eb0fef 2023-10-26 stsp }
896 14eb0fef 2023-10-26 stsp
897 f6cae3ed 2020-09-13 naddy test_histedit_abort() {
898 0ebf8283 2019-07-24 stsp local testroot=`test_init histedit_abort`
899 0ebf8283 2019-07-24 stsp
900 0ebf8283 2019-07-24 stsp local orig_commit=`git_show_head $testroot/repo`
901 0ebf8283 2019-07-24 stsp
902 0ebf8283 2019-07-24 stsp echo "modified alpha on master" > $testroot/repo/alpha
903 f73bf5bd 2023-10-01 naddy git -C $testroot/repo rm -q beta
904 0ebf8283 2019-07-24 stsp echo "new file on master" > $testroot/repo/epsilon/new
905 f73bf5bd 2023-10-01 naddy git -C $testroot/repo add epsilon/new
906 0ebf8283 2019-07-24 stsp git_commit $testroot/repo -m "committing changes"
907 0ebf8283 2019-07-24 stsp local old_commit1=`git_show_head $testroot/repo`
908 0ebf8283 2019-07-24 stsp
909 0ebf8283 2019-07-24 stsp echo "modified zeta on master" > $testroot/repo/epsilon/zeta
910 0ebf8283 2019-07-24 stsp git_commit $testroot/repo -m "committing to zeta on master"
911 0ebf8283 2019-07-24 stsp local old_commit2=`git_show_head $testroot/repo`
912 0ebf8283 2019-07-24 stsp
913 0ebf8283 2019-07-24 stsp got checkout -c $orig_commit $testroot/repo $testroot/wt > /dev/null
914 49c543a6 2022-03-31 naddy ret=$?
915 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
916 0ebf8283 2019-07-24 stsp test_done "$testroot" "$ret"
917 0ebf8283 2019-07-24 stsp return 1
918 0ebf8283 2019-07-24 stsp fi
919 41f061b2 2021-10-05 stsp
920 41f061b2 2021-10-05 stsp # unrelated unversioned file in work tree
921 41f061b2 2021-10-05 stsp touch $testroot/wt/unversioned-file
922 0ebf8283 2019-07-24 stsp
923 0ebf8283 2019-07-24 stsp echo "edit $old_commit1" > $testroot/histedit-script
924 0ebf8283 2019-07-24 stsp echo "pick $old_commit2" >> $testroot/histedit-script
925 0ebf8283 2019-07-24 stsp
926 0ebf8283 2019-07-24 stsp (cd $testroot/wt && got histedit -F $testroot/histedit-script \
927 0ebf8283 2019-07-24 stsp > $testroot/stdout)
928 0ebf8283 2019-07-24 stsp
929 0ebf8283 2019-07-24 stsp local short_old_commit1=`trim_obj_id 28 $old_commit1`
930 0ebf8283 2019-07-24 stsp local short_old_commit2=`trim_obj_id 28 $old_commit2`
931 0ebf8283 2019-07-24 stsp
932 0ebf8283 2019-07-24 stsp echo "G alpha" > $testroot/stdout.expected
933 0ebf8283 2019-07-24 stsp echo "D beta" >> $testroot/stdout.expected
934 0ebf8283 2019-07-24 stsp echo "A epsilon/new" >> $testroot/stdout.expected
935 0ebf8283 2019-07-24 stsp echo "Stopping histedit for amending commit $old_commit1" \
936 0ebf8283 2019-07-24 stsp >> $testroot/stdout.expected
937 0ebf8283 2019-07-24 stsp cmp -s $testroot/stdout.expected $testroot/stdout
938 49c543a6 2022-03-31 naddy ret=$?
939 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
940 0ebf8283 2019-07-24 stsp diff -u $testroot/stdout.expected $testroot/stdout
941 0ebf8283 2019-07-24 stsp test_done "$testroot" "$ret"
942 0ebf8283 2019-07-24 stsp return 1
943 0ebf8283 2019-07-24 stsp fi
944 0ebf8283 2019-07-24 stsp
945 0ebf8283 2019-07-24 stsp echo "edited modified alpha on master" > $testroot/wt/alpha
946 0ebf8283 2019-07-24 stsp
947 0ebf8283 2019-07-24 stsp (cd $testroot/wt && got histedit -a > $testroot/stdout)
948 0ebf8283 2019-07-24 stsp
949 0ebf8283 2019-07-24 stsp local new_commit1=`git_show_parent_commit $testroot/repo`
950 0ebf8283 2019-07-24 stsp local new_commit2=`git_show_head $testroot/repo`
951 0ebf8283 2019-07-24 stsp
952 0ebf8283 2019-07-24 stsp echo "Switching work tree to refs/heads/master" \
953 0ebf8283 2019-07-24 stsp > $testroot/stdout.expected
954 0ebf8283 2019-07-24 stsp echo "R alpha" >> $testroot/stdout.expected
955 0ebf8283 2019-07-24 stsp echo "R beta" >> $testroot/stdout.expected
956 0ebf8283 2019-07-24 stsp echo "R epsilon/new" >> $testroot/stdout.expected
957 0ebf8283 2019-07-24 stsp echo "Histedit of refs/heads/master aborted" \
958 0ebf8283 2019-07-24 stsp >> $testroot/stdout.expected
959 0ebf8283 2019-07-24 stsp
960 0ebf8283 2019-07-24 stsp cmp -s $testroot/stdout.expected $testroot/stdout
961 49c543a6 2022-03-31 naddy ret=$?
962 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
963 0ebf8283 2019-07-24 stsp diff -u $testroot/stdout.expected $testroot/stdout
964 0ebf8283 2019-07-24 stsp test_done "$testroot" "$ret"
965 0ebf8283 2019-07-24 stsp return 1
966 0ebf8283 2019-07-24 stsp fi
967 0ebf8283 2019-07-24 stsp
968 0ebf8283 2019-07-24 stsp for f in alpha beta; do
969 0ebf8283 2019-07-24 stsp echo "$f" > $testroot/content.expected
970 0ebf8283 2019-07-24 stsp cat $testroot/wt/$f > $testroot/content
971 0ebf8283 2019-07-24 stsp cmp -s $testroot/content.expected $testroot/content
972 49c543a6 2022-03-31 naddy ret=$?
973 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
974 0ebf8283 2019-07-24 stsp diff -u $testroot/content.expected $testroot/content
975 0ebf8283 2019-07-24 stsp test_done "$testroot" "$ret"
976 0ebf8283 2019-07-24 stsp return 1
977 0ebf8283 2019-07-24 stsp fi
978 0ebf8283 2019-07-24 stsp done
979 0ebf8283 2019-07-24 stsp
980 af179be7 2023-04-14 stsp if [ -e $testroot/wt/epsilon/new ]; then
981 af179be7 2023-04-14 stsp echo "removed file new still exists on disk" >&2
982 af179be7 2023-04-14 stsp test_done "$testroot" "1"
983 0ebf8283 2019-07-24 stsp return 1
984 0ebf8283 2019-07-24 stsp fi
985 0ebf8283 2019-07-24 stsp
986 0ebf8283 2019-07-24 stsp (cd $testroot/wt && got status > $testroot/stdout)
987 0ebf8283 2019-07-24 stsp
988 af179be7 2023-04-14 stsp echo "? unversioned-file" > $testroot/stdout.expected
989 0ebf8283 2019-07-24 stsp cmp -s $testroot/stdout.expected $testroot/stdout
990 49c543a6 2022-03-31 naddy ret=$?
991 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
992 0ebf8283 2019-07-24 stsp diff -u $testroot/stdout.expected $testroot/stdout
993 0ebf8283 2019-07-24 stsp test_done "$testroot" "$ret"
994 0ebf8283 2019-07-24 stsp return 1
995 0ebf8283 2019-07-24 stsp fi
996 0ebf8283 2019-07-24 stsp
997 0ebf8283 2019-07-24 stsp (cd $testroot/wt && got log -l3 | grep ^commit > $testroot/stdout)
998 0ebf8283 2019-07-24 stsp echo "commit $new_commit2 (master)" > $testroot/stdout.expected
999 0ebf8283 2019-07-24 stsp echo "commit $new_commit1" >> $testroot/stdout.expected
1000 0ebf8283 2019-07-24 stsp echo "commit $orig_commit" >> $testroot/stdout.expected
1001 0160a755 2019-07-25 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1002 49c543a6 2022-03-31 naddy ret=$?
1003 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1004 0160a755 2019-07-25 stsp diff -u $testroot/stdout.expected $testroot/stdout
1005 0160a755 2019-07-25 stsp fi
1006 0160a755 2019-07-25 stsp test_done "$testroot" "$ret"
1007 0160a755 2019-07-25 stsp }
1008 0160a755 2019-07-25 stsp
1009 f6cae3ed 2020-09-13 naddy test_histedit_path_prefix_drop() {
1010 a4027091 2019-07-25 stsp local testroot=`test_init histedit_path_prefix_drop`
1011 0160a755 2019-07-25 stsp local orig_commit=`git_show_head $testroot/repo`
1012 0160a755 2019-07-25 stsp
1013 0160a755 2019-07-25 stsp echo "modified zeta" > $testroot/repo/epsilon/zeta
1014 0160a755 2019-07-25 stsp git_commit $testroot/repo -m "changing zeta"
1015 0160a755 2019-07-25 stsp local old_commit1=`git_show_head $testroot/repo`
1016 0160a755 2019-07-25 stsp
1017 0160a755 2019-07-25 stsp got checkout -c $orig_commit -p gamma $testroot/repo \
1018 0160a755 2019-07-25 stsp $testroot/wt > /dev/null
1019 49c543a6 2022-03-31 naddy ret=$?
1020 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1021 0160a755 2019-07-25 stsp test_done "$testroot" "$ret"
1022 0160a755 2019-07-25 stsp return 1
1023 0160a755 2019-07-25 stsp fi
1024 0160a755 2019-07-25 stsp
1025 0160a755 2019-07-25 stsp echo "drop $old_commit1" > $testroot/histedit-script
1026 0160a755 2019-07-25 stsp
1027 0160a755 2019-07-25 stsp (cd $testroot/wt && got histedit -F $testroot/histedit-script \
1028 0160a755 2019-07-25 stsp > $testroot/stdout 2> $testroot/stderr)
1029 0160a755 2019-07-25 stsp
1030 49c543a6 2022-03-31 naddy ret=$?
1031 49c543a6 2022-03-31 naddy if [ $ret -eq 0 ]; then
1032 0160a755 2019-07-25 stsp echo "histedit succeeded unexpectedly" >&2
1033 0160a755 2019-07-25 stsp test_done "$testroot" "1"
1034 0160a755 2019-07-25 stsp return 1
1035 0160a755 2019-07-25 stsp fi
1036 0160a755 2019-07-25 stsp
1037 0160a755 2019-07-25 stsp echo -n "got: cannot edit branch history which contains changes " \
1038 0160a755 2019-07-25 stsp > $testroot/stderr.expected
1039 0160a755 2019-07-25 stsp echo "outside of this work tree's path prefix" \
1040 0160a755 2019-07-25 stsp >> $testroot/stderr.expected
1041 0160a755 2019-07-25 stsp
1042 0160a755 2019-07-25 stsp cmp -s $testroot/stderr.expected $testroot/stderr
1043 49c543a6 2022-03-31 naddy ret=$?
1044 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1045 0160a755 2019-07-25 stsp diff -u $testroot/stderr.expected $testroot/stderr
1046 0160a755 2019-07-25 stsp test_done "$testroot" "$ret"
1047 0160a755 2019-07-25 stsp return 1
1048 0160a755 2019-07-25 stsp fi
1049 0160a755 2019-07-25 stsp
1050 0160a755 2019-07-25 stsp rm -rf $testroot/wt
1051 0160a755 2019-07-25 stsp got checkout -c $orig_commit -p epsilon $testroot/repo \
1052 0160a755 2019-07-25 stsp $testroot/wt > /dev/null
1053 49c543a6 2022-03-31 naddy ret=$?
1054 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1055 0160a755 2019-07-25 stsp test_done "$testroot" "$ret"
1056 0160a755 2019-07-25 stsp return 1
1057 0160a755 2019-07-25 stsp fi
1058 0160a755 2019-07-25 stsp (cd $testroot/wt && got histedit -F $testroot/histedit-script \
1059 0160a755 2019-07-25 stsp > $testroot/stdout)
1060 0160a755 2019-07-25 stsp
1061 0160a755 2019-07-25 stsp local short_old_commit1=`trim_obj_id 28 $old_commit1`
1062 0160a755 2019-07-25 stsp local short_old_commit2=`trim_obj_id 28 $old_commit2`
1063 0160a755 2019-07-25 stsp
1064 0160a755 2019-07-25 stsp echo "$short_old_commit1 -> drop commit: changing zeta" \
1065 0160a755 2019-07-25 stsp > $testroot/stdout.expected
1066 0160a755 2019-07-25 stsp echo "Switching work tree to refs/heads/master" \
1067 0160a755 2019-07-25 stsp >> $testroot/stdout.expected
1068 0160a755 2019-07-25 stsp
1069 0ebf8283 2019-07-24 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1070 49c543a6 2022-03-31 naddy ret=$?
1071 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1072 0ebf8283 2019-07-24 stsp diff -u $testroot/stdout.expected $testroot/stdout
1073 0160a755 2019-07-25 stsp test_done "$testroot" "$ret"
1074 0160a755 2019-07-25 stsp return 1
1075 0ebf8283 2019-07-24 stsp fi
1076 0160a755 2019-07-25 stsp
1077 0160a755 2019-07-25 stsp echo "zeta" > $testroot/content.expected
1078 0160a755 2019-07-25 stsp cat $testroot/wt/zeta > $testroot/content
1079 0160a755 2019-07-25 stsp cmp -s $testroot/content.expected $testroot/content
1080 49c543a6 2022-03-31 naddy ret=$?
1081 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1082 0160a755 2019-07-25 stsp diff -u $testroot/content.expected $testroot/content
1083 0160a755 2019-07-25 stsp test_done "$testroot" "$ret"
1084 0160a755 2019-07-25 stsp return 1
1085 0160a755 2019-07-25 stsp fi
1086 0160a755 2019-07-25 stsp
1087 0160a755 2019-07-25 stsp
1088 0160a755 2019-07-25 stsp (cd $testroot/wt && got status > $testroot/stdout)
1089 0160a755 2019-07-25 stsp
1090 0160a755 2019-07-25 stsp echo -n > $testroot/stdout.expected
1091 0160a755 2019-07-25 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1092 49c543a6 2022-03-31 naddy ret=$?
1093 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1094 0160a755 2019-07-25 stsp diff -u $testroot/stdout.expected $testroot/stdout
1095 0160a755 2019-07-25 stsp test_done "$testroot" "$ret"
1096 0160a755 2019-07-25 stsp return 1
1097 0160a755 2019-07-25 stsp fi
1098 0160a755 2019-07-25 stsp
1099 0160a755 2019-07-25 stsp (cd $testroot/wt && got log -l3 | grep ^commit > $testroot/stdout)
1100 0160a755 2019-07-25 stsp echo "commit $orig_commit (master)" > $testroot/stdout.expected
1101 b2c50a0a 2019-07-25 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1102 49c543a6 2022-03-31 naddy ret=$?
1103 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1104 b2c50a0a 2019-07-25 stsp diff -u $testroot/stdout.expected $testroot/stdout
1105 b2c50a0a 2019-07-25 stsp fi
1106 b2c50a0a 2019-07-25 stsp test_done "$testroot" "$ret"
1107 b2c50a0a 2019-07-25 stsp }
1108 b2c50a0a 2019-07-25 stsp
1109 f6cae3ed 2020-09-13 naddy test_histedit_path_prefix_edit() {
1110 b2c50a0a 2019-07-25 stsp local testroot=`test_init histedit_path_prefix_edit`
1111 b2c50a0a 2019-07-25 stsp local orig_commit=`git_show_head $testroot/repo`
1112 b2c50a0a 2019-07-25 stsp
1113 b2c50a0a 2019-07-25 stsp echo "modified zeta" > $testroot/repo/epsilon/zeta
1114 b2c50a0a 2019-07-25 stsp git_commit $testroot/repo -m "changing zeta"
1115 b2c50a0a 2019-07-25 stsp local old_commit1=`git_show_head $testroot/repo`
1116 b2c50a0a 2019-07-25 stsp
1117 b2c50a0a 2019-07-25 stsp got diff -r $testroot/repo $orig_commit $old_commit1 \
1118 b2c50a0a 2019-07-25 stsp > $testroot/diff.expected
1119 b2c50a0a 2019-07-25 stsp
1120 b2c50a0a 2019-07-25 stsp got checkout -c $orig_commit -p gamma $testroot/repo \
1121 b2c50a0a 2019-07-25 stsp $testroot/wt > /dev/null
1122 49c543a6 2022-03-31 naddy ret=$?
1123 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1124 b2c50a0a 2019-07-25 stsp test_done "$testroot" "$ret"
1125 b2c50a0a 2019-07-25 stsp return 1
1126 b2c50a0a 2019-07-25 stsp fi
1127 b2c50a0a 2019-07-25 stsp
1128 b2c50a0a 2019-07-25 stsp echo "edit $old_commit1" > $testroot/histedit-script
1129 b2c50a0a 2019-07-25 stsp
1130 b2c50a0a 2019-07-25 stsp (cd $testroot/wt && got histedit -F $testroot/histedit-script \
1131 b2c50a0a 2019-07-25 stsp > $testroot/stdout 2> $testroot/stderr)
1132 b2c50a0a 2019-07-25 stsp
1133 49c543a6 2022-03-31 naddy ret=$?
1134 49c543a6 2022-03-31 naddy if [ $ret -eq 0 ]; then
1135 b2c50a0a 2019-07-25 stsp echo "histedit succeeded unexpectedly" >&2
1136 b2c50a0a 2019-07-25 stsp test_done "$testroot" "1"
1137 b2c50a0a 2019-07-25 stsp return 1
1138 b2c50a0a 2019-07-25 stsp fi
1139 b2c50a0a 2019-07-25 stsp
1140 b2c50a0a 2019-07-25 stsp echo -n "got: cannot edit branch history which contains changes " \
1141 b2c50a0a 2019-07-25 stsp > $testroot/stderr.expected
1142 b2c50a0a 2019-07-25 stsp echo "outside of this work tree's path prefix" \
1143 b2c50a0a 2019-07-25 stsp >> $testroot/stderr.expected
1144 b2c50a0a 2019-07-25 stsp
1145 b2c50a0a 2019-07-25 stsp cmp -s $testroot/stderr.expected $testroot/stderr
1146 49c543a6 2022-03-31 naddy ret=$?
1147 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1148 b2c50a0a 2019-07-25 stsp diff -u $testroot/stderr.expected $testroot/stderr
1149 b2c50a0a 2019-07-25 stsp test_done "$testroot" "$ret"
1150 b2c50a0a 2019-07-25 stsp return 1
1151 b2c50a0a 2019-07-25 stsp fi
1152 b2c50a0a 2019-07-25 stsp
1153 b2c50a0a 2019-07-25 stsp rm -rf $testroot/wt
1154 b2c50a0a 2019-07-25 stsp got checkout -c $orig_commit -p epsilon $testroot/repo \
1155 b2c50a0a 2019-07-25 stsp $testroot/wt > /dev/null
1156 49c543a6 2022-03-31 naddy ret=$?
1157 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1158 b2c50a0a 2019-07-25 stsp test_done "$testroot" "$ret"
1159 b2c50a0a 2019-07-25 stsp return 1
1160 b2c50a0a 2019-07-25 stsp fi
1161 b2c50a0a 2019-07-25 stsp (cd $testroot/wt && got histedit -F $testroot/histedit-script \
1162 b2c50a0a 2019-07-25 stsp > $testroot/stdout)
1163 b2c50a0a 2019-07-25 stsp
1164 b2c50a0a 2019-07-25 stsp local short_old_commit1=`trim_obj_id 28 $old_commit1`
1165 b2c50a0a 2019-07-25 stsp
1166 b2c50a0a 2019-07-25 stsp echo "G zeta" > $testroot/stdout.expected
1167 b2c50a0a 2019-07-25 stsp echo "Stopping histedit for amending commit $old_commit1" \
1168 b2c50a0a 2019-07-25 stsp >> $testroot/stdout.expected
1169 0160a755 2019-07-25 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1170 49c543a6 2022-03-31 naddy ret=$?
1171 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1172 0160a755 2019-07-25 stsp diff -u $testroot/stdout.expected $testroot/stdout
1173 b2c50a0a 2019-07-25 stsp test_done "$testroot" "$ret"
1174 b2c50a0a 2019-07-25 stsp return 1
1175 0160a755 2019-07-25 stsp fi
1176 b2c50a0a 2019-07-25 stsp
1177 b2c50a0a 2019-07-25 stsp echo "modified zeta" > $testroot/content.expected
1178 b2c50a0a 2019-07-25 stsp cat $testroot/wt/zeta > $testroot/content
1179 b2c50a0a 2019-07-25 stsp cmp -s $testroot/content.expected $testroot/content
1180 49c543a6 2022-03-31 naddy ret=$?
1181 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1182 b2c50a0a 2019-07-25 stsp diff -u $testroot/content.expected $testroot/content
1183 b2c50a0a 2019-07-25 stsp test_done "$testroot" "$ret"
1184 b2c50a0a 2019-07-25 stsp return 1
1185 b2c50a0a 2019-07-25 stsp fi
1186 b2c50a0a 2019-07-25 stsp
1187 b2c50a0a 2019-07-25 stsp (cd $testroot/wt && got status > $testroot/stdout)
1188 b2c50a0a 2019-07-25 stsp
1189 b2c50a0a 2019-07-25 stsp echo "M zeta"> $testroot/stdout.expected
1190 b2c50a0a 2019-07-25 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1191 49c543a6 2022-03-31 naddy ret=$?
1192 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1193 b2c50a0a 2019-07-25 stsp diff -u $testroot/stdout.expected $testroot/stdout
1194 b2c50a0a 2019-07-25 stsp test_done "$testroot" "$ret"
1195 b2c50a0a 2019-07-25 stsp return 1
1196 b2c50a0a 2019-07-25 stsp fi
1197 14eb0fef 2023-10-26 stsp
1198 14eb0fef 2023-10-26 stsp cat > $testroot/editor.sh <<EOF
1199 14eb0fef 2023-10-26 stsp #!/bin/sh
1200 14eb0fef 2023-10-26 stsp ed -s "\$1" <<-EOF
1201 14eb0fef 2023-10-26 stsp ,s/.*/modified zeta/
1202 14eb0fef 2023-10-26 stsp w
1203 14eb0fef 2023-10-26 stsp EOF
1204 14eb0fef 2023-10-26 stsp EOF
1205 14eb0fef 2023-10-26 stsp chmod +x $testroot/editor.sh
1206 b2c50a0a 2019-07-25 stsp
1207 14eb0fef 2023-10-26 stsp (cd $testroot/wt && env EDITOR="$testroot/editor.sh" \
1208 14eb0fef 2023-10-26 stsp VISUAL="$testroot/editor.sh" \
1209 14eb0fef 2023-10-26 stsp got histedit -c > $testroot/stdout)
1210 b2c50a0a 2019-07-25 stsp
1211 b2c50a0a 2019-07-25 stsp local new_commit1=`git_show_head $testroot/repo`
1212 b2c50a0a 2019-07-25 stsp local short_new_commit1=`trim_obj_id 28 $new_commit1`
1213 b2c50a0a 2019-07-25 stsp
1214 b2c50a0a 2019-07-25 stsp echo -n "$short_old_commit1 -> $short_new_commit1: " \
1215 b2c50a0a 2019-07-25 stsp > $testroot/stdout.expected
1216 b2c50a0a 2019-07-25 stsp echo "modified zeta" >> $testroot/stdout.expected
1217 b2c50a0a 2019-07-25 stsp echo "Switching work tree to refs/heads/master" \
1218 b2c50a0a 2019-07-25 stsp >> $testroot/stdout.expected
1219 b2c50a0a 2019-07-25 stsp
1220 b2c50a0a 2019-07-25 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1221 49c543a6 2022-03-31 naddy ret=$?
1222 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1223 b2c50a0a 2019-07-25 stsp diff -u $testroot/stdout.expected $testroot/stdout
1224 b2c50a0a 2019-07-25 stsp test_done "$testroot" "$ret"
1225 b2c50a0a 2019-07-25 stsp return 1
1226 b2c50a0a 2019-07-25 stsp fi
1227 b2c50a0a 2019-07-25 stsp
1228 b2c50a0a 2019-07-25 stsp (cd $testroot/wt && got log -l3 | grep ^commit > $testroot/stdout)
1229 b2c50a0a 2019-07-25 stsp echo "commit $new_commit1 (master)" > $testroot/stdout.expected
1230 b2c50a0a 2019-07-25 stsp echo "commit $orig_commit" >> $testroot/stdout.expected
1231 b2c50a0a 2019-07-25 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1232 49c543a6 2022-03-31 naddy ret=$?
1233 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1234 b2c50a0a 2019-07-25 stsp diff -u $testroot/stdout.expected $testroot/stdout
1235 b2c50a0a 2019-07-25 stsp test_done "$testroot" "$ret"
1236 b2c50a0a 2019-07-25 stsp return 1
1237 b2c50a0a 2019-07-25 stsp fi
1238 b2c50a0a 2019-07-25 stsp
1239 b2c50a0a 2019-07-25 stsp got diff -r $testroot/repo $orig_commit $new_commit1 \
1240 b2c50a0a 2019-07-25 stsp > $testroot/diff
1241 885e96df 2023-03-06 naddy ed -s $testroot/diff.expected <<-EOF
1242 885e96df 2023-03-06 naddy ,s/$old_commit1/$new_commit1/
1243 885e96df 2023-03-06 naddy w
1244 885e96df 2023-03-06 naddy EOF
1245 b2c50a0a 2019-07-25 stsp cmp -s $testroot/diff.expected $testroot/diff
1246 49c543a6 2022-03-31 naddy ret=$?
1247 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1248 b2c50a0a 2019-07-25 stsp diff -u $testroot/diff.expected $testroot/diff
1249 b2c50a0a 2019-07-25 stsp fi
1250 0ebf8283 2019-07-24 stsp test_done "$testroot" "$ret"
1251 0ebf8283 2019-07-24 stsp }
1252 c7d20a3f 2019-07-30 stsp
1253 f6cae3ed 2020-09-13 naddy test_histedit_outside_refs_heads() {
1254 c7d20a3f 2019-07-30 stsp local testroot=`test_init histedit_outside_refs_heads`
1255 c7d20a3f 2019-07-30 stsp local commit1=`git_show_head $testroot/repo`
1256 c7d20a3f 2019-07-30 stsp
1257 c7d20a3f 2019-07-30 stsp got checkout $testroot/repo $testroot/wt > /dev/null
1258 49c543a6 2022-03-31 naddy ret=$?
1259 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1260 c7d20a3f 2019-07-30 stsp echo "got checkout failed unexpectedly"
1261 c7d20a3f 2019-07-30 stsp test_done "$testroot" "$ret"
1262 c7d20a3f 2019-07-30 stsp return 1
1263 c7d20a3f 2019-07-30 stsp fi
1264 c7d20a3f 2019-07-30 stsp
1265 c7d20a3f 2019-07-30 stsp echo "modified alpha" > $testroot/wt/alpha
1266 c7d20a3f 2019-07-30 stsp
1267 c7d20a3f 2019-07-30 stsp (cd $testroot/wt && got commit -m 'change alpha' \
1268 c7d20a3f 2019-07-30 stsp > $testroot/stdout 2> $testroot/stderr)
1269 49c543a6 2022-03-31 naddy ret=$?
1270 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1271 c7d20a3f 2019-07-30 stsp echo "got commit failed unexpectedly" >&2
1272 c7d20a3f 2019-07-30 stsp test_done "$testroot" "1"
1273 c7d20a3f 2019-07-30 stsp return 1
1274 c7d20a3f 2019-07-30 stsp fi
1275 c7d20a3f 2019-07-30 stsp local commit2=`git_show_head $testroot/repo`
1276 0ebf8283 2019-07-24 stsp
1277 e31abbf2 2020-03-22 stsp got ref -r $testroot/repo -c master refs/remotes/origin/master
1278 49c543a6 2022-03-31 naddy ret=$?
1279 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1280 c7d20a3f 2019-07-30 stsp echo "got ref failed unexpectedly" >&2
1281 c7d20a3f 2019-07-30 stsp test_done "$testroot" "1"
1282 c7d20a3f 2019-07-30 stsp return 1
1283 c7d20a3f 2019-07-30 stsp fi
1284 c7d20a3f 2019-07-30 stsp
1285 c7d20a3f 2019-07-30 stsp (cd $testroot/wt && got update -b origin/master -c $commit1 >/dev/null)
1286 49c543a6 2022-03-31 naddy ret=$?
1287 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1288 c7d20a3f 2019-07-30 stsp echo "got update failed unexpectedly"
1289 c7d20a3f 2019-07-30 stsp test_done "$testroot" "$ret"
1290 c7d20a3f 2019-07-30 stsp return 1
1291 c7d20a3f 2019-07-30 stsp fi
1292 c7d20a3f 2019-07-30 stsp
1293 c7d20a3f 2019-07-30 stsp echo "edit $commit2" > $testroot/histedit-script
1294 c7d20a3f 2019-07-30 stsp (cd $testroot/wt && got histedit -F $testroot/histedit-script \
1295 c7d20a3f 2019-07-30 stsp 2> $testroot/stderr)
1296 c7d20a3f 2019-07-30 stsp
1297 c7d20a3f 2019-07-30 stsp echo -n "got: will not edit commit history of a branch outside the " \
1298 c7d20a3f 2019-07-30 stsp > $testroot/stderr.expected
1299 c7d20a3f 2019-07-30 stsp echo '"refs/heads/" reference namespace' \
1300 c7d20a3f 2019-07-30 stsp >> $testroot/stderr.expected
1301 c7d20a3f 2019-07-30 stsp cmp -s $testroot/stderr.expected $testroot/stderr
1302 49c543a6 2022-03-31 naddy ret=$?
1303 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1304 c7d20a3f 2019-07-30 stsp diff -u $testroot/stderr.expected $testroot/stderr
1305 0def28b1 2019-08-17 stsp fi
1306 0def28b1 2019-08-17 stsp test_done "$testroot" "$ret"
1307 0def28b1 2019-08-17 stsp }
1308 0def28b1 2019-08-17 stsp
1309 f6cae3ed 2020-09-13 naddy test_histedit_fold_last_commit_swap() {
1310 0def28b1 2019-08-17 stsp local testroot=`test_init histedit_fold_last_commit_swap`
1311 0def28b1 2019-08-17 stsp
1312 0def28b1 2019-08-17 stsp local orig_commit=`git_show_head $testroot/repo`
1313 0def28b1 2019-08-17 stsp
1314 0def28b1 2019-08-17 stsp echo "modified alpha on master" > $testroot/repo/alpha
1315 f73bf5bd 2023-10-01 naddy git -C $testroot/repo rm -q beta
1316 0def28b1 2019-08-17 stsp echo "new file on master" > $testroot/repo/epsilon/new
1317 f73bf5bd 2023-10-01 naddy git -C $testroot/repo add epsilon/new
1318 0def28b1 2019-08-17 stsp git_commit $testroot/repo -m "committing changes"
1319 0def28b1 2019-08-17 stsp local old_commit1=`git_show_head $testroot/repo`
1320 0def28b1 2019-08-17 stsp
1321 0def28b1 2019-08-17 stsp echo "modified zeta on master" > $testroot/repo/epsilon/zeta
1322 0def28b1 2019-08-17 stsp git_commit $testroot/repo -m "committing to zeta on master"
1323 0def28b1 2019-08-17 stsp local old_commit2=`git_show_head $testroot/repo`
1324 0def28b1 2019-08-17 stsp
1325 0def28b1 2019-08-17 stsp got checkout -c $orig_commit $testroot/repo $testroot/wt > /dev/null
1326 49c543a6 2022-03-31 naddy ret=$?
1327 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1328 0def28b1 2019-08-17 stsp test_done "$testroot" "$ret"
1329 0def28b1 2019-08-17 stsp return 1
1330 0def28b1 2019-08-17 stsp fi
1331 0def28b1 2019-08-17 stsp
1332 14eb0fef 2023-10-26 stsp cat > $testroot/editor.sh <<EOF
1333 14eb0fef 2023-10-26 stsp #!/bin/sh
1334 14eb0fef 2023-10-26 stsp ed -s "\$1" <<-EOF
1335 14eb0fef 2023-10-26 stsp ,s/.*/committing folded changes/
1336 14eb0fef 2023-10-26 stsp w
1337 14eb0fef 2023-10-26 stsp EOF
1338 14eb0fef 2023-10-26 stsp EOF
1339 14eb0fef 2023-10-26 stsp chmod +x $testroot/editor.sh
1340 14eb0fef 2023-10-26 stsp
1341 0def28b1 2019-08-17 stsp # fold commit2 into commit1 (requires swapping commits)
1342 0def28b1 2019-08-17 stsp echo "fold $old_commit2" > $testroot/histedit-script
1343 14eb0fef 2023-10-26 stsp echo "mesg $old_commit1" >> $testroot/histedit-script
1344 0def28b1 2019-08-17 stsp
1345 14eb0fef 2023-10-26 stsp (cd $testroot/wt && env EDITOR="$testroot/editor.sh" \
1346 14eb0fef 2023-10-26 stsp VISUAL="$testroot/editor.sh" \
1347 14eb0fef 2023-10-26 stsp got histedit -F $testroot/histedit-script > $testroot/stdout \
1348 14eb0fef 2023-10-26 stsp 2> $testroot/stderr)
1349 0def28b1 2019-08-17 stsp
1350 49c543a6 2022-03-31 naddy ret=$?
1351 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1352 0def28b1 2019-08-17 stsp echo "histedit failed unexpectedly" >&2
1353 0def28b1 2019-08-17 stsp test_done "$testroot" "$ret"
1354 0def28b1 2019-08-17 stsp return 1
1355 c7d20a3f 2019-07-30 stsp fi
1356 0def28b1 2019-08-17 stsp
1357 0def28b1 2019-08-17 stsp local new_commit=`git_show_head $testroot/repo`
1358 0def28b1 2019-08-17 stsp
1359 0def28b1 2019-08-17 stsp local short_old_commit1=`trim_obj_id 28 $old_commit1`
1360 0def28b1 2019-08-17 stsp local short_old_commit2=`trim_obj_id 28 $old_commit2`
1361 0def28b1 2019-08-17 stsp local short_new_commit=`trim_obj_id 28 $new_commit`
1362 0def28b1 2019-08-17 stsp
1363 0def28b1 2019-08-17 stsp echo "G epsilon/zeta" >> $testroot/stdout.expected
1364 0def28b1 2019-08-17 stsp echo -n "$short_old_commit2 -> fold commit: committing to zeta " \
1365 0def28b1 2019-08-17 stsp >> $testroot/stdout.expected
1366 0def28b1 2019-08-17 stsp echo "on master" >> $testroot/stdout.expected
1367 0def28b1 2019-08-17 stsp echo "G alpha" >> $testroot/stdout.expected
1368 0def28b1 2019-08-17 stsp echo "D beta" >> $testroot/stdout.expected
1369 0def28b1 2019-08-17 stsp echo "A epsilon/new" >> $testroot/stdout.expected
1370 0def28b1 2019-08-17 stsp echo -n "$short_old_commit1 -> $short_new_commit: " \
1371 0def28b1 2019-08-17 stsp >> $testroot/stdout.expected
1372 0def28b1 2019-08-17 stsp echo "committing folded changes" >> $testroot/stdout.expected
1373 0def28b1 2019-08-17 stsp echo "Switching work tree to refs/heads/master" \
1374 0def28b1 2019-08-17 stsp >> $testroot/stdout.expected
1375 0def28b1 2019-08-17 stsp
1376 0def28b1 2019-08-17 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1377 49c543a6 2022-03-31 naddy ret=$?
1378 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1379 0def28b1 2019-08-17 stsp diff -u $testroot/stdout.expected $testroot/stdout
1380 0def28b1 2019-08-17 stsp fi
1381 c7d20a3f 2019-07-30 stsp test_done "$testroot" "$ret"
1382 c7d20a3f 2019-07-30 stsp }
1383 de05890f 2020-03-05 stsp
1384 f6cae3ed 2020-09-13 naddy test_histedit_split_commit() {
1385 de05890f 2020-03-05 stsp local testroot=`test_init histedit_split_commit`
1386 de05890f 2020-03-05 stsp
1387 de05890f 2020-03-05 stsp local orig_commit=`git_show_head $testroot/repo`
1388 de05890f 2020-03-05 stsp
1389 de05890f 2020-03-05 stsp echo "modified alpha on master" > $testroot/repo/alpha
1390 f73bf5bd 2023-10-01 naddy git -C $testroot/repo rm -q beta
1391 de05890f 2020-03-05 stsp echo "new file on master" > $testroot/repo/epsilon/new
1392 f73bf5bd 2023-10-01 naddy git -C $testroot/repo add epsilon/new
1393 de05890f 2020-03-05 stsp git_commit $testroot/repo -m "committing changes 1"
1394 de05890f 2020-03-05 stsp local old_commit1=`git_show_head $testroot/repo`
1395 de05890f 2020-03-05 stsp local short_old_commit1=`trim_obj_id 28 $old_commit1`
1396 de05890f 2020-03-05 stsp
1397 de05890f 2020-03-05 stsp echo "modified zeta on master" > $testroot/repo/epsilon/zeta
1398 de05890f 2020-03-05 stsp git_commit $testroot/repo -m "committing changes 2"
1399 de05890f 2020-03-05 stsp local old_commit2=`git_show_head $testroot/repo`
1400 de05890f 2020-03-05 stsp local short_old_commit2=`trim_obj_id 28 $old_commit2`
1401 c7d20a3f 2019-07-30 stsp
1402 de05890f 2020-03-05 stsp got checkout -c $orig_commit $testroot/repo $testroot/wt > /dev/null
1403 49c543a6 2022-03-31 naddy ret=$?
1404 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1405 de05890f 2020-03-05 stsp test_done "$testroot" "$ret"
1406 de05890f 2020-03-05 stsp return 1
1407 de05890f 2020-03-05 stsp fi
1408 de05890f 2020-03-05 stsp
1409 de05890f 2020-03-05 stsp # split commit1 into commitA and commitB and commitC
1410 de05890f 2020-03-05 stsp echo "e $old_commit1" > $testroot/histedit-script
1411 de05890f 2020-03-05 stsp echo "p $old_commit2" >> $testroot/histedit-script
1412 de05890f 2020-03-05 stsp
1413 de05890f 2020-03-05 stsp (cd $testroot/wt && got histedit -F $testroot/histedit-script \
1414 de05890f 2020-03-05 stsp > $testroot/stdout 2> $testroot/stderr)
1415 49c543a6 2022-03-31 naddy ret=$?
1416 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1417 de05890f 2020-03-05 stsp echo "histedit failed unexpectedly:" >&2
1418 de05890f 2020-03-05 stsp cat $testroot/stderr >&2
1419 de05890f 2020-03-05 stsp test_done "$testroot" "$ret"
1420 de05890f 2020-03-05 stsp return 1
1421 de05890f 2020-03-05 stsp fi
1422 de05890f 2020-03-05 stsp
1423 de05890f 2020-03-05 stsp echo "G alpha" > $testroot/stdout.expected
1424 de05890f 2020-03-05 stsp echo "D beta" >> $testroot/stdout.expected
1425 de05890f 2020-03-05 stsp echo "A epsilon/new" >> $testroot/stdout.expected
1426 de05890f 2020-03-05 stsp echo "Stopping histedit for amending commit $old_commit1" \
1427 de05890f 2020-03-05 stsp >> $testroot/stdout.expected
1428 de05890f 2020-03-05 stsp
1429 de05890f 2020-03-05 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1430 49c543a6 2022-03-31 naddy ret=$?
1431 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1432 de05890f 2020-03-05 stsp diff -u $testroot/stdout.expected $testroot/stdout
1433 de05890f 2020-03-05 stsp test_done "$testroot" "$ret"
1434 de05890f 2020-03-05 stsp return 1
1435 de05890f 2020-03-05 stsp fi
1436 de05890f 2020-03-05 stsp
1437 de05890f 2020-03-05 stsp (cd $testroot/wt && got ci -m "commitA" alpha >/dev/null)
1438 49c543a6 2022-03-31 naddy ret=$?
1439 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1440 de05890f 2020-03-05 stsp echo "commit failed unexpectedly" >&2
1441 de05890f 2020-03-05 stsp test_done "$testroot" "$ret"
1442 de05890f 2020-03-05 stsp return 1
1443 de05890f 2020-03-05 stsp fi
1444 de05890f 2020-03-05 stsp
1445 de05890f 2020-03-05 stsp (cd $testroot/wt && got ci -m "commitB" beta >/dev/null)
1446 49c543a6 2022-03-31 naddy ret=$?
1447 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1448 de05890f 2020-03-05 stsp echo "commit failed unexpectedly" >&2
1449 de05890f 2020-03-05 stsp test_done "$testroot" "$ret"
1450 de05890f 2020-03-05 stsp return 1
1451 de05890f 2020-03-05 stsp fi
1452 de05890f 2020-03-05 stsp
1453 de05890f 2020-03-05 stsp (cd $testroot/wt && got ci -m "commitC" epsilon/new >/dev/null)
1454 49c543a6 2022-03-31 naddy ret=$?
1455 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1456 de05890f 2020-03-05 stsp echo "commit failed unexpectedly" >&2
1457 de05890f 2020-03-05 stsp test_done "$testroot" "$ret"
1458 de05890f 2020-03-05 stsp return 1
1459 de05890f 2020-03-05 stsp fi
1460 de05890f 2020-03-05 stsp
1461 de05890f 2020-03-05 stsp (cd $testroot/wt && got histedit -c \
1462 de05890f 2020-03-05 stsp > $testroot/stdout 2> $testroot/stderr)
1463 49c543a6 2022-03-31 naddy ret=$?
1464 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1465 de05890f 2020-03-05 stsp echo "histedit failed unexpectedly:" >&2
1466 de05890f 2020-03-05 stsp cat $testroot/stderr >&2
1467 de05890f 2020-03-05 stsp test_done "$testroot" "$ret"
1468 de05890f 2020-03-05 stsp return 1
1469 de05890f 2020-03-05 stsp fi
1470 de05890f 2020-03-05 stsp local new_commit2=`git_show_head $testroot/repo`
1471 de05890f 2020-03-05 stsp local short_new_commit2=`trim_obj_id 28 $new_commit2`
1472 de05890f 2020-03-05 stsp
1473 de05890f 2020-03-05 stsp echo "$short_old_commit1 -> no-op change: committing changes 1" \
1474 de05890f 2020-03-05 stsp > $testroot/stdout.expected
1475 de05890f 2020-03-05 stsp echo "G epsilon/zeta" >> $testroot/stdout.expected
1476 de05890f 2020-03-05 stsp echo "$short_old_commit2 -> $short_new_commit2: committing changes 2" \
1477 de05890f 2020-03-05 stsp >> $testroot/stdout.expected
1478 de05890f 2020-03-05 stsp echo "Switching work tree to refs/heads/master" \
1479 de05890f 2020-03-05 stsp >> $testroot/stdout.expected
1480 de05890f 2020-03-05 stsp
1481 de05890f 2020-03-05 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1482 49c543a6 2022-03-31 naddy ret=$?
1483 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1484 de05890f 2020-03-05 stsp diff -u $testroot/stdout.expected $testroot/stdout
1485 5b87815e 2020-03-05 stsp fi
1486 5b87815e 2020-03-05 stsp test_done "$testroot" "$ret"
1487 5b87815e 2020-03-05 stsp
1488 5b87815e 2020-03-05 stsp }
1489 5b87815e 2020-03-05 stsp
1490 f6cae3ed 2020-09-13 naddy test_histedit_duplicate_commit_in_script() {
1491 5b87815e 2020-03-05 stsp local testroot=`test_init histedit_duplicate_commit_in_script`
1492 5b87815e 2020-03-05 stsp
1493 5b87815e 2020-03-05 stsp local orig_commit=`git_show_head $testroot/repo`
1494 5b87815e 2020-03-05 stsp
1495 5b87815e 2020-03-05 stsp echo "modified alpha on master" > $testroot/repo/alpha
1496 f73bf5bd 2023-10-01 naddy git -C $testroot/repo rm -q beta
1497 5b87815e 2020-03-05 stsp echo "new file on master" > $testroot/repo/epsilon/new
1498 f73bf5bd 2023-10-01 naddy git -C $testroot/repo add epsilon/new
1499 5b87815e 2020-03-05 stsp git_commit $testroot/repo -m "committing changes 1"
1500 5b87815e 2020-03-05 stsp local old_commit1=`git_show_head $testroot/repo`
1501 5b87815e 2020-03-05 stsp
1502 5b87815e 2020-03-05 stsp echo "modified zeta on master" > $testroot/repo/epsilon/zeta
1503 5b87815e 2020-03-05 stsp git_commit $testroot/repo -m "committing changes 2"
1504 5b87815e 2020-03-05 stsp local old_commit2=`git_show_head $testroot/repo`
1505 5b87815e 2020-03-05 stsp
1506 5b87815e 2020-03-05 stsp got checkout -c $orig_commit $testroot/repo $testroot/wt > /dev/null
1507 49c543a6 2022-03-31 naddy ret=$?
1508 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1509 5b87815e 2020-03-05 stsp test_done "$testroot" "$ret"
1510 5b87815e 2020-03-05 stsp return 1
1511 5b87815e 2020-03-05 stsp fi
1512 5b87815e 2020-03-05 stsp
1513 5b87815e 2020-03-05 stsp # This histedit script lists commit1 more than once
1514 5b87815e 2020-03-05 stsp echo "p $old_commit1" > $testroot/histedit-script
1515 5b87815e 2020-03-05 stsp echo "p $old_commit1" >> $testroot/histedit-script
1516 5b87815e 2020-03-05 stsp echo "p $old_commit2" >> $testroot/histedit-script
1517 5b87815e 2020-03-05 stsp
1518 5b87815e 2020-03-05 stsp (cd $testroot/wt && got histedit -F $testroot/histedit-script \
1519 5b87815e 2020-03-05 stsp > $testroot/stdout 2> $testroot/stderr)
1520 49c543a6 2022-03-31 naddy ret=$?
1521 49c543a6 2022-03-31 naddy if [ $ret -eq 0 ]; then
1522 5b87815e 2020-03-05 stsp echo "histedit succeeded unexpectedly:" >&2
1523 5b87815e 2020-03-05 stsp cat $testroot/stdout >&2
1524 ea4ee74a 2023-06-17 op test_done "$testroot" 1
1525 5b87815e 2020-03-05 stsp return 1
1526 de05890f 2020-03-05 stsp fi
1527 5b87815e 2020-03-05 stsp
1528 5b87815e 2020-03-05 stsp echo -n "got: commit $old_commit1 is listed more than once " \
1529 5b87815e 2020-03-05 stsp > $testroot/stderr.expected
1530 5b87815e 2020-03-05 stsp echo "in histedit script" >> $testroot/stderr.expected
1531 5b87815e 2020-03-05 stsp
1532 5b87815e 2020-03-05 stsp cmp -s $testroot/stderr.expected $testroot/stderr
1533 49c543a6 2022-03-31 naddy ret=$?
1534 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1535 5b87815e 2020-03-05 stsp diff -u $testroot/stderr.expected $testroot/stderr
1536 5b87815e 2020-03-05 stsp fi
1537 de05890f 2020-03-05 stsp test_done "$testroot" "$ret"
1538 de05890f 2020-03-05 stsp
1539 de05890f 2020-03-05 stsp }
1540 ecfff807 2020-09-23 stsp
1541 ecfff807 2020-09-23 stsp # if a previous commit introduces a new file, and it is folded into a commit
1542 ecfff807 2020-09-23 stsp # that deletes the same file, the file still exists after the histedit
1543 ecfff807 2020-09-23 stsp test_histedit_fold_add_delete() {
1544 4c662b1d 2021-09-01 stsp local testroot=`test_init histedit_fold_add_delete`
1545 ecfff807 2020-09-23 stsp
1546 ecfff807 2020-09-23 stsp local orig_commit=`git_show_head $testroot/repo`
1547 ecfff807 2020-09-23 stsp
1548 ecfff807 2020-09-23 stsp echo "added new file epsilon/psi" > $testroot/repo/epsilon/psi
1549 f73bf5bd 2023-10-01 naddy git -C $testroot/repo add epsilon/psi
1550 ecfff807 2020-09-23 stsp git_commit $testroot/repo -m "committing changes"
1551 ecfff807 2020-09-23 stsp local old_commit1=`git_show_head $testroot/repo`
1552 ecfff807 2020-09-23 stsp
1553 ecfff807 2020-09-23 stsp echo "modified epsilon/psi" > $testroot/repo/epsilon/psi
1554 ecfff807 2020-09-23 stsp git_commit $testroot/repo -m "editing psi"
1555 ecfff807 2020-09-23 stsp local old_commit2=`git_show_head $testroot/repo`
1556 ecfff807 2020-09-23 stsp
1557 f73bf5bd 2023-10-01 naddy git -C $testroot/repo rm -q epsilon/psi
1558 ecfff807 2020-09-23 stsp git_commit $testroot/repo -m "removing psi"
1559 ecfff807 2020-09-23 stsp local old_commit3=`git_show_head $testroot/repo`
1560 ecfff807 2020-09-23 stsp
1561 ecfff807 2020-09-23 stsp got checkout -c $orig_commit $testroot/repo $testroot/wt > /dev/null
1562 49c543a6 2022-03-31 naddy ret=$?
1563 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1564 ecfff807 2020-09-23 stsp test_done "$testroot" "$ret"
1565 ecfff807 2020-09-23 stsp return 1
1566 ecfff807 2020-09-23 stsp fi
1567 de05890f 2020-03-05 stsp
1568 14eb0fef 2023-10-26 stsp cat > $testroot/editor.sh <<EOF
1569 14eb0fef 2023-10-26 stsp #!/bin/sh
1570 14eb0fef 2023-10-26 stsp ed -s "\$1" <<-EOF
1571 14eb0fef 2023-10-26 stsp ,s/.*/folded changes/
1572 14eb0fef 2023-10-26 stsp w
1573 14eb0fef 2023-10-26 stsp EOF
1574 14eb0fef 2023-10-26 stsp EOF
1575 14eb0fef 2023-10-26 stsp chmod +x $testroot/editor.sh
1576 14eb0fef 2023-10-26 stsp
1577 ecfff807 2020-09-23 stsp echo "fold $old_commit1" > $testroot/histedit-script
1578 ecfff807 2020-09-23 stsp echo "fold $old_commit2" >> $testroot/histedit-script
1579 ecfff807 2020-09-23 stsp echo "pick $old_commit3" >> $testroot/histedit-script
1580 ecfff807 2020-09-23 stsp
1581 14eb0fef 2023-10-26 stsp (cd $testroot/wt && env EDITOR="$testroot/editor.sh" \
1582 14eb0fef 2023-10-26 stsp VISUAL="$testroot/editor.sh" \
1583 14eb0fef 2023-10-26 stsp got histedit -F $testroot/histedit-script > $testroot/stdout)
1584 ecfff807 2020-09-23 stsp
1585 ecfff807 2020-09-23 stsp local new_commit1=`git_show_head $testroot/repo`
1586 ecfff807 2020-09-23 stsp
1587 ecfff807 2020-09-23 stsp local short_old_commit1=`trim_obj_id 28 $old_commit1`
1588 ecfff807 2020-09-23 stsp local short_old_commit2=`trim_obj_id 28 $old_commit2`
1589 ecfff807 2020-09-23 stsp local short_old_commit3=`trim_obj_id 28 $old_commit3`
1590 ecfff807 2020-09-23 stsp local short_new_commit1=`trim_obj_id 28 $new_commit1`
1591 ecfff807 2020-09-23 stsp
1592 ecfff807 2020-09-23 stsp echo "A epsilon/psi" >> $testroot/stdout.expected
1593 ecfff807 2020-09-23 stsp echo "$short_old_commit1 -> fold commit: committing changes" \
1594 ecfff807 2020-09-23 stsp >> $testroot/stdout.expected
1595 ecfff807 2020-09-23 stsp echo "G epsilon/psi" >> $testroot/stdout.expected
1596 ecfff807 2020-09-23 stsp echo "$short_old_commit2 -> fold commit: editing psi" \
1597 ecfff807 2020-09-23 stsp >> $testroot/stdout.expected
1598 0a22ca1a 2020-09-23 stsp echo "D epsilon/psi" >> $testroot/stdout.expected
1599 0a22ca1a 2020-09-23 stsp echo "$short_old_commit3 -> no-op change: folded changes" \
1600 ecfff807 2020-09-23 stsp >> $testroot/stdout.expected
1601 ecfff807 2020-09-23 stsp echo "Switching work tree to refs/heads/master" \
1602 ecfff807 2020-09-23 stsp >> $testroot/stdout.expected
1603 ecfff807 2020-09-23 stsp
1604 ecfff807 2020-09-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1605 49c543a6 2022-03-31 naddy ret=$?
1606 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1607 ecfff807 2020-09-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
1608 ecfff807 2020-09-23 stsp test_done "$testroot" "$ret"
1609 ecfff807 2020-09-23 stsp return 1
1610 ecfff807 2020-09-23 stsp fi
1611 ecfff807 2020-09-23 stsp
1612 ecfff807 2020-09-23 stsp if [ -e $testroot/wt/epsilon/psi ]; then
1613 0a22ca1a 2020-09-23 stsp echo "removed file psi still exists on disk" >&2
1614 0a22ca1a 2020-09-23 stsp test_done "$testroot" "1"
1615 ecfff807 2020-09-23 stsp return 1
1616 ecfff807 2020-09-23 stsp fi
1617 ecfff807 2020-09-23 stsp
1618 ecfff807 2020-09-23 stsp (cd $testroot/wt && got status > $testroot/stdout)
1619 ecfff807 2020-09-23 stsp
1620 ecfff807 2020-09-23 stsp echo -n > $testroot/stdout.expected
1621 ecfff807 2020-09-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1622 49c543a6 2022-03-31 naddy ret=$?
1623 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1624 ecfff807 2020-09-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
1625 ecfff807 2020-09-23 stsp test_done "$testroot" "$ret"
1626 ecfff807 2020-09-23 stsp return 1
1627 ecfff807 2020-09-23 stsp fi
1628 ecfff807 2020-09-23 stsp
1629 ecfff807 2020-09-23 stsp (cd $testroot/wt && got log -l3 | grep ^commit > $testroot/stdout)
1630 ecfff807 2020-09-23 stsp echo "commit $new_commit1 (master)" > $testroot/stdout.expected
1631 29c68398 2020-09-24 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1632 49c543a6 2022-03-31 naddy ret=$?
1633 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1634 29c68398 2020-09-24 stsp diff -u $testroot/stdout.expected $testroot/stdout
1635 29c68398 2020-09-24 stsp test_done "$testroot" "$ret"
1636 29c68398 2020-09-24 stsp return 1
1637 29c68398 2020-09-24 stsp fi
1638 29c68398 2020-09-24 stsp
1639 29c68398 2020-09-24 stsp got tree -r $testroot/repo epsilon > $testroot/stdout
1640 29c68398 2020-09-24 stsp echo "zeta" > $testroot/stdout.expected
1641 ecfff807 2020-09-23 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1642 49c543a6 2022-03-31 naddy ret=$?
1643 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1644 ecfff807 2020-09-23 stsp diff -u $testroot/stdout.expected $testroot/stdout
1645 15aed053 2023-03-07 naddy fi
1646 15aed053 2023-03-07 naddy test_done "$testroot" "$ret"
1647 15aed053 2023-03-07 naddy }
1648 c2ba7aa6 2023-07-26 stsp
1649 c2ba7aa6 2023-07-26 stsp # if a previous commit edits a file, and it is folded into a commit
1650 c2ba7aa6 2023-07-26 stsp # that deletes the same file, the file will be deleted by histedit
1651 c2ba7aa6 2023-07-26 stsp test_histedit_fold_edit_delete() {
1652 c2ba7aa6 2023-07-26 stsp local testroot=`test_init histedit_fold_edit_delete`
1653 c2ba7aa6 2023-07-26 stsp
1654 c2ba7aa6 2023-07-26 stsp local orig_commit=`git_show_head $testroot/repo`
1655 c2ba7aa6 2023-07-26 stsp
1656 c2ba7aa6 2023-07-26 stsp echo "modify alpha" > $testroot/repo/alpha
1657 f73bf5bd 2023-10-01 naddy git -C $testroot/repo add alpha
1658 c2ba7aa6 2023-07-26 stsp git_commit $testroot/repo -m "modified alpha"
1659 c2ba7aa6 2023-07-26 stsp local old_commit1=`git_show_head $testroot/repo`
1660 15aed053 2023-03-07 naddy
1661 c2ba7aa6 2023-07-26 stsp git_rm $testroot/repo alpha
1662 c2ba7aa6 2023-07-26 stsp git_commit $testroot/repo -m "deleted alpha"
1663 c2ba7aa6 2023-07-26 stsp local old_commit2=`git_show_head $testroot/repo`
1664 c2ba7aa6 2023-07-26 stsp
1665 c2ba7aa6 2023-07-26 stsp got checkout -c $orig_commit $testroot/repo $testroot/wt > /dev/null
1666 c2ba7aa6 2023-07-26 stsp ret=$?
1667 c2ba7aa6 2023-07-26 stsp if [ $ret -ne 0 ]; then
1668 c2ba7aa6 2023-07-26 stsp test_done "$testroot" "$ret"
1669 c2ba7aa6 2023-07-26 stsp return 1
1670 c2ba7aa6 2023-07-26 stsp fi
1671 c2ba7aa6 2023-07-26 stsp
1672 14eb0fef 2023-10-26 stsp cat > $testroot/editor.sh <<EOF
1673 14eb0fef 2023-10-26 stsp #!/bin/sh
1674 14eb0fef 2023-10-26 stsp ed -s "\$1" <<-EOF
1675 14eb0fef 2023-10-26 stsp ,s/.*/folded changes/
1676 14eb0fef 2023-10-26 stsp w
1677 14eb0fef 2023-10-26 stsp EOF
1678 14eb0fef 2023-10-26 stsp EOF
1679 14eb0fef 2023-10-26 stsp chmod +x $testroot/editor.sh
1680 14eb0fef 2023-10-26 stsp
1681 c2ba7aa6 2023-07-26 stsp echo "fold $old_commit1" > $testroot/histedit-script
1682 c2ba7aa6 2023-07-26 stsp echo "pick $old_commit2" >> $testroot/histedit-script
1683 c2ba7aa6 2023-07-26 stsp
1684 14eb0fef 2023-10-26 stsp (cd $testroot/wt && env EDITOR="$testroot/editor.sh" \
1685 14eb0fef 2023-10-26 stsp VISUAL="$testroot/editor.sh" \
1686 14eb0fef 2023-10-26 stsp got histedit -F $testroot/histedit-script > $testroot/stdout)
1687 c2ba7aa6 2023-07-26 stsp
1688 c2ba7aa6 2023-07-26 stsp local new_commit1=`git_show_head $testroot/repo`
1689 c2ba7aa6 2023-07-26 stsp
1690 c2ba7aa6 2023-07-26 stsp local short_old_commit1=`trim_obj_id 28 $old_commit1`
1691 c2ba7aa6 2023-07-26 stsp local short_old_commit2=`trim_obj_id 28 $old_commit2`
1692 c2ba7aa6 2023-07-26 stsp local short_new_commit1=`trim_obj_id 28 $new_commit1`
1693 c2ba7aa6 2023-07-26 stsp
1694 c2ba7aa6 2023-07-26 stsp echo "G alpha" >> $testroot/stdout.expected
1695 c2ba7aa6 2023-07-26 stsp echo "$short_old_commit1 -> fold commit: modified alpha" \
1696 c2ba7aa6 2023-07-26 stsp >> $testroot/stdout.expected
1697 c2ba7aa6 2023-07-26 stsp echo "D alpha" >> $testroot/stdout.expected
1698 c2ba7aa6 2023-07-26 stsp echo "$short_old_commit2 -> $short_new_commit1: folded changes" \
1699 c2ba7aa6 2023-07-26 stsp >> $testroot/stdout.expected
1700 c2ba7aa6 2023-07-26 stsp echo "Switching work tree to refs/heads/master" \
1701 c2ba7aa6 2023-07-26 stsp >> $testroot/stdout.expected
1702 c2ba7aa6 2023-07-26 stsp
1703 c2ba7aa6 2023-07-26 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1704 c2ba7aa6 2023-07-26 stsp ret=$?
1705 c2ba7aa6 2023-07-26 stsp if [ $ret -ne 0 ]; then
1706 c2ba7aa6 2023-07-26 stsp diff -u $testroot/stdout.expected $testroot/stdout
1707 c2ba7aa6 2023-07-26 stsp test_done "$testroot" "$ret"
1708 c2ba7aa6 2023-07-26 stsp return 1
1709 c2ba7aa6 2023-07-26 stsp fi
1710 c2ba7aa6 2023-07-26 stsp
1711 c2ba7aa6 2023-07-26 stsp if [ -e $testroot/wt/alpha ]; then
1712 c2ba7aa6 2023-07-26 stsp echo "removed file alpha still exists on disk" >&2
1713 c2ba7aa6 2023-07-26 stsp test_done "$testroot" "1"
1714 c2ba7aa6 2023-07-26 stsp return 1
1715 c2ba7aa6 2023-07-26 stsp fi
1716 c2ba7aa6 2023-07-26 stsp
1717 c2ba7aa6 2023-07-26 stsp (cd $testroot/wt && got status > $testroot/stdout)
1718 c2ba7aa6 2023-07-26 stsp
1719 c2ba7aa6 2023-07-26 stsp echo -n > $testroot/stdout.expected
1720 c2ba7aa6 2023-07-26 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1721 c2ba7aa6 2023-07-26 stsp ret=$?
1722 c2ba7aa6 2023-07-26 stsp if [ $ret -ne 0 ]; then
1723 c2ba7aa6 2023-07-26 stsp diff -u $testroot/stdout.expected $testroot/stdout
1724 c2ba7aa6 2023-07-26 stsp test_done "$testroot" "$ret"
1725 c2ba7aa6 2023-07-26 stsp return 1
1726 c2ba7aa6 2023-07-26 stsp fi
1727 c2ba7aa6 2023-07-26 stsp
1728 c2ba7aa6 2023-07-26 stsp (cd $testroot/wt && got log -l2 | grep ^commit > $testroot/stdout)
1729 c2ba7aa6 2023-07-26 stsp echo "commit $new_commit1 (master)" > $testroot/stdout.expected
1730 c2ba7aa6 2023-07-26 stsp echo "commit $orig_commit" >> $testroot/stdout.expected
1731 c2ba7aa6 2023-07-26 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1732 c2ba7aa6 2023-07-26 stsp ret=$?
1733 c2ba7aa6 2023-07-26 stsp if [ $ret -ne 0 ]; then
1734 c2ba7aa6 2023-07-26 stsp diff -u $testroot/stdout.expected $testroot/stdout
1735 c2ba7aa6 2023-07-26 stsp fi
1736 c2ba7aa6 2023-07-26 stsp
1737 c2ba7aa6 2023-07-26 stsp test_done "$testroot" "$ret"
1738 c2ba7aa6 2023-07-26 stsp }
1739 c2ba7aa6 2023-07-26 stsp
1740 15aed053 2023-03-07 naddy test_histedit_fold_delete_add() {
1741 15aed053 2023-03-07 naddy local testroot=`test_init histedit_fold_delete_add`
1742 15aed053 2023-03-07 naddy
1743 15aed053 2023-03-07 naddy local orig_commit=`git_show_head $testroot/repo`
1744 15aed053 2023-03-07 naddy
1745 f73bf5bd 2023-10-01 naddy git -C $testroot/repo rm -q alpha
1746 15aed053 2023-03-07 naddy git_commit $testroot/repo -m "removing alpha"
1747 15aed053 2023-03-07 naddy local old_commit1=`git_show_head $testroot/repo`
1748 15aed053 2023-03-07 naddy
1749 15aed053 2023-03-07 naddy echo "modified alpha" >$testroot/repo/alpha
1750 f73bf5bd 2023-10-01 naddy git -C $testroot/repo add alpha
1751 15aed053 2023-03-07 naddy git_commit $testroot/repo -m "add back modified alpha"
1752 15aed053 2023-03-07 naddy local old_commit2=`git_show_head $testroot/repo`
1753 15aed053 2023-03-07 naddy
1754 15aed053 2023-03-07 naddy got checkout -c $orig_commit $testroot/repo $testroot/wt > /dev/null
1755 15aed053 2023-03-07 naddy ret=$?
1756 15aed053 2023-03-07 naddy if [ $ret -ne 0 ]; then
1757 15aed053 2023-03-07 naddy test_done "$testroot" "$ret"
1758 15aed053 2023-03-07 naddy return 1
1759 15aed053 2023-03-07 naddy fi
1760 15aed053 2023-03-07 naddy
1761 14eb0fef 2023-10-26 stsp cat > $testroot/editor.sh <<EOF
1762 14eb0fef 2023-10-26 stsp #!/bin/sh
1763 14eb0fef 2023-10-26 stsp ed -s "\$1" <<-EOF
1764 14eb0fef 2023-10-26 stsp ,s/.*/folded changes/
1765 14eb0fef 2023-10-26 stsp w
1766 14eb0fef 2023-10-26 stsp EOF
1767 14eb0fef 2023-10-26 stsp EOF
1768 14eb0fef 2023-10-26 stsp chmod +x $testroot/editor.sh
1769 14eb0fef 2023-10-26 stsp
1770 15aed053 2023-03-07 naddy echo "fold $old_commit1" > $testroot/histedit-script
1771 15aed053 2023-03-07 naddy echo "pick $old_commit2" >> $testroot/histedit-script
1772 14eb0fef 2023-10-26 stsp
1773 14eb0fef 2023-10-26 stsp (cd $testroot/wt && env EDITOR="$testroot/editor.sh" \
1774 14eb0fef 2023-10-26 stsp VISUAL="$testroot/editor.sh" \
1775 14eb0fef 2023-10-26 stsp got histedit -F $testroot/histedit-script > $testroot/stdout)
1776 15aed053 2023-03-07 naddy
1777 15aed053 2023-03-07 naddy local new_commit1=`git_show_head $testroot/repo`
1778 15aed053 2023-03-07 naddy
1779 15aed053 2023-03-07 naddy local short_old_commit1=`trim_obj_id 28 $old_commit1`
1780 15aed053 2023-03-07 naddy local short_old_commit2=`trim_obj_id 28 $old_commit2`
1781 15aed053 2023-03-07 naddy local short_new_commit1=`trim_obj_id 28 $new_commit1`
1782 15aed053 2023-03-07 naddy
1783 15aed053 2023-03-07 naddy echo "D alpha" > $testroot/stdout.expected
1784 15aed053 2023-03-07 naddy echo "$short_old_commit1 -> fold commit: removing alpha" \
1785 15aed053 2023-03-07 naddy >> $testroot/stdout.expected
1786 15aed053 2023-03-07 naddy echo "A alpha" >> $testroot/stdout.expected
1787 15aed053 2023-03-07 naddy echo "$short_old_commit2 -> $short_new_commit1: folded changes" \
1788 15aed053 2023-03-07 naddy >> $testroot/stdout.expected
1789 15aed053 2023-03-07 naddy echo "Switching work tree to refs/heads/master" \
1790 15aed053 2023-03-07 naddy >> $testroot/stdout.expected
1791 15aed053 2023-03-07 naddy
1792 9a298e5c 2023-03-10 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1793 9a298e5c 2023-03-10 stsp ret=$?
1794 9a298e5c 2023-03-10 stsp if [ $ret -ne 0 ]; then
1795 9a298e5c 2023-03-10 stsp diff -u $testroot/stdout.expected $testroot/stdout
1796 9a298e5c 2023-03-10 stsp test_done "$testroot" "$ret"
1797 9a298e5c 2023-03-10 stsp return 1
1798 9a298e5c 2023-03-10 stsp fi
1799 15aed053 2023-03-07 naddy
1800 15aed053 2023-03-07 naddy if [ ! -e $testroot/wt/alpha ]; then
1801 9a298e5c 2023-03-10 stsp echo "file alpha is missing on disk" >&2
1802 9a298e5c 2023-03-10 stsp test_done "$testroot" "1"
1803 5fdcbbb6 2023-03-14 naddy return 1
1804 5fdcbbb6 2023-03-14 naddy fi
1805 5fdcbbb6 2023-03-14 naddy
1806 5fdcbbb6 2023-03-14 naddy echo "modified alpha" > $testroot/content.expected
1807 5fdcbbb6 2023-03-14 naddy cat $testroot/wt/alpha > $testroot/content
1808 5fdcbbb6 2023-03-14 naddy cmp -s $testroot/content.expected $testroot/content
1809 5fdcbbb6 2023-03-14 naddy ret=$?
1810 5fdcbbb6 2023-03-14 naddy if [ $ret -ne 0 ]; then
1811 5fdcbbb6 2023-03-14 naddy diff -u $testroot/content.expected $testroot/content
1812 5fdcbbb6 2023-03-14 naddy test_done "$testroot" "$ret"
1813 9a298e5c 2023-03-10 stsp return 1
1814 ecfff807 2020-09-23 stsp fi
1815 9a298e5c 2023-03-10 stsp test_done "$testroot" "0"
1816 ecfff807 2020-09-23 stsp }
1817 239f5c5a 2020-12-13 stsp
1818 239f5c5a 2020-12-13 stsp test_histedit_fold_only() {
1819 239f5c5a 2020-12-13 stsp local testroot=`test_init histedit_fold_only`
1820 239f5c5a 2020-12-13 stsp
1821 239f5c5a 2020-12-13 stsp local orig_commit=`git_show_head $testroot/repo`
1822 239f5c5a 2020-12-13 stsp
1823 239f5c5a 2020-12-13 stsp echo "modified alpha on master" > $testroot/repo/alpha
1824 f73bf5bd 2023-10-01 naddy git -C $testroot/repo rm -q beta
1825 239f5c5a 2020-12-13 stsp echo "new file on master" > $testroot/repo/epsilon/new
1826 f73bf5bd 2023-10-01 naddy git -C $testroot/repo add epsilon/new
1827 239f5c5a 2020-12-13 stsp git_commit $testroot/repo -m "committing changes"
1828 239f5c5a 2020-12-13 stsp local old_commit1=`git_show_head $testroot/repo`
1829 239f5c5a 2020-12-13 stsp
1830 239f5c5a 2020-12-13 stsp echo "modified zeta on master" > $testroot/repo/epsilon/zeta
1831 239f5c5a 2020-12-13 stsp git_commit $testroot/repo -m "committing to zeta on master"
1832 239f5c5a 2020-12-13 stsp local old_commit2=`git_show_head $testroot/repo`
1833 239f5c5a 2020-12-13 stsp
1834 239f5c5a 2020-12-13 stsp echo "modified delta on master" > $testroot/repo/gamma/delta
1835 239f5c5a 2020-12-13 stsp git_commit $testroot/repo -m "committing to delta on master"
1836 239f5c5a 2020-12-13 stsp local old_commit3=`git_show_head $testroot/repo`
1837 239f5c5a 2020-12-13 stsp
1838 239f5c5a 2020-12-13 stsp got checkout -c $orig_commit $testroot/repo $testroot/wt > /dev/null
1839 49c543a6 2022-03-31 naddy ret=$?
1840 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1841 239f5c5a 2020-12-13 stsp test_done "$testroot" "$ret"
1842 239f5c5a 2020-12-13 stsp return 1
1843 239f5c5a 2020-12-13 stsp fi
1844 239f5c5a 2020-12-13 stsp
1845 239f5c5a 2020-12-13 stsp cat > $testroot/editor.sh <<EOF
1846 239f5c5a 2020-12-13 stsp #!/bin/sh
1847 885e96df 2023-03-06 naddy ed -s "\$1" <<-EOF
1848 885e96df 2023-03-06 naddy ,s/.*/committing folded changes/
1849 885e96df 2023-03-06 naddy w
1850 885e96df 2023-03-06 naddy EOF
1851 239f5c5a 2020-12-13 stsp EOF
1852 239f5c5a 2020-12-13 stsp chmod +x $testroot/editor.sh
1853 239f5c5a 2020-12-13 stsp
1854 239f5c5a 2020-12-13 stsp (cd $testroot/wt && env EDITOR="$testroot/editor.sh" \
1855 239f5c5a 2020-12-13 stsp VISUAL="$testroot/editor.sh" got histedit -f > $testroot/stdout)
1856 239f5c5a 2020-12-13 stsp
1857 239f5c5a 2020-12-13 stsp local new_commit1=`git_show_head $testroot/repo`
1858 239f5c5a 2020-12-13 stsp
1859 239f5c5a 2020-12-13 stsp local short_old_commit1=`trim_obj_id 28 $old_commit1`
1860 239f5c5a 2020-12-13 stsp local short_old_commit2=`trim_obj_id 28 $old_commit2`
1861 239f5c5a 2020-12-13 stsp local short_old_commit3=`trim_obj_id 28 $old_commit3`
1862 239f5c5a 2020-12-13 stsp local short_new_commit1=`trim_obj_id 28 $new_commit1`
1863 239f5c5a 2020-12-13 stsp local short_new_commit2=`trim_obj_id 28 $new_commit2`
1864 239f5c5a 2020-12-13 stsp
1865 239f5c5a 2020-12-13 stsp echo "G alpha" > $testroot/stdout.expected
1866 239f5c5a 2020-12-13 stsp echo "D beta" >> $testroot/stdout.expected
1867 239f5c5a 2020-12-13 stsp echo "A epsilon/new" >> $testroot/stdout.expected
1868 239f5c5a 2020-12-13 stsp echo "$short_old_commit1 -> fold commit: committing changes" \
1869 239f5c5a 2020-12-13 stsp >> $testroot/stdout.expected
1870 239f5c5a 2020-12-13 stsp echo "G epsilon/zeta" >> $testroot/stdout.expected
1871 239f5c5a 2020-12-13 stsp echo -n "$short_old_commit2 -> " >> $testroot/stdout.expected
1872 239f5c5a 2020-12-13 stsp echo "fold commit: committing to zeta on master" \
1873 239f5c5a 2020-12-13 stsp >> $testroot/stdout.expected
1874 239f5c5a 2020-12-13 stsp echo "G gamma/delta" >> $testroot/stdout.expected
1875 239f5c5a 2020-12-13 stsp echo -n "$short_old_commit3 -> $short_new_commit1: " \
1876 239f5c5a 2020-12-13 stsp >> $testroot/stdout.expected
1877 239f5c5a 2020-12-13 stsp echo "committing folded changes" >> $testroot/stdout.expected
1878 239f5c5a 2020-12-13 stsp echo "Switching work tree to refs/heads/master" \
1879 239f5c5a 2020-12-13 stsp >> $testroot/stdout.expected
1880 ecfff807 2020-09-23 stsp
1881 239f5c5a 2020-12-13 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1882 49c543a6 2022-03-31 naddy ret=$?
1883 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1884 239f5c5a 2020-12-13 stsp diff -u $testroot/stdout.expected $testroot/stdout
1885 239f5c5a 2020-12-13 stsp test_done "$testroot" "$ret"
1886 239f5c5a 2020-12-13 stsp return 1
1887 239f5c5a 2020-12-13 stsp fi
1888 ecfff807 2020-09-23 stsp
1889 239f5c5a 2020-12-13 stsp echo "modified alpha on master" > $testroot/content.expected
1890 239f5c5a 2020-12-13 stsp cat $testroot/wt/alpha > $testroot/content
1891 239f5c5a 2020-12-13 stsp cmp -s $testroot/content.expected $testroot/content
1892 49c543a6 2022-03-31 naddy ret=$?
1893 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1894 239f5c5a 2020-12-13 stsp diff -u $testroot/content.expected $testroot/content
1895 239f5c5a 2020-12-13 stsp test_done "$testroot" "$ret"
1896 239f5c5a 2020-12-13 stsp return 1
1897 239f5c5a 2020-12-13 stsp fi
1898 239f5c5a 2020-12-13 stsp
1899 239f5c5a 2020-12-13 stsp if [ -e $testroot/wt/beta ]; then
1900 239f5c5a 2020-12-13 stsp echo "removed file beta still exists on disk" >&2
1901 239f5c5a 2020-12-13 stsp test_done "$testroot" "1"
1902 239f5c5a 2020-12-13 stsp return 1
1903 239f5c5a 2020-12-13 stsp fi
1904 239f5c5a 2020-12-13 stsp
1905 239f5c5a 2020-12-13 stsp echo "new file on master" > $testroot/content.expected
1906 239f5c5a 2020-12-13 stsp cat $testroot/wt/epsilon/new > $testroot/content
1907 239f5c5a 2020-12-13 stsp cmp -s $testroot/content.expected $testroot/content
1908 49c543a6 2022-03-31 naddy ret=$?
1909 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1910 239f5c5a 2020-12-13 stsp diff -u $testroot/content.expected $testroot/content
1911 239f5c5a 2020-12-13 stsp test_done "$testroot" "$ret"
1912 239f5c5a 2020-12-13 stsp return 1
1913 239f5c5a 2020-12-13 stsp fi
1914 239f5c5a 2020-12-13 stsp
1915 239f5c5a 2020-12-13 stsp (cd $testroot/wt && got status > $testroot/stdout)
1916 239f5c5a 2020-12-13 stsp
1917 239f5c5a 2020-12-13 stsp echo -n > $testroot/stdout.expected
1918 239f5c5a 2020-12-13 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1919 49c543a6 2022-03-31 naddy ret=$?
1920 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1921 239f5c5a 2020-12-13 stsp diff -u $testroot/stdout.expected $testroot/stdout
1922 239f5c5a 2020-12-13 stsp test_done "$testroot" "$ret"
1923 239f5c5a 2020-12-13 stsp return 1
1924 239f5c5a 2020-12-13 stsp fi
1925 239f5c5a 2020-12-13 stsp
1926 239f5c5a 2020-12-13 stsp (cd $testroot/wt && got log | grep ^commit > $testroot/stdout)
1927 239f5c5a 2020-12-13 stsp echo "commit $new_commit1 (master)" > $testroot/stdout.expected
1928 239f5c5a 2020-12-13 stsp echo "commit $orig_commit" >> $testroot/stdout.expected
1929 239f5c5a 2020-12-13 stsp cmp -s $testroot/stdout.expected $testroot/stdout
1930 49c543a6 2022-03-31 naddy ret=$?
1931 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1932 239f5c5a 2020-12-13 stsp diff -u $testroot/stdout.expected $testroot/stdout
1933 239f5c5a 2020-12-13 stsp fi
1934 239f5c5a 2020-12-13 stsp test_done "$testroot" "$ret"
1935 239f5c5a 2020-12-13 stsp }
1936 a347e6bb 2020-12-13 stsp
1937 a347e6bb 2020-12-13 stsp test_histedit_fold_only_empty_logmsg() {
1938 a347e6bb 2020-12-13 stsp local testroot=`test_init histedit_fold_only_empty_logmsg`
1939 a347e6bb 2020-12-13 stsp
1940 a347e6bb 2020-12-13 stsp local orig_commit=`git_show_head $testroot/repo`
1941 a347e6bb 2020-12-13 stsp
1942 a347e6bb 2020-12-13 stsp echo "modified alpha on master" > $testroot/repo/alpha
1943 f73bf5bd 2023-10-01 naddy git -C $testroot/repo rm -q beta
1944 a347e6bb 2020-12-13 stsp echo "new file on master" > $testroot/repo/epsilon/new
1945 f73bf5bd 2023-10-01 naddy git -C $testroot/repo add epsilon/new
1946 a347e6bb 2020-12-13 stsp git_commit $testroot/repo -m "committing changes"
1947 a347e6bb 2020-12-13 stsp local old_commit1=`git_show_head $testroot/repo`
1948 239f5c5a 2020-12-13 stsp
1949 a347e6bb 2020-12-13 stsp echo "modified zeta on master" > $testroot/repo/epsilon/zeta
1950 a347e6bb 2020-12-13 stsp git_commit $testroot/repo -m "committing to zeta on master"
1951 a347e6bb 2020-12-13 stsp local old_commit2=`git_show_head $testroot/repo`
1952 a347e6bb 2020-12-13 stsp
1953 a347e6bb 2020-12-13 stsp echo "modified delta on master" > $testroot/repo/gamma/delta
1954 a347e6bb 2020-12-13 stsp git_commit $testroot/repo -m "committing to delta on master"
1955 a347e6bb 2020-12-13 stsp local old_commit3=`git_show_head $testroot/repo`
1956 a347e6bb 2020-12-13 stsp
1957 a347e6bb 2020-12-13 stsp got checkout -c $orig_commit $testroot/repo $testroot/wt > /dev/null
1958 49c543a6 2022-03-31 naddy ret=$?
1959 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
1960 a347e6bb 2020-12-13 stsp test_done "$testroot" "$ret"
1961 a347e6bb 2020-12-13 stsp return 1
1962 a347e6bb 2020-12-13 stsp fi
1963 a347e6bb 2020-12-13 stsp
1964 a347e6bb 2020-12-13 stsp cat > $testroot/editor.sh <<EOF
1965 a347e6bb 2020-12-13 stsp #!/bin/sh
1966 885e96df 2023-03-06 naddy ed -s "\$1" <<-EOF
1967 885e96df 2023-03-06 naddy ,d
1968 885e96df 2023-03-06 naddy w
1969 885e96df 2023-03-06 naddy EOF
1970 a347e6bb 2020-12-13 stsp EOF
1971 a347e6bb 2020-12-13 stsp chmod +x $testroot/editor.sh
1972 a347e6bb 2020-12-13 stsp
1973 a347e6bb 2020-12-13 stsp (cd $testroot/wt && env EDITOR="$testroot/editor.sh" \
1974 a347e6bb 2020-12-13 stsp VISUAL="$testroot/editor.sh" got histedit -f > $testroot/stdout)
1975 a347e6bb 2020-12-13 stsp
1976 a347e6bb 2020-12-13 stsp local new_commit1=`git_show_head $testroot/repo`
1977 a347e6bb 2020-12-13 stsp
1978 a347e6bb 2020-12-13 stsp local short_old_commit1=`trim_obj_id 28 $old_commit1`
1979 a347e6bb 2020-12-13 stsp local very_short_old_commit1=`trim_obj_id 29 $old_commit1`
1980 a347e6bb 2020-12-13 stsp local short_old_commit2=`trim_obj_id 28 $old_commit2`
1981 a347e6bb 2020-12-13 stsp local short_old_commit3=`trim_obj_id 28 $old_commit3`
1982 a347e6bb 2020-12-13 stsp local short_new_commit1=`trim_obj_id 28 $new_commit1`
1983 a347e6bb 2020-12-13 stsp local short_new_commit2=`trim_obj_id 28 $new_commit2`
1984 a347e6bb 2020-12-13 stsp
1985 a347e6bb 2020-12-13 stsp echo "G alpha" > $testroot/stdout.expected
1986 a347e6bb 2020-12-13 stsp echo "D beta" >> $testroot/stdout.expected
1987 a347e6bb 2020-12-13 stsp echo "A epsilon/new" >> $testroot/stdout.expected
1988 a347e6bb 2020-12-13 stsp echo "$short_old_commit1 -> fold commit: committing changes" \
1989 a347e6bb 2020-12-13 stsp >> $testroot/stdout.expected
1990 a347e6bb 2020-12-13 stsp echo "G epsilon/zeta" >> $testroot/stdout.expected
1991 a347e6bb 2020-12-13 stsp echo -n "$short_old_commit2 -> " >> $testroot/stdout.expected
1992 a347e6bb 2020-12-13 stsp echo "fold commit: committing to zeta on master" \
1993 a347e6bb 2020-12-13 stsp >> $testroot/stdout.expected
1994 a347e6bb 2020-12-13 stsp echo "G gamma/delta" >> $testroot/stdout.expected
1995 a347e6bb 2020-12-13 stsp echo -n "$short_old_commit3 -> $short_new_commit1: " \
1996 a347e6bb 2020-12-13 stsp >> $testroot/stdout.expected
1997 a347e6bb 2020-12-13 stsp echo "# log message of folded commit $very_short_old_commit1" \
1998 a347e6bb 2020-12-13 stsp >> $testroot/stdout.expected
1999 a347e6bb 2020-12-13 stsp echo "Switching work tree to refs/heads/master" \
2000 a347e6bb 2020-12-13 stsp >> $testroot/stdout.expected
2001 a347e6bb 2020-12-13 stsp
2002 a347e6bb 2020-12-13 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2003 49c543a6 2022-03-31 naddy ret=$?
2004 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2005 a347e6bb 2020-12-13 stsp diff -u $testroot/stdout.expected $testroot/stdout
2006 a347e6bb 2020-12-13 stsp test_done "$testroot" "$ret"
2007 a347e6bb 2020-12-13 stsp return 1
2008 a347e6bb 2020-12-13 stsp fi
2009 a347e6bb 2020-12-13 stsp
2010 a347e6bb 2020-12-13 stsp echo "modified alpha on master" > $testroot/content.expected
2011 a347e6bb 2020-12-13 stsp cat $testroot/wt/alpha > $testroot/content
2012 a347e6bb 2020-12-13 stsp cmp -s $testroot/content.expected $testroot/content
2013 49c543a6 2022-03-31 naddy ret=$?
2014 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2015 a347e6bb 2020-12-13 stsp diff -u $testroot/content.expected $testroot/content
2016 a347e6bb 2020-12-13 stsp test_done "$testroot" "$ret"
2017 a347e6bb 2020-12-13 stsp return 1
2018 a347e6bb 2020-12-13 stsp fi
2019 a347e6bb 2020-12-13 stsp
2020 a347e6bb 2020-12-13 stsp if [ -e $testroot/wt/beta ]; then
2021 a347e6bb 2020-12-13 stsp echo "removed file beta still exists on disk" >&2
2022 a347e6bb 2020-12-13 stsp test_done "$testroot" "1"
2023 a347e6bb 2020-12-13 stsp return 1
2024 a347e6bb 2020-12-13 stsp fi
2025 a347e6bb 2020-12-13 stsp
2026 a347e6bb 2020-12-13 stsp echo "new file on master" > $testroot/content.expected
2027 a347e6bb 2020-12-13 stsp cat $testroot/wt/epsilon/new > $testroot/content
2028 a347e6bb 2020-12-13 stsp cmp -s $testroot/content.expected $testroot/content
2029 49c543a6 2022-03-31 naddy ret=$?
2030 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2031 a347e6bb 2020-12-13 stsp diff -u $testroot/content.expected $testroot/content
2032 a347e6bb 2020-12-13 stsp test_done "$testroot" "$ret"
2033 a347e6bb 2020-12-13 stsp return 1
2034 a347e6bb 2020-12-13 stsp fi
2035 a347e6bb 2020-12-13 stsp
2036 a347e6bb 2020-12-13 stsp (cd $testroot/wt && got status > $testroot/stdout)
2037 a347e6bb 2020-12-13 stsp
2038 a347e6bb 2020-12-13 stsp echo -n > $testroot/stdout.expected
2039 a347e6bb 2020-12-13 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2040 49c543a6 2022-03-31 naddy ret=$?
2041 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2042 a347e6bb 2020-12-13 stsp diff -u $testroot/stdout.expected $testroot/stdout
2043 a347e6bb 2020-12-13 stsp test_done "$testroot" "$ret"
2044 a347e6bb 2020-12-13 stsp return 1
2045 a347e6bb 2020-12-13 stsp fi
2046 a347e6bb 2020-12-13 stsp
2047 a347e6bb 2020-12-13 stsp (cd $testroot/wt && got log | grep ^commit > $testroot/stdout)
2048 a347e6bb 2020-12-13 stsp echo "commit $new_commit1 (master)" > $testroot/stdout.expected
2049 b93c7142 2021-10-01 stsp echo "commit $orig_commit" >> $testroot/stdout.expected
2050 b93c7142 2021-10-01 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2051 49c543a6 2022-03-31 naddy ret=$?
2052 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2053 b93c7142 2021-10-01 stsp diff -u $testroot/stdout.expected $testroot/stdout
2054 b93c7142 2021-10-01 stsp fi
2055 b93c7142 2021-10-01 stsp test_done "$testroot" "$ret"
2056 b93c7142 2021-10-01 stsp }
2057 b93c7142 2021-10-01 stsp
2058 b93c7142 2021-10-01 stsp test_histedit_edit_only() {
2059 b93c7142 2021-10-01 stsp local testroot=`test_init histedit_edit_only`
2060 b93c7142 2021-10-01 stsp
2061 b93c7142 2021-10-01 stsp local orig_commit=`git_show_head $testroot/repo`
2062 b93c7142 2021-10-01 stsp
2063 b93c7142 2021-10-01 stsp echo "modified alpha on master" > $testroot/repo/alpha
2064 f73bf5bd 2023-10-01 naddy git -C $testroot/repo rm -q beta
2065 b93c7142 2021-10-01 stsp echo "new file on master" > $testroot/repo/epsilon/new
2066 f73bf5bd 2023-10-01 naddy git -C $testroot/repo add epsilon/new
2067 b93c7142 2021-10-01 stsp git_commit $testroot/repo -m "committing changes"
2068 b93c7142 2021-10-01 stsp local old_commit1=`git_show_head $testroot/repo`
2069 b93c7142 2021-10-01 stsp
2070 b93c7142 2021-10-01 stsp echo "modified zeta on master" > $testroot/repo/epsilon/zeta
2071 b93c7142 2021-10-01 stsp git_commit $testroot/repo -m "committing to zeta on master"
2072 b93c7142 2021-10-01 stsp local old_commit2=`git_show_head $testroot/repo`
2073 b93c7142 2021-10-01 stsp
2074 b93c7142 2021-10-01 stsp got checkout -c $orig_commit $testroot/repo $testroot/wt > /dev/null
2075 49c543a6 2022-03-31 naddy ret=$?
2076 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2077 b93c7142 2021-10-01 stsp test_done "$testroot" "$ret"
2078 b93c7142 2021-10-01 stsp return 1
2079 b93c7142 2021-10-01 stsp fi
2080 b93c7142 2021-10-01 stsp
2081 b93c7142 2021-10-01 stsp (cd $testroot/wt && got histedit -e > $testroot/stdout)
2082 b93c7142 2021-10-01 stsp
2083 b93c7142 2021-10-01 stsp local short_old_commit1=`trim_obj_id 28 $old_commit1`
2084 b93c7142 2021-10-01 stsp local short_old_commit2=`trim_obj_id 28 $old_commit2`
2085 b93c7142 2021-10-01 stsp
2086 b93c7142 2021-10-01 stsp echo "G alpha" > $testroot/stdout.expected
2087 b93c7142 2021-10-01 stsp echo "D beta" >> $testroot/stdout.expected
2088 b93c7142 2021-10-01 stsp echo "A epsilon/new" >> $testroot/stdout.expected
2089 b93c7142 2021-10-01 stsp echo "Stopping histedit for amending commit $old_commit1" \
2090 b93c7142 2021-10-01 stsp >> $testroot/stdout.expected
2091 b93c7142 2021-10-01 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2092 49c543a6 2022-03-31 naddy ret=$?
2093 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2094 b93c7142 2021-10-01 stsp diff -u $testroot/stdout.expected $testroot/stdout
2095 b93c7142 2021-10-01 stsp test_done "$testroot" "$ret"
2096 b93c7142 2021-10-01 stsp return 1
2097 b93c7142 2021-10-01 stsp fi
2098 b93c7142 2021-10-01 stsp
2099 b93c7142 2021-10-01 stsp echo "edited modified alpha on master" > $testroot/wt/alpha
2100 b93c7142 2021-10-01 stsp
2101 b93c7142 2021-10-01 stsp cat > $testroot/editor.sh <<EOF
2102 b93c7142 2021-10-01 stsp #!/bin/sh
2103 885e96df 2023-03-06 naddy ed -s "\$1" <<-EOF
2104 885e96df 2023-03-06 naddy ,s/.*/committing edited changes 1/
2105 885e96df 2023-03-06 naddy w
2106 885e96df 2023-03-06 naddy EOF
2107 b93c7142 2021-10-01 stsp EOF
2108 b93c7142 2021-10-01 stsp chmod +x $testroot/editor.sh
2109 b93c7142 2021-10-01 stsp
2110 b93c7142 2021-10-01 stsp (cd $testroot/wt && env EDITOR="$testroot/editor.sh" \
2111 b93c7142 2021-10-01 stsp VISUAL="$testroot/editor.sh" got histedit -c > $testroot/stdout)
2112 b93c7142 2021-10-01 stsp
2113 b93c7142 2021-10-01 stsp local new_commit1=$(cd $testroot/wt && got info | \
2114 b93c7142 2021-10-01 stsp grep '^work tree base commit: ' | cut -d: -f2 | tr -d ' ')
2115 b93c7142 2021-10-01 stsp local short_new_commit1=`trim_obj_id 28 $new_commit1`
2116 b93c7142 2021-10-01 stsp
2117 b93c7142 2021-10-01 stsp echo -n "$short_old_commit1 -> $short_new_commit1: " \
2118 b93c7142 2021-10-01 stsp > $testroot/stdout.expected
2119 b93c7142 2021-10-01 stsp echo "committing edited changes 1" >> $testroot/stdout.expected
2120 b93c7142 2021-10-01 stsp echo "G epsilon/zeta" >> $testroot/stdout.expected
2121 b93c7142 2021-10-01 stsp echo "Stopping histedit for amending commit $old_commit2" \
2122 b93c7142 2021-10-01 stsp >> $testroot/stdout.expected
2123 b93c7142 2021-10-01 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2124 49c543a6 2022-03-31 naddy ret=$?
2125 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2126 b93c7142 2021-10-01 stsp diff -u $testroot/stdout.expected $testroot/stdout
2127 b93c7142 2021-10-01 stsp test_done "$testroot" "$ret"
2128 b93c7142 2021-10-01 stsp return 1
2129 b93c7142 2021-10-01 stsp fi
2130 b93c7142 2021-10-01 stsp
2131 b93c7142 2021-10-01 stsp echo "edited zeta on master" > $testroot/wt/epsilon/zeta
2132 b93c7142 2021-10-01 stsp
2133 b93c7142 2021-10-01 stsp cat > $testroot/editor.sh <<EOF
2134 b93c7142 2021-10-01 stsp #!/bin/sh
2135 885e96df 2023-03-06 naddy ed -s "\$1" <<-EOF
2136 885e96df 2023-03-06 naddy ,s/.*/committing edited changes 2/
2137 885e96df 2023-03-06 naddy w
2138 885e96df 2023-03-06 naddy EOF
2139 b93c7142 2021-10-01 stsp EOF
2140 b93c7142 2021-10-01 stsp chmod +x $testroot/editor.sh
2141 b93c7142 2021-10-01 stsp
2142 b93c7142 2021-10-01 stsp (cd $testroot/wt && env EDITOR="$testroot/editor.sh" \
2143 b93c7142 2021-10-01 stsp VISUAL="$testroot/editor.sh" got histedit -c > $testroot/stdout)
2144 b93c7142 2021-10-01 stsp
2145 b93c7142 2021-10-01 stsp local new_commit2=`git_show_head $testroot/repo`
2146 b93c7142 2021-10-01 stsp local short_new_commit2=`trim_obj_id 28 $new_commit2`
2147 b93c7142 2021-10-01 stsp
2148 b93c7142 2021-10-01 stsp echo -n "$short_old_commit2 -> $short_new_commit2: " \
2149 b93c7142 2021-10-01 stsp > $testroot/stdout.expected
2150 b93c7142 2021-10-01 stsp echo "committing edited changes 2" >> $testroot/stdout.expected
2151 b93c7142 2021-10-01 stsp echo "Switching work tree to refs/heads/master" \
2152 b93c7142 2021-10-01 stsp >> $testroot/stdout.expected
2153 b93c7142 2021-10-01 stsp
2154 b93c7142 2021-10-01 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2155 49c543a6 2022-03-31 naddy ret=$?
2156 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2157 b93c7142 2021-10-01 stsp diff -u $testroot/stdout.expected $testroot/stdout
2158 b93c7142 2021-10-01 stsp test_done "$testroot" "$ret"
2159 b93c7142 2021-10-01 stsp return 1
2160 b93c7142 2021-10-01 stsp fi
2161 b93c7142 2021-10-01 stsp
2162 b93c7142 2021-10-01 stsp echo "edited modified alpha on master" > $testroot/content.expected
2163 b93c7142 2021-10-01 stsp cat $testroot/wt/alpha > $testroot/content
2164 b93c7142 2021-10-01 stsp cmp -s $testroot/content.expected $testroot/content
2165 49c543a6 2022-03-31 naddy ret=$?
2166 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2167 b93c7142 2021-10-01 stsp diff -u $testroot/content.expected $testroot/content
2168 b93c7142 2021-10-01 stsp test_done "$testroot" "$ret"
2169 b93c7142 2021-10-01 stsp return 1
2170 b93c7142 2021-10-01 stsp fi
2171 b93c7142 2021-10-01 stsp
2172 b93c7142 2021-10-01 stsp if [ -e $testroot/wt/beta ]; then
2173 b93c7142 2021-10-01 stsp echo "removed file beta still exists on disk" >&2
2174 b93c7142 2021-10-01 stsp test_done "$testroot" "1"
2175 b93c7142 2021-10-01 stsp return 1
2176 b93c7142 2021-10-01 stsp fi
2177 b93c7142 2021-10-01 stsp
2178 b93c7142 2021-10-01 stsp echo "new file on master" > $testroot/content.expected
2179 b93c7142 2021-10-01 stsp cat $testroot/wt/epsilon/new > $testroot/content
2180 b93c7142 2021-10-01 stsp cmp -s $testroot/content.expected $testroot/content
2181 49c543a6 2022-03-31 naddy ret=$?
2182 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2183 b93c7142 2021-10-01 stsp diff -u $testroot/content.expected $testroot/content
2184 b93c7142 2021-10-01 stsp test_done "$testroot" "$ret"
2185 b93c7142 2021-10-01 stsp return 1
2186 b93c7142 2021-10-01 stsp fi
2187 b93c7142 2021-10-01 stsp
2188 b93c7142 2021-10-01 stsp (cd $testroot/wt && got status > $testroot/stdout)
2189 b93c7142 2021-10-01 stsp
2190 b93c7142 2021-10-01 stsp echo -n > $testroot/stdout.expected
2191 b93c7142 2021-10-01 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2192 49c543a6 2022-03-31 naddy ret=$?
2193 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2194 b93c7142 2021-10-01 stsp diff -u $testroot/stdout.expected $testroot/stdout
2195 b93c7142 2021-10-01 stsp test_done "$testroot" "$ret"
2196 b93c7142 2021-10-01 stsp return 1
2197 b93c7142 2021-10-01 stsp fi
2198 b93c7142 2021-10-01 stsp
2199 b93c7142 2021-10-01 stsp (cd $testroot/wt && got log -l3 | grep ^commit > $testroot/stdout)
2200 b93c7142 2021-10-01 stsp echo "commit $new_commit2 (master)" > $testroot/stdout.expected
2201 b93c7142 2021-10-01 stsp echo "commit $new_commit1" >> $testroot/stdout.expected
2202 a347e6bb 2020-12-13 stsp echo "commit $orig_commit" >> $testroot/stdout.expected
2203 a347e6bb 2020-12-13 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2204 49c543a6 2022-03-31 naddy ret=$?
2205 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2206 a347e6bb 2020-12-13 stsp diff -u $testroot/stdout.expected $testroot/stdout
2207 a347e6bb 2020-12-13 stsp fi
2208 a347e6bb 2020-12-13 stsp test_done "$testroot" "$ret"
2209 a347e6bb 2020-12-13 stsp }
2210 09209b8a 2021-10-08 stsp
2211 09209b8a 2021-10-08 stsp test_histedit_prepend_line() {
2212 09209b8a 2021-10-08 stsp local testroot=`test_init histedit_prepend_line`
2213 09209b8a 2021-10-08 stsp local orig_commit=`git_show_head $testroot/repo`
2214 09209b8a 2021-10-08 stsp
2215 09209b8a 2021-10-08 stsp got checkout $testroot/repo $testroot/wt > /dev/null
2216 09209b8a 2021-10-08 stsp
2217 5f94a4e0 2022-11-18 op ed -s "$testroot/wt/alpha" <<EOF
2218 b4e0802f 2021-10-14 naddy 1i
2219 09209b8a 2021-10-08 stsp first line
2220 09209b8a 2021-10-08 stsp .
2221 09209b8a 2021-10-08 stsp wq
2222 09209b8a 2021-10-08 stsp EOF
2223 09209b8a 2021-10-08 stsp
2224 09209b8a 2021-10-08 stsp cp $testroot/wt/alpha $testroot/content.expected
2225 a347e6bb 2020-12-13 stsp
2226 09209b8a 2021-10-08 stsp (cd $testroot/wt/ && got commit -m 'modified alpha on master' \
2227 09209b8a 2021-10-08 stsp alpha > /dev/null)
2228 49c543a6 2022-03-31 naddy ret=$?
2229 09209b8a 2021-10-08 stsp if [ "$?" != 0 ]; then
2230 09209b8a 2021-10-08 stsp echo "got commit failed unexpectedly" >&2
2231 09209b8a 2021-10-08 stsp test_done "$testroot" "$ret"
2232 09209b8a 2021-10-08 stsp return 1
2233 09209b8a 2021-10-08 stsp fi
2234 09209b8a 2021-10-08 stsp
2235 09209b8a 2021-10-08 stsp local top_commit=`git_show_head $testroot/repo`
2236 09209b8a 2021-10-08 stsp echo "pick $top_commit" > "$testroot/histedit-script"
2237 09209b8a 2021-10-08 stsp
2238 09209b8a 2021-10-08 stsp (cd $testroot/wt/ && got update -c $orig_commit > /dev/null)
2239 49c543a6 2022-03-31 naddy ret=$?
2240 09209b8a 2021-10-08 stsp if [ "$?" != 0 ]; then
2241 09209b8a 2021-10-08 stsp echo "got update failed unexpectedly" >&2
2242 09209b8a 2021-10-08 stsp test_done "$testroot" "$ret"
2243 09209b8a 2021-10-08 stsp return 1
2244 09209b8a 2021-10-08 stsp fi
2245 09209b8a 2021-10-08 stsp
2246 09209b8a 2021-10-08 stsp (cd $testroot/wt && got histedit -F "$testroot/histedit-script" \
2247 09209b8a 2021-10-08 stsp > /dev/null)
2248 49c543a6 2022-03-31 naddy ret=$?
2249 09209b8a 2021-10-08 stsp if [ "$?" != 0 ]; then
2250 09209b8a 2021-10-08 stsp echo "got histedit failed unexpectedly" >&2
2251 09209b8a 2021-10-08 stsp test_done "$testroot" "$ret"
2252 09209b8a 2021-10-08 stsp return 1
2253 09209b8a 2021-10-08 stsp fi
2254 09209b8a 2021-10-08 stsp
2255 09209b8a 2021-10-08 stsp cp $testroot/wt/alpha $testroot/content
2256 09209b8a 2021-10-08 stsp cmp -s $testroot/content.expected $testroot/content
2257 49c543a6 2022-03-31 naddy ret=$?
2258 49c543a6 2022-03-31 naddy if [ $ret -ne 0 ]; then
2259 09209b8a 2021-10-08 stsp diff -u $testroot/content.expected $testroot/content
2260 09209b8a 2021-10-08 stsp test_done "$testroot" "$ret"
2261 f1e5aff4 2022-07-12 op return 1
2262 f1e5aff4 2022-07-12 op fi
2263 f1e5aff4 2022-07-12 op
2264 f1e5aff4 2022-07-12 op test_done "$testroot" $ret
2265 598eac43 2022-07-22 stsp }
2266 598eac43 2022-07-22 stsp
2267 598eac43 2022-07-22 stsp test_histedit_resets_committer() {
2268 598eac43 2022-07-22 stsp local testroot=`test_init histedit_resets_committer`
2269 598eac43 2022-07-22 stsp local orig_commit=`git_show_head $testroot/repo`
2270 598eac43 2022-07-22 stsp local committer="Flan Luck <flan_luck@openbsd.org>"
2271 598eac43 2022-07-22 stsp
2272 598eac43 2022-07-22 stsp got checkout $testroot/repo $testroot/wt > /dev/null
2273 598eac43 2022-07-22 stsp
2274 598eac43 2022-07-22 stsp echo "modified alpha" > $testroot/wt/alpha
2275 598eac43 2022-07-22 stsp
2276 598eac43 2022-07-22 stsp (cd $testroot/wt/ && got commit -m 'modified alpha on master' \
2277 598eac43 2022-07-22 stsp alpha > /dev/null)
2278 598eac43 2022-07-22 stsp ret=$?
2279 598eac43 2022-07-22 stsp if [ "$?" != 0 ]; then
2280 598eac43 2022-07-22 stsp echo "got commit failed unexpectedly" >&2
2281 598eac43 2022-07-22 stsp test_done "$testroot" "$ret"
2282 598eac43 2022-07-22 stsp return 1
2283 598eac43 2022-07-22 stsp fi
2284 598eac43 2022-07-22 stsp
2285 598eac43 2022-07-22 stsp local top_commit=`git_show_head $testroot/repo`
2286 598eac43 2022-07-22 stsp echo "pick $top_commit" > "$testroot/histedit-script"
2287 598eac43 2022-07-22 stsp
2288 598eac43 2022-07-22 stsp (cd $testroot/wt/ && got update -c $orig_commit > /dev/null)
2289 598eac43 2022-07-22 stsp ret=$?
2290 598eac43 2022-07-22 stsp if [ "$?" != 0 ]; then
2291 598eac43 2022-07-22 stsp echo "got update failed unexpectedly" >&2
2292 598eac43 2022-07-22 stsp test_done "$testroot" "$ret"
2293 598eac43 2022-07-22 stsp return 1
2294 598eac43 2022-07-22 stsp fi
2295 598eac43 2022-07-22 stsp
2296 598eac43 2022-07-22 stsp (cd $testroot/wt && env GOT_AUTHOR="$committer" \
2297 598eac43 2022-07-22 stsp got histedit -F "$testroot/histedit-script" > /dev/null)
2298 598eac43 2022-07-22 stsp ret=$?
2299 598eac43 2022-07-22 stsp if [ "$?" != 0 ]; then
2300 598eac43 2022-07-22 stsp echo "got histedit failed unexpectedly" >&2
2301 598eac43 2022-07-22 stsp test_done "$testroot" "$ret"
2302 598eac43 2022-07-22 stsp return 1
2303 598eac43 2022-07-22 stsp fi
2304 598eac43 2022-07-22 stsp local edited_commit=`git_show_head $testroot/repo`
2305 598eac43 2022-07-22 stsp
2306 598eac43 2022-07-22 stsp # Original commit only had one author
2307 598eac43 2022-07-22 stsp (cd $testroot/repo && got log -l1 -c $top_commit | \
2308 598eac43 2022-07-22 stsp egrep '^(from|via):' > $testroot/stdout)
2309 598eac43 2022-07-22 stsp echo "from: $GOT_AUTHOR" > $testroot/stdout.expected
2310 598eac43 2022-07-22 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2311 598eac43 2022-07-22 stsp ret=$?
2312 598eac43 2022-07-22 stsp if [ $ret -ne 0 ]; then
2313 598eac43 2022-07-22 stsp diff -u $testroot/stdout.expected $testroot/stdout
2314 598eac43 2022-07-22 stsp test_done "$testroot" "$ret"
2315 598eac43 2022-07-22 stsp return 1
2316 598eac43 2022-07-22 stsp fi
2317 598eac43 2022-07-22 stsp
2318 598eac43 2022-07-22 stsp # Edited commit should have new committer name added
2319 598eac43 2022-07-22 stsp (cd $testroot/repo && got log -l1 -c $edited_commit | \
2320 598eac43 2022-07-22 stsp egrep '^(from|via):' > $testroot/stdout)
2321 598eac43 2022-07-22 stsp echo "from: $GOT_AUTHOR" > $testroot/stdout.expected
2322 598eac43 2022-07-22 stsp echo "via: $committer" >> $testroot/stdout.expected
2323 598eac43 2022-07-22 stsp
2324 598eac43 2022-07-22 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2325 598eac43 2022-07-22 stsp ret=$?
2326 598eac43 2022-07-22 stsp if [ $ret -ne 0 ]; then
2327 598eac43 2022-07-22 stsp diff -u $testroot/stdout.expected $testroot/stdout
2328 598eac43 2022-07-22 stsp fi
2329 598eac43 2022-07-22 stsp test_done "$testroot" "$ret"
2330 f1e5aff4 2022-07-12 op }
2331 b2b3fce1 2022-10-29 op
2332 b2b3fce1 2022-10-29 op test_histedit_umask() {
2333 b2b3fce1 2022-10-29 op local testroot=`test_init histedit_umask`
2334 b2b3fce1 2022-10-29 op local orig_commit=`git_show_head "$testroot/repo"`
2335 b2b3fce1 2022-10-29 op
2336 b2b3fce1 2022-10-29 op got checkout "$testroot/repo" "$testroot/wt" >/dev/null
2337 b2b3fce1 2022-10-29 op
2338 b2b3fce1 2022-10-29 op echo "modified alpha" > $testroot/wt/alpha
2339 b2b3fce1 2022-10-29 op (cd "$testroot/wt" && got commit -m 'edit #1') >/dev/null
2340 b2b3fce1 2022-10-29 op local commit1=`git_show_head "$testroot/repo"`
2341 b2b3fce1 2022-10-29 op
2342 b2b3fce1 2022-10-29 op echo "modified again" > $testroot/wt/alpha
2343 b2b3fce1 2022-10-29 op (cd "$testroot/wt" && got commit -m 'edit #2') >/dev/null
2344 b2b3fce1 2022-10-29 op local commit2=`git_show_head "$testroot/repo"`
2345 b2b3fce1 2022-10-29 op
2346 b2b3fce1 2022-10-29 op echo "modified again!" > $testroot/wt/alpha
2347 b2b3fce1 2022-10-29 op echo "modify beta too!" > $testroot/wt/beta
2348 b2b3fce1 2022-10-29 op (cd "$testroot/wt" && got commit -m 'edit #3') >/dev/null
2349 b2b3fce1 2022-10-29 op local commit3=`git_show_head "$testroot/repo"`
2350 f1e5aff4 2022-07-12 op
2351 b2b3fce1 2022-10-29 op (cd "$testroot/wt" && got update -c "$orig_commit") >/dev/null
2352 b2b3fce1 2022-10-29 op ret=$?
2353 b2b3fce1 2022-10-29 op if [ $ret -ne 0 ]; then
2354 b2b3fce1 2022-10-29 op echo "update to $orig_commit failed!" >&2
2355 b2b3fce1 2022-10-29 op test_done "$testroot" 1
2356 b2b3fce1 2022-10-29 op return 1
2357 b2b3fce1 2022-10-29 op fi
2358 b2b3fce1 2022-10-29 op
2359 14eb0fef 2023-10-26 stsp cat > $testroot/editor.sh <<EOF
2360 14eb0fef 2023-10-26 stsp #!/bin/sh
2361 14eb0fef 2023-10-26 stsp ed -s "\$1" <<-EOF
2362 14eb0fef 2023-10-26 stsp ,s/.*/folding changes/
2363 14eb0fef 2023-10-26 stsp w
2364 14eb0fef 2023-10-26 stsp EOF
2365 14eb0fef 2023-10-26 stsp EOF
2366 14eb0fef 2023-10-26 stsp chmod +x $testroot/editor.sh
2367 14eb0fef 2023-10-26 stsp
2368 b2b3fce1 2022-10-29 op echo fold $commit1 >$testroot/histedit-script
2369 b2b3fce1 2022-10-29 op echo fold $commit2 >>$testroot/histedit-script
2370 b2b3fce1 2022-10-29 op echo pick $commit3 >>$testroot/histedit-script
2371 b2b3fce1 2022-10-29 op
2372 b2b3fce1 2022-10-29 op # using a subshell to avoid clobbering global umask
2373 b2b3fce1 2022-10-29 op (umask 077 && cd "$testroot/wt" && \
2374 14eb0fef 2023-10-26 stsp env EDITOR="$testroot/editor.sh" VISUAL="$testroot/editor.sh" \
2375 b2b3fce1 2022-10-29 op got histedit -F "$testroot/histedit-script") >/dev/null
2376 b2b3fce1 2022-10-29 op ret=$?
2377 b2b3fce1 2022-10-29 op
2378 b2b3fce1 2022-10-29 op if [ $ret -ne 0 ]; then
2379 b2b3fce1 2022-10-29 op echo "histedit operation failed" >&2
2380 b2b3fce1 2022-10-29 op test_done "$testroot" $ret
2381 b2b3fce1 2022-10-29 op return 1
2382 b2b3fce1 2022-10-29 op fi
2383 b2b3fce1 2022-10-29 op
2384 b2b3fce1 2022-10-29 op for f in alpha beta; do
2385 b2b3fce1 2022-10-29 op ls -l "$testroot/wt/$f" | grep -q ^-rw-------
2386 b2b3fce1 2022-10-29 op if [ $? -ne 0 ]; then
2387 b2b3fce1 2022-10-29 op echo "$f is not 0600 after histedi" >&2
2388 b2b3fce1 2022-10-29 op ls -l "$testroot/wt/$f" >&2
2389 b2b3fce1 2022-10-29 op test_done "$testroot" 1
2390 b2b3fce1 2022-10-29 op return 1
2391 b2b3fce1 2022-10-29 op fi
2392 b2b3fce1 2022-10-29 op done
2393 b2b3fce1 2022-10-29 op
2394 b2b3fce1 2022-10-29 op test_done "$testroot" 0
2395 b2b3fce1 2022-10-29 op }
2396 c48f94a4 2023-01-29 stsp
2397 c48f94a4 2023-01-29 stsp test_histedit_mesg_filemode_change() {
2398 c48f94a4 2023-01-29 stsp local testroot=`test_init histedit_mode_change`
2399 c48f94a4 2023-01-29 stsp
2400 c48f94a4 2023-01-29 stsp local orig_commit=`git_show_head $testroot/repo`
2401 c48f94a4 2023-01-29 stsp local orig_author_time=`git_show_author_time $testroot/repo`
2402 c48f94a4 2023-01-29 stsp
2403 c48f94a4 2023-01-29 stsp chmod +x $testroot/repo/alpha
2404 c48f94a4 2023-01-29 stsp git_commit $testroot/repo -m "set x bit on alpha"
2405 c48f94a4 2023-01-29 stsp local old_commit1=`git_show_head $testroot/repo`
2406 c48f94a4 2023-01-29 stsp local old_author_time1=`git_show_author_time $testroot/repo`
2407 c48f94a4 2023-01-29 stsp
2408 c48f94a4 2023-01-29 stsp got checkout -c $orig_commit $testroot/repo $testroot/wt > /dev/null
2409 c48f94a4 2023-01-29 stsp ret=$?
2410 c48f94a4 2023-01-29 stsp if [ $ret -ne 0 ]; then
2411 c48f94a4 2023-01-29 stsp test_done "$testroot" "$ret"
2412 c48f94a4 2023-01-29 stsp return 1
2413 c48f94a4 2023-01-29 stsp fi
2414 c48f94a4 2023-01-29 stsp
2415 c48f94a4 2023-01-29 stsp if [ -x $testroot/wt/alpha ]; then
2416 c48f94a4 2023-01-29 stsp echo "file alpha has unexpected executable bit" >&2
2417 c48f94a4 2023-01-29 stsp test_done "$testroot" "1"
2418 c48f94a4 2023-01-29 stsp return 1
2419 c48f94a4 2023-01-29 stsp fi
2420 c48f94a4 2023-01-29 stsp
2421 c48f94a4 2023-01-29 stsp cat > $testroot/editor.sh <<EOF
2422 c48f94a4 2023-01-29 stsp #!/bin/sh
2423 885e96df 2023-03-06 naddy ed -s "\$1" <<-EOF
2424 885e96df 2023-03-06 naddy ,s/ x bit / executable bit /
2425 885e96df 2023-03-06 naddy w
2426 885e96df 2023-03-06 naddy EOF
2427 c48f94a4 2023-01-29 stsp EOF
2428 b2b3fce1 2022-10-29 op
2429 c48f94a4 2023-01-29 stsp chmod +x $testroot/editor.sh
2430 c48f94a4 2023-01-29 stsp
2431 71a61c8c 2023-01-29 stsp (cd $testroot/wt && env VISUAL="$testroot/editor.sh" \
2432 c48f94a4 2023-01-29 stsp got histedit -m > $testroot/stdout)
2433 c48f94a4 2023-01-29 stsp
2434 c48f94a4 2023-01-29 stsp local new_commit1=`git_show_head $testroot/repo`
2435 c48f94a4 2023-01-29 stsp local new_author_time1=`git_show_author_time $testroot/repo`
2436 c48f94a4 2023-01-29 stsp
2437 c48f94a4 2023-01-29 stsp local short_old_commit1=`trim_obj_id 28 $old_commit1`
2438 c48f94a4 2023-01-29 stsp local short_new_commit1=`trim_obj_id 28 $new_commit1`
2439 c48f94a4 2023-01-29 stsp
2440 c48f94a4 2023-01-29 stsp echo "G alpha" > $testroot/stdout.expected
2441 c48f94a4 2023-01-29 stsp echo "$short_old_commit1 -> $short_new_commit1: set executable bit on alpha" \
2442 c48f94a4 2023-01-29 stsp >> $testroot/stdout.expected
2443 c48f94a4 2023-01-29 stsp echo "Switching work tree to refs/heads/master" \
2444 c48f94a4 2023-01-29 stsp >> $testroot/stdout.expected
2445 c48f94a4 2023-01-29 stsp
2446 c48f94a4 2023-01-29 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2447 c48f94a4 2023-01-29 stsp ret=$?
2448 c48f94a4 2023-01-29 stsp if [ $ret -ne 0 ]; then
2449 c48f94a4 2023-01-29 stsp diff -u $testroot/stdout.expected $testroot/stdout
2450 c48f94a4 2023-01-29 stsp test_done "$testroot" "$ret"
2451 c48f94a4 2023-01-29 stsp return 1
2452 c48f94a4 2023-01-29 stsp fi
2453 c48f94a4 2023-01-29 stsp
2454 c48f94a4 2023-01-29 stsp echo "alpha" > $testroot/content.expected
2455 9f31ca1f 2023-01-29 stsp cmp -s $testroot/content.expected $testroot/wt/alpha
2456 c48f94a4 2023-01-29 stsp ret=$?
2457 c48f94a4 2023-01-29 stsp if [ $ret -ne 0 ]; then
2458 9f31ca1f 2023-01-29 stsp diff -u $testroot/content.expected $testroot/wt/alpha
2459 c48f94a4 2023-01-29 stsp test_done "$testroot" "$ret"
2460 c48f94a4 2023-01-29 stsp return 1
2461 c48f94a4 2023-01-29 stsp fi
2462 c48f94a4 2023-01-29 stsp
2463 c48f94a4 2023-01-29 stsp if [ ! -x $testroot/wt/alpha ]; then
2464 c48f94a4 2023-01-29 stsp echo "file alpha lost its executable bit" >&2
2465 c48f94a4 2023-01-29 stsp test_done "$testroot" "1"
2466 c48f94a4 2023-01-29 stsp return 1
2467 c48f94a4 2023-01-29 stsp fi
2468 c48f94a4 2023-01-29 stsp
2469 c48f94a4 2023-01-29 stsp (cd $testroot/wt && got status > $testroot/stdout)
2470 c48f94a4 2023-01-29 stsp
2471 c48f94a4 2023-01-29 stsp echo -n > $testroot/stdout.expected
2472 c48f94a4 2023-01-29 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2473 c48f94a4 2023-01-29 stsp ret=$?
2474 c48f94a4 2023-01-29 stsp if [ $ret -ne 0 ]; then
2475 c48f94a4 2023-01-29 stsp diff -u $testroot/stdout.expected $testroot/stdout
2476 c48f94a4 2023-01-29 stsp test_done "$testroot" "$ret"
2477 c48f94a4 2023-01-29 stsp return 1
2478 c48f94a4 2023-01-29 stsp fi
2479 c48f94a4 2023-01-29 stsp
2480 c48f94a4 2023-01-29 stsp (cd $testroot/wt && got log -l1 | grep ' set executable bit on alpha' \
2481 c48f94a4 2023-01-29 stsp > $testroot/stdout)
2482 c48f94a4 2023-01-29 stsp
2483 c48f94a4 2023-01-29 stsp echo ' set executable bit on alpha' > $testroot/stdout.expected
2484 c48f94a4 2023-01-29 stsp cmp -s $testroot/stdout.expected $testroot/stdout
2485 c48f94a4 2023-01-29 stsp ret=$?
2486 c48f94a4 2023-01-29 stsp if [ $ret -ne 0 ]; then
2487 c48f94a4 2023-01-29 stsp diff -u $testroot/stdout.expected $testroot/stdout
2488 c48f94a4 2023-01-29 stsp test_done "$testroot" "$ret"
2489 c48f94a4 2023-01-29 stsp return 1
2490 c48f94a4 2023-01-29 stsp fi
2491 c48f94a4 2023-01-29 stsp
2492 c48f94a4 2023-01-29 stsp test_done "$testroot" "$ret"
2493 c48f94a4 2023-01-29 stsp }
2494 f1c9fe20 2023-01-30 mark
2495 f1c9fe20 2023-01-30 mark test_histedit_drop_only() {
2496 f1c9fe20 2023-01-30 mark local testroot=`test_init histedit_drop_only`
2497 f1c9fe20 2023-01-30 mark
2498 f1c9fe20 2023-01-30 mark local orig_commit=`git_show_head $testroot/repo`
2499 f1c9fe20 2023-01-30 mark local drop="-> drop commit:"
2500 f1c9fe20 2023-01-30 mark local dropmsg="commit changes to drop"
2501 f1c9fe20 2023-01-30 mark
2502 f1c9fe20 2023-01-30 mark echo "modified alpha on master" > $testroot/repo/alpha
2503 f73bf5bd 2023-10-01 naddy git -C $testroot/repo rm -q beta
2504 f1c9fe20 2023-01-30 mark echo "new file on master" > $testroot/repo/epsilon/new
2505 f73bf5bd 2023-10-01 naddy git -C $testroot/repo add epsilon/new
2506 f1c9fe20 2023-01-30 mark
2507 f1c9fe20 2023-01-30 mark git_commit $testroot/repo -m "$dropmsg 1"
2508 f1c9fe20 2023-01-30 mark local drop_commit1=`git_show_head $testroot/repo`
2509 f1c9fe20 2023-01-30 mark
2510 f1c9fe20 2023-01-30 mark echo "modified zeta on master" > $testroot/repo/epsilon/zeta
2511 f1c9fe20 2023-01-30 mark
2512 f1c9fe20 2023-01-30 mark git_commit $testroot/repo -m "$dropmsg 2"
2513 f1c9fe20 2023-01-30 mark local drop_commit2=`git_show_head $testroot/repo`
2514 f1c9fe20 2023-01-30 mark
2515 f1c9fe20 2023-01-30 mark echo "modified delta on master" > $testroot/repo/gamma/delta
2516 f1c9fe20 2023-01-30 mark
2517 f1c9fe20 2023-01-30 mark git_commit $testroot/repo -m "$dropmsg 3"
2518 f1c9fe20 2023-01-30 mark local drop_commit3=`git_show_head $testroot/repo`
2519 f1c9fe20 2023-01-30 mark
2520 f1c9fe20 2023-01-30 mark got checkout -c $orig_commit $testroot/repo $testroot/wt > /dev/null
2521 f1c9fe20 2023-01-30 mark ret=$?
2522 f1c9fe20 2023-01-30 mark if [ $ret -ne 0 ]; then
2523 f1c9fe20 2023-01-30 mark test_done "$testroot" "$ret"
2524 f1c9fe20 2023-01-30 mark return 1
2525 f1c9fe20 2023-01-30 mark fi
2526 c48f94a4 2023-01-29 stsp
2527 f1c9fe20 2023-01-30 mark (cd $testroot/wt && got histedit -d > $testroot/stdout)
2528 f1c9fe20 2023-01-30 mark local new_commit1=`git_show_head $testroot/repo`
2529 f1c9fe20 2023-01-30 mark
2530 f1c9fe20 2023-01-30 mark local short_commit1=`trim_obj_id 28 $drop_commit1`
2531 f1c9fe20 2023-01-30 mark local short_commit2=`trim_obj_id 28 $drop_commit2`
2532 f1c9fe20 2023-01-30 mark local short_commit3=`trim_obj_id 28 $drop_commit3`
2533 f1c9fe20 2023-01-30 mark
2534 f1c9fe20 2023-01-30 mark echo "$short_commit1 $drop $dropmsg 1" > $testroot/stdout.expected
2535 f1c9fe20 2023-01-30 mark echo "$short_commit2 $drop $dropmsg 2" >> $testroot/stdout.expected
2536 f1c9fe20 2023-01-30 mark echo "$short_commit3 $drop $dropmsg 3" >> $testroot/stdout.expected
2537 f1c9fe20 2023-01-30 mark echo "Switching work tree to refs/heads/master" \
2538 f1c9fe20 2023-01-30 mark >> $testroot/stdout.expected
2539 f1c9fe20 2023-01-30 mark
2540 f1c9fe20 2023-01-30 mark cmp -s $testroot/stdout.expected $testroot/stdout
2541 f1c9fe20 2023-01-30 mark ret=$?
2542 f1c9fe20 2023-01-30 mark if [ $ret -ne 0 ]; then
2543 f1c9fe20 2023-01-30 mark diff -u $testroot/stdout.expected $testroot/stdout
2544 f1c9fe20 2023-01-30 mark test_done "$testroot" "$ret"
2545 f1c9fe20 2023-01-30 mark return 1
2546 f1c9fe20 2023-01-30 mark fi
2547 f1c9fe20 2023-01-30 mark
2548 f1c9fe20 2023-01-30 mark echo "alpha" > $testroot/content.expected
2549 f1c9fe20 2023-01-30 mark cat $testroot/wt/alpha > $testroot/content
2550 f1c9fe20 2023-01-30 mark cmp -s $testroot/content.expected $testroot/content
2551 f1c9fe20 2023-01-30 mark ret=$?
2552 f1c9fe20 2023-01-30 mark if [ $ret -ne 0 ]; then
2553 f1c9fe20 2023-01-30 mark diff -u $testroot/content.expected $testroot/content
2554 f1c9fe20 2023-01-30 mark test_done "$testroot" "$ret"
2555 f1c9fe20 2023-01-30 mark return 1
2556 f1c9fe20 2023-01-30 mark fi
2557 f1c9fe20 2023-01-30 mark
2558 f1c9fe20 2023-01-30 mark echo "zeta" > $testroot/content.expected
2559 f1c9fe20 2023-01-30 mark cat $testroot/wt/epsilon/zeta > $testroot/content
2560 f1c9fe20 2023-01-30 mark cmp -s $testroot/content.expected $testroot/content
2561 f1c9fe20 2023-01-30 mark ret=$?
2562 f1c9fe20 2023-01-30 mark if [ $ret -ne 0 ]; then
2563 f1c9fe20 2023-01-30 mark diff -u $testroot/content.expected $testroot/content
2564 f1c9fe20 2023-01-30 mark test_done "$testroot" "$ret"
2565 f1c9fe20 2023-01-30 mark return 1
2566 f1c9fe20 2023-01-30 mark fi
2567 f1c9fe20 2023-01-30 mark
2568 f1c9fe20 2023-01-30 mark echo "delta" > $testroot/content.expected
2569 f1c9fe20 2023-01-30 mark cat $testroot/wt/gamma/delta > $testroot/content
2570 f1c9fe20 2023-01-30 mark cmp -s $testroot/content.expected $testroot/content
2571 f1c9fe20 2023-01-30 mark ret=$?
2572 f1c9fe20 2023-01-30 mark if [ $ret -ne 0 ]; then
2573 f1c9fe20 2023-01-30 mark diff -u $testroot/content.expected $testroot/content
2574 f1c9fe20 2023-01-30 mark test_done "$testroot" "$ret"
2575 f1c9fe20 2023-01-30 mark return 1
2576 f1c9fe20 2023-01-30 mark fi
2577 f1c9fe20 2023-01-30 mark
2578 f1c9fe20 2023-01-30 mark if [ ! -e $testroot/wt/beta ]; then
2579 f1c9fe20 2023-01-30 mark echo "removed file beta should be restored" >&2
2580 f1c9fe20 2023-01-30 mark test_done "$testroot" "1"
2581 f1c9fe20 2023-01-30 mark return 1
2582 f1c9fe20 2023-01-30 mark fi
2583 f1c9fe20 2023-01-30 mark
2584 f1c9fe20 2023-01-30 mark if [ -e $testroot/wt/new ]; then
2585 f1c9fe20 2023-01-30 mark echo "new file should no longer exist" >&2
2586 f1c9fe20 2023-01-30 mark test_done "$testroot" "$ret"
2587 f1c9fe20 2023-01-30 mark return 1
2588 f1c9fe20 2023-01-30 mark fi
2589 f1c9fe20 2023-01-30 mark
2590 f1c9fe20 2023-01-30 mark (cd $testroot/wt && got status > $testroot/stdout)
2591 f1c9fe20 2023-01-30 mark
2592 f1c9fe20 2023-01-30 mark echo -n > $testroot/stdout.expected
2593 f1c9fe20 2023-01-30 mark cmp -s $testroot/stdout.expected $testroot/stdout
2594 f1c9fe20 2023-01-30 mark ret=$?
2595 f1c9fe20 2023-01-30 mark if [ $ret -ne 0 ]; then
2596 f1c9fe20 2023-01-30 mark diff -u $testroot/stdout.expected $testroot/stdout
2597 f1c9fe20 2023-01-30 mark test_done "$testroot" "$ret"
2598 f1c9fe20 2023-01-30 mark return 1
2599 f1c9fe20 2023-01-30 mark fi
2600 f1c9fe20 2023-01-30 mark
2601 f1c9fe20 2023-01-30 mark (cd $testroot/wt && got log | grep ^commit > $testroot/stdout)
2602 f1c9fe20 2023-01-30 mark echo "commit $orig_commit (master)" > $testroot/stdout.expected
2603 f1c9fe20 2023-01-30 mark cmp -s $testroot/stdout.expected $testroot/stdout
2604 f1c9fe20 2023-01-30 mark ret=$?
2605 f1c9fe20 2023-01-30 mark if [ $ret -ne 0 ]; then
2606 f1c9fe20 2023-01-30 mark diff -u $testroot/stdout.expected $testroot/stdout
2607 f1c9fe20 2023-01-30 mark fi
2608 f1c9fe20 2023-01-30 mark test_done "$testroot" "$ret"
2609 f1c9fe20 2023-01-30 mark }
2610 f1c9fe20 2023-01-30 mark
2611 7fb414ae 2020-08-08 stsp test_parseargs "$@"
2612 0ebf8283 2019-07-24 stsp run_test test_histedit_no_op
2613 0ebf8283 2019-07-24 stsp run_test test_histedit_swap
2614 0ebf8283 2019-07-24 stsp run_test test_histedit_drop
2615 0ebf8283 2019-07-24 stsp run_test test_histedit_fold
2616 0ebf8283 2019-07-24 stsp run_test test_histedit_edit
2617 0ebf8283 2019-07-24 stsp run_test test_histedit_fold_last_commit
2618 14eb0fef 2023-10-26 stsp run_test test_histedit_missing_commit_pick
2619 14eb0fef 2023-10-26 stsp run_test test_histedit_missing_commit_mesg
2620 0ebf8283 2019-07-24 stsp run_test test_histedit_abort
2621 a4027091 2019-07-25 stsp run_test test_histedit_path_prefix_drop
2622 b2c50a0a 2019-07-25 stsp run_test test_histedit_path_prefix_edit
2623 c7d20a3f 2019-07-30 stsp run_test test_histedit_outside_refs_heads
2624 0def28b1 2019-08-17 stsp run_test test_histedit_fold_last_commit_swap
2625 de05890f 2020-03-05 stsp run_test test_histedit_split_commit
2626 5b87815e 2020-03-05 stsp run_test test_histedit_duplicate_commit_in_script
2627 ecfff807 2020-09-23 stsp run_test test_histedit_fold_add_delete
2628 c2ba7aa6 2023-07-26 stsp run_test test_histedit_fold_edit_delete
2629 15aed053 2023-03-07 naddy run_test test_histedit_fold_delete_add
2630 239f5c5a 2020-12-13 stsp run_test test_histedit_fold_only
2631 a347e6bb 2020-12-13 stsp run_test test_histedit_fold_only_empty_logmsg
2632 b93c7142 2021-10-01 stsp run_test test_histedit_edit_only
2633 09209b8a 2021-10-08 stsp run_test test_histedit_prepend_line
2634 598eac43 2022-07-22 stsp run_test test_histedit_resets_committer
2635 b2b3fce1 2022-10-29 op run_test test_histedit_umask
2636 c48f94a4 2023-01-29 stsp run_test test_histedit_mesg_filemode_change
2637 f1c9fe20 2023-01-30 mark run_test test_histedit_drop_only