]> git.ipfire.org Git - thirdparty/git.git/blame - t/t5530-upload-pack-error.sh
t/: Use "test_must_fail git" instead of "! git"
[thirdparty/git.git] / t / t5530-upload-pack-error.sh
CommitLineData
4c324c00
JS
1#!/bin/sh
2
3test_description='errors in upload-pack'
4
5. ./test-lib.sh
6
7D=`pwd`
8
9corrupt_repo () {
10 object_sha1=$(git rev-parse "$1") &&
11 ob=$(expr "$object_sha1" : "\(..\)") &&
12 ject=$(expr "$object_sha1" : "..\(..*\)") &&
13 rm -f ".git/objects/$ob/$ject"
14}
15
16test_expect_success 'setup and corrupt repository' '
17
18 echo file >file &&
19 git add file &&
20 git rev-parse :file &&
21 git commit -a -m original &&
22 test_tick &&
23 echo changed >file &&
24 git commit -a -m changed &&
25 corrupt_repo HEAD:file
26
27'
28
41ac414e 29test_expect_success 'fsck fails' '
d492b31c 30 test_must_fail git fsck
4c324c00
JS
31'
32
33test_expect_success 'upload-pack fails due to error in pack-objects' '
34
35 ! echo "0032want $(git rev-parse HEAD)
3600000009done
370000" | git-upload-pack . > /dev/null 2> output.err &&
38 grep "pack-objects died" output.err
39'
40
41test_expect_success 'corrupt repo differently' '
42
43 git hash-object -w file &&
44 corrupt_repo HEAD^^{tree}
45
46'
47
41ac414e 48test_expect_success 'fsck fails' '
d492b31c 49 test_must_fail git fsck
4c324c00
JS
50'
51test_expect_success 'upload-pack fails due to error in rev-list' '
52
53 ! echo "0032want $(git rev-parse HEAD)
5400000009done
550000" | git-upload-pack . > /dev/null 2> output.err &&
56 grep "waitpid (async) failed" output.err
57'
58
59test_expect_success 'create empty repository' '
60
61 mkdir foo &&
62 cd foo &&
63 git init
64
65'
66
41ac414e 67test_expect_success 'fetch fails' '
4c324c00 68
d492b31c 69 test_must_fail git fetch .. master
4c324c00
JS
70
71'
72
73test_done