3 test_description
='git-p4 p4 branching tests'
7 test_expect_success
'start p4d' '
14 # 3: integrate //depot/main/... -> //depot/branch1/...
16 # 5: //depot/branch1/f5
17 # .: named branch branch2
18 # 6: integrate -b branch2
19 # 7: //depot/branch2/f7
22 test_expect_success
'basic p4 branches' '
29 p4 submit -d "main/f1" &&
33 p4 submit -d "main/f2" &&
35 p4 integrate //depot/main/... //depot/branch1/... &&
36 p4 submit -d "integrate main to branch1" &&
40 p4 submit -d "main/f4" &&
42 echo f5 >branch1/f5 &&
44 p4 submit -d "branch1/f5" &&
46 p4 branch -i <<-EOF &&
48 View: //depot/main/... //depot/branch2/...
51 p4 integrate -b branch2 &&
52 p4 submit -d "integrate main to branch2" &&
54 echo f7 >branch2/f7 &&
56 p4 submit -d "branch2/f7" &&
60 p4 submit -d "main/f8"
64 test_expect_success
'import main, no branch detection' '
65 test_when_finished cleanup_git &&
66 "$GITP4" clone --dest="$git" //depot/main@all &&
69 git log --oneline --graph --decorate --all &&
70 git rev-list master >wc &&
71 test_line_count = 4 wc
75 test_expect_success
'import branch1, no branch detection' '
76 test_when_finished cleanup_git &&
77 "$GITP4" clone --dest="$git" //depot/branch1@all &&
80 git log --oneline --graph --decorate --all &&
81 git rev-list master >wc &&
82 test_line_count = 2 wc
86 test_expect_success
'import branch2, no branch detection' '
87 test_when_finished cleanup_git &&
88 "$GITP4" clone --dest="$git" //depot/branch2@all &&
91 git log --oneline --graph --decorate --all &&
92 git rev-list master >wc &&
93 test_line_count = 2 wc
97 test_expect_success
'import depot, no branch detection' '
98 test_when_finished cleanup_git &&
99 "$GITP4" clone --dest="$git" //depot@all &&
102 git log --oneline --graph --decorate --all &&
103 git rev-list master >wc &&
104 test_line_count = 8 wc
108 test_expect_success
'import depot, branch detection' '
109 test_when_finished cleanup_git &&
110 "$GITP4" clone --dest="$git" --detect-branches //depot@all &&
114 git log --oneline --graph --decorate --all &&
117 git rev-list master >wc &&
118 test_line_count = 4 wc &&
120 # 3 main, 1 integrate, 1 on branch2
121 git rev-list p4/depot/branch2 >wc &&
122 test_line_count = 5 wc &&
124 # no branch1, since no p4 branch created for it
125 test_must_fail git show-ref p4/depot/branch1
129 test_expect_success
'import depot, branch detection, branchList branch definition' '
130 test_when_finished cleanup_git &&
131 test_create_repo "$git" &&
134 git config git-p4.branchList main:branch1 &&
135 "$GITP4" clone --dest=. --detect-branches //depot@all &&
137 git log --oneline --graph --decorate --all &&
140 git rev-list master >wc &&
141 test_line_count = 4 wc &&
143 # 3 main, 1 integrate, 1 on branch2
144 git rev-list p4/depot/branch2 >wc &&
145 test_line_count = 5 wc &&
147 # 2 main, 1 integrate, 1 on branch1
148 git rev-list p4/depot/branch1 >wc &&
149 test_line_count = 4 wc
153 test_expect_success
'restart p4d' '
159 # 1: //depot/branch1/file1
160 # //depot/branch1/file2
161 # 2: integrate //depot/branch1/... -> //depot/branch2/...
162 # 3: //depot/branch1/file3
163 # 4: //depot/branch1/file2 (edit)
164 # 5: integrate //depot/branch1/... -> //depot/branch3/...
166 ## Create a simple branch structure in P4 depot.
167 test_expect_success
'add simple p4 branches' '
174 p4 add file1 file2 &&
175 p4 submit -d "branch1" &&
176 p4 integrate //depot/branch1/... //depot/branch2/... &&
177 p4 submit -d "branch2" &&
180 p4 submit -d "add file3 in branch1" &&
182 echo update >>file2 &&
183 p4 submit -d "update file2 in branch1" &&
184 p4 integrate //depot/branch1/... //depot/branch3/... &&
185 p4 submit -d "branch3"
189 # Configure branches through git-config and clone them.
190 # All files are tested to make sure branches were cloned correctly.
191 # Finally, make an update to branch1 on P4 side to check if it is imported
192 # correctly by git-p4.
193 test_expect_success
'git-p4 clone simple branches' '
194 test_when_finished cleanup_git &&
195 test_create_repo "$git" &&
198 git config git-p4.branchList branch1:branch2 &&
199 git config --add git-p4.branchList branch1:branch3 &&
200 "$GITP4" clone --dest=. --detect-branches //depot@all &&
201 git log --all --graph --decorate --stat &&
202 git reset --hard p4/depot/branch1 &&
206 grep -q update file2 &&
207 git reset --hard p4/depot/branch2 &&
211 test_must_fail grep -q update file2 &&
212 git reset --hard p4/depot/branch3 &&
216 grep -q update file2 &&
220 echo file2_ >>file2 &&
221 p4 submit -d "update file2 in branch3" &&
223 git reset --hard p4/depot/branch1 &&
229 test_expect_success
'kill p4d' '