blob: a9becdda99c09bc953d8ea2527703f91d145cf3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
|
#!/bin/sh
test_description='git refs update'
. ./test-lib.sh
setup_repo () {
git init "$1" &&
test_commit -C "$1" A &&
test_commit -C "$1" B
}
test_ref_matches () {
git rev-parse "$1" >expect &&
echo "$2" >actual &&
test_cmp expect actual
}
test_expect_success 'update creates a new reference' '
test_when_finished "rm -rf repo" &&
setup_repo repo &&
(
cd repo &&
A=$(git rev-parse A) &&
git refs update refs/heads/foo $A &&
test_ref_matches refs/heads/foo "$A"
)
'
test_expect_success 'update an existing reference without oldvalue' '
test_when_finished "rm -rf repo" &&
setup_repo repo &&
(
cd repo &&
A=$(git rev-parse A) &&
B=$(git rev-parse B) &&
git refs update refs/heads/foo $A &&
git refs update refs/heads/foo $B &&
test_ref_matches refs/heads/foo $B
)
'
test_expect_success 'update with matching oldvalue' '
test_when_finished "rm -rf repo" &&
setup_repo repo &&
(
cd repo &&
A=$(git rev-parse A) &&
B=$(git rev-parse B) &&
git refs update refs/heads/foo $A &&
git refs update refs/heads/foo $B $A &&
test_ref_matches refs/heads/foo $B
)
'
test_expect_success 'update with stale oldvalue fails' '
test_when_finished "rm -rf repo" &&
setup_repo repo &&
(
cd repo &&
A=$(git rev-parse A) &&
B=$(git rev-parse B) &&
git refs update refs/heads/foo $A &&
test_must_fail git refs update refs/heads/foo $B $B 2>err &&
test_grep " but expected " err &&
test_ref_matches refs/heads/foo $A
)
'
test_expect_success 'update can create a new branch with oldvalue' '
test_when_finished "rm -rf repo" &&
setup_repo repo &&
(
cd repo &&
A=$(git rev-parse A) &&
git refs update refs/heads/foo $A $ZERO_OID 2>err &&
test_ref_matches refs/heads/foo $A
)
'
test_expect_success 'update can create a new branch without oldvalue' '
test_when_finished "rm -rf repo" &&
setup_repo repo &&
(
cd repo &&
A=$(git rev-parse A) &&
git refs update refs/heads/foo $A 2>err &&
test_ref_matches refs/heads/foo $A
)
'
test_expect_success 'update refuses to create preexisting branch' '
test_when_finished "rm -rf repo" &&
setup_repo repo &&
(
cd repo &&
A=$(git rev-parse A) &&
B=$(git rev-parse B) &&
git refs update refs/heads/foo $A &&
test_must_fail git refs update refs/heads/foo $B $ZERO_OID 2>err &&
test_grep "reference already exists" err &&
test_ref_matches refs/heads/foo $A
)
'
test_expect_success 'update can delete a branch with oldvalue' '
test_when_finished "rm -rf repo" &&
setup_repo repo &&
(
cd repo &&
A=$(git rev-parse A) &&
git refs update refs/heads/foo $A 2>err &&
git refs update refs/heads/foo $ZERO_OID $A 2>err &&
test_must_fail git refs exists refs/heads/foo
)
'
test_expect_success 'update can delete a branch without oldvalue' '
test_when_finished "rm -rf repo" &&
setup_repo repo &&
(
cd repo &&
A=$(git rev-parse A) &&
git refs update refs/heads/foo $A 2>err &&
git refs update refs/heads/foo $ZERO_OID 2>err &&
test_must_fail git refs exists refs/heads/foo
)
'
test_expect_success 'update refuses to delete a branch with mismatching value' '
test_when_finished "rm -rf repo" &&
setup_repo repo &&
(
cd repo &&
A=$(git rev-parse A) &&
B=$(git rev-parse B) &&
git refs update refs/heads/foo $A 2>err &&
test_must_fail git refs update refs/heads/foo $ZERO_OID $B 2>err &&
test_grep " but expected " err &&
git refs exists refs/heads/foo
)
'
test_expect_success 'update refuses to create preexisting branch' '
test_when_finished "rm -rf repo" &&
setup_repo repo &&
(
cd repo &&
A=$(git rev-parse A) &&
B=$(git rev-parse B) &&
git refs update refs/heads/foo $A &&
test_must_fail git refs update refs/heads/foo $B $ZERO_OID 2>err &&
test_grep "reference already exists" err &&
test_ref_matches refs/heads/foo $A
)
'
test_expect_success 'update with invalid new value fails' '
test_when_finished "rm -rf repo" &&
setup_repo repo &&
(
cd repo &&
test_must_fail git refs update refs/heads/foo invalid-oid 2>err &&
test_grep "invalid new object ID" err &&
test_must_fail git refs exists refs/heads/foo
)
'
test_expect_success 'update with invalid old value fails' '
test_when_finished "rm -rf repo" &&
setup_repo repo &&
(
cd repo &&
A=$(git rev-parse A) &&
B=$(git rev-parse B) &&
git refs update refs/heads/foo $A &&
test_must_fail git refs update refs/heads/foo $B invalid-oid 2>err &&
test_grep "invalid old object ID" err &&
test_ref_matches refs/heads/foo $A
)
'
test_expect_success 'update --no-deref rewrites the symref itself' '
test_when_finished "rm -rf repo" &&
setup_repo repo &&
(
cd repo &&
A=$(git rev-parse A) &&
B=$(git rev-parse B) &&
git refs update refs/heads/foo $A &&
git symbolic-ref refs/heads/symref refs/heads/foo &&
git refs update --no-deref refs/heads/symref $B &&
test_must_fail git symbolic-ref refs/heads/symref &&
test_ref_matches refs/heads/symref $B &&
test_ref_matches refs/heads/foo $A
)
'
test_expect_success 'update does not create a reflog by default' '
test_when_finished "rm -rf repo" &&
setup_repo repo &&
(
cd repo &&
A=$(git rev-parse A) &&
git refs update refs/foo $A &&
test_must_fail git reflog exists refs/foo
)
'
test_expect_success 'update creates a reflog with --create-reflog' '
test_when_finished "rm -rf repo" &&
setup_repo repo &&
(
cd repo &&
A=$(git rev-parse A) &&
git refs update --create-reflog refs/foo $A &&
git reflog exists refs/foo
)
'
test_expect_success 'update with message records reason in reflog' '
test_when_finished "rm -rf repo" &&
setup_repo repo &&
(
cd repo &&
A=$(git rev-parse A) &&
B=$(git rev-parse B) &&
git refs update refs/heads/foo $A &&
git refs update --message=update-reason refs/heads/foo $B &&
git reflog show refs/heads/foo >actual &&
test_grep "update-reason$" actual
)
'
test_expect_success 'update with empty message fails' '
test_when_finished "rm -rf repo" &&
setup_repo repo &&
(
cd repo &&
A=$(git rev-parse A) &&
B=$(git rev-parse B) &&
git refs update refs/heads/foo $A &&
test_must_fail git refs update --message= refs/heads/foo $B 2>err &&
test_grep "empty message" err
)
'
test_expect_success 'update with too few arguments fails' '
test_when_finished "rm -rf repo" &&
setup_repo repo &&
test_must_fail git -C repo refs update refs/heads/foo 2>err &&
test_grep "requires reference name, new value" err
'
test_expect_success 'update with too many arguments fails' '
test_when_finished "rm -rf repo" &&
setup_repo repo &&
(
cd repo &&
A=$(git rev-parse A) &&
B=$(git rev-parse B) &&
test_must_fail git refs update refs/heads/foo $A $B extra 2>err &&
test_grep "requires reference name, new value" err
)
'
test_done
|