3 # Copyright (c) 2007 Santi BĂ©jar, based on t4013 by Junio C Hamano
7 test_description
='Merge logic in fetch'
14 test_expect_success setup
'
15 GIT_AUTHOR_DATE="2006-06-26 00:00:00 +0000" &&
16 GIT_COMMITTER_DATE="2006-06-26 00:00:00 +0000" &&
17 export GIT_AUTHOR_DATE GIT_COMMITTER_DATE &&
19 echo >file original &&
21 git commit -a -m One &&
23 git tag tag-one-tree HEAD^{tree} &&
27 git commit -a -m Two &&
28 git tag -a -m "Tag Two" tag-two &&
32 git commit -a -m Three &&
33 git tag -a -m "Tag Three" tag-three &&
34 git tag -a -m "Tag Three file" tag-three-file HEAD^{tree}:file &&
37 echo master >> file &&
38 git commit -a -m Master &&
39 git tag -a -m "Tag Master" tag-master &&
45 git config remote.origin.url ../.git/ &&
47 git config remote.config-explicit.url ../.git/ &&
48 git config remote.config-explicit.fetch refs/heads/master:remotes/rem/master &&
49 git config --add remote.config-explicit.fetch refs/heads/one:remotes/rem/one &&
50 git config --add remote.config-explicit.fetch two:remotes/rem/two &&
51 git config --add remote.config-explicit.fetch refs/heads/three:remotes/rem/three &&
52 remotes="config-explicit" &&
54 git config remote.config-glob.url ../.git/ &&
55 git config remote.config-glob.fetch refs/heads/*:refs/remotes/rem/* &&
56 remotes="$remotes config-glob" &&
58 mkdir -p .git/remotes &&
61 echo "Pull: refs/heads/master:remotes/rem/master"
62 echo "Pull: refs/heads/one:remotes/rem/one"
63 echo "Pull: two:remotes/rem/two"
64 echo "Pull: refs/heads/three:remotes/rem/three"
65 } >.git/remotes/remote-explicit &&
66 remotes="$remotes remote-explicit" &&
70 echo "Pull: refs/heads/*:refs/remotes/rem/*"
71 } >.git/remotes/remote-glob &&
72 remotes="$remotes remote-glob" &&
74 mkdir -p .git/branches &&
75 echo "../.git" > .git/branches/branches-default &&
76 remotes="$remotes branches-default" &&
78 echo "../.git#one" > .git/branches/branches-one &&
79 remotes="$remotes branches-one" &&
81 for remote in $remotes ; do
82 git config branch.br-$remote.remote $remote &&
83 git config branch.br-$remote-merge.remote $remote &&
84 git config branch.br-$remote-merge.merge refs/heads/three &&
85 git config branch.br-$remote-octopus.remote $remote &&
86 git config branch.br-$remote-octopus.merge refs/heads/one &&
87 git config --add branch.br-$remote-octopus.merge two
91 # Merge logic depends on branch properties and Pull: or .fetch lines
92 for remote
in $remotes ; do
93 for branch
in "" "-merge" "-octopus" ; do
96 br-$remote$branch $remote
101 # Merge logic does not depend on branch properties,
102 # but does depend on Pull: or fetch lines.
103 # Use two branches completely unrelated from the arguments,
104 # the clone default and one without branch properties
105 for branch
in master br-unconfig
; do
107 for remote
in $remotes ; do
112 # Merge logic does not depend on branch properties
113 # neither in the Pull: or .fetch config
114 for branch
in master br-unconfig
; do
118 $branch ../.git one two
119 $branch --tags ../.git
120 $branch ../.git tag tag-one tag tag-three
121 $branch ../.git tag tag-one-tree tag tag-three-file
122 $branch ../.git one tag tag-one tag tag-three-file
129 '' |
'#'*) continue ;;
131 test=`echo "$cmd" | sed -e 's|[/ ][/ ]*|_|g'`
132 cnt
=`expr $test_count + 1`
133 pfx
=`printf "%04d" $cnt`
134 expect_f
="../../t5515/fetch.$test"
135 actual_f
="$pfx-fetch.$test"
136 expect_r
="../../t5515/refs.$test"
137 actual_r
="$pfx-refs.$test"
139 test_expect_success
"$cmd" '
143 git symbolic-ref HEAD refs/heads/$1 ; shift
144 rm -f .git/FETCH_HEAD
145 rm -f .git/refs/heads/*
146 rm -f .git/refs/remotes/rem/*
147 rm -f .git/refs/tags/*
148 git fetch "$@" >/dev/null
151 git show-ref >"$actual_r" &&
152 if test -f "$expect_f"
154 git diff -u "$expect_f" "$actual_f" &&
157 # this is to help developing new tests.
158 cp "$actual_f" "$expect_f"
161 if test -f "$expect_r"
163 git diff -u "$expect_r" "$actual_r" &&
166 # this is to help developing new tests.
167 cp "$actual_r" "$expect_r"