3 test_description
=gitattributes
12 git check-attr
test -- "$path" >actual
&&
13 echo "$path: test: $2" >expect
&&
14 test_cmp expect actual
19 test_expect_success
'setup' '
23 echo "[attr]notest !test"
26 echo "onoff test -test"
27 echo "offon -test test"
33 ) >a/.gitattributes &&
35 echo "h test=a/b/h" &&
36 echo "d/* test=a/b/d/*"
40 echo "global test=global"
41 ) >"$HOME"/global-gitattributes
45 test_expect_success
'attribute test' '
51 attr_check a/b/g a/b/g &&
52 attr_check b/g unspecified &&
53 attr_check a/b/h a/b/h &&
54 attr_check a/b/d/g "a/b/d/*" &&
55 attr_check onoff unset &&
56 attr_check offon set &&
57 attr_check no unspecified &&
58 attr_check a/b/d/no "a/b/d/*" &&
59 attr_check a/b/d/yes unspecified
63 test_expect_success
'prefixes are not confused with leading directories' '
64 attr_check a_plus/g unspecified &&
65 cat >expect <<-\EOF &&
67 a_plus/g: test: unspecified
69 git check-attr test a/g a_plus/g >actual &&
70 test_cmp expect actual
73 test_expect_success
'core.attributesfile' '
74 attr_check global unspecified &&
75 git config core.attributesfile "$HOME/global-gitattributes" &&
76 attr_check global global &&
77 git config core.attributesfile "~/global-gitattributes" &&
78 attr_check global global &&
79 echo "global test=precedence" >> .gitattributes &&
80 attr_check global precedence
83 test_expect_success
'attribute test: read paths from stdin' '
91 b/g: test: unspecified
93 a/b/d/g: test: a/b/d/*
97 a/b/d/no: test: a/b/d/*
98 a/b/d/yes: test: unspecified
101 sed -e "s/:.*//" < expect | git check-attr --stdin test > actual &&
102 test_cmp expect actual
105 test_expect_success
'root subdir attribute test' '
107 attr_check a/i a/i &&
108 attr_check subdir/a/i unspecified
112 test_expect_success
'setup bare' '
114 git clone --bare . bare.git &&
119 test_expect_success
'bare repository: check that .gitattribute is ignored' '
125 attr_check f unspecified &&
126 attr_check a/f unspecified &&
127 attr_check a/c/f unspecified &&
128 attr_check a/i unspecified &&
129 attr_check subdir/a/i unspecified
133 test_expect_success
'bare repository: test info/attributes' '
138 ) >info/attributes &&
141 attr_check a/c/f f &&
142 attr_check a/i a/i &&
143 attr_check subdir/a/i unspecified