585f8d5751eb1fba2c1ca4c7c5cf7189570d2f2e
1#!/bin/sh
2#
3# Copyright (c) 2012 Avery Pennaraum
4#
5test_description='Basic porcelain support for subtrees
6
7This test verifies the basic operation of the merge, pull, add
8and split subcommands of git subtree.
9'
10
11. ./test-lib.sh
12
13create()
14{
15 echo "$1" >"$1"
16 git add "$1"
17}
18
19
20check_equal()
21{
22 test_debug 'echo'
23 test_debug "echo \"check a:\" \"{$1}\""
24 test_debug "echo \" b:\" \"{$2}\""
25 if [ "$1" = "$2" ]; then
26 return 0
27 else
28 return 1
29 fi
30}
31
32fixnl()
33{
34 t=""
35 while read x; do
36 t="$t$x "
37 done
38 echo $t
39}
40
41multiline()
42{
43 while read x; do
44 set -- $x
45 for d in "$@"; do
46 echo "$d"
47 done
48 done
49}
50
51undo()
52{
53 git reset --hard HEAD~
54}
55
56last_commit_message()
57{
58 git log --pretty=format:%s -1
59}
60
61# 1
62test_expect_success 'init subproj' '
63 test_create_repo subproj
64'
65
66# To the subproject!
67cd subproj
68
69# 2
70test_expect_success 'add sub1' '
71 create sub1 &&
72 git commit -m "sub1" &&
73 git branch sub1 &&
74 git branch -m master subproj
75'
76
77# 3
78test_expect_success 'add sub2' '
79 create sub2 &&
80 git commit -m "sub2" &&
81 git branch sub2
82'
83
84# 4
85test_expect_success 'add sub3' '
86 create sub3 &&
87 git commit -m "sub3" &&
88 git branch sub3
89'
90
91# Back to mainline
92cd ..
93
94# 5
95test_expect_success 'add main4' '
96 create main4 &&
97 git commit -m "main4" &&
98 git branch -m master mainline &&
99 git branch subdir
100'
101
102# 6
103test_expect_success 'fetch subproj history' '
104 git fetch ./subproj sub1 &&
105 git branch sub1 FETCH_HEAD
106'
107
108# 7
109test_expect_success 'no subtree exists in main tree' '
110 test_must_fail git subtree merge --prefix=subdir sub1
111'
112
113# 8
114test_expect_success 'no pull from non-existant subtree' '
115 test_must_fail git subtree pull --prefix=subdir ./subproj sub1
116'
117
118# 9
119test_expect_success 'check if --message works for add' '
120 git subtree add --prefix=subdir --message="Added subproject" sub1 &&
121 check_equal ''"$(last_commit_message)"'' "Added subproject" &&
122 undo
123'
124
125# 10
126test_expect_success 'check if --message works as -m and --prefix as -P' '
127 git subtree add -P subdir -m "Added subproject using git subtree" sub1 &&
128 check_equal ''"$(last_commit_message)"'' "Added subproject using git subtree" &&
129 undo
130'
131
132# 11
133test_expect_success 'check if --message works with squash too' '
134 git subtree add -P subdir -m "Added subproject with squash" --squash sub1 &&
135 check_equal ''"$(last_commit_message)"'' "Added subproject with squash" &&
136 undo
137'
138
139# 12
140test_expect_success 'add subproj to mainline' '
141 git subtree add --prefix=subdir/ FETCH_HEAD &&
142 check_equal ''"$(last_commit_message)"'' "Add '"'subdir/'"' from commit '"'"'''"$(git rev-parse sub1)"'''"'"'"
143'
144
145# 13
146# this shouldn't actually do anything, since FETCH_HEAD is already a parent
147test_expect_success 'merge fetched subproj' '
148 git merge -m "merge -s -ours" -s ours FETCH_HEAD
149'
150
151# 14
152test_expect_success 'add main-sub5' '
153 create subdir/main-sub5 &&
154 git commit -m "main-sub5"
155'
156
157# 15
158test_expect_success 'add main6' '
159 create main6 &&
160 git commit -m "main6 boring"
161'
162
163# 16
164test_expect_success 'add main-sub7' '
165 create subdir/main-sub7 &&
166 git commit -m "main-sub7"
167'
168
169# 17
170test_expect_success 'fetch new subproj history' '
171 git fetch ./subproj sub2 &&
172 git branch sub2 FETCH_HEAD
173'
174
175# 18
176test_expect_success 'check if --message works for merge' '
177 git subtree merge --prefix=subdir -m "Merged changes from subproject" sub2 &&
178 check_equal ''"$(last_commit_message)"'' "Merged changes from subproject" &&
179 undo
180'
181
182# 19
183test_expect_success 'check if --message for merge works with squash too' '
184 git subtree merge --prefix subdir -m "Merged changes from subproject using squash" --squash sub2 &&
185 check_equal ''"$(last_commit_message)"'' "Merged changes from subproject using squash" &&
186 undo
187'
188
189# 20
190test_expect_success 'merge new subproj history into subdir' '
191 git subtree merge --prefix=subdir FETCH_HEAD &&
192 git branch pre-split &&
193 check_equal ''"$(last_commit_message)"'' "Merge commit '"'"'"$(git rev-parse sub2)"'"'"' into mainline"
194'
195
196# 21
197test_expect_success 'Check that prefix argument is required for split' '
198 echo "You must provide the --prefix option." > expected &&
199 test_must_fail git subtree split > actual 2>&1 &&
200 test_debug "echo -n expected: " &&
201 test_debug "cat expected" &&
202 test_debug "echo -n actual: " &&
203 test_debug "cat actual" &&
204 test_cmp expected actual &&
205 rm -f expected actual
206'
207
208# 22
209test_expect_success 'Check that the <prefix> exists for a split' '
210 echo "'"'"'non-existent-directory'"'"'" does not exist\; use "'"'"'git subtree add'"'"'" > expected &&
211 test_must_fail git subtree split --prefix=non-existent-directory > actual 2>&1 &&
212 test_debug "echo -n expected: " &&
213 test_debug "cat expected" &&
214 test_debug "echo -n actual: " &&
215 test_debug "cat actual" &&
216 test_cmp expected actual
217# rm -f expected actual
218'
219
220# 23
221test_expect_success 'check if --message works for split+rejoin' '
222 spl1=''"$(git subtree split --annotate='"'*'"' --prefix subdir --onto FETCH_HEAD --message "Split & rejoin" --rejoin)"'' &&
223 git branch spl1 "$spl1" &&
224 check_equal ''"$(last_commit_message)"'' "Split & rejoin" &&
225 undo
226'
227
228# 24
229test_expect_success 'check split with --branch' '
230 spl1=$(git subtree split --annotate='"'*'"' --prefix subdir --onto FETCH_HEAD --message "Split & rejoin" --rejoin) &&
231 undo &&
232 git subtree split --annotate='"'*'"' --prefix subdir --onto FETCH_HEAD --branch splitbr1 &&
233 check_equal ''"$(git rev-parse splitbr1)"'' "$spl1"
234'
235
236# 25
237test_expect_success 'check split with --branch for an existing branch' '
238 spl1=''"$(git subtree split --annotate='"'*'"' --prefix subdir --onto FETCH_HEAD --message "Split & rejoin" --rejoin)"'' &&
239 undo &&
240 git branch splitbr2 sub1 &&
241 git subtree split --annotate='"'*'"' --prefix subdir --onto FETCH_HEAD --branch splitbr2 &&
242 check_equal ''"$(git rev-parse splitbr2)"'' "$spl1"
243'
244
245# 26
246test_expect_success 'check split with --branch for an incompatible branch' '
247 test_must_fail git subtree split --prefix subdir --onto FETCH_HEAD --branch subdir
248'
249
250
251# 27
252test_expect_success 'check split+rejoin' '
253 spl1=''"$(git subtree split --annotate='"'*'"' --prefix subdir --onto FETCH_HEAD --message "Split & rejoin" --rejoin)"'' &&
254 undo &&
255 git subtree split --annotate='"'*'"' --prefix subdir --onto FETCH_HEAD --rejoin &&
256 check_equal ''"$(last_commit_message)"'' "Split '"'"'subdir/'"'"' into commit '"'"'"$spl1"'"'"'"
257'
258
259# 28
260test_expect_success 'add main-sub8' '
261 create subdir/main-sub8 &&
262 git commit -m "main-sub8"
263'
264
265# To the subproject!
266cd ./subproj
267
268# 29
269test_expect_success 'merge split into subproj' '
270 git fetch .. spl1 &&
271 git branch spl1 FETCH_HEAD &&
272 git merge FETCH_HEAD
273'
274
275# 30
276test_expect_success 'add sub9' '
277 create sub9 &&
278 git commit -m "sub9"
279'
280
281# Back to mainline
282cd ..
283
284# 31
285test_expect_success 'split for sub8' '
286 split2=''"$(git subtree split --annotate='"'*'"' --prefix subdir/ --rejoin)"''
287 git branch split2 "$split2"
288'
289
290# 32
291test_expect_success 'add main-sub10' '
292 create subdir/main-sub10 &&
293 git commit -m "main-sub10"
294'
295
296# 33
297test_expect_success 'split for sub10' '
298 spl3=''"$(git subtree split --annotate='"'*'"' --prefix subdir --rejoin)"'' &&
299 git branch spl3 "$spl3"
300'
301
302# To the subproject!
303cd ./subproj
304
305# 34
306test_expect_success 'merge split into subproj' '
307 git fetch .. spl3 &&
308 git branch spl3 FETCH_HEAD &&
309 git merge FETCH_HEAD &&
310 git branch subproj-merge-spl3
311'
312
313chkm="main4 main6"
314chkms="main-sub10 main-sub5 main-sub7 main-sub8"
315chkms_sub=$(echo $chkms | multiline | sed 's,^,subdir/,' | fixnl)
316chks="sub1 sub2 sub3 sub9"
317chks_sub=$(echo $chks | multiline | sed 's,^,subdir/,' | fixnl)
318
319# 35
320test_expect_success 'make sure exactly the right set of files ends up in the subproj' '
321 subfiles=''"$(git ls-files | fixnl)"'' &&
322 check_equal "$subfiles" "$chkms $chks"
323'
324
325# 36
326test_expect_success 'make sure the subproj history *only* contains commits that affect the subdir' '
327 allchanges=''"$(git log --name-only --pretty=format:'"''"' | sort | fixnl)"'' &&
328 check_equal "$allchanges" "$chkms $chks"
329'
330
331# Back to mainline
332cd ..
333
334# 37
335test_expect_success 'pull from subproj' '
336 git fetch ./subproj subproj-merge-spl3 &&
337 git branch subproj-merge-spl3 FETCH_HEAD &&
338 git subtree pull --prefix=subdir ./subproj subproj-merge-spl3
339'
340
341# 38
342test_expect_success 'make sure exactly the right set of files ends up in the mainline' '
343 mainfiles=''"$(git ls-files | fixnl)"'' &&
344 check_equal "$mainfiles" "$chkm $chkms_sub $chks_sub"
345'
346
347# 39
348test_expect_success 'make sure each filename changed exactly once in the entire history' '
349 # main-sub?? and /subdir/main-sub?? both change, because those are the
350 # changes that were split into their own history. And subdir/sub?? never
351 # change, since they were *only* changed in the subtree branch.
352 allchanges=''"$(git log --name-only --pretty=format:'"''"' | sort | fixnl)"'' &&
353 check_equal "$allchanges" ''"$(echo $chkms $chkm $chks $chkms_sub | multiline | sort | fixnl)"''
354'
355
356# 40
357test_expect_success 'make sure the --rejoin commits never make it into subproj' '
358 check_equal ''"$(git log --pretty=format:'"'%s'"' HEAD^2 | grep -i split)"'' ""
359'
360
361# 41
362test_expect_success 'make sure no "git subtree" tagged commits make it into subproj' '
363 # They are meaningless to subproj since one side of the merge refers to the mainline
364 check_equal ''"$(git log --pretty=format:'"'%s%n%b'"' HEAD^2 | grep "git-subtree.*:")"'' ""
365'
366
367# prepare second pair of repositories
368mkdir test2
369cd test2
370
371# 42
372test_expect_success 'init main' '
373 test_create_repo main
374'
375
376cd main
377
378# 43
379test_expect_success 'add main1' '
380 create main1 &&
381 git commit -m "main1"
382'
383
384cd ..
385
386# 44
387test_expect_success 'init sub' '
388 test_create_repo sub
389'
390
391cd sub
392
393# 45
394test_expect_success 'add sub2' '
395 create sub2 &&
396 git commit -m "sub2"
397'
398
399cd ../main
400
401# check if split can find proper base without --onto
402
403# 46
404test_expect_success 'add sub as subdir in main' '
405 git fetch ../sub master &&
406 git branch sub2 FETCH_HEAD &&
407 git subtree add --prefix subdir sub2
408'
409
410cd ../sub
411
412# 47
413test_expect_success 'add sub3' '
414 create sub3 &&
415 git commit -m "sub3"
416'
417
418cd ../main
419
420# 48
421test_expect_success 'merge from sub' '
422 git fetch ../sub master &&
423 git branch sub3 FETCH_HEAD &&
424 git subtree merge --prefix subdir sub3
425'
426
427# 49
428test_expect_success 'add main-sub4' '
429 create subdir/main-sub4 &&
430 git commit -m "main-sub4"
431'
432
433# 50
434test_expect_success 'split for main-sub4 without --onto' '
435 git subtree split --prefix subdir --branch mainsub4
436'
437
438# at this point, the new commit parent should be sub3 if it is not,
439# something went wrong (the "newparent" of "master~" commit should
440# have been sub3, but it was not, because its cache was not set to
441# itself)
442
443# 51
444test_expect_success 'check that the commit parent is sub3' '
445 check_equal ''"$(git log --pretty=format:%P -1 mainsub4)"'' ''"$(git rev-parse sub3)"''
446'
447
448# 52
449test_expect_success 'add main-sub5' '
450 mkdir subdir2 &&
451 create subdir2/main-sub5 &&
452 git commit -m "main-sub5"
453'
454
455# 53
456test_expect_success 'split for main-sub5 without --onto' '
457 # also test that we still can split out an entirely new subtree
458 # if the parent of the first commit in the tree is not empty,
459 # then the new subtree has accidently been attached to something
460 git subtree split --prefix subdir2 --branch mainsub5 &&
461 check_equal ''"$(git log --pretty=format:%P -1 mainsub5)"'' ""
462'
463
464# make sure no patch changes more than one file. The original set of commits
465# changed only one file each. A multi-file change would imply that we pruned
466# commits too aggressively.
467joincommits()
468{
469 commit=
470 all=
471 while read x y; do
472 #echo "{$x}" >&2
473 if [ -z "$x" ]; then
474 continue
475 elif [ "$x" = "commit:" ]; then
476 if [ -n "$commit" ]; then
477 echo "$commit $all"
478 all=
479 fi
480 commit="$y"
481 else
482 all="$all $y"
483 fi
484 done
485 echo "$commit $all"
486}
487
488# 54
489test_expect_success 'verify one file change per commit' '
490 x= &&
491 list=''"$(git log --pretty=format:'"'commit: %H'"' | joincommits)"'' &&
492# test_debug "echo HERE" &&
493# test_debug "echo ''"$list"''" &&
494 (git log --pretty=format:'"'commit: %H'"' | joincommits |
495 ( while read commit a b; do
496 test_debug "echo Verifying commit "''"$commit"''
497 test_debug "echo a: "''"$a"''
498 test_debug "echo b: "''"$b"''
499 check_equal "$b" ""
500 x=1
501 done
502 check_equal "$x" 1
503 ))
504'
505
506test_done