3 test_description='patching from inconvenient places'
7 test_expect_success 'setup' '
16 patch="$(pwd)/patch" &&
19 printf "%s\n" 1 2 >postimage &&
23 git commit --allow-empty -m basis
26 test_expect_success 'setup: subdir' '
32 cp "$1" objects/file &&
33 cp "$1" sub/dir/file &&
34 cp "$1" sub/dir/b/file &&
35 git add file sub/dir/file sub/dir/b/file objects/file &&
37 cp "$2" sub/dir/file &&
38 cp "$2" sub/dir/b/file &&
39 cp "$2" objects/file &&
40 test_might_fail git update-index --refresh -q
44 test_expect_success 'apply from subdir of toplevel' '
45 cp postimage expected &&
46 reset_subdir other preimage &&
51 test_cmp expected sub/dir/file
54 test_expect_success 'apply --cached from subdir of toplevel' '
55 cp postimage expected &&
56 cp other expected.working &&
57 reset_subdir preimage other &&
60 git apply --cached "$patch"
62 git show :sub/dir/file >actual &&
63 test_cmp expected actual &&
64 test_cmp expected.working sub/dir/file
67 test_expect_success 'apply --index from subdir of toplevel' '
68 cp postimage expected &&
69 reset_subdir preimage other &&
72 test_must_fail git apply --index "$patch"
74 reset_subdir other preimage &&
77 test_must_fail git apply --index "$patch"
79 reset_subdir preimage preimage &&
82 git apply --index "$patch"
84 git show :sub/dir/file >actual &&
85 test_cmp expected actual &&
86 test_cmp expected sub/dir/file
89 test_expect_success 'apply from .git dir' '
90 cp postimage expected &&
91 cp preimage .git/file &&
92 cp preimage .git/objects/file &&
97 test_cmp expected .git/file
100 test_expect_success 'apply from subdir of .git dir' '
101 cp postimage expected &&
102 cp preimage .git/file &&
103 cp preimage .git/objects/file &&
108 test_cmp expected .git/objects/file
111 test_expect_success 'apply --cached from .git dir' '
112 cp postimage expected &&
113 cp other expected.working &&
114 cp other .git/file &&
115 reset_subdir preimage other &&
118 git apply --cached "$patch"
120 git show :file >actual &&
121 test_cmp expected actual &&
122 test_cmp expected.working file &&
123 test_cmp expected.working .git/file
126 test_expect_success 'apply --cached from subdir of .git dir' '
127 cp postimage expected &&
128 cp preimage expected.subdir &&
129 cp other .git/file &&
130 cp other .git/objects/file &&
131 reset_subdir preimage other &&
134 git apply --cached "$patch"
136 git show :file >actual &&
137 git show :objects/file >actual.subdir &&
138 test_cmp expected actual &&
139 test_cmp expected.subdir actual.subdir