3 test_description
='some bundle related tests'
6 test_expect_success
'setup' '
17 test_expect_success
'tags can be excluded by rev-list options' '
18 git bundle create bundle --all --since=7.Apr.2005.15:16:00.-0700 &&
19 git ls-remote bundle > output &&
23 test_expect_success
'die if bundle file cannot be created' '
25 test_must_fail git bundle create adir --all
28 test_expect_failure
'bundle --stdin' '
29 echo master | git bundle create stdin-bundle.bdl --stdin &&
30 git ls-remote stdin-bundle.bdl >output &&
34 test_expect_failure
'bundle --stdin <rev-list options>' '
35 echo master | git bundle create hybrid-bundle.bdl --stdin tag &&
36 git ls-remote hybrid-bundle.bdl >output &&
40 test_expect_success
'empty bundle file is rejected' '
42 test_must_fail git fetch empty-bundle
45 # This triggers a bug in older versions where the resulting line (with
46 # --pretty=oneline) was longer than a 1024-char buffer.
47 test_expect_success
'ridiculously long subject in boundary' '
51 printf "%01200d\n" 0 | git commit -F - &&
53 git bundle create long-subject-bundle.bdl HEAD^..HEAD &&
54 git bundle list-heads long-subject-bundle.bdl >heads &&
56 git fetch long-subject-bundle.bdl &&
57 sed -n "/^-/{p;q}" long-subject-bundle.bdl >boundary &&
58 grep "^-$_x40 " boundary