Blame


1 5565365c 2024-03-27 op #!/bin/sh
2 5565365c 2024-03-27 op #
3 5565365c 2024-03-27 op # Copyright (c) 2024 Omar Polo <op@openbsd.org>
4 5565365c 2024-03-27 op #
5 5565365c 2024-03-27 op # Permission to use, copy, modify, and distribute this software for any
6 5565365c 2024-03-27 op # purpose with or without fee is hereby granted, provided that the above
7 5565365c 2024-03-27 op # copyright notice and this permission notice appear in all copies.
8 5565365c 2024-03-27 op #
9 5565365c 2024-03-27 op # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 5565365c 2024-03-27 op # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 5565365c 2024-03-27 op # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 5565365c 2024-03-27 op # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 5565365c 2024-03-27 op # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 5565365c 2024-03-27 op # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 5565365c 2024-03-27 op # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 5565365c 2024-03-27 op
17 5565365c 2024-03-27 op . ../cmdline/common.sh
18 5565365c 2024-03-27 op . ./common.sh
19 5565365c 2024-03-27 op
20 050c0b8c 2024-04-16 op # flan:password encoded in base64
21 050c0b8c 2024-04-16 op AUTH="ZmxhbjpwYXNzd29yZA=="
22 050c0b8c 2024-04-16 op
23 5565365c 2024-03-27 op test_file_changed() {
24 5565365c 2024-03-27 op local testroot=`test_init file_changed 1`
25 5565365c 2024-03-27 op
26 5565365c 2024-03-27 op got clone -a -q ${GOTD_TEST_REPO_URL} $testroot/repo-clone
27 5565365c 2024-03-27 op ret=$?
28 5565365c 2024-03-27 op if [ $ret -ne 0 ]; then
29 5565365c 2024-03-27 op echo "got clone failed unexpectedly" >&2
30 5565365c 2024-03-27 op test_done "$testroot" 1
31 5565365c 2024-03-27 op return 1
32 5565365c 2024-03-27 op fi
33 5565365c 2024-03-27 op
34 5565365c 2024-03-27 op got checkout -q $testroot/repo-clone $testroot/wt >/dev/null
35 5565365c 2024-03-27 op ret=$?
36 5565365c 2024-03-27 op if [ $ret -ne 0 ]; then
37 5565365c 2024-03-27 op echo "got checkout failed unexpectedly" >&2
38 5565365c 2024-03-27 op test_done "$testroot" 1
39 5565365c 2024-03-27 op return 1
40 5565365c 2024-03-27 op fi
41 5565365c 2024-03-27 op
42 5565365c 2024-03-27 op echo "change alpha" > $testroot/wt/alpha
43 5565365c 2024-03-27 op (cd $testroot/wt && got commit -m 'make changes' > /dev/null)
44 5565365c 2024-03-27 op local commit_id=`git_show_head $testroot/repo-clone`
45 5565365c 2024-03-27 op local author_time=`git_show_author_time $testroot/repo-clone`
46 5565365c 2024-03-27 op
47 050c0b8c 2024-04-16 op timeout 5 ./http-server -a $AUTH -p $GOTD_TEST_HTTP_PORT \
48 5565365c 2024-03-27 op > $testroot/stdout &
49 5565365c 2024-03-27 op
50 5565365c 2024-03-27 op got send -b main -q -r $testroot/repo-clone
51 5565365c 2024-03-27 op ret=$?
52 5565365c 2024-03-27 op if [ $ret -ne 0 ]; then
53 5565365c 2024-03-27 op echo "got send failed unexpectedly" >&2
54 5565365c 2024-03-27 op test_done "$testroot" "1"
55 5565365c 2024-03-27 op return 1
56 5565365c 2024-03-27 op fi
57 5565365c 2024-03-27 op
58 5565365c 2024-03-27 op wait %1 # wait for the http "server"
59 5565365c 2024-03-27 op
60 87890bc2 2024-03-28 op touch "$testroot/stdout.expected"
61 87890bc2 2024-03-28 op ed -s "$testroot/stdout.expected" <<-EOF
62 87890bc2 2024-03-28 op a
63 87890bc2 2024-03-28 op {"notifications":[{
64 93623901 2024-03-28 op "type":"commit",
65 87890bc2 2024-03-28 op "short":false,
66 c1003102 2024-04-15 op "repo":"test-repo",
67 87890bc2 2024-03-28 op "id":"$commit_id",
68 ac0a4dfc 2024-03-28 op "author":{
69 ac0a4dfc 2024-03-28 op "full":"$GOT_AUTHOR",
70 ac0a4dfc 2024-03-28 op "name":"$GIT_AUTHOR_NAME",
71 ac0a4dfc 2024-03-28 op "mail":"$GIT_AUTHOR_EMAIL",
72 ac0a4dfc 2024-03-28 op "user":"$GOT_AUTHOR_11"
73 ac0a4dfc 2024-03-28 op },
74 ac0a4dfc 2024-03-28 op "committer":{
75 ac0a4dfc 2024-03-28 op "full":"$GOT_AUTHOR",
76 ac0a4dfc 2024-03-28 op "name":"$GIT_AUTHOR_NAME",
77 ac0a4dfc 2024-03-28 op "mail":"$GIT_AUTHOR_EMAIL",
78 ac0a4dfc 2024-03-28 op "user":"$GOT_AUTHOR_11"
79 ac0a4dfc 2024-03-28 op },
80 939d3016 2024-04-23 op "date":$author_time,
81 ac0a4dfc 2024-03-28 op "short_message":"make changes",
82 87890bc2 2024-03-28 op "message":"make changes\n",
83 763b7f49 2024-03-28 op "diffstat":{
84 763b7f49 2024-03-28 op "files":[{
85 763b7f49 2024-03-28 op "action":"modified",
86 763b7f49 2024-03-28 op "file":"alpha",
87 763b7f49 2024-03-28 op "added":1,
88 763b7f49 2024-03-28 op "removed":1
89 763b7f49 2024-03-28 op }],
90 763b7f49 2024-03-28 op "total":{
91 763b7f49 2024-03-28 op "added":1,
92 763b7f49 2024-03-28 op "removed":1
93 763b7f49 2024-03-28 op }
94 763b7f49 2024-03-28 op }
95 ea5e974d 2024-03-28 op }]}
96 ea5e974d 2024-03-28 op .
97 ea5e974d 2024-03-28 op ,j
98 ea5e974d 2024-03-28 op w
99 ea5e974d 2024-03-28 op EOF
100 ea5e974d 2024-03-28 op
101 ea5e974d 2024-03-28 op cmp -s $testroot/stdout.expected $testroot/stdout
102 ea5e974d 2024-03-28 op ret=$?
103 ea5e974d 2024-03-28 op if [ $ret -ne 0 ]; then
104 ea5e974d 2024-03-28 op diff -u $testroot/stdout.expected $testroot/stdout
105 ea5e974d 2024-03-28 op test_done "$testroot" "$ret"
106 ea5e974d 2024-03-28 op return 1
107 ea5e974d 2024-03-28 op fi
108 ea5e974d 2024-03-28 op
109 ea5e974d 2024-03-28 op test_done "$testroot" "$ret"
110 ea5e974d 2024-03-28 op }
111 ea5e974d 2024-03-28 op
112 ea5e974d 2024-03-28 op test_bad_utf8() {
113 ea5e974d 2024-03-28 op local testroot=`test_init bad_utf8 1`
114 ea5e974d 2024-03-28 op
115 ea5e974d 2024-03-28 op got clone -a -q ${GOTD_TEST_REPO_URL} $testroot/repo-clone
116 ea5e974d 2024-03-28 op ret=$?
117 ea5e974d 2024-03-28 op if [ $ret -ne 0 ]; then
118 ea5e974d 2024-03-28 op echo "got clone failed unexpectedly" >&2
119 ea5e974d 2024-03-28 op test_done "$testroot" 1
120 ea5e974d 2024-03-28 op return 1
121 ea5e974d 2024-03-28 op fi
122 ea5e974d 2024-03-28 op
123 ea5e974d 2024-03-28 op got checkout -q $testroot/repo-clone $testroot/wt >/dev/null
124 ea5e974d 2024-03-28 op ret=$?
125 ea5e974d 2024-03-28 op if [ $ret -ne 0 ]; then
126 ea5e974d 2024-03-28 op echo "got checkout failed unexpectedly" >&2
127 ea5e974d 2024-03-28 op test_done "$testroot" 1
128 ea5e974d 2024-03-28 op fi
129 ea5e974d 2024-03-28 op
130 cdaefb15 2024-03-28 stsp # invalid utf8 sequence
131 ea5e974d 2024-03-28 op commit_msg="make$(printf '\xED\xA0\x80')changes"
132 ea5e974d 2024-03-28 op
133 ea5e974d 2024-03-28 op echo "changed" > $testroot/wt/alpha
134 ea5e974d 2024-03-28 op (cd $testroot/wt && got commit -m "$commit_msg" > /dev/null)
135 ea5e974d 2024-03-28 op local commit_id=`git_show_head $testroot/repo-clone`
136 ea5e974d 2024-03-28 op local author_time=`git_show_author_time $testroot/repo-clone`
137 ea5e974d 2024-03-28 op
138 050c0b8c 2024-04-16 op timeout 5 ./http-server -a $AUTH -p $GOTD_TEST_HTTP_PORT \
139 ea5e974d 2024-03-28 op > $testroot/stdout &
140 ea5e974d 2024-03-28 op
141 ea5e974d 2024-03-28 op got send -b main -q -r $testroot/repo-clone
142 ea5e974d 2024-03-28 op ret=$?
143 ea5e974d 2024-03-28 op if [ $ret -ne 0 ]; then
144 ea5e974d 2024-03-28 op echo "got send failed unexpectedly" >&2
145 ea5e974d 2024-03-28 op test_done "$testroot" "1"
146 ea5e974d 2024-03-28 op return 1
147 ea5e974d 2024-03-28 op fi
148 ea5e974d 2024-03-28 op
149 ea5e974d 2024-03-28 op wait %1 # wait for the http "server"
150 ea5e974d 2024-03-28 op
151 ea5e974d 2024-03-28 op touch "$testroot/stdout.expected"
152 ea5e974d 2024-03-28 op ed -s "$testroot/stdout.expected" <<-EOF
153 ea5e974d 2024-03-28 op a
154 ea5e974d 2024-03-28 op {"notifications":[{
155 93623901 2024-03-28 op "type":"commit",
156 ea5e974d 2024-03-28 op "short":false,
157 c1003102 2024-04-15 op "repo":"test-repo",
158 ea5e974d 2024-03-28 op "id":"$commit_id",
159 ac0a4dfc 2024-03-28 op "author":{
160 ac0a4dfc 2024-03-28 op "full":"$GOT_AUTHOR",
161 ac0a4dfc 2024-03-28 op "name":"$GIT_AUTHOR_NAME",
162 ac0a4dfc 2024-03-28 op "mail":"$GIT_AUTHOR_EMAIL",
163 ac0a4dfc 2024-03-28 op "user":"$GOT_AUTHOR_11"
164 ac0a4dfc 2024-03-28 op },
165 ac0a4dfc 2024-03-28 op "committer":{
166 ac0a4dfc 2024-03-28 op "full":"$GOT_AUTHOR",
167 ac0a4dfc 2024-03-28 op "name":"$GIT_AUTHOR_NAME",
168 ac0a4dfc 2024-03-28 op "mail":"$GIT_AUTHOR_EMAIL",
169 ac0a4dfc 2024-03-28 op "user":"$GOT_AUTHOR_11"
170 ac0a4dfc 2024-03-28 op },
171 939d3016 2024-04-23 op "date":$author_time,
172 ac0a4dfc 2024-03-28 op "short_message":"make\uFFFD\uFFFDchanges",
173 ea5e974d 2024-03-28 op "message":"make\uFFFD\uFFFDchanges\n",
174 763b7f49 2024-03-28 op "diffstat":{
175 763b7f49 2024-03-28 op "files":[{
176 763b7f49 2024-03-28 op "action":"modified",
177 763b7f49 2024-03-28 op "file":"alpha",
178 763b7f49 2024-03-28 op "added":1,
179 763b7f49 2024-03-28 op "removed":1
180 763b7f49 2024-03-28 op }],
181 763b7f49 2024-03-28 op "total":{
182 763b7f49 2024-03-28 op "added":1,
183 763b7f49 2024-03-28 op "removed":1
184 763b7f49 2024-03-28 op }
185 763b7f49 2024-03-28 op }
186 87890bc2 2024-03-28 op }]}
187 87890bc2 2024-03-28 op .
188 87890bc2 2024-03-28 op ,j
189 87890bc2 2024-03-28 op w
190 5565365c 2024-03-27 op EOF
191 5565365c 2024-03-27 op
192 5565365c 2024-03-27 op cmp -s $testroot/stdout.expected $testroot/stdout
193 5565365c 2024-03-27 op ret=$?
194 5565365c 2024-03-27 op if [ $ret -ne 0 ]; then
195 5565365c 2024-03-27 op diff -u $testroot/stdout.expected $testroot/stdout
196 5565365c 2024-03-27 op test_done "$testroot" "$ret"
197 5565365c 2024-03-27 op return 1
198 5565365c 2024-03-27 op fi
199 5565365c 2024-03-27 op
200 5565365c 2024-03-27 op test_done "$testroot" "$ret"
201 5565365c 2024-03-27 op }
202 5565365c 2024-03-27 op
203 5565365c 2024-03-27 op test_many_commits_not_summarized() {
204 5565365c 2024-03-27 op local testroot=`test_init many_commits_not_summarized 1`
205 5565365c 2024-03-27 op
206 5565365c 2024-03-27 op got clone -a -q ${GOTD_TEST_REPO_URL} $testroot/repo-clone
207 5565365c 2024-03-27 op ret=$?
208 5565365c 2024-03-27 op if [ $ret -ne 0 ]; then
209 5565365c 2024-03-27 op echo "got clone failed unexpectedly" >&2
210 5565365c 2024-03-27 op test_done "$testroot" 1
211 5565365c 2024-03-27 op return 1
212 5565365c 2024-03-27 op fi
213 5565365c 2024-03-27 op
214 5565365c 2024-03-27 op got checkout -q $testroot/repo-clone $testroot/wt >/dev/null
215 5565365c 2024-03-27 op ret=$?
216 5565365c 2024-03-27 op if [ $ret -ne 0 ]; then
217 5565365c 2024-03-27 op echo "got checkout failed unexpectedly" >&2
218 5565365c 2024-03-27 op test_done "$testroot" 1
219 5565365c 2024-03-27 op return 1
220 5565365c 2024-03-27 op fi
221 5565365c 2024-03-27 op
222 5565365c 2024-03-27 op for i in `seq 1 24`; do
223 5565365c 2024-03-27 op echo "alpha $i" > $testroot/wt/alpha
224 5565365c 2024-03-27 op (cd $testroot/wt && got commit -m 'make changes' > /dev/null)
225 5565365c 2024-03-27 op local commit_id=`git_show_head $testroot/repo-clone`
226 5565365c 2024-03-27 op local author_time=`git_show_author_time $testroot/repo-clone`
227 939d3016 2024-04-23 op set -- "$@" "$commit_id $author_time"
228 5565365c 2024-03-27 op done
229 5565365c 2024-03-27 op
230 050c0b8c 2024-04-16 op timeout 5 ./http-server -a $AUTH -p "$GOTD_TEST_HTTP_PORT" \
231 5565365c 2024-03-27 op > $testroot/stdout &
232 5565365c 2024-03-27 op
233 5565365c 2024-03-27 op got send -b main -q -r $testroot/repo-clone
234 5565365c 2024-03-27 op ret=$?
235 5565365c 2024-03-27 op if [ $ret -ne 0 ]; then
236 5565365c 2024-03-27 op echo "got send failed unexpectedly" >&2
237 5565365c 2024-03-27 op test_done "$testroot" "1"
238 5565365c 2024-03-27 op return 1
239 5565365c 2024-03-27 op fi
240 5565365c 2024-03-27 op
241 5565365c 2024-03-27 op wait %1 # wait for the http "server"
242 5565365c 2024-03-27 op
243 9e88f9d9 2024-03-28 op printf '{"notifications":[' > $testroot/stdout.expected
244 5565365c 2024-03-27 op comma=""
245 5565365c 2024-03-27 op for i in `seq 1 24`; do
246 5565365c 2024-03-27 op s=`pop_idx $i "$@"`
247 5565365c 2024-03-27 op commit_id=$(echo $s | cut -d' ' -f1)
248 166674b8 2024-04-09 stsp commit_time=$(echo "$s" | sed -e "s/^$commit_id //g")
249 87890bc2 2024-03-28 op
250 87890bc2 2024-03-28 op echo "$comma"
251 87890bc2 2024-03-28 op comma=','
252 87890bc2 2024-03-28 op
253 87890bc2 2024-03-28 op cat <<-EOF
254 87890bc2 2024-03-28 op {
255 93623901 2024-03-28 op "type":"commit",
256 87890bc2 2024-03-28 op "short":false,
257 c1003102 2024-04-15 op "repo":"test-repo",
258 87890bc2 2024-03-28 op "id":"$commit_id",
259 ac0a4dfc 2024-03-28 op "author":{
260 ac0a4dfc 2024-03-28 op "full":"$GOT_AUTHOR",
261 ac0a4dfc 2024-03-28 op "name":"$GIT_AUTHOR_NAME",
262 ac0a4dfc 2024-03-28 op "mail":"$GIT_AUTHOR_EMAIL",
263 ac0a4dfc 2024-03-28 op "user":"$GOT_AUTHOR_11"
264 ac0a4dfc 2024-03-28 op },
265 ac0a4dfc 2024-03-28 op "committer":{
266 ac0a4dfc 2024-03-28 op "full":"$GOT_AUTHOR",
267 ac0a4dfc 2024-03-28 op "name":"$GIT_AUTHOR_NAME",
268 ac0a4dfc 2024-03-28 op "mail":"$GIT_AUTHOR_EMAIL",
269 ac0a4dfc 2024-03-28 op "user":"$GOT_AUTHOR_11"
270 ac0a4dfc 2024-03-28 op },
271 939d3016 2024-04-23 op "date":$commit_time,
272 ac0a4dfc 2024-03-28 op "short_message":"make changes",
273 87890bc2 2024-03-28 op "message":"make changes\n",
274 763b7f49 2024-03-28 op "diffstat":{
275 763b7f49 2024-03-28 op "files":[{
276 763b7f49 2024-03-28 op "action":"modified",
277 763b7f49 2024-03-28 op "file":"alpha",
278 763b7f49 2024-03-28 op "added":1,
279 763b7f49 2024-03-28 op "removed":1
280 763b7f49 2024-03-28 op }],
281 763b7f49 2024-03-28 op "total":{
282 763b7f49 2024-03-28 op "added":1,
283 763b7f49 2024-03-28 op "removed":1
284 763b7f49 2024-03-28 op }
285 763b7f49 2024-03-28 op }
286 87890bc2 2024-03-28 op }
287 87890bc2 2024-03-28 op EOF
288 5565365c 2024-03-27 op done >> $testroot/stdout.expected
289 5565365c 2024-03-27 op echo "]}" >> $testroot/stdout.expected
290 87890bc2 2024-03-28 op ed -s "$testroot/stdout.expected" <<-EOF
291 87890bc2 2024-03-28 op ,j
292 87890bc2 2024-03-28 op w
293 87890bc2 2024-03-28 op EOF
294 5565365c 2024-03-27 op
295 5565365c 2024-03-27 op cmp -s $testroot/stdout.expected $testroot/stdout
296 5565365c 2024-03-27 op ret=$?
297 5565365c 2024-03-27 op if [ $ret -ne 0 ]; then
298 5565365c 2024-03-27 op diff -u $testroot/stdout.expected $testroot/stdout
299 5565365c 2024-03-27 op test_done "$testroot" "$ret"
300 5565365c 2024-03-27 op return 1
301 5565365c 2024-03-27 op fi
302 5565365c 2024-03-27 op
303 5565365c 2024-03-27 op test_done "$testroot" "$ret"
304 5565365c 2024-03-27 op }
305 5565365c 2024-03-27 op
306 5565365c 2024-03-27 op test_many_commits_summarized() {
307 5565365c 2024-03-27 op local testroot=`test_init many_commits_summarized 1`
308 5565365c 2024-03-27 op
309 5565365c 2024-03-27 op got clone -a -q ${GOTD_TEST_REPO_URL} $testroot/repo-clone
310 5565365c 2024-03-27 op ret=$?
311 5565365c 2024-03-27 op if [ $ret -ne 0 ]; then
312 5565365c 2024-03-27 op echo "got clone failed unexpectedly" >&2
313 5565365c 2024-03-27 op test_done "$testroot" 1
314 5565365c 2024-03-27 op return 1
315 5565365c 2024-03-27 op fi
316 5565365c 2024-03-27 op
317 5565365c 2024-03-27 op got checkout -q $testroot/repo-clone $testroot/wt >/dev/null
318 5565365c 2024-03-27 op ret=$?
319 5565365c 2024-03-27 op if [ $ret -ne 0 ]; then
320 5565365c 2024-03-27 op echo "got checkout failed unexpectedly" >&2
321 5565365c 2024-03-27 op test_done "$testroot" 1
322 5565365c 2024-03-27 op return 1
323 5565365c 2024-03-27 op fi
324 5565365c 2024-03-27 op
325 5565365c 2024-03-27 op for i in `seq 1 51`; do
326 5565365c 2024-03-27 op echo "alpha $i" > $testroot/wt/alpha
327 5565365c 2024-03-27 op (cd $testroot/wt && got commit -m 'make changes' > /dev/null)
328 5565365c 2024-03-27 op local commit_id=`git_show_head $testroot/repo-clone`
329 5565365c 2024-03-27 op local short_commit_id=`trim_obj_id 33 $commit_id`
330 5565365c 2024-03-27 op local author_time=`git_show_author_time $testroot/repo-clone`
331 939d3016 2024-04-23 op set -- "$@" "$short_commit_id $author_time"
332 5565365c 2024-03-27 op done
333 5565365c 2024-03-27 op
334 050c0b8c 2024-04-16 op timeout 5 ./http-server -a $AUTH -p "$GOTD_TEST_HTTP_PORT" \
335 5565365c 2024-03-27 op > $testroot/stdout &
336 5565365c 2024-03-27 op
337 5565365c 2024-03-27 op got send -b main -q -r $testroot/repo-clone
338 5565365c 2024-03-27 op ret=$?
339 5565365c 2024-03-27 op if [ $ret -ne 0 ]; then
340 5565365c 2024-03-27 op echo "got send failed unexpectedly" >&2
341 5565365c 2024-03-27 op test_done "$testroot" "1"
342 5565365c 2024-03-27 op return 1
343 5565365c 2024-03-27 op fi
344 5565365c 2024-03-27 op
345 5565365c 2024-03-27 op wait %1 # wait for the http "server"
346 5565365c 2024-03-27 op
347 9e88f9d9 2024-03-28 op printf '{"notifications":[' > $testroot/stdout.expected
348 5565365c 2024-03-27 op comma=""
349 5565365c 2024-03-27 op for i in `seq 1 51`; do
350 5565365c 2024-03-27 op s=`pop_idx $i "$@"`
351 5565365c 2024-03-27 op commit_id=$(echo $s | cut -d' ' -f1)
352 939d3016 2024-04-23 op commit_time=$(echo "$s" | cut -d' ' -f2)
353 87890bc2 2024-03-28 op
354 87890bc2 2024-03-28 op echo "$comma"
355 87890bc2 2024-03-28 op comma=','
356 87890bc2 2024-03-28 op
357 87890bc2 2024-03-28 op cat <<-EOF
358 87890bc2 2024-03-28 op {
359 93623901 2024-03-28 op "type":"commit",
360 87890bc2 2024-03-28 op "short":true,
361 c1003102 2024-04-15 op "repo":"test-repo",
362 87890bc2 2024-03-28 op "id":"$commit_id",
363 ac0a4dfc 2024-03-28 op "committer":{
364 ac0a4dfc 2024-03-28 op "user":"$GOT_AUTHOR_8"
365 ac0a4dfc 2024-03-28 op },
366 939d3016 2024-04-23 op "date":$commit_time,
367 ac0a4dfc 2024-03-28 op "short_message":"make changes"
368 87890bc2 2024-03-28 op }
369 87890bc2 2024-03-28 op EOF
370 5565365c 2024-03-27 op done >> $testroot/stdout.expected
371 5565365c 2024-03-27 op echo "]}" >> $testroot/stdout.expected
372 914bfd3d 2024-03-28 op ed -s "$testroot/stdout.expected" <<-EOF
373 914bfd3d 2024-03-28 op ,j
374 914bfd3d 2024-03-28 op w
375 914bfd3d 2024-03-28 op EOF
376 914bfd3d 2024-03-28 op
377 914bfd3d 2024-03-28 op cmp -s $testroot/stdout.expected $testroot/stdout
378 914bfd3d 2024-03-28 op ret=$?
379 914bfd3d 2024-03-28 op if [ $ret -ne 0 ]; then
380 914bfd3d 2024-03-28 op diff -u $testroot/stdout.expected $testroot/stdout
381 914bfd3d 2024-03-28 op test_done "$testroot" "$ret"
382 914bfd3d 2024-03-28 op return 1
383 914bfd3d 2024-03-28 op fi
384 914bfd3d 2024-03-28 op
385 914bfd3d 2024-03-28 op test_done "$testroot" "$ret"
386 914bfd3d 2024-03-28 op }
387 914bfd3d 2024-03-28 op
388 914bfd3d 2024-03-28 op test_branch_created() {
389 914bfd3d 2024-03-28 op local testroot=`test_init branch_created 1`
390 914bfd3d 2024-03-28 op
391 914bfd3d 2024-03-28 op got clone -a -q ${GOTD_TEST_REPO_URL} $testroot/repo-clone
392 914bfd3d 2024-03-28 op ret=$?
393 914bfd3d 2024-03-28 op if [ $ret -ne 0 ]; then
394 914bfd3d 2024-03-28 op echo "got clone failed unexpectedly" >&2
395 914bfd3d 2024-03-28 op test_done "$testroot" 1
396 914bfd3d 2024-03-28 op return 1
397 914bfd3d 2024-03-28 op fi
398 914bfd3d 2024-03-28 op
399 914bfd3d 2024-03-28 op got checkout -q $testroot/repo-clone $testroot/wt >/dev/null
400 914bfd3d 2024-03-28 op ret=$?
401 914bfd3d 2024-03-28 op if [ $ret -ne 0 ]; then
402 914bfd3d 2024-03-28 op echo "got checkout failed unexpectedly" >&2
403 914bfd3d 2024-03-28 op test_done "$testroot" 1
404 914bfd3d 2024-03-28 op return 1
405 914bfd3d 2024-03-28 op fi
406 914bfd3d 2024-03-28 op
407 914bfd3d 2024-03-28 op (cd $testroot/wt && got branch newbranch > /dev/null)
408 914bfd3d 2024-03-28 op
409 914bfd3d 2024-03-28 op echo "change alpha on branch" > $testroot/wt/alpha
410 914bfd3d 2024-03-28 op (cd $testroot/wt && got commit -m 'newbranch' > /dev/null)
411 914bfd3d 2024-03-28 op local commit_id=`git_show_branch_head $testroot/repo-clone newbranch`
412 914bfd3d 2024-03-28 op local author_time=`git_show_author_time $testroot/repo-clone $commit_id`
413 914bfd3d 2024-03-28 op
414 050c0b8c 2024-04-16 op timeout 5 ./http-server -a $AUTH -p "$GOTD_TEST_HTTP_PORT" \
415 914bfd3d 2024-03-28 op > $testroot/stdout &
416 914bfd3d 2024-03-28 op
417 914bfd3d 2024-03-28 op got send -b newbranch -q -r $testroot/repo-clone
418 914bfd3d 2024-03-28 op ret=$?
419 914bfd3d 2024-03-28 op if [ $ret -ne 0 ]; then
420 914bfd3d 2024-03-28 op echo "got send failed unexpectedly" >&2
421 914bfd3d 2024-03-28 op test_done "$testroot" "1"
422 914bfd3d 2024-03-28 op return 1
423 914bfd3d 2024-03-28 op fi
424 914bfd3d 2024-03-28 op
425 914bfd3d 2024-03-28 op wait %1 # wait for the http "server"
426 914bfd3d 2024-03-28 op
427 914bfd3d 2024-03-28 op # in the future it should contain something like this too
428 914bfd3d 2024-03-28 op # {
429 914bfd3d 2024-03-28 op # "type":"new-branch",
430 914bfd3d 2024-03-28 op # "user":"${GOTD_DEVUSER}",
431 914bfd3d 2024-03-28 op # "ref":"refs/heads/newbranch"
432 914bfd3d 2024-03-28 op # },
433 914bfd3d 2024-03-28 op
434 914bfd3d 2024-03-28 op touch "$testroot/stdout.expected"
435 87890bc2 2024-03-28 op ed -s "$testroot/stdout.expected" <<-EOF
436 914bfd3d 2024-03-28 op a
437 914bfd3d 2024-03-28 op {"notifications":[
438 914bfd3d 2024-03-28 op {
439 914bfd3d 2024-03-28 op "type":"commit",
440 914bfd3d 2024-03-28 op "short":false,
441 c1003102 2024-04-15 op "repo":"test-repo",
442 914bfd3d 2024-03-28 op "id":"$commit_id",
443 914bfd3d 2024-03-28 op "author":{
444 914bfd3d 2024-03-28 op "full":"$GOT_AUTHOR",
445 914bfd3d 2024-03-28 op "name":"$GIT_AUTHOR_NAME",
446 914bfd3d 2024-03-28 op "mail":"$GIT_AUTHOR_EMAIL",
447 914bfd3d 2024-03-28 op "user":"$GOT_AUTHOR_11"
448 914bfd3d 2024-03-28 op },
449 914bfd3d 2024-03-28 op "committer":{
450 914bfd3d 2024-03-28 op "full":"$GOT_AUTHOR",
451 914bfd3d 2024-03-28 op "name":"$GIT_AUTHOR_NAME",
452 914bfd3d 2024-03-28 op "mail":"$GIT_AUTHOR_EMAIL",
453 914bfd3d 2024-03-28 op "user":"$GOT_AUTHOR_11"
454 914bfd3d 2024-03-28 op },
455 939d3016 2024-04-23 op "date":$author_time,
456 914bfd3d 2024-03-28 op "short_message":"newbranch",
457 914bfd3d 2024-03-28 op "message":"newbranch\n",
458 763b7f49 2024-03-28 op "diffstat":{
459 763b7f49 2024-03-28 op "files":[{
460 763b7f49 2024-03-28 op "action":"modified",
461 763b7f49 2024-03-28 op "file":"alpha",
462 763b7f49 2024-03-28 op "added":1,
463 763b7f49 2024-03-28 op "removed":1
464 763b7f49 2024-03-28 op }],
465 763b7f49 2024-03-28 op "total":{
466 763b7f49 2024-03-28 op "added":1,
467 763b7f49 2024-03-28 op "removed":1
468 763b7f49 2024-03-28 op }
469 763b7f49 2024-03-28 op }
470 914bfd3d 2024-03-28 op }
471 914bfd3d 2024-03-28 op ]}
472 914bfd3d 2024-03-28 op .
473 87890bc2 2024-03-28 op ,j
474 87890bc2 2024-03-28 op w
475 87890bc2 2024-03-28 op EOF
476 5565365c 2024-03-27 op
477 5565365c 2024-03-27 op cmp -s $testroot/stdout.expected $testroot/stdout
478 5565365c 2024-03-27 op ret=$?
479 5565365c 2024-03-27 op if [ $ret -ne 0 ]; then
480 5565365c 2024-03-27 op diff -u $testroot/stdout.expected $testroot/stdout
481 5565365c 2024-03-27 op test_done "$testroot" "$ret"
482 5565365c 2024-03-27 op return 1
483 5565365c 2024-03-27 op fi
484 5565365c 2024-03-27 op
485 5565365c 2024-03-27 op test_done "$testroot" "$ret"
486 5565365c 2024-03-27 op }
487 d6057084 2024-03-28 op
488 d6057084 2024-03-28 op test_branch_removed() {
489 d6057084 2024-03-28 op local testroot=`test_init branch_removed 1`
490 d6057084 2024-03-28 op
491 d6057084 2024-03-28 op got clone -a -q ${GOTD_TEST_REPO_URL} $testroot/repo-clone
492 d6057084 2024-03-28 op ret=$?
493 d6057084 2024-03-28 op if [ $ret -ne 0 ]; then
494 d6057084 2024-03-28 op echo "got clone failed unexpectedly" >&2
495 d6057084 2024-03-28 op test_done "$testroot" 1
496 d6057084 2024-03-28 op return 1
497 d6057084 2024-03-28 op fi
498 5565365c 2024-03-27 op
499 050c0b8c 2024-04-16 op timeout 5 ./http-server -a $AUTH -p "$GOTD_TEST_HTTP_PORT" \
500 d6057084 2024-03-28 op > $testroot/stdout &
501 d6057084 2024-03-28 op
502 d6057084 2024-03-28 op local commit_id=`git_show_branch_head $testroot/repo-clone newbranch`
503 d6057084 2024-03-28 op
504 d6057084 2024-03-28 op got send -d newbranch -q -r $testroot/repo-clone
505 d6057084 2024-03-28 op ret=$?
506 d6057084 2024-03-28 op if [ $ret -ne 0 ]; then
507 d6057084 2024-03-28 op echo "got send failed unexpectedly" >&2
508 d6057084 2024-03-28 op test_done "$testroot" "1"
509 d6057084 2024-03-28 op return 1
510 d6057084 2024-03-28 op fi
511 d6057084 2024-03-28 op
512 d6057084 2024-03-28 op wait %1 # wait for the http "server"
513 d6057084 2024-03-28 op
514 d6057084 2024-03-28 op touch "$testroot/stdout.expected"
515 d6057084 2024-03-28 op ed -s "$testroot/stdout.expected" <<-EOF
516 d6057084 2024-03-28 op a
517 d6057084 2024-03-28 op {"notifications":[{
518 d6057084 2024-03-28 op "type":"branch-deleted",
519 c1003102 2024-04-15 op "repo":"test-repo",
520 d6057084 2024-03-28 op "ref":"refs/heads/newbranch",
521 d6057084 2024-03-28 op "id":"$commit_id"
522 553d8347 2024-03-28 op }]}
523 553d8347 2024-03-28 op .
524 553d8347 2024-03-28 op ,j
525 553d8347 2024-03-28 op w
526 553d8347 2024-03-28 op EOF
527 553d8347 2024-03-28 op
528 553d8347 2024-03-28 op cmp -s $testroot/stdout.expected $testroot/stdout
529 553d8347 2024-03-28 op ret=$?
530 553d8347 2024-03-28 op if [ $ret -ne 0 ]; then
531 553d8347 2024-03-28 op diff -u $testroot/stdout.expected $testroot/stdout
532 553d8347 2024-03-28 op test_done "$testroot" "$ret"
533 553d8347 2024-03-28 op return 1
534 553d8347 2024-03-28 op fi
535 553d8347 2024-03-28 op
536 553d8347 2024-03-28 op test_done "$testroot" "$ret"
537 553d8347 2024-03-28 op }
538 553d8347 2024-03-28 op
539 553d8347 2024-03-28 op test_tag_created() {
540 553d8347 2024-03-28 op local testroot=`test_init tag_created 1`
541 553d8347 2024-03-28 op
542 553d8347 2024-03-28 op got clone -a -q ${GOTD_TEST_REPO_URL} $testroot/repo-clone
543 553d8347 2024-03-28 op ret=$?
544 553d8347 2024-03-28 op if [ $ret -ne 0 ]; then
545 553d8347 2024-03-28 op echo "got clone failed unexpectedly" >&2
546 553d8347 2024-03-28 op test_done "$testroot" 1
547 553d8347 2024-03-28 op return 1
548 553d8347 2024-03-28 op fi
549 553d8347 2024-03-28 op
550 553d8347 2024-03-28 op got tag -r $testroot/repo-clone -m "new tag" 1.0 > /dev/null
551 553d8347 2024-03-28 op local commit_id=`git_show_head $testroot/repo-clone`
552 553d8347 2024-03-28 op local tagger_time=`git_show_tagger_time $testroot/repo-clone 1.0`
553 553d8347 2024-03-28 op
554 050c0b8c 2024-04-16 op timeout 5 ./http-server -a $AUTH -p "$GOTD_TEST_HTTP_PORT" \
555 553d8347 2024-03-28 op >$testroot/stdout &
556 553d8347 2024-03-28 op
557 553d8347 2024-03-28 op got send -t 1.0 -q -r $testroot/repo-clone
558 553d8347 2024-03-28 op ret=$?
559 553d8347 2024-03-28 op if [ $ret -ne 0 ]; then
560 553d8347 2024-03-28 op echo "got send failed unexpectedly" >&2
561 553d8347 2024-03-28 op test_done "$testroot" "1"
562 553d8347 2024-03-28 op return 1
563 553d8347 2024-03-28 op fi
564 553d8347 2024-03-28 op
565 553d8347 2024-03-28 op wait %1 # wait for the http "server"
566 553d8347 2024-03-28 op
567 553d8347 2024-03-28 op touch "$testroot/stdout.expected"
568 553d8347 2024-03-28 op ed -s "$testroot/stdout.expected" <<-EOF
569 553d8347 2024-03-28 op a
570 553d8347 2024-03-28 op {"notifications":[{
571 553d8347 2024-03-28 op "type":"tag",
572 c1003102 2024-04-15 op "repo":"test-repo",
573 553d8347 2024-03-28 op "tag":"refs/tags/1.0",
574 553d8347 2024-03-28 op "tagger":{
575 553d8347 2024-03-28 op "full":"$GOT_AUTHOR",
576 553d8347 2024-03-28 op "name":"$GIT_AUTHOR_NAME",
577 553d8347 2024-03-28 op "mail":"$GIT_AUTHOR_EMAIL",
578 553d8347 2024-03-28 op "user":"$GOT_AUTHOR_11"
579 553d8347 2024-03-28 op },
580 939d3016 2024-04-23 op "date":$tagger_time,
581 553d8347 2024-03-28 op "object":{
582 553d8347 2024-03-28 op "type":"commit",
583 553d8347 2024-03-28 op "id":"$commit_id"
584 553d8347 2024-03-28 op },
585 553d8347 2024-03-28 op "message":"new tag\n\n"
586 d6057084 2024-03-28 op }]}
587 d6057084 2024-03-28 op .
588 d6057084 2024-03-28 op ,j
589 d6057084 2024-03-28 op w
590 d6057084 2024-03-28 op EOF
591 d6057084 2024-03-28 op
592 d6057084 2024-03-28 op cmp -s $testroot/stdout.expected $testroot/stdout
593 d6057084 2024-03-28 op ret=$?
594 d6057084 2024-03-28 op if [ $ret -ne 0 ]; then
595 d6057084 2024-03-28 op diff -u $testroot/stdout.expected $testroot/stdout
596 d6057084 2024-03-28 op test_done "$testroot" "$ret"
597 d6057084 2024-03-28 op return 1
598 d6057084 2024-03-28 op fi
599 d6057084 2024-03-28 op
600 d6057084 2024-03-28 op test_done "$testroot" "$ret"
601 d6057084 2024-03-28 op }
602 cd182532 2024-03-28 op
603 cd182532 2024-03-28 op test_tag_changed() {
604 cd182532 2024-03-28 op local testroot=`test_init tag_changed 1`
605 cd182532 2024-03-28 op
606 cd182532 2024-03-28 op got clone -a -q ${GOTD_TEST_REPO_URL} $testroot/repo-clone
607 cd182532 2024-03-28 op ret=$?
608 cd182532 2024-03-28 op if [ $ret -ne 0 ]; then
609 cd182532 2024-03-28 op echo "got clone failed unexpectedly" >&2
610 cd182532 2024-03-28 op test_done "$testroot" 1
611 cd182532 2024-03-28 op return 1
612 cd182532 2024-03-28 op fi
613 cd182532 2024-03-28 op
614 cd182532 2024-03-28 op got checkout -q $testroot/repo-clone $testroot/wt >/dev/null
615 cd182532 2024-03-28 op ret=$?
616 cd182532 2024-03-28 op if [ $ret -ne 0 ]; then
617 cd182532 2024-03-28 op echo "got checkout failed unexpectedly" >&2
618 cd182532 2024-03-28 op test_done "$testroot" 1
619 cd182532 2024-03-28 op return 1
620 cd182532 2024-03-28 op fi
621 cd182532 2024-03-28 op
622 cd182532 2024-03-28 op echo "change alpha" > $testroot/wt/alpha
623 cd182532 2024-03-28 op (cd $testroot/wt && got commit -m 'make changes' > /dev/null)
624 cd182532 2024-03-28 op local commit_id=`git_show_head $testroot/repo-clone`
625 d6057084 2024-03-28 op
626 cd182532 2024-03-28 op got ref -r $testroot/repo-clone -d refs/tags/1.0 >/dev/null
627 cd182532 2024-03-28 op got tag -r $testroot/repo-clone -m "new tag" 1.0 > /dev/null
628 cd182532 2024-03-28 op local tagger_time=`git_show_tagger_time $testroot/repo-clone 1.0`
629 cd182532 2024-03-28 op
630 050c0b8c 2024-04-16 op timeout 5 ./http-server -a $AUTH -p "$GOTD_TEST_HTTP_PORT" \
631 cd182532 2024-03-28 op > $testroot/stdout &
632 cd182532 2024-03-28 op
633 cd182532 2024-03-28 op got send -f -t 1.0 -q -r $testroot/repo-clone
634 cd182532 2024-03-28 op ret=$?
635 cd182532 2024-03-28 op if [ $ret -ne 0 ]; then
636 cd182532 2024-03-28 op echo "got send failed unexpectedly" >&2
637 cd182532 2024-03-28 op test_done "$testroot" "1"
638 cd182532 2024-03-28 op return 1
639 cd182532 2024-03-28 op fi
640 cd182532 2024-03-28 op
641 cd182532 2024-03-28 op wait %1 # wait for the http "server"
642 cd182532 2024-03-28 op
643 cd182532 2024-03-28 op # XXX: at the moment this is exactly the same as the "new tag"
644 cd182532 2024-03-28 op # notification
645 cd182532 2024-03-28 op
646 cd182532 2024-03-28 op touch "$testroot/stdout.expected"
647 cd182532 2024-03-28 op ed -s "$testroot/stdout.expected" <<-EOF
648 cd182532 2024-03-28 op a
649 cd182532 2024-03-28 op {"notifications":[{
650 cd182532 2024-03-28 op "type":"tag",
651 c1003102 2024-04-15 op "repo":"test-repo",
652 cd182532 2024-03-28 op "tag":"refs/tags/1.0",
653 cd182532 2024-03-28 op "tagger":{
654 cd182532 2024-03-28 op "full":"$GOT_AUTHOR",
655 cd182532 2024-03-28 op "name":"$GIT_AUTHOR_NAME",
656 cd182532 2024-03-28 op "mail":"$GIT_AUTHOR_EMAIL",
657 cd182532 2024-03-28 op "user":"$GOT_AUTHOR_11"
658 cd182532 2024-03-28 op },
659 939d3016 2024-04-23 op "date":$tagger_time,
660 cd182532 2024-03-28 op "object":{
661 cd182532 2024-03-28 op "type":"commit",
662 cd182532 2024-03-28 op "id":"$commit_id"
663 cd182532 2024-03-28 op },
664 cd182532 2024-03-28 op "message":"new tag\n\n"
665 cd182532 2024-03-28 op }]}
666 cd182532 2024-03-28 op .
667 cd182532 2024-03-28 op ,j
668 cd182532 2024-03-28 op w
669 cd182532 2024-03-28 op EOF
670 cd182532 2024-03-28 op
671 cd182532 2024-03-28 op cmp -s $testroot/stdout.expected $testroot/stdout
672 cd182532 2024-03-28 op ret=$?
673 cd182532 2024-03-28 op if [ $ret -ne 0 ]; then
674 cd182532 2024-03-28 op diff -u $testroot/stdout.expected $testroot/stdout
675 cd182532 2024-03-28 op test_done "$testroot" "$ret"
676 cd182532 2024-03-28 op return 1
677 cd182532 2024-03-28 op fi
678 cd182532 2024-03-28 op
679 cd182532 2024-03-28 op test_done "$testroot" "$ret"
680 cd182532 2024-03-28 op }
681 cd182532 2024-03-28 op
682 5565365c 2024-03-27 op test_parseargs "$@"
683 5565365c 2024-03-27 op run_test test_file_changed
684 ea5e974d 2024-03-28 op run_test test_bad_utf8
685 5565365c 2024-03-27 op run_test test_many_commits_not_summarized
686 5565365c 2024-03-27 op run_test test_many_commits_summarized
687 914bfd3d 2024-03-28 op run_test test_branch_created
688 d6057084 2024-03-28 op run_test test_branch_removed
689 553d8347 2024-03-28 op run_test test_tag_created
690 cd182532 2024-03-28 op run_test test_tag_changed