]>
Commit | Line | Data |
---|---|---|
58a05c74 JN |
1 | #!/bin/sh |
2 | ||
3 | test_description='Test git check-ref-format' | |
4 | ||
5 | . ./test-lib.sh | |
6 | ||
7 | valid_ref() { | |
42afe62d JS |
8 | prereq= |
9 | case $1 in | |
f57a8715 | 10 | [A-Z!]*) |
42afe62d JS |
11 | prereq=$1 |
12 | shift | |
13 | esac | |
283b365e RS |
14 | desc="ref name '$1' is valid${2:+ with options $2}" |
15 | test_expect_success $prereq "$desc" " | |
42afe62d JS |
16 | git check-ref-format $2 '$1' |
17 | " | |
58a05c74 JN |
18 | } |
19 | invalid_ref() { | |
42afe62d JS |
20 | prereq= |
21 | case $1 in | |
f57a8715 | 22 | [A-Z!]*) |
42afe62d JS |
23 | prereq=$1 |
24 | shift | |
25 | esac | |
283b365e RS |
26 | desc="ref name '$1' is invalid${2:+ with options $2}" |
27 | test_expect_success $prereq "$desc" " | |
42afe62d JS |
28 | test_must_fail git check-ref-format $2 '$1' |
29 | " | |
58a05c74 JN |
30 | } |
31 | ||
f9b1a5b9 | 32 | invalid_ref '' |
f57a8715 JH |
33 | invalid_ref !MINGW '/' |
34 | invalid_ref !MINGW '/' --allow-onelevel | |
35 | invalid_ref !MINGW '/' --normalize | |
36 | invalid_ref !MINGW '/' '--allow-onelevel --normalize' | |
58a05c74 | 37 | valid_ref 'foo/bar/baz' |
a40e6fb6 MH |
38 | valid_ref 'foo/bar/baz' --normalize |
39 | invalid_ref 'refs///heads/foo' | |
40 | valid_ref 'refs///heads/foo' --normalize | |
58a05c74 | 41 | invalid_ref 'heads/foo/' |
f57a8715 JH |
42 | invalid_ref !MINGW '/heads/foo' |
43 | valid_ref !MINGW '/heads/foo' --normalize | |
a40e6fb6 MH |
44 | invalid_ref '///heads/foo' |
45 | valid_ref '///heads/foo' --normalize | |
58a05c74 | 46 | invalid_ref './foo' |
e4ed6105 MH |
47 | invalid_ref './foo/bar' |
48 | invalid_ref 'foo/./bar' | |
49 | invalid_ref 'foo/bar/.' | |
58a05c74 | 50 | invalid_ref '.refs/foo' |
919eb8ac | 51 | invalid_ref 'refs/heads/foo.' |
58a05c74 JN |
52 | invalid_ref 'heads/foo..bar' |
53 | invalid_ref 'heads/foo?bar' | |
54 | valid_ref 'foo./bar' | |
55 | invalid_ref 'heads/foo.lock' | |
f9b1a5b9 | 56 | invalid_ref 'heads///foo.lock' |
7e9d2fe9 MH |
57 | invalid_ref 'foo.lock/bar' |
58 | invalid_ref 'foo.lock///bar' | |
58a05c74 JN |
59 | valid_ref 'heads/foo@bar' |
60 | invalid_ref 'heads/v@{ation' | |
61 | invalid_ref 'heads/foo\bar' | |
f3738c1c MH |
62 | invalid_ref "$(printf 'heads/foo\t')" |
63 | invalid_ref "$(printf 'heads/foo\177')" | |
64 | valid_ref "$(printf 'heads/fu\303\237')" | |
cd377f45 JK |
65 | valid_ref 'heads/*foo/bar' --refspec-pattern |
66 | valid_ref 'heads/foo*/bar' --refspec-pattern | |
67 | valid_ref 'heads/f*o/bar' --refspec-pattern | |
68 | invalid_ref 'heads/f*o*/bar' --refspec-pattern | |
69 | invalid_ref 'heads/foo*/bar*' --refspec-pattern | |
e4ed6105 MH |
70 | |
71 | ref='foo' | |
72 | invalid_ref "$ref" | |
73 | valid_ref "$ref" --allow-onelevel | |
74 | invalid_ref "$ref" --refspec-pattern | |
75 | valid_ref "$ref" '--refspec-pattern --allow-onelevel' | |
a40e6fb6 MH |
76 | invalid_ref "$ref" --normalize |
77 | valid_ref "$ref" '--allow-onelevel --normalize' | |
e4ed6105 MH |
78 | |
79 | ref='foo/bar' | |
80 | valid_ref "$ref" | |
81 | valid_ref "$ref" --allow-onelevel | |
82 | valid_ref "$ref" --refspec-pattern | |
83 | valid_ref "$ref" '--refspec-pattern --allow-onelevel' | |
a40e6fb6 | 84 | valid_ref "$ref" --normalize |
e4ed6105 MH |
85 | |
86 | ref='foo/*' | |
87 | invalid_ref "$ref" | |
88 | invalid_ref "$ref" --allow-onelevel | |
89 | valid_ref "$ref" --refspec-pattern | |
90 | valid_ref "$ref" '--refspec-pattern --allow-onelevel' | |
91 | ||
92 | ref='*/foo' | |
93 | invalid_ref "$ref" | |
94 | invalid_ref "$ref" --allow-onelevel | |
95 | valid_ref "$ref" --refspec-pattern | |
96 | valid_ref "$ref" '--refspec-pattern --allow-onelevel' | |
a40e6fb6 MH |
97 | invalid_ref "$ref" --normalize |
98 | valid_ref "$ref" '--refspec-pattern --normalize' | |
e4ed6105 MH |
99 | |
100 | ref='foo/*/bar' | |
101 | invalid_ref "$ref" | |
102 | invalid_ref "$ref" --allow-onelevel | |
103 | valid_ref "$ref" --refspec-pattern | |
104 | valid_ref "$ref" '--refspec-pattern --allow-onelevel' | |
105 | ||
106 | ref='*' | |
107 | invalid_ref "$ref" | |
8d9c5010 | 108 | invalid_ref "$ref" --allow-onelevel |
e4ed6105 MH |
109 | invalid_ref "$ref" --refspec-pattern |
110 | valid_ref "$ref" '--refspec-pattern --allow-onelevel' | |
111 | ||
112 | ref='foo/*/*' | |
113 | invalid_ref "$ref" --refspec-pattern | |
114 | invalid_ref "$ref" '--refspec-pattern --allow-onelevel' | |
115 | ||
116 | ref='*/foo/*' | |
117 | invalid_ref "$ref" --refspec-pattern | |
118 | invalid_ref "$ref" '--refspec-pattern --allow-onelevel' | |
119 | ||
120 | ref='*/*/foo' | |
121 | invalid_ref "$ref" --refspec-pattern | |
122 | invalid_ref "$ref" '--refspec-pattern --allow-onelevel' | |
123 | ||
124 | ref='/foo' | |
f57a8715 JH |
125 | invalid_ref !MINGW "$ref" |
126 | invalid_ref !MINGW "$ref" --allow-onelevel | |
127 | invalid_ref !MINGW "$ref" --refspec-pattern | |
128 | invalid_ref !MINGW "$ref" '--refspec-pattern --allow-onelevel' | |
129 | invalid_ref !MINGW "$ref" --normalize | |
130 | valid_ref !MINGW "$ref" '--allow-onelevel --normalize' | |
131 | invalid_ref !MINGW "$ref" '--refspec-pattern --normalize' | |
132 | valid_ref !MINGW "$ref" '--refspec-pattern --allow-onelevel --normalize' | |
58a05c74 JN |
133 | |
134 | test_expect_success "check-ref-format --branch @{-1}" ' | |
135 | T=$(git write-tree) && | |
136 | sha1=$(echo A | git commit-tree $T) && | |
137 | git update-ref refs/heads/master $sha1 && | |
a48fcd83 | 138 | git update-ref refs/remotes/origin/master $sha1 && |
58a05c74 JN |
139 | git checkout master && |
140 | git checkout origin/master && | |
141 | git checkout master && | |
142 | refname=$(git check-ref-format --branch @{-1}) && | |
143 | test "$refname" = "$sha1" && | |
144 | refname2=$(git check-ref-format --branch @{-2}) && | |
145 | test "$refname2" = master' | |
146 | ||
7c3f847a JH |
147 | test_expect_success 'check-ref-format --branch -naster' ' |
148 | test_must_fail git check-ref-format --branch -naster >actual && | |
149 | test_must_be_empty actual | |
150 | ' | |
151 | ||
49cc460d JN |
152 | test_expect_success 'check-ref-format --branch from subdir' ' |
153 | mkdir subdir && | |
154 | ||
155 | T=$(git write-tree) && | |
156 | sha1=$(echo A | git commit-tree $T) && | |
157 | git update-ref refs/heads/master $sha1 && | |
a48fcd83 | 158 | git update-ref refs/remotes/origin/master $sha1 && |
49cc460d JN |
159 | git checkout master && |
160 | git checkout origin/master && | |
161 | git checkout master && | |
162 | refname=$( | |
163 | cd subdir && | |
164 | git check-ref-format --branch @{-1} | |
165 | ) && | |
166 | test "$refname" = "$sha1" | |
167 | ' | |
168 | ||
7c3f847a JH |
169 | test_expect_success 'check-ref-format --branch @{-1} from non-repo' ' |
170 | nongit test_must_fail git check-ref-format --branch @{-1} >actual && | |
171 | test_must_be_empty actual | |
172 | ' | |
173 | ||
174 | test_expect_success 'check-ref-format --branch master from non-repo' ' | |
175 | echo master >expect && | |
176 | nongit git check-ref-format --branch master >actual && | |
177 | test_cmp expect actual | |
178 | ' | |
179 | ||
38eedc63 | 180 | valid_ref_normalized() { |
42afe62d JS |
181 | prereq= |
182 | case $1 in | |
f57a8715 | 183 | [A-Z!]*) |
42afe62d JS |
184 | prereq=$1 |
185 | shift | |
186 | esac | |
187 | test_expect_success $prereq "ref name '$1' simplifies to '$2'" " | |
a40e6fb6 | 188 | refname=\$(git check-ref-format --normalize '$1') && |
42afe62d JS |
189 | test \"\$refname\" = '$2' |
190 | " | |
38eedc63 JH |
191 | } |
192 | invalid_ref_normalized() { | |
42afe62d JS |
193 | prereq= |
194 | case $1 in | |
f57a8715 | 195 | [A-Z!]*) |
42afe62d JS |
196 | prereq=$1 |
197 | shift | |
198 | esac | |
199 | test_expect_success $prereq "check-ref-format --normalize rejects '$1'" " | |
200 | test_must_fail git check-ref-format --normalize '$1' | |
201 | " | |
38eedc63 JH |
202 | } |
203 | ||
204 | valid_ref_normalized 'heads/foo' 'heads/foo' | |
205 | valid_ref_normalized 'refs///heads/foo' 'refs/heads/foo' | |
f57a8715 | 206 | valid_ref_normalized !MINGW '/heads/foo' 'heads/foo' |
2f633f41 | 207 | valid_ref_normalized '///heads/foo' 'heads/foo' |
38eedc63 | 208 | invalid_ref_normalized 'foo' |
f57a8715 | 209 | invalid_ref_normalized !MINGW '/foo' |
38eedc63 JH |
210 | invalid_ref_normalized 'heads/foo/../bar' |
211 | invalid_ref_normalized 'heads/./foo' | |
212 | invalid_ref_normalized 'heads\foo' | |
f9b1a5b9 MH |
213 | invalid_ref_normalized 'heads/foo.lock' |
214 | invalid_ref_normalized 'heads///foo.lock' | |
7e9d2fe9 MH |
215 | invalid_ref_normalized 'foo.lock/bar' |
216 | invalid_ref_normalized 'foo.lock///bar' | |
38eedc63 | 217 | |
58a05c74 | 218 | test_done |