3 test_description
='applying patch with mode bits'
7 test_expect_success setup
'
11 git commit -m initial &&
13 echo modified >file &&
14 git diff --stat -p >patch-0.txt &&
16 git diff --stat -p >patch-1.txt &&
17 sed "s/^\(new mode \).*/\1/" <patch-1.txt >patch-empty-mode.txt &&
18 sed "s/^\(new mode \).*/\1garbage/" <patch-1.txt >patch-bogus-mode.txt
21 test_expect_success FILEMODE
'same mode (no index)' '
24 git apply patch-0.txt &&
28 test_expect_success FILEMODE
'same mode (with index)' '
32 git apply --index patch-0.txt &&
37 test_expect_success FILEMODE
'same mode (index only)' '
41 git apply --cached patch-0.txt &&
42 git ls-files -s file | grep "^100755"
45 test_expect_success FILEMODE
'mode update (no index)' '
47 git apply patch-1.txt &&
51 test_expect_success FILEMODE
'mode update (with index)' '
53 git apply --index patch-1.txt &&
58 test_expect_success FILEMODE
'mode update (index only)' '
60 git apply --cached patch-1.txt &&
61 git ls-files -s file | grep "^100755"
64 test_expect_success FILEMODE
'empty mode is rejected' '
66 test_must_fail git apply patch-empty-mode.txt 2>err &&
67 test_i18ngrep "invalid mode" err
70 test_expect_success FILEMODE
'bogus mode is rejected' '
72 test_must_fail git apply patch-bogus-mode.txt 2>err &&
73 test_i18ngrep "invalid mode" err