Squashed 'third_party/git/' content from commit cb71568594
git-subtree-dir: third_party/git git-subtree-split: cb715685942260375e1eb8153b0768a376e4ece7
This commit is contained in:
commit
1b593e1ea4
3629 changed files with 1139935 additions and 0 deletions
104
t/t5530-upload-pack-error.sh
Executable file
104
t/t5530-upload-pack-error.sh
Executable file
|
|
@ -0,0 +1,104 @@
|
|||
#!/bin/sh
|
||||
|
||||
test_description='errors in upload-pack'
|
||||
|
||||
. ./test-lib.sh
|
||||
|
||||
D=$(pwd)
|
||||
|
||||
corrupt_repo () {
|
||||
object_sha1=$(git rev-parse "$1") &&
|
||||
ob=$(expr "$object_sha1" : "\(..\)") &&
|
||||
ject=$(expr "$object_sha1" : "..\(..*\)") &&
|
||||
rm -f ".git/objects/$ob/$ject"
|
||||
}
|
||||
|
||||
test_expect_success 'setup and corrupt repository' '
|
||||
|
||||
echo file >file &&
|
||||
git add file &&
|
||||
git rev-parse :file &&
|
||||
git commit -a -m original &&
|
||||
test_tick &&
|
||||
echo changed >file &&
|
||||
git commit -a -m changed &&
|
||||
corrupt_repo HEAD:file
|
||||
|
||||
'
|
||||
|
||||
test_expect_success 'fsck fails' '
|
||||
test_must_fail git fsck
|
||||
'
|
||||
|
||||
test_expect_success 'upload-pack fails due to error in pack-objects packing' '
|
||||
|
||||
printf "0032want %s\n00000009done\n0000" \
|
||||
$(git rev-parse HEAD) >input &&
|
||||
test_must_fail git upload-pack . <input >/dev/null 2>output.err &&
|
||||
test_i18ngrep "unable to read" output.err &&
|
||||
test_i18ngrep "pack-objects died" output.err
|
||||
'
|
||||
|
||||
test_expect_success 'corrupt repo differently' '
|
||||
|
||||
git hash-object -w file &&
|
||||
corrupt_repo HEAD^^{tree}
|
||||
|
||||
'
|
||||
|
||||
test_expect_success 'fsck fails' '
|
||||
test_must_fail git fsck
|
||||
'
|
||||
test_expect_success 'upload-pack fails due to error in rev-list' '
|
||||
|
||||
printf "0032want %s\n0034shallow %s00000009done\n0000" \
|
||||
$(git rev-parse HEAD) $(git rev-parse HEAD^) >input &&
|
||||
test_must_fail git upload-pack . <input >/dev/null 2>output.err &&
|
||||
grep "bad tree object" output.err
|
||||
'
|
||||
|
||||
test_expect_success 'upload-pack fails due to bad want (no object)' '
|
||||
|
||||
printf "0045want %s multi_ack_detailed\n00000009done\n0000" \
|
||||
"deadbeefdeadbeefdeadbeefdeadbeefdeadbeef" >input &&
|
||||
test_must_fail git upload-pack . <input >output 2>output.err &&
|
||||
grep "not our ref" output.err &&
|
||||
grep "ERR" output &&
|
||||
! grep multi_ack_detailed output.err
|
||||
'
|
||||
|
||||
test_expect_success 'upload-pack fails due to bad want (not tip)' '
|
||||
|
||||
oid=$(echo an object we have | git hash-object -w --stdin) &&
|
||||
printf "0045want %s multi_ack_detailed\n00000009done\n0000" \
|
||||
"$oid" >input &&
|
||||
test_must_fail git upload-pack . <input >output 2>output.err &&
|
||||
grep "not our ref" output.err &&
|
||||
grep "ERR" output &&
|
||||
! grep multi_ack_detailed output.err
|
||||
'
|
||||
|
||||
test_expect_success 'upload-pack fails due to error in pack-objects enumeration' '
|
||||
|
||||
printf "0032want %s\n00000009done\n0000" \
|
||||
$(git rev-parse HEAD) >input &&
|
||||
test_must_fail git upload-pack . <input >/dev/null 2>output.err &&
|
||||
grep "bad tree object" output.err &&
|
||||
grep "pack-objects died" output.err
|
||||
'
|
||||
|
||||
test_expect_success 'create empty repository' '
|
||||
|
||||
mkdir foo &&
|
||||
cd foo &&
|
||||
git init
|
||||
|
||||
'
|
||||
|
||||
test_expect_success 'fetch fails' '
|
||||
|
||||
test_must_fail git fetch .. master
|
||||
|
||||
'
|
||||
|
||||
test_done
|
||||
Loading…
Add table
Add a link
Reference in a new issue