git-apply: fail if a patch cannot be applied.
[alt-git.git] / t / t4103-apply-binary.sh
blob948d5b5a7a584a7e9655e21a438093e97b4014b4
1 #!/bin/sh
3 # Copyright (c) 2005 Junio C Hamano
6 test_description='git-apply handling binary patches
9 . ./test-lib.sh
11 # setup
13 cat >file1 <<EOF
14 A quick brown fox jumps over the lazy dog.
15 A tiny little penguin runs around in circles.
16 There is a flag with Linux written on it.
17 A slow black-and-white panda just sits there,
18 munching on his bamboo.
19 EOF
20 cat file1 >file2
21 cat file1 >file4
23 git-update-index --add --remove file1 file2 file4
24 git-commit -m 'Initial Version' 2>/dev/null
26 git-checkout -b binary
27 tr 'x' '\0' <file1 >file3
28 cat file3 >file4
29 git-add file2
30 tr '\0' 'v' <file3 >file1
31 rm -f file2
32 git-update-index --add --remove file1 file2 file3 file4
33 git-commit -m 'Second Version'
35 git-diff-tree -p master binary >B.diff
36 git-diff-tree -p -C master binary >C.diff
38 test_expect_success 'stat binary diff -- should not fail.' \
39 'git-checkout master
40 git-apply --stat --summary B.diff'
42 test_expect_success 'stat binary diff (copy) -- should not fail.' \
43 'git-checkout master
44 git-apply --stat --summary C.diff'
46 test_expect_failure 'check binary diff -- should fail.' \
47 'git-checkout master
48 git-apply --check B.diff'
50 test_expect_failure 'check binary diff (copy) -- should fail.' \
51 'git-checkout master
52 git-apply --check C.diff'
54 # Now we start applying them.
56 test_expect_failure 'apply binary diff -- should fail.' \
57 'git-checkout master
58 git-apply B.diff'
60 git-reset --hard
62 test_expect_failure 'apply binary diff -- should fail.' \
63 'git-checkout master
64 git-apply --index B.diff'
66 git-reset --hard
68 test_expect_failure 'apply binary diff (copy) -- should fail.' \
69 'git-checkout master
70 git-apply C.diff'
72 git-reset --hard
74 test_expect_failure 'apply binary diff (copy) -- should fail.' \
75 'git-checkout master
76 git-apply --index C.diff'
78 test_done