Junio C Hamano | cf94ccd | 2008-02-07 00:02:08 -0800 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | |
| 3 | test_description=gitattributes |
| 4 | |
| 5 | . ./test-lib.sh |
| 6 | |
| 7 | attr_check () { |
Junio C Hamano | 78cec75 | 2011-09-22 16:34:05 -0700 | [diff] [blame] | 8 | path="$1" expect="$2" |
Junio C Hamano | cf94ccd | 2008-02-07 00:02:08 -0800 | [diff] [blame] | 9 | |
Brandon Casey | 6eba621 | 2011-10-11 10:53:31 -0500 | [diff] [blame] | 10 | git $3 check-attr test -- "$path" >actual 2>err && |
Junio C Hamano | cf94ccd | 2008-02-07 00:02:08 -0800 | [diff] [blame] | 11 | echo "$path: test: $2" >expect && |
Michael Haggerty | fa92f32 | 2011-08-04 06:47:43 +0200 | [diff] [blame] | 12 | test_cmp expect actual && |
| 13 | test_line_count = 0 err |
Junio C Hamano | cf94ccd | 2008-02-07 00:02:08 -0800 | [diff] [blame] | 14 | } |
| 15 | |
| 16 | |
| 17 | test_expect_success 'setup' ' |
Michael Haggerty | 0216af8 | 2011-08-04 06:47:45 +0200 | [diff] [blame] | 18 | mkdir -p a/b/d a/c b && |
Junio C Hamano | cf94ccd | 2008-02-07 00:02:08 -0800 | [diff] [blame] | 19 | ( |
Henrik Grubbström | ec775c4 | 2010-04-06 14:46:44 +0200 | [diff] [blame] | 20 | echo "[attr]notest !test" |
Junio C Hamano | cf94ccd | 2008-02-07 00:02:08 -0800 | [diff] [blame] | 21 | echo "f test=f" |
Matthew Ogilvie | 82881b3 | 2008-04-22 12:19:12 -0600 | [diff] [blame] | 22 | echo "a/i test=a/i" |
Henrik Grubbström | 969f9d7 | 2010-04-06 14:46:43 +0200 | [diff] [blame] | 23 | echo "onoff test -test" |
| 24 | echo "offon -test test" |
Henrik Grubbström | ec775c4 | 2010-04-06 14:46:44 +0200 | [diff] [blame] | 25 | echo "no notest" |
Brandon Casey | 6eba621 | 2011-10-11 10:53:31 -0500 | [diff] [blame] | 26 | echo "A/e/F test=A/e/F" |
Junio C Hamano | cf94ccd | 2008-02-07 00:02:08 -0800 | [diff] [blame] | 27 | ) >.gitattributes && |
| 28 | ( |
| 29 | echo "g test=a/g" && |
| 30 | echo "b/g test=a/b/g" |
| 31 | ) >a/.gitattributes && |
| 32 | ( |
| 33 | echo "h test=a/b/h" && |
| 34 | echo "d/* test=a/b/d/*" |
Henrik Grubbström | ec775c4 | 2010-04-06 14:46:44 +0200 | [diff] [blame] | 35 | echo "d/yes notest" |
Michael Haggerty | dcc0436 | 2011-08-04 06:36:15 +0200 | [diff] [blame] | 36 | ) >a/b/.gitattributes && |
Petr Onderka | 6df42ab | 2010-09-01 00:42:43 +0200 | [diff] [blame] | 37 | ( |
| 38 | echo "global test=global" |
Michael Haggerty | c9d8f0a | 2011-08-04 06:36:31 +0200 | [diff] [blame] | 39 | ) >"$HOME"/global-gitattributes && |
Junio C Hamano | 78cec75 | 2011-09-22 16:34:05 -0700 | [diff] [blame] | 40 | cat <<-EOF >expect-all |
| 41 | f: test: f |
| 42 | a/f: test: f |
| 43 | a/c/f: test: f |
| 44 | a/g: test: a/g |
| 45 | a/b/g: test: a/b/g |
| 46 | b/g: test: unspecified |
| 47 | a/b/h: test: a/b/h |
| 48 | a/b/d/g: test: a/b/d/* |
| 49 | onoff: test: unset |
| 50 | offon: test: set |
| 51 | no: notest: set |
| 52 | no: test: unspecified |
| 53 | a/b/d/no: notest: set |
| 54 | a/b/d/no: test: a/b/d/* |
| 55 | a/b/d/yes: notest: set |
| 56 | a/b/d/yes: test: unspecified |
| 57 | EOF |
Junio C Hamano | cf94ccd | 2008-02-07 00:02:08 -0800 | [diff] [blame] | 58 | ' |
| 59 | |
Michael Haggerty | c0b13b2 | 2011-08-04 06:36:14 +0200 | [diff] [blame] | 60 | test_expect_success 'command line checks' ' |
Michael Haggerty | 09d7dd7 | 2011-08-04 06:36:16 +0200 | [diff] [blame] | 61 | test_must_fail git check-attr && |
| 62 | test_must_fail git check-attr -- && |
Michael Haggerty | fdf6be8 | 2011-08-04 06:36:29 +0200 | [diff] [blame] | 63 | test_must_fail git check-attr test && |
| 64 | test_must_fail git check-attr test -- && |
Michael Haggerty | 09d7dd7 | 2011-08-04 06:36:16 +0200 | [diff] [blame] | 65 | test_must_fail git check-attr -- f && |
| 66 | echo "f" | test_must_fail git check-attr --stdin && |
| 67 | echo "f" | test_must_fail git check-attr --stdin -- f && |
| 68 | echo "f" | test_must_fail git check-attr --stdin test -- f && |
Michael Haggerty | c0b13b2 | 2011-08-04 06:36:14 +0200 | [diff] [blame] | 69 | test_must_fail git check-attr "" -- f |
Michael Haggerty | c0b13b2 | 2011-08-04 06:36:14 +0200 | [diff] [blame] | 70 | ' |
| 71 | |
Junio C Hamano | cf94ccd | 2008-02-07 00:02:08 -0800 | [diff] [blame] | 72 | test_expect_success 'attribute test' ' |
Junio C Hamano | cf94ccd | 2008-02-07 00:02:08 -0800 | [diff] [blame] | 73 | attr_check f f && |
| 74 | attr_check a/f f && |
| 75 | attr_check a/c/f f && |
| 76 | attr_check a/g a/g && |
| 77 | attr_check a/b/g a/b/g && |
| 78 | attr_check b/g unspecified && |
| 79 | attr_check a/b/h a/b/h && |
Matthieu Moy | 520ea85 | 2010-08-28 20:18:36 +0200 | [diff] [blame] | 80 | attr_check a/b/d/g "a/b/d/*" && |
| 81 | attr_check onoff unset && |
| 82 | attr_check offon set && |
| 83 | attr_check no unspecified && |
| 84 | attr_check a/b/d/no "a/b/d/*" && |
Henrik Grubbström | ec775c4 | 2010-04-06 14:46:44 +0200 | [diff] [blame] | 85 | attr_check a/b/d/yes unspecified |
Junio C Hamano | cf94ccd | 2008-02-07 00:02:08 -0800 | [diff] [blame] | 86 | ' |
| 87 | |
Brandon Casey | 6eba621 | 2011-10-11 10:53:31 -0500 | [diff] [blame] | 88 | test_expect_success 'attribute matching is case sensitive when core.ignorecase=0' ' |
| 89 | |
| 90 | test_must_fail attr_check F f "-c core.ignorecase=0" && |
| 91 | test_must_fail attr_check a/F f "-c core.ignorecase=0" && |
| 92 | test_must_fail attr_check a/c/F f "-c core.ignorecase=0" && |
| 93 | test_must_fail attr_check a/G a/g "-c core.ignorecase=0" && |
| 94 | test_must_fail attr_check a/B/g a/b/g "-c core.ignorecase=0" && |
| 95 | test_must_fail attr_check a/b/G a/b/g "-c core.ignorecase=0" && |
| 96 | test_must_fail attr_check a/b/H a/b/h "-c core.ignorecase=0" && |
| 97 | test_must_fail attr_check a/b/D/g "a/b/d/*" "-c core.ignorecase=0" && |
| 98 | test_must_fail attr_check oNoFf unset "-c core.ignorecase=0" && |
| 99 | test_must_fail attr_check oFfOn set "-c core.ignorecase=0" && |
| 100 | attr_check NO unspecified "-c core.ignorecase=0" && |
| 101 | test_must_fail attr_check a/b/D/NO "a/b/d/*" "-c core.ignorecase=0" && |
| 102 | attr_check a/b/d/YES a/b/d/* "-c core.ignorecase=0" && |
| 103 | test_must_fail attr_check a/E/f "A/e/F" "-c core.ignorecase=0" |
| 104 | |
| 105 | ' |
| 106 | |
| 107 | test_expect_success 'attribute matching is case insensitive when core.ignorecase=1' ' |
| 108 | |
| 109 | attr_check F f "-c core.ignorecase=1" && |
| 110 | attr_check a/F f "-c core.ignorecase=1" && |
| 111 | attr_check a/c/F f "-c core.ignorecase=1" && |
| 112 | attr_check a/G a/g "-c core.ignorecase=1" && |
| 113 | attr_check a/B/g a/b/g "-c core.ignorecase=1" && |
| 114 | attr_check a/b/G a/b/g "-c core.ignorecase=1" && |
| 115 | attr_check a/b/H a/b/h "-c core.ignorecase=1" && |
| 116 | attr_check a/b/D/g "a/b/d/*" "-c core.ignorecase=1" && |
| 117 | attr_check oNoFf unset "-c core.ignorecase=1" && |
| 118 | attr_check oFfOn set "-c core.ignorecase=1" && |
| 119 | attr_check NO unspecified "-c core.ignorecase=1" && |
| 120 | attr_check a/b/D/NO "a/b/d/*" "-c core.ignorecase=1" && |
| 121 | attr_check a/b/d/YES unspecified "-c core.ignorecase=1" && |
| 122 | attr_check a/E/f "A/e/F" "-c core.ignorecase=1" |
| 123 | |
| 124 | ' |
| 125 | |
Brandon Casey | 6eba621 | 2011-10-11 10:53:31 -0500 | [diff] [blame] | 126 | test_expect_success CASE_INSENSITIVE_FS 'additional case insensitivity tests' ' |
| 127 | test_must_fail attr_check a/B/D/g "a/b/d/*" "-c core.ignorecase=0" && |
| 128 | test_must_fail attr_check A/B/D/NO "a/b/d/*" "-c core.ignorecase=0" && |
| 129 | attr_check A/b/h a/b/h "-c core.ignorecase=1" && |
| 130 | attr_check a/B/D/g "a/b/d/*" "-c core.ignorecase=1" && |
| 131 | attr_check A/B/D/NO "a/b/d/*" "-c core.ignorecase=1" |
| 132 | ' |
| 133 | |
Michael Haggerty | f5114a4 | 2011-08-04 06:47:46 +0200 | [diff] [blame] | 134 | test_expect_success 'unnormalized paths' ' |
Michael Haggerty | d4d4f8d | 2011-08-04 06:47:44 +0200 | [diff] [blame] | 135 | attr_check ./f f && |
| 136 | attr_check ./a/g a/g && |
| 137 | attr_check a/./g a/g && |
| 138 | attr_check a/c/../b/g a/b/g |
Michael Haggerty | d4d4f8d | 2011-08-04 06:47:44 +0200 | [diff] [blame] | 139 | ' |
| 140 | |
Michael Haggerty | f5114a4 | 2011-08-04 06:47:46 +0200 | [diff] [blame] | 141 | test_expect_success 'relative paths' ' |
Michael Haggerty | 0216af8 | 2011-08-04 06:47:45 +0200 | [diff] [blame] | 142 | (cd a && attr_check ../f f) && |
| 143 | (cd a && attr_check f f) && |
| 144 | (cd a && attr_check i a/i) && |
| 145 | (cd a && attr_check g a/g) && |
| 146 | (cd a && attr_check b/g a/b/g) && |
| 147 | (cd b && attr_check ../a/f f) && |
| 148 | (cd b && attr_check ../a/g a/g) && |
| 149 | (cd b && attr_check ../a/b/g a/b/g) |
Michael Haggerty | 0216af8 | 2011-08-04 06:47:45 +0200 | [diff] [blame] | 150 | ' |
| 151 | |
Jeff King | 1afca44 | 2012-01-10 13:08:21 -0500 | [diff] [blame] | 152 | test_expect_success 'prefixes are not confused with leading directories' ' |
| 153 | attr_check a_plus/g unspecified && |
| 154 | cat >expect <<-\EOF && |
| 155 | a/g: test: a/g |
| 156 | a_plus/g: test: unspecified |
| 157 | EOF |
| 158 | git check-attr test a/g a_plus/g >actual && |
| 159 | test_cmp expect actual |
| 160 | ' |
| 161 | |
Petr Onderka | 6df42ab | 2010-09-01 00:42:43 +0200 | [diff] [blame] | 162 | test_expect_success 'core.attributesfile' ' |
| 163 | attr_check global unspecified && |
| 164 | git config core.attributesfile "$HOME/global-gitattributes" && |
| 165 | attr_check global global && |
| 166 | git config core.attributesfile "~/global-gitattributes" && |
| 167 | attr_check global global && |
Junio C Hamano | 78cec75 | 2011-09-22 16:34:05 -0700 | [diff] [blame] | 168 | echo "global test=precedence" >>.gitattributes && |
Petr Onderka | 6df42ab | 2010-09-01 00:42:43 +0200 | [diff] [blame] | 169 | attr_check global precedence |
| 170 | ' |
| 171 | |
Dmitry Potapov | b466685 | 2008-10-07 04:16:52 +0400 | [diff] [blame] | 172 | test_expect_success 'attribute test: read paths from stdin' ' |
Junio C Hamano | 78cec75 | 2011-09-22 16:34:05 -0700 | [diff] [blame] | 173 | grep -v notest <expect-all >expect && |
| 174 | sed -e "s/:.*//" <expect | git check-attr --stdin test >actual && |
Dmitry Potapov | b466685 | 2008-10-07 04:16:52 +0400 | [diff] [blame] | 175 | test_cmp expect actual |
| 176 | ' |
| 177 | |
Michael Haggerty | 4ca0f18 | 2011-08-04 06:36:30 +0200 | [diff] [blame] | 178 | test_expect_success 'attribute test: --all option' ' |
Jay Soffian | b2b3e9c | 2011-09-22 17:44:20 -0400 | [diff] [blame] | 179 | grep -v unspecified <expect-all | sort >specified-all && |
| 180 | sed -e "s/:.*//" <expect-all | uniq >stdin-all && |
| 181 | git check-attr --stdin --all <stdin-all | sort >actual && |
| 182 | test_cmp specified-all actual |
| 183 | ' |
| 184 | |
| 185 | test_expect_success 'attribute test: --cached option' ' |
Jay Soffian | b2b3e9c | 2011-09-22 17:44:20 -0400 | [diff] [blame] | 186 | : >empty && |
| 187 | git check-attr --cached --stdin --all <stdin-all | sort >actual && |
| 188 | test_cmp empty actual && |
| 189 | git add .gitattributes a/.gitattributes a/b/.gitattributes && |
| 190 | git check-attr --cached --stdin --all <stdin-all | sort >actual && |
| 191 | test_cmp specified-all actual |
Michael Haggerty | 4ca0f18 | 2011-08-04 06:36:30 +0200 | [diff] [blame] | 192 | ' |
| 193 | |
Matthew Ogilvie | 82881b3 | 2008-04-22 12:19:12 -0600 | [diff] [blame] | 194 | test_expect_success 'root subdir attribute test' ' |
Matthew Ogilvie | 82881b3 | 2008-04-22 12:19:12 -0600 | [diff] [blame] | 195 | attr_check a/i a/i && |
| 196 | attr_check subdir/a/i unspecified |
Matthew Ogilvie | 82881b3 | 2008-04-22 12:19:12 -0600 | [diff] [blame] | 197 | ' |
| 198 | |
Junio C Hamano | cdbf623 | 2014-02-06 10:19:33 -0800 | [diff] [blame^] | 199 | test_expect_success 'using --git-dir and --work-tree' ' |
| 200 | mkdir unreal real && |
| 201 | git init real && |
| 202 | echo "file test=in-real" >real/.gitattributes && |
| 203 | ( |
| 204 | cd unreal && |
| 205 | attr_check file in-real "--git-dir ../real/.git --work-tree ../real" |
| 206 | ) |
| 207 | ' |
| 208 | |
René Scharfe | 2d35d55 | 2008-06-08 17:16:11 +0200 | [diff] [blame] | 209 | test_expect_success 'setup bare' ' |
Junio C Hamano | c4a7bce | 2014-02-06 10:16:27 -0800 | [diff] [blame] | 210 | git clone --bare . bare.git |
René Scharfe | 2d35d55 | 2008-06-08 17:16:11 +0200 | [diff] [blame] | 211 | ' |
| 212 | |
| 213 | test_expect_success 'bare repository: check that .gitattribute is ignored' ' |
René Scharfe | 2d35d55 | 2008-06-08 17:16:11 +0200 | [diff] [blame] | 214 | ( |
Junio C Hamano | c4a7bce | 2014-02-06 10:16:27 -0800 | [diff] [blame] | 215 | cd bare.git && |
| 216 | ( |
| 217 | echo "f test=f" |
| 218 | echo "a/i test=a/i" |
| 219 | ) >.gitattributes && |
| 220 | attr_check f unspecified && |
| 221 | attr_check a/f unspecified && |
| 222 | attr_check a/c/f unspecified && |
| 223 | attr_check a/i unspecified && |
| 224 | attr_check subdir/a/i unspecified |
| 225 | ) |
René Scharfe | 2d35d55 | 2008-06-08 17:16:11 +0200 | [diff] [blame] | 226 | ' |
| 227 | |
Jay Soffian | b2b3e9c | 2011-09-22 17:44:20 -0400 | [diff] [blame] | 228 | test_expect_success 'bare repository: check that --cached honors index' ' |
Junio C Hamano | c4a7bce | 2014-02-06 10:16:27 -0800 | [diff] [blame] | 229 | ( |
| 230 | cd bare.git && |
| 231 | GIT_INDEX_FILE=../.git/index \ |
| 232 | git check-attr --cached --stdin --all <../stdin-all | |
| 233 | sort >actual && |
| 234 | test_cmp ../specified-all actual |
| 235 | ) |
Jay Soffian | b2b3e9c | 2011-09-22 17:44:20 -0400 | [diff] [blame] | 236 | ' |
| 237 | |
René Scharfe | 2d35d55 | 2008-06-08 17:16:11 +0200 | [diff] [blame] | 238 | test_expect_success 'bare repository: test info/attributes' ' |
René Scharfe | 2d35d55 | 2008-06-08 17:16:11 +0200 | [diff] [blame] | 239 | ( |
Junio C Hamano | c4a7bce | 2014-02-06 10:16:27 -0800 | [diff] [blame] | 240 | cd bare.git && |
| 241 | ( |
| 242 | echo "f test=f" |
| 243 | echo "a/i test=a/i" |
| 244 | ) >info/attributes && |
| 245 | attr_check f f && |
| 246 | attr_check a/f f && |
| 247 | attr_check a/c/f f && |
| 248 | attr_check a/i a/i && |
| 249 | attr_check subdir/a/i unspecified |
| 250 | ) |
René Scharfe | 2d35d55 | 2008-06-08 17:16:11 +0200 | [diff] [blame] | 251 | ' |
| 252 | |
Junio C Hamano | cf94ccd | 2008-02-07 00:02:08 -0800 | [diff] [blame] | 253 | test_done |