l10n: de.po: translate 210 new messages
[git.git] / t / t5547-push-quarantine.sh
blob1e5d32d068539098598b23fb3b489688ac140169
1 #!/bin/sh
3 test_description='check quarantine of objects during push'
4 . ./test-lib.sh
6 test_expect_success 'create picky dest repo' '
7 git init --bare dest.git &&
8 write_script dest.git/hooks/pre-receive <<-\EOF
9 while read old new ref; do
10 test "$(git log -1 --format=%s $new)" = reject && exit 1
11 done
12 exit 0
13 EOF
16 test_expect_success 'accepted objects work' '
17 test_commit ok &&
18 git push dest.git HEAD &&
19 commit=$(git rev-parse HEAD) &&
20 git --git-dir=dest.git cat-file commit $commit
23 test_expect_success 'rejected objects are not installed' '
24 test_commit reject &&
25 commit=$(git rev-parse HEAD) &&
26 test_must_fail git push dest.git reject &&
27 test_must_fail git --git-dir=dest.git cat-file commit $commit
30 test_expect_success 'rejected objects are removed' '
31 echo "incoming-*" >expect &&
32 (cd dest.git/objects && echo incoming-*) >actual &&
33 test_cmp expect actual
36 test_done