]> git.ipfire.org Git - thirdparty/git.git/blob - t/t5607-clone-bundle.sh
Merge branch 'js/update-index-ignore-removal-for-skip-worktree'
[thirdparty/git.git] / t / t5607-clone-bundle.sh
1 #!/bin/sh
2
3 test_description='some bundle related tests'
4 . ./test-lib.sh
5
6 test_expect_success 'setup' '
7 test_commit initial &&
8 test_tick &&
9 git tag -m tag tag &&
10 test_commit second &&
11 test_commit third &&
12 git tag -d initial &&
13 git tag -d second &&
14 git tag -d third
15 '
16
17 test_expect_success '"verify" needs a worktree' '
18 git bundle create tip.bundle -1 master &&
19 test_must_fail nongit git bundle verify ../tip.bundle 2>err &&
20 test_i18ngrep "need a repository" err
21 '
22
23 test_expect_success 'annotated tags can be excluded by rev-list options' '
24 git bundle create bundle --all --since=7.Apr.2005.15:14:00.-0700 &&
25 git ls-remote bundle > output &&
26 grep tag output &&
27 git bundle create bundle --all --since=7.Apr.2005.15:16:00.-0700 &&
28 git ls-remote bundle > output &&
29 ! grep tag output
30 '
31
32 test_expect_success 'die if bundle file cannot be created' '
33 mkdir adir &&
34 test_must_fail git bundle create adir --all
35 '
36
37 test_expect_failure 'bundle --stdin' '
38 echo master | git bundle create stdin-bundle.bdl --stdin &&
39 git ls-remote stdin-bundle.bdl >output &&
40 grep master output
41 '
42
43 test_expect_failure 'bundle --stdin <rev-list options>' '
44 echo master | git bundle create hybrid-bundle.bdl --stdin tag &&
45 git ls-remote hybrid-bundle.bdl >output &&
46 grep master output
47 '
48
49 test_expect_success 'empty bundle file is rejected' '
50 : >empty-bundle &&
51 test_must_fail git fetch empty-bundle
52 '
53
54 # This triggers a bug in older versions where the resulting line (with
55 # --pretty=oneline) was longer than a 1024-char buffer.
56 test_expect_success 'ridiculously long subject in boundary' '
57 : >file4 &&
58 test_tick &&
59 git add file4 &&
60 printf "%01200d\n" 0 | git commit -F - &&
61 test_commit fifth &&
62 git bundle create long-subject-bundle.bdl HEAD^..HEAD &&
63 git bundle list-heads long-subject-bundle.bdl >heads &&
64 test -s heads &&
65 git fetch long-subject-bundle.bdl &&
66 sed -n "/^-/{p;q;}" long-subject-bundle.bdl >boundary &&
67 grep "^-[0-9a-f]\\{40\\} " boundary
68 '
69
70 test_expect_success 'prerequisites with an empty commit message' '
71 : >file1 &&
72 git add file1 &&
73 test_tick &&
74 git commit --allow-empty-message -m "" &&
75 test_commit file2 &&
76 git bundle create bundle HEAD^.. &&
77 git bundle verify bundle
78 '
79
80 test_expect_success 'failed bundle creation does not leave cruft' '
81 # This fails because the bundle would be empty.
82 test_must_fail git bundle create fail.bundle master..master &&
83 test_path_is_missing fail.bundle.lock
84 '
85
86 test_expect_success 'fetch SHA-1 from bundle' '
87 test_create_repo foo &&
88 test_commit -C foo x &&
89 git -C foo bundle create tip.bundle -1 master &&
90 git -C foo rev-parse HEAD >hash &&
91
92 # Exercise to ensure that fetching a SHA-1 from a bundle works with no
93 # errors
94 git fetch --no-tags foo/tip.bundle "$(cat hash)"
95 '
96
97 test_done