3 test_description
='git apply with weird postimage filenames'
7 test_expect_success
'setup' '
8 vector=$TEST_DIRECTORY/t4135 &&
11 git commit --allow-empty -m preimage &&
15 git checkout -f preimage^0 &&
16 git read-tree -u --reset HEAD &&
17 git update-index --refresh
29 test_expect_
$exp1 $prereq "$desc, git-style file creation patch" "
30 echo postimage >expected &&
33 git apply -v \"\$vector\"/'git-$desc.diff' &&
34 test_cmp expected '$postimage'
37 test_expect_
$exp2 $prereq "$desc, traditional patch" "
38 echo postimage >expected &&
40 echo preimage >'$postimage' &&
41 git apply -v \"\$vector\"/'diff-$desc.diff' &&
42 test_cmp expected '$postimage'
45 test_expect_
$exp3 $prereq "$desc, traditional file creation patch" "
46 echo postimage >expected &&
49 git apply -v \"\$vector\"/'add-$desc.diff' &&
50 test_cmp expected '$postimage'
54 try_filename
'plain' 'postimage.txt'
55 try_filename
'with spaces' 'post image.txt'
56 try_filename
'with tab' 'post image.txt' FUNNYNAMES
57 try_filename
'with backslash' 'post\image.txt' BSLASHPSPEC
58 try_filename
'with quote' '"postimage".txt' FUNNYNAMES success failure success
60 test_expect_success
'whitespace-damaged traditional patch' '
61 echo postimage >expected &&
63 rm -f postimage.txt &&
64 git apply -v "$vector/damaged.diff" &&
65 test_cmp expected postimage.txt
68 test_expect_success
'traditional patch with colon in timezone' '
69 echo postimage >expected &&
71 rm -f "post image.txt" &&
72 git apply "$vector/funny-tz.diff" &&
73 test_cmp expected "post image.txt"
76 test_expect_success
'traditional, whitespace-damaged, colon in timezone' '
77 echo postimage >expected &&
79 rm -f "post image.txt" &&
80 git apply "$vector/damaged-tz.diff" &&
81 test_cmp expected "post image.txt"
84 cat >diff-from-svn
<<\EOF
86 ===================================================================
87 diff --git a
/branches
/Makefile
88 deleted
file mode
100644
89 --- a
/branches
/Makefile
(revision
13)
90 +++ /dev
/null
(nonexistent
)
95 test_expect_success
'apply handles a diff generated by Subversion' '
97 git apply -p2 diff-from-svn &&
98 test_path_is_missing Makefile