3 # Copyright (c) 2007 Shawn Pearce
6 test_description
='test git-fast-import utility'
8 . ..
/diff-lib.sh
;# test-lib chdir's into trash
20 file5_data
='an inline file.
21 we should see it later.'
31 cat >input
<<INPUT_END
48 commit refs/heads/master
50 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
61 'A: create pack from stdin' \
62 'git-fast-import --export-marks=marks.out <input &&
63 git-whatchanged master'
66 'for p in .git/objects/pack/*.pack;do git-verify-pack $p||exit;done'
69 author $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
70 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
76 'git-cat-file commit master | sed 1d >actual &&
77 diff -u expect actual'
86 'git-cat-file -p master^{tree} | sed "s/ [0-9a-f]* / /" >actual &&
87 diff -u expect actual'
89 echo "$file2_data" >expect
92 'git-cat-file blob master:file2 >actual && diff -u expect actual'
94 echo "$file3_data" >expect
97 'git-cat-file blob master:file3 >actual && diff -u expect actual'
99 printf "$file4_data" >expect
100 test_expect_success \
102 'git-cat-file blob master:file4 >actual && diff -u expect actual'
105 :2 `git-rev-parse --verify master:file2`
106 :3 `git-rev-parse --verify master:file3`
107 :4 `git-rev-parse --verify master:file4`
108 :5 `git-rev-parse --verify master^0`
110 test_expect_success \
111 'A: verify marks output' \
112 'diff -u expect marks.out'
119 cat >input
<<INPUT_END
120 commit refs/heads/branch
122 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
127 from refs/heads/master
128 M 755 0000000000000000000000000000000000000001 zero1
131 test_expect_failure \
132 'B: fail on invalid blob sha1' \
133 'git-fast-import <input'
134 rm -f .git
/objects
/pack_
* .git
/objects
/index_
*
140 newf
=`echo hi newf | git-hash-object -w --stdin`
141 oldf
=`git-rev-parse --verify master:file2`
143 cat >input
<<INPUT_END
144 commit refs/heads/branch
145 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
150 from refs/heads/master
151 M 644 $oldf file2/oldf
152 M 755 $newf file2/newf
156 test_expect_success \
157 'C: incremental import create pack from stdin' \
158 'git-fast-import <input &&
159 git-whatchanged branch'
160 test_expect_success \
162 'for p in .git/objects/pack/*.pack;do git-verify-pack $p||exit;done'
163 test_expect_success \
164 'C: validate reuse existing blob' \
165 'test $newf = `git-rev-parse --verify branch:file2/newf`
166 test $oldf = `git-rev-parse --verify branch:file2/oldf`'
169 parent `git-rev-parse --verify master^0`
170 author $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
171 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
175 test_expect_success \
177 'git-cat-file commit branch | sed 1d >actual &&
178 diff -u expect actual'
181 :000000 100755 0000000000000000000000000000000000000000 f1fb5da718392694d0076d677d6d0e364c79b0bc A file2/newf
182 :100644 100644 7123f7f44e39be127c5eb701e5968176ee9d78b1 7123f7f44e39be127c5eb701e5968176ee9d78b1 R100 file2 file2/oldf
183 :100644 000000 0d92e9f3374ae2947c23aa477cbc68ce598135f1 0000000000000000000000000000000000000000 D file3
185 git-diff-tree
-M -r master branch
>actual
186 test_expect_success \
187 'C: validate rename result' \
188 'compare_diff_raw expect actual'
195 cat >input
<<INPUT_END
196 commit refs/heads/branch
197 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
202 from refs/heads/branch^0
203 M 644 inline newdir/interesting
208 M 755 inline newdir/exec.sh
214 test_expect_success \
215 'D: inline data in commit' \
216 'git-fast-import <input &&
217 git-whatchanged branch'
218 test_expect_success \
220 'for p in .git/objects/pack/*.pack;do git-verify-pack $p||exit;done'
223 :000000 100755 0000000000000000000000000000000000000000 35a59026a33beac1569b1c7f66f3090ce9c09afc A newdir/exec.sh
224 :000000 100644 0000000000000000000000000000000000000000 046d0371e9220107917db0d0e030628de8a1de9b A newdir/interesting
226 git-diff-tree
-M -r branch^ branch
>actual
227 test_expect_success \
228 'D: validate new files added' \
229 'compare_diff_raw expect actual'
231 echo "$file5_data" >expect
232 test_expect_success \
234 'git-cat-file blob branch:newdir/interesting >actual &&
235 diff -u expect actual'
237 echo "$file6_data" >expect
238 test_expect_success \
240 'git-cat-file blob branch:newdir/exec.sh >actual &&
241 diff -u expect actual'
247 cat >input
<<INPUT_END
248 commit refs/heads/branch
249 author $GIT_AUTHOR_NAME <$GIT_AUTHOR_EMAIL> Tue Feb 6 11:22:18 2007 -0500
250 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> Tue Feb 6 12:35:02 2007 -0500
255 from refs/heads/branch^0
258 test_expect_failure \
259 'E: rfc2822 date, --date-format=raw' \
260 'git-fast-import --date-format=raw <input'
261 test_expect_success \
262 'E: rfc2822 date, --date-format=rfc2822' \
263 'git-fast-import --date-format=rfc2822 <input'
264 test_expect_success \
266 'for p in .git/objects/pack/*.pack;do git-verify-pack $p||exit;done'
269 author $GIT_AUTHOR_NAME <$GIT_AUTHOR_EMAIL> 1170778938 -0500
270 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> 1170783302 -0500
274 test_expect_success \
276 'git-cat-file commit branch | sed 1,2d >actual &&
277 diff -u expect actual'
283 old_branch
=`git-rev-parse --verify branch^0`
285 cat >input
<<INPUT_END
286 commit refs/heads/branch
287 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
289 losing things already?
292 from refs/heads/branch~1
294 reset refs/heads/other
295 from refs/heads/branch
298 test_expect_success \
299 'F: non-fast-forward update skips' \
300 'if git-fast-import <input
302 echo BAD gfi did not fail
305 if test $old_branch = `git-rev-parse --verify branch^0`
307 : branch unaffected and failure returned
310 echo BAD gfi changed branch $old_branch
315 test_expect_success \
317 'for p in .git/objects/pack/*.pack;do git-verify-pack $p||exit;done'
320 tree `git-rev-parse branch~1^{tree}`
321 parent `git-rev-parse branch~1`
322 author $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
323 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
325 losing things already?
327 test_expect_success \
328 'F: verify other commit' \
329 'git-cat-file commit other >actual &&
330 diff -u expect actual'
336 old_branch
=`git-rev-parse --verify branch^0`
338 cat >input
<<INPUT_END
339 commit refs/heads/branch
340 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
342 losing things already?
345 from refs/heads/branch~1
348 test_expect_success \
349 'G: non-fast-forward update forced' \
350 'git-fast-import --force <input'
351 test_expect_success \
353 'for p in .git/objects/pack/*.pack;do git-verify-pack $p||exit;done'
354 test_expect_success \
355 'G: branch changed, but logged' \
356 'test $old_branch != `git-rev-parse --verify branch^0` &&
357 test $old_branch = `git-rev-parse --verify branch@{1}`'
364 cat >input
<<INPUT_END
366 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
371 from refs/heads/branch^0
372 M 644 inline i-will-die
374 this file will never exist.
378 M 644 inline h/e/l/lo
384 test_expect_success \
385 'H: deletall, add 1' \
386 'git-fast-import <input &&
388 test_expect_success \
390 'for p in .git/objects/pack/*.pack;do git-verify-pack $p||exit;done'
393 :100755 000000 f1fb5da718392694d0076d677d6d0e364c79b0bc 0000000000000000000000000000000000000000 D file2/newf
394 :100644 000000 7123f7f44e39be127c5eb701e5968176ee9d78b1 0000000000000000000000000000000000000000 D file2/oldf
395 :100755 000000 85df50785d62d3b05ab03d9cbf7e4a0b49449730 0000000000000000000000000000000000000000 D file4
396 :100644 100644 fcf778cda181eaa1cbc9e9ce3a2e15ee9f9fe791 fcf778cda181eaa1cbc9e9ce3a2e15ee9f9fe791 R100 newdir/interesting h/e/l/lo
397 :100755 000000 e74b7d465e52746be2b4bae983670711e6e66657 0000000000000000000000000000000000000000 D newdir/exec.sh
399 git-diff-tree
-M -r H^ H
>actual
400 test_expect_success \
401 'H: validate old files removed, new files added' \
402 'compare_diff_raw expect actual'
404 echo "$file5_data" >expect
405 test_expect_success \
407 'git-cat-file blob H:h/e/l/lo >actual &&
408 diff -u expect actual'
414 cat >input
<<INPUT_END
415 commit refs/heads/export-boundary
416 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
418 we have a border. its only 40 characters wide.
421 from refs/heads/branch
424 test_expect_success \
425 'I: export-pack-edges' \
426 'git-fast-import --export-pack-edges=edges.list <input'
429 .git/objects/pack/pack-.pack: `git-rev-parse --verify export-boundary`
431 test_expect_success \
432 'I: verify edge list' \
433 'sed -e s/pack-.*pack/pack-.pack/ edges.list >actual &&
434 diff -u expect actual'
440 cat >input
<<INPUT_END
442 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
447 from refs/heads/branch
452 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
458 test_expect_success \
459 'J: reset existing branch creates empty commit' \
460 'git-fast-import <input'
461 test_expect_success \
462 'J: branch has 1 commit, empty tree' \
463 'test 1 = `git-rev-list J | wc -l` &&
464 test 0 = `git ls-tree J | wc -l`'
470 cat >input
<<INPUT_END
472 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
477 from refs/heads/branch
480 committer $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> $GIT_COMMITTER_DATE
485 from refs/heads/branch^1
488 test_expect_success \
489 'K: reinit branch with from' \
490 'git-fast-import <input'
491 test_expect_success \
492 'K: verify K^1 = branch^1' \
493 'test `git-rev-parse --verify branch^1` \
494 = `git-rev-parse --verify K^1`'