blob: e33d512ec11e844147380cabbbada45e31e4d65b [file] [log] [blame]
Christian Coudera3e82672009-01-23 10:07:18 +01001#!/bin/sh
2#
3# Copyright (c) 2008 Christian Couder
4#
5test_description='Tests replace refs functionality'
6
Johannes Schindelin1550bb62020-11-18 23:44:36 +00007GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
Johannes Schindelin334afbc2020-11-18 23:44:19 +00008export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
9
Christian Coudera3e82672009-01-23 10:07:18 +010010. ./test-lib.sh
Christian Couder60e2f5a2014-07-19 17:01:13 +020011. "$TEST_DIRECTORY/lib-gpg.sh"
Christian Coudera3e82672009-01-23 10:07:18 +010012
Christian Couderadf8e542014-07-19 17:01:09 +020013add_and_commit_file ()
Christian Coudera3e82672009-01-23 10:07:18 +010014{
15 _file="$1"
16 _msg="$2"
17
18 git add $_file || return $?
19 test_tick || return $?
20 git commit --quiet -m "$_file: $_msg"
21}
22
Christian Couderadf8e542014-07-19 17:01:09 +020023commit_buffer_contains_parents ()
24{
25 git cat-file commit "$1" >payload &&
26 sed -n -e '/^$/q' -e '/^parent /p' <payload >actual &&
27 shift &&
28 for _parent
29 do
30 echo "parent $_parent"
31 done >expected &&
32 test_cmp expected actual
33}
34
35commit_peeling_shows_parents ()
36{
37 _parent_number=1
38 _commit="$1"
39 shift &&
40 for _parent
41 do
42 _found=$(git rev-parse --verify $_commit^$_parent_number) || return 1
43 test "$_found" = "$_parent" || return 1
44 _parent_number=$(( $_parent_number + 1 ))
45 done &&
Christian Couder58761702019-03-31 15:46:57 +020046 test_must_fail git rev-parse --verify $_commit^$_parent_number 2>err &&
47 test_i18ngrep "Needed a single revision" err
Christian Couderadf8e542014-07-19 17:01:09 +020048}
49
50commit_has_parents ()
51{
52 commit_buffer_contains_parents "$@" &&
53 commit_peeling_shows_parents "$@"
54}
55
Christian Coudera3e82672009-01-23 10:07:18 +010056HASH1=
57HASH2=
58HASH3=
59HASH4=
60HASH5=
61HASH6=
62HASH7=
63
64test_expect_success 'set up buggy branch' '
Christian Couder1c2828c2014-07-07 08:35:30 +020065 echo "line 1" >>hello &&
66 echo "line 2" >>hello &&
67 echo "line 3" >>hello &&
68 echo "line 4" >>hello &&
Christian Coudera3e82672009-01-23 10:07:18 +010069 add_and_commit_file hello "4 lines" &&
70 HASH1=$(git rev-parse --verify HEAD) &&
Christian Couder1c2828c2014-07-07 08:35:30 +020071 echo "line BUG" >>hello &&
72 echo "line 6" >>hello &&
73 echo "line 7" >>hello &&
74 echo "line 8" >>hello &&
Christian Coudera3e82672009-01-23 10:07:18 +010075 add_and_commit_file hello "4 more lines with a BUG" &&
76 HASH2=$(git rev-parse --verify HEAD) &&
Christian Couder1c2828c2014-07-07 08:35:30 +020077 echo "line 9" >>hello &&
78 echo "line 10" >>hello &&
Christian Coudera3e82672009-01-23 10:07:18 +010079 add_and_commit_file hello "2 more lines" &&
80 HASH3=$(git rev-parse --verify HEAD) &&
Christian Couder1c2828c2014-07-07 08:35:30 +020081 echo "line 11" >>hello &&
Christian Coudera3e82672009-01-23 10:07:18 +010082 add_and_commit_file hello "1 more line" &&
83 HASH4=$(git rev-parse --verify HEAD) &&
Christian Couder1c2828c2014-07-07 08:35:30 +020084 sed -e "s/BUG/5/" hello >hello.new &&
Christian Coudera3e82672009-01-23 10:07:18 +010085 mv hello.new hello &&
86 add_and_commit_file hello "BUG fixed" &&
87 HASH5=$(git rev-parse --verify HEAD) &&
Christian Couder1c2828c2014-07-07 08:35:30 +020088 echo "line 12" >>hello &&
89 echo "line 13" >>hello &&
Christian Coudera3e82672009-01-23 10:07:18 +010090 add_and_commit_file hello "2 more lines" &&
Jonathan Niedera48fcd82010-10-30 20:46:54 -050091 HASH6=$(git rev-parse --verify HEAD) &&
Christian Couder1c2828c2014-07-07 08:35:30 +020092 echo "line 14" >>hello &&
93 echo "line 15" >>hello &&
94 echo "line 16" >>hello &&
Christian Coudera3e82672009-01-23 10:07:18 +010095 add_and_commit_file hello "again 3 more lines" &&
96 HASH7=$(git rev-parse --verify HEAD)
97'
98
99test_expect_success 'replace the author' '
100 git cat-file commit $HASH2 | grep "author A U Thor" &&
101 R=$(git cat-file commit $HASH2 | sed -e "s/A U/O/" | git hash-object -t commit --stdin -w) &&
102 git cat-file commit $R | grep "author O Thor" &&
103 git update-ref refs/replace/$HASH2 $R &&
104 git show HEAD~5 | grep "O Thor" &&
105 git show $HASH2 | grep "O Thor"
106'
107
Christian Couderb0fa7ab2009-10-12 22:30:32 +0200108test_expect_success 'test --no-replace-objects option' '
109 git cat-file commit $HASH2 | grep "author O Thor" &&
110 git --no-replace-objects cat-file commit $HASH2 | grep "author A U Thor" &&
111 git show $HASH2 | grep "O Thor" &&
112 git --no-replace-objects show $HASH2 | grep "A U Thor"
113'
114
Christian Couder6476b382009-11-18 07:50:58 +0100115test_expect_success 'test GIT_NO_REPLACE_OBJECTS env variable' '
116 GIT_NO_REPLACE_OBJECTS=1 git cat-file commit $HASH2 | grep "author A U Thor" &&
117 GIT_NO_REPLACE_OBJECTS=1 git show $HASH2 | grep "A U Thor"
118'
119
Jeff Kingda4398d2018-07-18 16:45:25 -0400120test_expect_success 'test core.usereplacerefs config option' '
121 test_config core.usereplacerefs false &&
122 git cat-file commit $HASH2 | grep "author A U Thor" &&
123 git show $HASH2 | grep "A U Thor"
124'
125
Christian Coudercc400f52009-01-23 10:07:26 +0100126cat >tag.sig <<EOF
127object $HASH2
128type commit
129tag mytag
130tagger T A Gger <> 0 +0000
131
132EOF
133
134test_expect_success 'tag replaced commit' '
Ævar Arnfjörð Bjarmason317c1762021-01-05 20:42:36 +0100135 git mktag <tag.sig >.git/refs/tags/mytag
Christian Coudercc400f52009-01-23 10:07:26 +0100136'
137
Christian Couderdae556b2009-01-23 10:07:46 +0100138test_expect_success '"git fsck" works' '
Johannes Schindelin1550bb62020-11-18 23:44:36 +0000139 git fsck main >fsck_main.out &&
140 test_i18ngrep "dangling commit $R" fsck_main.out &&
141 test_i18ngrep "dangling tag $(git show-ref -s refs/tags/mytag)" fsck_main.out &&
Christian Couderdae556b2009-01-23 10:07:46 +0100142 test -z "$(git fsck)"
143'
144
145test_expect_success 'repack, clone and fetch work' '
146 git repack -a -d &&
147 git clone --no-hardlinks . clone_dir &&
Jonathan Nieder18a82692010-09-06 20:42:54 -0500148 (
149 cd clone_dir &&
150 git show HEAD~5 | grep "A U Thor" &&
151 git show $HASH2 | grep "A U Thor" &&
152 git cat-file commit $R &&
153 git repack -a -d &&
154 test_must_fail git cat-file commit $R &&
155 git fetch ../ "refs/replace/*:refs/replace/*" &&
156 git show HEAD~5 | grep "O Thor" &&
157 git show $HASH2 | grep "O Thor" &&
158 git cat-file commit $R
Jens Lehmannfd4ec4f2010-09-06 20:39:54 +0200159 )
Christian Couderdae556b2009-01-23 10:07:46 +0100160'
161
Christian Couder54b0c1e2009-02-02 06:12:44 +0100162test_expect_success '"git replace" listing and deleting' '
163 test "$HASH2" = "$(git replace -l)" &&
164 test "$HASH2" = "$(git replace)" &&
165 aa=${HASH2%??????????????????????????????????????} &&
Christian Couderb1ecd8c2013-09-06 07:10:59 +0200166 test "$HASH2" = "$(git replace --list "$aa*")" &&
Christian Couder54b0c1e2009-02-02 06:12:44 +0100167 test_must_fail git replace -d $R &&
Christian Couderb1ecd8c2013-09-06 07:10:59 +0200168 test_must_fail git replace --delete &&
Christian Couder54b0c1e2009-02-02 06:12:44 +0100169 test_must_fail git replace -l -d $HASH2 &&
170 git replace -d $HASH2 &&
Christian Couderbebdd272009-02-02 06:12:53 +0100171 git show $HASH2 | grep "A U Thor" &&
Christian Couder54b0c1e2009-02-02 06:12:44 +0100172 test -z "$(git replace -l)"
173'
174
Christian Couderbebdd272009-02-02 06:12:53 +0100175test_expect_success '"git replace" replacing' '
176 git replace $HASH2 $R &&
177 git show $HASH2 | grep "O Thor" &&
178 test_must_fail git replace $HASH2 $R &&
179 git replace -f $HASH2 $R &&
180 test_must_fail git replace -f &&
181 test "$HASH2" = "$(git replace)"
182'
183
Michael J Gruber9dfc3682012-11-13 11:34:11 +0100184test_expect_success '"git replace" resolves sha1' '
185 SHORTHASH2=$(git rev-parse --short=8 $HASH2) &&
186 git replace -d $SHORTHASH2 &&
187 git replace $SHORTHASH2 $R &&
188 git show $HASH2 | grep "O Thor" &&
189 test_must_fail git replace $HASH2 $R &&
190 git replace -f $HASH2 $R &&
Christian Couderb1ecd8c2013-09-06 07:10:59 +0200191 test_must_fail git replace --force &&
Michael J Gruber9dfc3682012-11-13 11:34:11 +0100192 test "$HASH2" = "$(git replace)"
193'
194
Christian Couder4e65b532009-05-27 07:14:09 +0200195# This creates a side branch where the bug in H2
196# does not appear because P2 is created by applying
197# H2 and squashing H5 into it.
198# P3, P4 and P6 are created by cherry-picking H3, H4
199# and H6 respectively.
200#
201# At this point, we should have the following:
202#
203# P2--P3--P4--P6
204# /
205# H1-H2-H3-H4-H5-H6-H7
206#
207# Then we replace H6 with P6.
208#
209test_expect_success 'create parallel branch without the bug' '
210 git replace -d $HASH2 &&
211 git show $HASH2 | grep "A U Thor" &&
212 git checkout $HASH1 &&
213 git cherry-pick $HASH2 &&
214 git show $HASH5 | git apply &&
215 git commit --amend -m "hello: 4 more lines WITHOUT the bug" hello &&
216 PARA2=$(git rev-parse --verify HEAD) &&
217 git cherry-pick $HASH3 &&
218 PARA3=$(git rev-parse --verify HEAD) &&
219 git cherry-pick $HASH4 &&
220 PARA4=$(git rev-parse --verify HEAD) &&
221 git cherry-pick $HASH6 &&
222 PARA6=$(git rev-parse --verify HEAD) &&
223 git replace $HASH6 $PARA6 &&
Johannes Schindelin1550bb62020-11-18 23:44:36 +0000224 git checkout main &&
Christian Couder4e65b532009-05-27 07:14:09 +0200225 cur=$(git rev-parse --verify HEAD) &&
226 test "$cur" = "$HASH7" &&
227 git log --pretty=oneline | grep $PARA2 &&
228 git remote add cloned ./clone_dir
229'
230
231test_expect_success 'push to cloned repo' '
232 git push cloned $HASH6^:refs/heads/parallel &&
Jonathan Nieder18a82692010-09-06 20:42:54 -0500233 (
234 cd clone_dir &&
235 git checkout parallel &&
236 git log --pretty=oneline | grep $PARA2
Jens Lehmannfd4ec4f2010-09-06 20:39:54 +0200237 )
Christian Couder4e65b532009-05-27 07:14:09 +0200238'
239
240test_expect_success 'push branch with replacement' '
241 git cat-file commit $PARA3 | grep "author A U Thor" &&
242 S=$(git cat-file commit $PARA3 | sed -e "s/A U/O/" | git hash-object -t commit --stdin -w) &&
243 git cat-file commit $S | grep "author O Thor" &&
244 git replace $PARA3 $S &&
245 git show $HASH6~2 | grep "O Thor" &&
246 git show $PARA3 | grep "O Thor" &&
247 git push cloned $HASH6^:refs/heads/parallel2 &&
Jonathan Nieder18a82692010-09-06 20:42:54 -0500248 (
249 cd clone_dir &&
250 git checkout parallel2 &&
251 git log --pretty=oneline | grep $PARA3 &&
252 git show $PARA3 | grep "A U Thor"
Jens Lehmannfd4ec4f2010-09-06 20:39:54 +0200253 )
Christian Couder4e65b532009-05-27 07:14:09 +0200254'
255
256test_expect_success 'fetch branch with replacement' '
257 git branch tofetch $HASH6 &&
Jonathan Nieder18a82692010-09-06 20:42:54 -0500258 (
259 cd clone_dir &&
Christian Couderd212cef2010-09-26 07:20:18 +0200260 git fetch origin refs/heads/tofetch:refs/heads/parallel3 &&
Christian Couder1c2828c2014-07-07 08:35:30 +0200261 git log --pretty=oneline parallel3 >output.txt &&
Christian Couderd212cef2010-09-26 07:20:18 +0200262 ! grep $PARA3 output.txt &&
Christian Couder1c2828c2014-07-07 08:35:30 +0200263 git show $PARA3 >para3.txt &&
Christian Couderd212cef2010-09-26 07:20:18 +0200264 grep "A U Thor" para3.txt &&
265 git fetch origin "refs/replace/*:refs/replace/*" &&
Christian Couder1c2828c2014-07-07 08:35:30 +0200266 git log --pretty=oneline parallel3 >output.txt &&
Christian Couderd212cef2010-09-26 07:20:18 +0200267 grep $PARA3 output.txt &&
Christian Couder1c2828c2014-07-07 08:35:30 +0200268 git show $PARA3 >para3.txt &&
Christian Couderd212cef2010-09-26 07:20:18 +0200269 grep "O Thor" para3.txt
Jens Lehmannfd4ec4f2010-09-06 20:39:54 +0200270 )
Christian Couder4e65b532009-05-27 07:14:09 +0200271'
272
Christian Couder6476b382009-11-18 07:50:58 +0100273test_expect_success 'bisect and replacements' '
274 git bisect start $HASH7 $HASH1 &&
Nguyễn Thái Ngọc Duy2e3400c2010-09-03 22:51:53 +0200275 test "$PARA3" = "$(git rev-parse --verify HEAD)" &&
Christian Couder6476b382009-11-18 07:50:58 +0100276 git bisect reset &&
277 GIT_NO_REPLACE_OBJECTS=1 git bisect start $HASH7 $HASH1 &&
278 test "$HASH4" = "$(git rev-parse --verify HEAD)" &&
279 git bisect reset &&
280 git --no-replace-objects bisect start $HASH7 $HASH1 &&
281 test "$HASH4" = "$(git rev-parse --verify HEAD)" &&
282 git bisect reset
283'
284
Nelson Elhage6e2a09d2010-08-12 10:18:12 -0400285test_expect_success 'index-pack and replacements' '
286 git --no-replace-objects rev-list --objects HEAD |
287 git --no-replace-objects pack-objects test- &&
288 git index-pack test-*.pack
289'
290
Junio C Hamanoabb25ac2011-05-15 12:54:51 -0700291test_expect_success 'not just commits' '
292 echo replaced >file &&
293 git add file &&
294 REPLACED=$(git rev-parse :file) &&
295 mv file file.replaced &&
296
297 echo original >file &&
298 git add file &&
299 ORIGINAL=$(git rev-parse :file) &&
300 git update-ref refs/replace/$ORIGINAL $REPLACED &&
301 mv file file.original &&
302
303 git checkout file &&
304 test_cmp file.replaced file
305'
306
Christian Couder3e625c82013-09-06 07:10:55 +0200307test_expect_success 'replaced and replacement objects must be of the same type' '
308 test_must_fail git replace mytag $HASH1 &&
309 test_must_fail git replace HEAD^{tree} HEAD~1 &&
310 BLOB=$(git rev-parse :file) &&
311 test_must_fail git replace HEAD^ $BLOB
312'
313
314test_expect_success '-f option bypasses the type check' '
315 git replace -f mytag $HASH1 &&
Christian Couderb1ecd8c2013-09-06 07:10:59 +0200316 git replace --force HEAD^{tree} HEAD~1 &&
Christian Couder3e625c82013-09-06 07:10:55 +0200317 git replace -f HEAD^ $BLOB
318'
319
Christian Couder1f7117e2013-12-11 08:46:09 +0100320test_expect_success 'git cat-file --batch works on replace objects' '
Christian Couder303c5d62013-12-11 08:46:08 +0100321 git replace | grep $PARA3 &&
322 echo $PARA3 | git cat-file --batch
323'
324
Christian Couderbbbb4af2013-12-11 08:46:11 +0100325test_expect_success 'test --format bogus' '
326 test_must_fail git replace --format bogus >/dev/null 2>&1
327'
328
329test_expect_success 'test --format short' '
330 git replace --format=short >actual &&
331 git replace >expected &&
332 test_cmp expected actual
333'
334
335test_expect_success 'test --format medium' '
336 H1=$(git --no-replace-objects rev-parse HEAD~1) &&
337 HT=$(git --no-replace-objects rev-parse HEAD^{tree}) &&
338 MYTAG=$(git --no-replace-objects rev-parse mytag) &&
339 {
340 echo "$H1 -> $BLOB" &&
341 echo "$BLOB -> $REPLACED" &&
342 echo "$HT -> $H1" &&
343 echo "$PARA3 -> $S" &&
344 echo "$MYTAG -> $HASH1"
345 } | sort >expected &&
Christian Couder1c2828c2014-07-07 08:35:30 +0200346 git replace -l --format medium | sort >actual &&
Christian Couderbbbb4af2013-12-11 08:46:11 +0100347 test_cmp expected actual
348'
349
Christian Couder663a8562013-12-28 12:00:05 +0100350test_expect_success 'test --format long' '
Christian Couderbbbb4af2013-12-11 08:46:11 +0100351 {
352 echo "$H1 (commit) -> $BLOB (blob)" &&
353 echo "$BLOB (blob) -> $REPLACED (blob)" &&
354 echo "$HT (tree) -> $H1 (commit)" &&
355 echo "$PARA3 (commit) -> $S (commit)" &&
356 echo "$MYTAG (tag) -> $HASH1 (commit)"
357 } | sort >expected &&
Christian Couder1c2828c2014-07-07 08:35:30 +0200358 git replace --format=long | sort >actual &&
Christian Couderbbbb4af2013-12-11 08:46:11 +0100359 test_cmp expected actual
360'
361
SZEDER Gábor36fc7d82016-01-05 11:33:30 +0100362test_expect_success 'setup fake editors' '
363 write_script fakeeditor <<-\EOF &&
Christian Couder85f98fc2014-05-17 14:16:37 +0200364 sed -e "s/A U Thor/A fake Thor/" "$1" >"$1.new"
365 mv "$1.new" "$1"
366 EOF
SZEDER Gábor36fc7d82016-01-05 11:33:30 +0100367 write_script failingfakeeditor <<-\EOF
368 ./fakeeditor "$@"
369 false
370 EOF
Christian Couder85f98fc2014-05-17 14:16:37 +0200371'
372
373test_expect_success '--edit with and without already replaced object' '
374 test_must_fail env GIT_EDITOR=./fakeeditor git replace --edit "$PARA3" &&
375 GIT_EDITOR=./fakeeditor git replace --force --edit "$PARA3" &&
376 git replace -l | grep "$PARA3" &&
377 git cat-file commit "$PARA3" | grep "A fake Thor" &&
378 git replace -d "$PARA3" &&
379 GIT_EDITOR=./fakeeditor git replace --edit "$PARA3" &&
380 git replace -l | grep "$PARA3" &&
381 git cat-file commit "$PARA3" | grep "A fake Thor"
382'
383
384test_expect_success '--edit and change nothing or command failed' '
385 git replace -d "$PARA3" &&
386 test_must_fail env GIT_EDITOR=true git replace --edit "$PARA3" &&
SZEDER Gábor36fc7d82016-01-05 11:33:30 +0100387 test_must_fail env GIT_EDITOR="./failingfakeeditor" git replace --edit "$PARA3" &&
Christian Couder85f98fc2014-05-17 14:16:37 +0200388 GIT_EDITOR=./fakeeditor git replace --edit "$PARA3" &&
389 git replace -l | grep "$PARA3" &&
390 git cat-file commit "$PARA3" | grep "A fake Thor"
391'
392
Christian Couder11aec952013-09-06 07:10:56 +0200393test_expect_success 'replace ref cleanup' '
394 test -n "$(git replace)" &&
395 git replace -d $(git replace) &&
396 test -z "$(git replace)"
397'
398
Christian Couderadf8e542014-07-19 17:01:09 +0200399test_expect_success '--graft with and without already replaced object' '
Christian Couder502d87b2019-03-31 15:46:56 +0200400 git log --oneline >log &&
401 test_line_count = 7 log &&
Christian Couderadf8e542014-07-19 17:01:09 +0200402 git replace --graft $HASH5 &&
Christian Couder502d87b2019-03-31 15:46:56 +0200403 git log --oneline >log &&
404 test_line_count = 3 log &&
Christian Couderadf8e542014-07-19 17:01:09 +0200405 commit_has_parents $HASH5 &&
406 test_must_fail git replace --graft $HASH5 $HASH4 $HASH3 &&
407 git replace --force -g $HASH5 $HASH4 $HASH3 &&
408 commit_has_parents $HASH5 $HASH4 $HASH3 &&
409 git replace -d $HASH5
410'
411
Christian Couderf8e44a82019-03-31 15:46:58 +0200412test_expect_success '--graft using a tag as the new parent' '
413 git tag new_parent $HASH5 &&
414 git replace --graft $HASH7 new_parent &&
415 commit_has_parents $HASH7 $HASH5 &&
416 git replace -d $HASH7 &&
417 git tag -a -m "annotated new parent tag" annotated_new_parent $HASH5 &&
418 git replace --graft $HASH7 annotated_new_parent &&
419 commit_has_parents $HASH7 $HASH5 &&
420 git replace -d $HASH7
421'
422
Christian Couderee521ec2019-03-31 15:46:59 +0200423test_expect_success '--graft using a tag as the replaced object' '
424 git tag replaced_object $HASH7 &&
425 git replace --graft replaced_object $HASH5 &&
426 commit_has_parents $HASH7 $HASH5 &&
427 git replace -d $HASH7 &&
428 git tag -a -m "annotated replaced object tag" annotated_replaced_object $HASH7 &&
429 git replace --graft annotated_replaced_object $HASH5 &&
430 commit_has_parents $HASH7 $HASH5 &&
431 git replace -d $HASH7
432'
433
Christian Couder60e2f5a2014-07-19 17:01:13 +0200434test_expect_success GPG 'set up a signed commit' '
435 echo "line 17" >>hello &&
436 echo "line 18" >>hello &&
437 git add hello &&
438 test_tick &&
439 git commit --quiet -S -m "hello: 2 more lines in a signed commit" &&
440 HASH8=$(git rev-parse --verify HEAD) &&
441 git verify-commit $HASH8
442'
443
444test_expect_success GPG '--graft with a signed commit' '
445 git cat-file commit $HASH8 >orig &&
446 git replace --graft $HASH8 &&
447 git cat-file commit $HASH8 >repl &&
448 commit_has_parents $HASH8 &&
449 test_must_fail git verify-commit $HASH8 &&
450 sed -n -e "/^tree /p" -e "/^author /p" -e "/^committer /p" orig >expected &&
451 echo >>expected &&
452 sed -e "/^$/q" repl >actual &&
453 test_cmp expected actual &&
454 git replace -d $HASH8
455'
456
Christian Couder3fa10252014-07-19 17:01:15 +0200457test_expect_success GPG 'set up a merge commit with a mergetag' '
458 git reset --hard HEAD &&
459 git checkout -b test_branch HEAD~2 &&
460 echo "line 1 from test branch" >>hello &&
461 echo "line 2 from test branch" >>hello &&
462 git add hello &&
463 test_tick &&
464 git commit -m "hello: 2 more lines from a test branch" &&
465 HASH9=$(git rev-parse --verify HEAD) &&
466 git tag -s -m "tag for testing with a mergetag" test_tag HEAD &&
Johannes Schindelin1550bb62020-11-18 23:44:36 +0000467 git checkout main &&
Christian Couder3fa10252014-07-19 17:01:15 +0200468 git merge -s ours test_tag &&
469 HASH10=$(git rev-parse --verify HEAD) &&
470 git cat-file commit $HASH10 | grep "^mergetag object"
471'
472
473test_expect_success GPG '--graft on a commit with a mergetag' '
474 test_must_fail git replace --graft $HASH10 $HASH8^1 &&
475 git replace --graft $HASH10 $HASH8^1 $HASH9 &&
476 git replace -d $HASH10
477'
478
Johannes Schindelin0115e032018-04-29 00:44:42 +0200479test_expect_success '--convert-graft-file' '
480 git checkout -b with-graft-file &&
481 test_commit root2 &&
482 git reset --hard root2^ &&
483 test_commit root1 &&
484 test_commit after-root1 &&
485 test_tick &&
486 git merge -m merge-root2 root2 &&
487
488 : add and convert graft file &&
489 printf "%s\n%s %s\n\n# comment\n%s\n" \
490 $(git rev-parse HEAD^^ HEAD^ HEAD^^ HEAD^2) \
491 >.git/info/grafts &&
Ævar Arnfjörð Bjarmason8821e902018-11-27 21:12:55 +0100492 git status 2>stderr &&
493 test_i18ngrep "hint:.*grafts is deprecated" stderr &&
494 git replace --convert-graft-file 2>stderr &&
495 test_i18ngrep ! "hint:.*grafts is deprecated" stderr &&
Johannes Schindelin0115e032018-04-29 00:44:42 +0200496 test_path_is_missing .git/info/grafts &&
497
498 : verify that the history is now "grafted" &&
499 git rev-list HEAD >out &&
500 test_line_count = 4 out &&
501
502 : create invalid graft file and verify that it is not deleted &&
503 test_when_finished "rm -f .git/info/grafts" &&
504 echo $EMPTY_BLOB $EMPTY_TREE >.git/info/grafts &&
505 test_must_fail git replace --convert-graft-file 2>err &&
506 test_i18ngrep "$EMPTY_BLOB $EMPTY_TREE" err &&
507 test_i18ngrep "$EMPTY_BLOB $EMPTY_TREE" .git/info/grafts
508'
509
Christian Coudera3e82672009-01-23 10:07:18 +0100510test_done