Blame


1 ba97b2d7 2024-03-20 stsp #!/bin/sh
2 ba97b2d7 2024-03-20 stsp #
3 ba97b2d7 2024-03-20 stsp # Copyright (c) 2024 Stefan Sperling <stsp@openbsd.org>
4 ba97b2d7 2024-03-20 stsp #
5 ba97b2d7 2024-03-20 stsp # Permission to use, copy, modify, and distribute this software for any
6 ba97b2d7 2024-03-20 stsp # purpose with or without fee is hereby granted, provided that the above
7 ba97b2d7 2024-03-20 stsp # copyright notice and this permission notice appear in all copies.
8 ba97b2d7 2024-03-20 stsp #
9 ba97b2d7 2024-03-20 stsp # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 ba97b2d7 2024-03-20 stsp # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 ba97b2d7 2024-03-20 stsp # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 ba97b2d7 2024-03-20 stsp # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 ba97b2d7 2024-03-20 stsp # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 ba97b2d7 2024-03-20 stsp # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 ba97b2d7 2024-03-20 stsp # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 ba97b2d7 2024-03-20 stsp
17 ba97b2d7 2024-03-20 stsp . ../cmdline/common.sh
18 ba97b2d7 2024-03-20 stsp . ./common.sh
19 ba97b2d7 2024-03-20 stsp
20 ba97b2d7 2024-03-20 stsp test_file_changed() {
21 ba97b2d7 2024-03-20 stsp local testroot=`test_init file_changed 1`
22 ba97b2d7 2024-03-20 stsp
23 ba97b2d7 2024-03-20 stsp got clone -a -q ${GOTD_TEST_REPO_URL} $testroot/repo-clone
24 ba97b2d7 2024-03-20 stsp ret=$?
25 ba97b2d7 2024-03-20 stsp if [ $ret -ne 0 ]; then
26 ba97b2d7 2024-03-20 stsp echo "got clone failed unexpectedly" >&2
27 ba97b2d7 2024-03-20 stsp test_done "$testroot" 1
28 ba97b2d7 2024-03-20 stsp return 1
29 ba97b2d7 2024-03-20 stsp fi
30 ba97b2d7 2024-03-20 stsp
31 ba97b2d7 2024-03-20 stsp got checkout -q $testroot/repo-clone $testroot/wt >/dev/null
32 ba97b2d7 2024-03-20 stsp ret=$?
33 ba97b2d7 2024-03-20 stsp if [ $ret -ne 0 ]; then
34 ba97b2d7 2024-03-20 stsp echo "got checkout failed unexpectedly" >&2
35 ba97b2d7 2024-03-20 stsp test_done "$testroot" 1
36 ba97b2d7 2024-03-20 stsp return 1
37 ba97b2d7 2024-03-20 stsp fi
38 ba97b2d7 2024-03-20 stsp
39 ba97b2d7 2024-03-20 stsp echo "change alpha" > $testroot/wt/alpha
40 ba97b2d7 2024-03-20 stsp (cd $testroot/wt && got commit -m 'make changes' > /dev/null)
41 ba97b2d7 2024-03-20 stsp local commit_id=`git_show_head $testroot/repo-clone`
42 ba97b2d7 2024-03-20 stsp local author_time=`git_show_author_time $testroot/repo-clone`
43 ba97b2d7 2024-03-20 stsp
44 ba97b2d7 2024-03-20 stsp (printf "220\r\n250\r\n250\r\n250\r\n354\r\n250\r\n221\r\n" \
45 ba97b2d7 2024-03-20 stsp | timeout 5 nc -l "$GOTD_TEST_SMTP_PORT" > $testroot/stdout) &
46 ba97b2d7 2024-03-20 stsp
47 ba97b2d7 2024-03-20 stsp got send -b main -q -r $testroot/repo-clone
48 ba97b2d7 2024-03-20 stsp ret=$?
49 ba97b2d7 2024-03-20 stsp if [ $ret -ne 0 ]; then
50 ba97b2d7 2024-03-20 stsp echo "got send failed unexpectedly" >&2
51 ba97b2d7 2024-03-20 stsp test_done "$testroot" "1"
52 ba97b2d7 2024-03-20 stsp return 1
53 ba97b2d7 2024-03-20 stsp fi
54 ba97b2d7 2024-03-20 stsp
55 ba97b2d7 2024-03-20 stsp wait %1 # wait for nc -l
56 ba97b2d7 2024-03-20 stsp
57 ba97b2d7 2024-03-20 stsp HOSTNAME=`hostname`
58 ba97b2d7 2024-03-20 stsp printf "HELO localhost\r\n" > $testroot/stdout.expected
59 ba97b2d7 2024-03-20 stsp printf "MAIL FROM:<${GOTD_USER}@${HOSTNAME}>\r\n" \
60 ba97b2d7 2024-03-20 stsp >> $testroot/stdout.expected
61 ba97b2d7 2024-03-20 stsp printf "RCPT TO:<${GOTD_DEVUSER}>\r\n" >> $testroot/stdout.expected
62 ba97b2d7 2024-03-20 stsp printf "DATA\r\n" >> $testroot/stdout.expected
63 ba97b2d7 2024-03-20 stsp printf "From: ${GOTD_USER}@${HOSTNAME}\r\n" >> $testroot/stdout.expected
64 ba97b2d7 2024-03-20 stsp printf "To: ${GOTD_DEVUSER}\r\n" >> $testroot/stdout.expected
65 ba97b2d7 2024-03-20 stsp printf "Subject: $GOTD_TEST_REPO_NAME: " >> $testroot/stdout.expected
66 ba97b2d7 2024-03-20 stsp printf "${GOTD_DEVUSER} changed refs/heads/main\r\n" \
67 ba97b2d7 2024-03-20 stsp >> $testroot/stdout.expected
68 ba97b2d7 2024-03-20 stsp printf "\r\n" >> $testroot/stdout.expected
69 ba97b2d7 2024-03-20 stsp printf "commit $commit_id\n" >> $testroot/stdout.expected
70 ba97b2d7 2024-03-20 stsp printf "from: $GOT_AUTHOR\n" >> $testroot/stdout.expected
71 ba97b2d7 2024-03-20 stsp d=`date -u -r $author_time +"%a %b %e %X %Y UTC"`
72 ba97b2d7 2024-03-20 stsp printf "date: $d\n" >> $testroot/stdout.expected
73 ba97b2d7 2024-03-20 stsp printf " \n" >> $testroot/stdout.expected
74 ba97b2d7 2024-03-20 stsp printf " make changes\n \n" >> $testroot/stdout.expected
75 ba97b2d7 2024-03-20 stsp printf " M alpha | 1+ 1-\n\n" >> $testroot/stdout.expected
76 ba97b2d7 2024-03-20 stsp printf "1 file changed, 1 insertion(+), 1 deletion(-)\n\n" \
77 ba97b2d7 2024-03-20 stsp >> $testroot/stdout.expected
78 ba97b2d7 2024-03-20 stsp printf "\r\n" >> $testroot/stdout.expected
79 ba97b2d7 2024-03-20 stsp printf ".\r\n" >> $testroot/stdout.expected
80 ba97b2d7 2024-03-20 stsp printf "QUIT\r\n" >> $testroot/stdout.expected
81 ba97b2d7 2024-03-20 stsp
82 ba97b2d7 2024-03-20 stsp grep -v ^Date $testroot/stdout > $testroot/stdout.filtered
83 ba97b2d7 2024-03-20 stsp cmp -s $testroot/stdout.expected $testroot/stdout.filtered
84 ba97b2d7 2024-03-20 stsp ret=$?
85 ba97b2d7 2024-03-20 stsp if [ $ret -ne 0 ]; then
86 ba97b2d7 2024-03-20 stsp diff -u $testroot/stdout.expected $testroot/stdout.filtered
87 ba97b2d7 2024-03-20 stsp test_done "$testroot" "$ret"
88 ba97b2d7 2024-03-20 stsp return 1
89 ba97b2d7 2024-03-20 stsp fi
90 ba97b2d7 2024-03-20 stsp
91 ba97b2d7 2024-03-20 stsp test_done "$testroot" "$ret"
92 ba97b2d7 2024-03-20 stsp }
93 ba97b2d7 2024-03-20 stsp
94 ba97b2d7 2024-03-20 stsp test_many_commits_not_summarized() {
95 ba97b2d7 2024-03-20 stsp local testroot=`test_init many_commits_not_summarized 1`
96 ba97b2d7 2024-03-20 stsp
97 ba97b2d7 2024-03-20 stsp got clone -a -q ${GOTD_TEST_REPO_URL} $testroot/repo-clone
98 ba97b2d7 2024-03-20 stsp ret=$?
99 ba97b2d7 2024-03-20 stsp if [ $ret -ne 0 ]; then
100 ba97b2d7 2024-03-20 stsp echo "got clone failed unexpectedly" >&2
101 ba97b2d7 2024-03-20 stsp test_done "$testroot" 1
102 ba97b2d7 2024-03-20 stsp return 1
103 ba97b2d7 2024-03-20 stsp fi
104 ba97b2d7 2024-03-20 stsp
105 ba97b2d7 2024-03-20 stsp got checkout -q $testroot/repo-clone $testroot/wt >/dev/null
106 ba97b2d7 2024-03-20 stsp ret=$?
107 ba97b2d7 2024-03-20 stsp if [ $ret -ne 0 ]; then
108 ba97b2d7 2024-03-20 stsp echo "got checkout failed unexpectedly" >&2
109 ba97b2d7 2024-03-20 stsp test_done "$testroot" 1
110 ba97b2d7 2024-03-20 stsp return 1
111 ba97b2d7 2024-03-20 stsp fi
112 ba97b2d7 2024-03-20 stsp
113 ba97b2d7 2024-03-20 stsp for i in `seq 1 24`; do
114 ba97b2d7 2024-03-20 stsp echo "alpha $i" > $testroot/wt/alpha
115 ba97b2d7 2024-03-20 stsp (cd $testroot/wt && got commit -m 'make changes' > /dev/null)
116 ba97b2d7 2024-03-20 stsp local commit_id=`git_show_head $testroot/repo-clone`
117 ba97b2d7 2024-03-20 stsp local author_time=`git_show_author_time $testroot/repo-clone`
118 ba97b2d7 2024-03-20 stsp d=`date -u -r $author_time +"%a %b %e %X %Y UTC"`
119 ba97b2d7 2024-03-20 stsp set -- "$@" "$commit_id $d"
120 ba97b2d7 2024-03-20 stsp done
121 ba97b2d7 2024-03-20 stsp
122 ba97b2d7 2024-03-20 stsp (printf "220\r\n250\r\n250\r\n250\r\n354\r\n250\r\n221\r\n" \
123 ba97b2d7 2024-03-20 stsp | timeout 5 nc -l "$GOTD_TEST_SMTP_PORT" > $testroot/stdout) &
124 ba97b2d7 2024-03-20 stsp
125 ba97b2d7 2024-03-20 stsp got send -b main -q -r $testroot/repo-clone
126 ba97b2d7 2024-03-20 stsp ret=$?
127 ba97b2d7 2024-03-20 stsp if [ $ret -ne 0 ]; then
128 ba97b2d7 2024-03-20 stsp echo "got send failed unexpectedly" >&2
129 ba97b2d7 2024-03-20 stsp test_done "$testroot" "1"
130 ba97b2d7 2024-03-20 stsp return 1
131 ba97b2d7 2024-03-20 stsp fi
132 ba97b2d7 2024-03-20 stsp
133 ba97b2d7 2024-03-20 stsp wait %1 # wait for nc -l
134 ba97b2d7 2024-03-20 stsp
135 ba97b2d7 2024-03-20 stsp HOSTNAME=`hostname`
136 ba97b2d7 2024-03-20 stsp printf "HELO localhost\r\n" > $testroot/stdout.expected
137 ba97b2d7 2024-03-20 stsp printf "MAIL FROM:<${GOTD_USER}@${HOSTNAME}>\r\n" \
138 ba97b2d7 2024-03-20 stsp >> $testroot/stdout.expected
139 ba97b2d7 2024-03-20 stsp printf "RCPT TO:<${GOTD_DEVUSER}>\r\n" >> $testroot/stdout.expected
140 ba97b2d7 2024-03-20 stsp printf "DATA\r\n" >> $testroot/stdout.expected
141 ba97b2d7 2024-03-20 stsp printf "From: ${GOTD_USER}@${HOSTNAME}\r\n" \
142 ba97b2d7 2024-03-20 stsp >> $testroot/stdout.expected
143 ba97b2d7 2024-03-20 stsp printf "To: ${GOTD_DEVUSER}\r\n" >> $testroot/stdout.expected
144 ba97b2d7 2024-03-20 stsp printf "Subject: $GOTD_TEST_REPO_NAME: " >> $testroot/stdout.expected
145 ba97b2d7 2024-03-20 stsp printf "${GOTD_DEVUSER} changed refs/heads/main\r\n" \
146 ba97b2d7 2024-03-20 stsp >> $testroot/stdout.expected
147 ba97b2d7 2024-03-20 stsp printf "\r\n" >> $testroot/stdout.expected
148 ba97b2d7 2024-03-20 stsp for i in `seq 1 24`; do
149 ba97b2d7 2024-03-20 stsp s=`pop_idx $i "$@"`
150 ba97b2d7 2024-03-20 stsp commit_id=$(echo $s | cut -d' ' -f1)
151 ba97b2d7 2024-03-20 stsp commit_time=$(echo $s | sed -e "s/^$commit_id //g")
152 ba97b2d7 2024-03-20 stsp printf "commit $commit_id\n" >> $testroot/stdout.expected
153 ba97b2d7 2024-03-20 stsp printf "from: $GOT_AUTHOR\n" >> $testroot/stdout.expected
154 ba97b2d7 2024-03-20 stsp printf "date: $commit_time\n" >> $testroot/stdout.expected
155 ba97b2d7 2024-03-20 stsp printf " \n" >> $testroot/stdout.expected
156 ba97b2d7 2024-03-20 stsp printf " make changes\n \n" >> $testroot/stdout.expected
157 ba97b2d7 2024-03-20 stsp printf " M alpha | 1+ 1-\n\n" \
158 ba97b2d7 2024-03-20 stsp >> $testroot/stdout.expected
159 ba97b2d7 2024-03-20 stsp printf "1 file changed, 1 insertion(+), 1 deletion(-)\n\n" \
160 ba97b2d7 2024-03-20 stsp >> $testroot/stdout.expected
161 ba97b2d7 2024-03-20 stsp done
162 ba97b2d7 2024-03-20 stsp printf "\r\n" >> $testroot/stdout.expected
163 ba97b2d7 2024-03-20 stsp printf ".\r\n" >> $testroot/stdout.expected
164 ba97b2d7 2024-03-20 stsp printf "QUIT\r\n" >> $testroot/stdout.expected
165 ba97b2d7 2024-03-20 stsp
166 ba97b2d7 2024-03-20 stsp grep -v ^Date $testroot/stdout > $testroot/stdout.filtered
167 ba97b2d7 2024-03-20 stsp cmp -s $testroot/stdout.expected $testroot/stdout.filtered
168 ba97b2d7 2024-03-20 stsp ret=$?
169 ba97b2d7 2024-03-20 stsp if [ $ret -ne 0 ]; then
170 ba97b2d7 2024-03-20 stsp diff -u $testroot/stdout.expected $testroot/stdout.filtered
171 ba97b2d7 2024-03-20 stsp test_done "$testroot" "$ret"
172 ba97b2d7 2024-03-20 stsp return 1
173 ba97b2d7 2024-03-20 stsp fi
174 ba97b2d7 2024-03-20 stsp
175 ba97b2d7 2024-03-20 stsp test_done "$testroot" "$ret"
176 ba97b2d7 2024-03-20 stsp }
177 ba97b2d7 2024-03-20 stsp
178 ba97b2d7 2024-03-20 stsp test_many_commits_summarized() {
179 ba97b2d7 2024-03-20 stsp local testroot=`test_init many_commits_summarized 1`
180 ba97b2d7 2024-03-20 stsp
181 ba97b2d7 2024-03-20 stsp got clone -a -q ${GOTD_TEST_REPO_URL} $testroot/repo-clone
182 ba97b2d7 2024-03-20 stsp ret=$?
183 ba97b2d7 2024-03-20 stsp if [ $ret -ne 0 ]; then
184 ba97b2d7 2024-03-20 stsp echo "got clone failed unexpectedly" >&2
185 ba97b2d7 2024-03-20 stsp test_done "$testroot" 1
186 ba97b2d7 2024-03-20 stsp return 1
187 ba97b2d7 2024-03-20 stsp fi
188 ba97b2d7 2024-03-20 stsp
189 ba97b2d7 2024-03-20 stsp got checkout -q $testroot/repo-clone $testroot/wt >/dev/null
190 ba97b2d7 2024-03-20 stsp ret=$?
191 ba97b2d7 2024-03-20 stsp if [ $ret -ne 0 ]; then
192 ba97b2d7 2024-03-20 stsp echo "got checkout failed unexpectedly" >&2
193 ba97b2d7 2024-03-20 stsp test_done "$testroot" 1
194 ba97b2d7 2024-03-20 stsp return 1
195 ba97b2d7 2024-03-20 stsp fi
196 ba97b2d7 2024-03-20 stsp
197 ba97b2d7 2024-03-20 stsp for i in `seq 1 51`; do
198 ba97b2d7 2024-03-20 stsp echo "alpha $i" > $testroot/wt/alpha
199 ba97b2d7 2024-03-20 stsp (cd $testroot/wt && got commit -m 'make changes' > /dev/null)
200 ba97b2d7 2024-03-20 stsp local commit_id=`git_show_head $testroot/repo-clone`
201 ba97b2d7 2024-03-20 stsp local short_commit_id=`trim_obj_id 33 $commit_id`
202 ba97b2d7 2024-03-20 stsp local author_time=`git_show_author_time $testroot/repo-clone`
203 ba97b2d7 2024-03-20 stsp d=`date -u -r $author_time +"%G-%m-%d"`
204 ba97b2d7 2024-03-20 stsp set -- "$@" "$short_commit_id $d"
205 ba97b2d7 2024-03-20 stsp done
206 ba97b2d7 2024-03-20 stsp
207 ba97b2d7 2024-03-20 stsp (printf "220\r\n250\r\n250\r\n250\r\n354\r\n250\r\n221\r\n" \
208 ba97b2d7 2024-03-20 stsp | timeout 5 nc -l "$GOTD_TEST_SMTP_PORT" > $testroot/stdout) &
209 ba97b2d7 2024-03-20 stsp
210 ba97b2d7 2024-03-20 stsp got send -b main -q -r $testroot/repo-clone
211 ba97b2d7 2024-03-20 stsp ret=$?
212 ba97b2d7 2024-03-20 stsp if [ $ret -ne 0 ]; then
213 ba97b2d7 2024-03-20 stsp echo "got send failed unexpectedly" >&2
214 ba97b2d7 2024-03-20 stsp test_done "$testroot" "1"
215 ba97b2d7 2024-03-20 stsp return 1
216 ba97b2d7 2024-03-20 stsp fi
217 ba97b2d7 2024-03-20 stsp
218 ba97b2d7 2024-03-20 stsp wait %1 # wait for nc -l
219 ba97b2d7 2024-03-20 stsp
220 ba97b2d7 2024-03-20 stsp HOSTNAME=`hostname`
221 ba97b2d7 2024-03-20 stsp printf "HELO localhost\r\n" > $testroot/stdout.expected
222 ba97b2d7 2024-03-20 stsp printf "MAIL FROM:<${GOTD_USER}@${HOSTNAME}>\r\n" \
223 ba97b2d7 2024-03-20 stsp >> $testroot/stdout.expected
224 ba97b2d7 2024-03-20 stsp printf "RCPT TO:<${GOTD_DEVUSER}>\r\n" >> $testroot/stdout.expected
225 ba97b2d7 2024-03-20 stsp printf "DATA\r\n" >> $testroot/stdout.expected
226 ba97b2d7 2024-03-20 stsp printf "From: ${GOTD_USER}@${HOSTNAME}\r\n" \
227 ba97b2d7 2024-03-20 stsp >> $testroot/stdout.expected
228 ba97b2d7 2024-03-20 stsp printf "To: ${GOTD_DEVUSER}\r\n" >> $testroot/stdout.expected
229 ba97b2d7 2024-03-20 stsp printf "Subject: $GOTD_TEST_REPO_NAME: " >> $testroot/stdout.expected
230 ba97b2d7 2024-03-20 stsp printf "${GOTD_DEVUSER} changed refs/heads/main\r\n" \
231 ba97b2d7 2024-03-20 stsp >> $testroot/stdout.expected
232 ba97b2d7 2024-03-20 stsp printf "\r\n" >> $testroot/stdout.expected
233 ba97b2d7 2024-03-20 stsp for i in `seq 1 51`; do
234 ba97b2d7 2024-03-20 stsp s=`pop_idx $i "$@"`
235 ba97b2d7 2024-03-20 stsp commit_id=$(echo $s | cut -d' ' -f1)
236 ba97b2d7 2024-03-20 stsp commit_time=$(echo $s | sed -e "s/^$commit_id //g")
237 ba97b2d7 2024-03-20 stsp printf "$commit_time $commit_id $GOT_AUTHOR_8 make changes\n" \
238 ba97b2d7 2024-03-20 stsp >> $testroot/stdout.expected
239 ba97b2d7 2024-03-20 stsp done
240 ba97b2d7 2024-03-20 stsp printf "\r\n" >> $testroot/stdout.expected
241 ba97b2d7 2024-03-20 stsp printf ".\r\n" >> $testroot/stdout.expected
242 ba97b2d7 2024-03-20 stsp printf "QUIT\r\n" >> $testroot/stdout.expected
243 ba97b2d7 2024-03-20 stsp
244 ba97b2d7 2024-03-20 stsp grep -v ^Date $testroot/stdout > $testroot/stdout.filtered
245 ba97b2d7 2024-03-20 stsp cmp -s $testroot/stdout.expected $testroot/stdout.filtered
246 ba97b2d7 2024-03-20 stsp ret=$?
247 ba97b2d7 2024-03-20 stsp if [ $ret -ne 0 ]; then
248 ba97b2d7 2024-03-20 stsp diff -u $testroot/stdout.expected $testroot/stdout.filtered
249 ba97b2d7 2024-03-20 stsp test_done "$testroot" "$ret"
250 ba97b2d7 2024-03-20 stsp return 1
251 ba97b2d7 2024-03-20 stsp fi
252 ba97b2d7 2024-03-20 stsp
253 ba97b2d7 2024-03-20 stsp test_done "$testroot" "$ret"
254 ba97b2d7 2024-03-20 stsp }
255 ba97b2d7 2024-03-20 stsp
256 ba97b2d7 2024-03-20 stsp test_branch_created() {
257 ba97b2d7 2024-03-20 stsp local testroot=`test_init branch_created 1`
258 ba97b2d7 2024-03-20 stsp
259 ba97b2d7 2024-03-20 stsp got clone -a -q ${GOTD_TEST_REPO_URL} $testroot/repo-clone
260 ba97b2d7 2024-03-20 stsp ret=$?
261 ba97b2d7 2024-03-20 stsp if [ $ret -ne 0 ]; then
262 ba97b2d7 2024-03-20 stsp echo "got clone failed unexpectedly" >&2
263 ba97b2d7 2024-03-20 stsp test_done "$testroot" 1
264 ba97b2d7 2024-03-20 stsp return 1
265 ba97b2d7 2024-03-20 stsp fi
266 ba97b2d7 2024-03-20 stsp
267 ba97b2d7 2024-03-20 stsp got checkout -q $testroot/repo-clone $testroot/wt >/dev/null
268 ba97b2d7 2024-03-20 stsp ret=$?
269 ba97b2d7 2024-03-20 stsp if [ $ret -ne 0 ]; then
270 ba97b2d7 2024-03-20 stsp echo "got checkout failed unexpectedly" >&2
271 ba97b2d7 2024-03-20 stsp test_done "$testroot" 1
272 ba97b2d7 2024-03-20 stsp return 1
273 ba97b2d7 2024-03-20 stsp fi
274 ba97b2d7 2024-03-20 stsp
275 ba97b2d7 2024-03-20 stsp (cd $testroot/wt && got branch newbranch > /dev/null)
276 ba97b2d7 2024-03-20 stsp
277 ba97b2d7 2024-03-20 stsp echo "change alpha on branch" > $testroot/wt/alpha
278 ba97b2d7 2024-03-20 stsp (cd $testroot/wt && got commit -m 'newbranch' > /dev/null)
279 ba97b2d7 2024-03-20 stsp local commit_id=`git_show_branch_head $testroot/repo-clone newbranch`
280 ba97b2d7 2024-03-20 stsp local author_time=`git_show_author_time $testroot/repo-clone $commit_id`
281 ba97b2d7 2024-03-20 stsp
282 ba97b2d7 2024-03-20 stsp (printf "220\r\n250\r\n250\r\n250\r\n354\r\n250\r\n221\r\n" \
283 ba97b2d7 2024-03-20 stsp | timeout 5 nc -l "$GOTD_TEST_SMTP_PORT" > $testroot/stdout) &
284 ba97b2d7 2024-03-20 stsp
285 ba97b2d7 2024-03-20 stsp got send -b newbranch -q -r $testroot/repo-clone
286 ba97b2d7 2024-03-20 stsp ret=$?
287 ba97b2d7 2024-03-20 stsp if [ $ret -ne 0 ]; then
288 ba97b2d7 2024-03-20 stsp echo "got send failed unexpectedly" >&2
289 ba97b2d7 2024-03-20 stsp test_done "$testroot" "1"
290 ba97b2d7 2024-03-20 stsp return 1
291 ba97b2d7 2024-03-20 stsp fi
292 ba97b2d7 2024-03-20 stsp
293 ba97b2d7 2024-03-20 stsp wait %1 # wait for nc -l
294 ba97b2d7 2024-03-20 stsp
295 ba97b2d7 2024-03-20 stsp HOSTNAME=`hostname`
296 ba97b2d7 2024-03-20 stsp printf "HELO localhost\r\n" > $testroot/stdout.expected
297 ba97b2d7 2024-03-20 stsp printf "MAIL FROM:<${GOTD_USER}@${HOSTNAME}>\r\n" \
298 ba97b2d7 2024-03-20 stsp >> $testroot/stdout.expected
299 ba97b2d7 2024-03-20 stsp printf "RCPT TO:<${GOTD_DEVUSER}>\r\n" >> $testroot/stdout.expected
300 ba97b2d7 2024-03-20 stsp printf "DATA\r\n" >> $testroot/stdout.expected
301 ba97b2d7 2024-03-20 stsp printf "From: ${GOTD_USER}@${HOSTNAME}\r\n" >> $testroot/stdout.expected
302 ba97b2d7 2024-03-20 stsp printf "To: ${GOTD_DEVUSER}\r\n" >> $testroot/stdout.expected
303 ba97b2d7 2024-03-20 stsp printf "Subject: $GOTD_TEST_REPO_NAME: " >> $testroot/stdout.expected
304 ba97b2d7 2024-03-20 stsp printf "${GOTD_DEVUSER} created refs/heads/newbranch\r\n" \
305 ba97b2d7 2024-03-20 stsp >> $testroot/stdout.expected
306 ba97b2d7 2024-03-20 stsp printf "\r\n" >> $testroot/stdout.expected
307 ba97b2d7 2024-03-20 stsp printf "commit $commit_id\n" >> $testroot/stdout.expected
308 ba97b2d7 2024-03-20 stsp printf "from: $GOT_AUTHOR\n" >> $testroot/stdout.expected
309 ba97b2d7 2024-03-20 stsp d=`date -u -r $author_time +"%a %b %e %X %Y UTC"`
310 ba97b2d7 2024-03-20 stsp printf "date: $d\n" >> $testroot/stdout.expected
311 ba97b2d7 2024-03-20 stsp printf " \n" >> $testroot/stdout.expected
312 ba97b2d7 2024-03-20 stsp printf " newbranch\n \n" >> $testroot/stdout.expected
313 ba97b2d7 2024-03-20 stsp printf " M alpha | 1+ 1-\n\n" >> $testroot/stdout.expected
314 ba97b2d7 2024-03-20 stsp printf "1 file changed, 1 insertion(+), 1 deletion(-)\n\n" \
315 ba97b2d7 2024-03-20 stsp >> $testroot/stdout.expected
316 ba97b2d7 2024-03-20 stsp printf "\r\n" >> $testroot/stdout.expected
317 ba97b2d7 2024-03-20 stsp printf ".\r\n" >> $testroot/stdout.expected
318 ba97b2d7 2024-03-20 stsp printf "QUIT\r\n" >> $testroot/stdout.expected
319 ba97b2d7 2024-03-20 stsp
320 ba97b2d7 2024-03-20 stsp grep -v ^Date $testroot/stdout > $testroot/stdout.filtered
321 ba97b2d7 2024-03-20 stsp cmp -s $testroot/stdout.expected $testroot/stdout.filtered
322 ba97b2d7 2024-03-20 stsp ret=$?
323 ba97b2d7 2024-03-20 stsp if [ $ret -ne 0 ]; then
324 ba97b2d7 2024-03-20 stsp diff -u $testroot/stdout.expected $testroot/stdout.filtered
325 ba97b2d7 2024-03-20 stsp test_done "$testroot" "$ret"
326 ba97b2d7 2024-03-20 stsp return 1
327 ba97b2d7 2024-03-20 stsp fi
328 ba97b2d7 2024-03-20 stsp
329 ba97b2d7 2024-03-20 stsp test_done "$testroot" "$ret"
330 ba97b2d7 2024-03-20 stsp }
331 ba97b2d7 2024-03-20 stsp
332 ba97b2d7 2024-03-20 stsp test_branch_removed() {
333 ba97b2d7 2024-03-20 stsp local testroot=`test_init branch_removed 1`
334 ba97b2d7 2024-03-20 stsp
335 ba97b2d7 2024-03-20 stsp got clone -a -q ${GOTD_TEST_REPO_URL} $testroot/repo-clone
336 ba97b2d7 2024-03-20 stsp ret=$?
337 ba97b2d7 2024-03-20 stsp if [ $ret -ne 0 ]; then
338 ba97b2d7 2024-03-20 stsp echo "got clone failed unexpectedly" >&2
339 ba97b2d7 2024-03-20 stsp test_done "$testroot" 1
340 ba97b2d7 2024-03-20 stsp return 1
341 ba97b2d7 2024-03-20 stsp fi
342 ba97b2d7 2024-03-20 stsp
343 ba97b2d7 2024-03-20 stsp (printf "220\r\n250\r\n250\r\n250\r\n354\r\n250\r\n221\r\n" \
344 ba97b2d7 2024-03-20 stsp | timeout 5 nc -l "$GOTD_TEST_SMTP_PORT" > $testroot/stdout) &
345 ba97b2d7 2024-03-20 stsp
346 ba97b2d7 2024-03-20 stsp local commit_id=`git_show_branch_head $testroot/repo-clone newbranch`
347 ba97b2d7 2024-03-20 stsp
348 ba97b2d7 2024-03-20 stsp got send -d newbranch -q -r $testroot/repo-clone
349 ba97b2d7 2024-03-20 stsp ret=$?
350 ba97b2d7 2024-03-20 stsp if [ $ret -ne 0 ]; then
351 ba97b2d7 2024-03-20 stsp echo "got send failed unexpectedly" >&2
352 ba97b2d7 2024-03-20 stsp test_done "$testroot" "1"
353 ba97b2d7 2024-03-20 stsp return 1
354 ba97b2d7 2024-03-20 stsp fi
355 ba97b2d7 2024-03-20 stsp
356 ba97b2d7 2024-03-20 stsp wait %1 # wait for nc -l
357 ba97b2d7 2024-03-20 stsp
358 ba97b2d7 2024-03-20 stsp HOSTNAME=`hostname`
359 ba97b2d7 2024-03-20 stsp printf "HELO localhost\r\n" > $testroot/stdout.expected
360 ba97b2d7 2024-03-20 stsp printf "MAIL FROM:<${GOTD_USER}@${HOSTNAME}>\r\n" \
361 ba97b2d7 2024-03-20 stsp >> $testroot/stdout.expected
362 ba97b2d7 2024-03-20 stsp printf "RCPT TO:<${GOTD_DEVUSER}>\r\n" >> $testroot/stdout.expected
363 ba97b2d7 2024-03-20 stsp printf "DATA\r\n" >> $testroot/stdout.expected
364 ba97b2d7 2024-03-20 stsp printf "From: ${GOTD_USER}@${HOSTNAME}\r\n" >> $testroot/stdout.expected
365 ba97b2d7 2024-03-20 stsp printf "To: ${GOTD_DEVUSER}\r\n" >> $testroot/stdout.expected
366 ba97b2d7 2024-03-20 stsp printf "Subject: $GOTD_TEST_REPO_NAME: " >> $testroot/stdout.expected
367 ba97b2d7 2024-03-20 stsp printf "${GOTD_DEVUSER} removed refs/heads/newbranch\r\n" \
368 ba97b2d7 2024-03-20 stsp >> $testroot/stdout.expected
369 ba97b2d7 2024-03-20 stsp printf "\r\n" >> $testroot/stdout.expected
370 ba97b2d7 2024-03-20 stsp printf "Removed refs/heads/newbranch: $commit_id\n" \
371 ba97b2d7 2024-03-20 stsp >> $testroot/stdout.expected
372 ba97b2d7 2024-03-20 stsp printf "\r\n" >> $testroot/stdout.expected
373 ba97b2d7 2024-03-20 stsp printf ".\r\n" >> $testroot/stdout.expected
374 ba97b2d7 2024-03-20 stsp printf "QUIT\r\n" >> $testroot/stdout.expected
375 ba97b2d7 2024-03-20 stsp
376 ba97b2d7 2024-03-20 stsp grep -v ^Date $testroot/stdout > $testroot/stdout.filtered
377 ba97b2d7 2024-03-20 stsp cmp -s $testroot/stdout.expected $testroot/stdout.filtered
378 ba97b2d7 2024-03-20 stsp ret=$?
379 ba97b2d7 2024-03-20 stsp if [ $ret -ne 0 ]; then
380 ba97b2d7 2024-03-20 stsp diff -u $testroot/stdout.expected $testroot/stdout.filtered
381 ba97b2d7 2024-03-20 stsp test_done "$testroot" "$ret"
382 ba97b2d7 2024-03-20 stsp return 1
383 ba97b2d7 2024-03-20 stsp fi
384 ba97b2d7 2024-03-20 stsp
385 ba97b2d7 2024-03-20 stsp test_done "$testroot" "$ret"
386 ba97b2d7 2024-03-20 stsp }
387 ba97b2d7 2024-03-20 stsp
388 ba97b2d7 2024-03-20 stsp test_tag_created() {
389 ba97b2d7 2024-03-20 stsp local testroot=`test_init tag_created 1`
390 ba97b2d7 2024-03-20 stsp
391 ba97b2d7 2024-03-20 stsp got clone -a -q ${GOTD_TEST_REPO_URL} $testroot/repo-clone
392 ba97b2d7 2024-03-20 stsp ret=$?
393 ba97b2d7 2024-03-20 stsp if [ $ret -ne 0 ]; then
394 ba97b2d7 2024-03-20 stsp echo "got clone failed unexpectedly" >&2
395 ba97b2d7 2024-03-20 stsp test_done "$testroot" 1
396 ba97b2d7 2024-03-20 stsp return 1
397 ba97b2d7 2024-03-20 stsp fi
398 ba97b2d7 2024-03-20 stsp
399 ba97b2d7 2024-03-20 stsp got tag -r $testroot/repo-clone -m "new tag" 1.0 > /dev/null
400 ba97b2d7 2024-03-20 stsp local commit_id=`git_show_head $testroot/repo-clone`
401 ba97b2d7 2024-03-20 stsp local tagger_time=`git_show_tagger_time $testroot/repo-clone 1.0`
402 ba97b2d7 2024-03-20 stsp
403 ba97b2d7 2024-03-20 stsp (printf "220\r\n250\r\n250\r\n250\r\n354\r\n250\r\n221\r\n" \
404 ba97b2d7 2024-03-20 stsp | timeout 5 nc -l "$GOTD_TEST_SMTP_PORT" > $testroot/stdout) &
405 ba97b2d7 2024-03-20 stsp
406 ba97b2d7 2024-03-20 stsp got send -t 1.0 -q -r $testroot/repo-clone
407 ba97b2d7 2024-03-20 stsp ret=$?
408 ba97b2d7 2024-03-20 stsp if [ $ret -ne 0 ]; then
409 ba97b2d7 2024-03-20 stsp echo "got send failed unexpectedly" >&2
410 ba97b2d7 2024-03-20 stsp test_done "$testroot" "1"
411 ba97b2d7 2024-03-20 stsp return 1
412 ba97b2d7 2024-03-20 stsp fi
413 ba97b2d7 2024-03-20 stsp
414 ba97b2d7 2024-03-20 stsp wait %1 # wait for nc -l
415 ba97b2d7 2024-03-20 stsp
416 ba97b2d7 2024-03-20 stsp HOSTNAME=`hostname`
417 ba97b2d7 2024-03-20 stsp printf "HELO localhost\r\n" > $testroot/stdout.expected
418 ba97b2d7 2024-03-20 stsp printf "MAIL FROM:<${GOTD_USER}@${HOSTNAME}>\r\n" \
419 ba97b2d7 2024-03-20 stsp >> $testroot/stdout.expected
420 ba97b2d7 2024-03-20 stsp printf "RCPT TO:<${GOTD_DEVUSER}>\r\n" >> $testroot/stdout.expected
421 ba97b2d7 2024-03-20 stsp printf "DATA\r\n" >> $testroot/stdout.expected
422 ba97b2d7 2024-03-20 stsp printf "From: ${GOTD_USER}@${HOSTNAME}\r\n" >> $testroot/stdout.expected
423 ba97b2d7 2024-03-20 stsp printf "To: ${GOTD_DEVUSER}\r\n" >> $testroot/stdout.expected
424 ba97b2d7 2024-03-20 stsp printf "Subject: $GOTD_TEST_REPO_NAME: " >> $testroot/stdout.expected
425 ba97b2d7 2024-03-20 stsp printf "${GOTD_DEVUSER} created refs/tags/1.0\r\n" \
426 ba97b2d7 2024-03-20 stsp >> $testroot/stdout.expected
427 ba97b2d7 2024-03-20 stsp printf "\r\n" >> $testroot/stdout.expected
428 ba97b2d7 2024-03-20 stsp printf "tag refs/tags/1.0\n" >> $testroot/stdout.expected
429 ba97b2d7 2024-03-20 stsp printf "from: $GOT_AUTHOR\n" >> $testroot/stdout.expected
430 ba97b2d7 2024-03-20 stsp d=`date -u -r $tagger_time +"%a %b %e %X %Y UTC"`
431 ba97b2d7 2024-03-20 stsp printf "date: $d\n" >> $testroot/stdout.expected
432 ba97b2d7 2024-03-20 stsp printf "object: commit $commit_id\n" >> $testroot/stdout.expected
433 ba97b2d7 2024-03-20 stsp printf " \n" >> $testroot/stdout.expected
434 ba97b2d7 2024-03-20 stsp printf " new tag\n \n" >> $testroot/stdout.expected
435 ba97b2d7 2024-03-20 stsp printf "\r\n" >> $testroot/stdout.expected
436 ba97b2d7 2024-03-20 stsp printf ".\r\n" >> $testroot/stdout.expected
437 ba97b2d7 2024-03-20 stsp printf "QUIT\r\n" >> $testroot/stdout.expected
438 ba97b2d7 2024-03-20 stsp
439 ba97b2d7 2024-03-20 stsp grep -v ^Date $testroot/stdout > $testroot/stdout.filtered
440 ba97b2d7 2024-03-20 stsp cmp -s $testroot/stdout.expected $testroot/stdout.filtered
441 ba97b2d7 2024-03-20 stsp ret=$?
442 ba97b2d7 2024-03-20 stsp if [ $ret -ne 0 ]; then
443 ba97b2d7 2024-03-20 stsp diff -u $testroot/stdout.expected $testroot/stdout.filtered
444 ba97b2d7 2024-03-20 stsp test_done "$testroot" "$ret"
445 ba97b2d7 2024-03-20 stsp return 1
446 ba97b2d7 2024-03-20 stsp fi
447 ba97b2d7 2024-03-20 stsp
448 ba97b2d7 2024-03-20 stsp test_done "$testroot" "$ret"
449 ba97b2d7 2024-03-20 stsp }
450 ba97b2d7 2024-03-20 stsp
451 ba97b2d7 2024-03-20 stsp test_tag_changed() {
452 ba97b2d7 2024-03-20 stsp local testroot=`test_init tag_changed 1`
453 ba97b2d7 2024-03-20 stsp
454 ba97b2d7 2024-03-20 stsp got clone -a -q ${GOTD_TEST_REPO_URL} $testroot/repo-clone
455 ba97b2d7 2024-03-20 stsp ret=$?
456 ba97b2d7 2024-03-20 stsp if [ $ret -ne 0 ]; then
457 ba97b2d7 2024-03-20 stsp echo "got clone failed unexpectedly" >&2
458 ba97b2d7 2024-03-20 stsp test_done "$testroot" 1
459 ba97b2d7 2024-03-20 stsp return 1
460 ba97b2d7 2024-03-20 stsp fi
461 ba97b2d7 2024-03-20 stsp
462 ba97b2d7 2024-03-20 stsp got checkout -q $testroot/repo-clone $testroot/wt >/dev/null
463 ba97b2d7 2024-03-20 stsp ret=$?
464 ba97b2d7 2024-03-20 stsp if [ $ret -ne 0 ]; then
465 ba97b2d7 2024-03-20 stsp echo "got checkout failed unexpectedly" >&2
466 ba97b2d7 2024-03-20 stsp test_done "$testroot" 1
467 ba97b2d7 2024-03-20 stsp return 1
468 ba97b2d7 2024-03-20 stsp fi
469 ba97b2d7 2024-03-20 stsp
470 ba97b2d7 2024-03-20 stsp echo "change alpha" > $testroot/wt/alpha
471 ba97b2d7 2024-03-20 stsp (cd $testroot/wt && got commit -m 'make changes' > /dev/null)
472 ba97b2d7 2024-03-20 stsp local commit_id=`git_show_head $testroot/repo-clone`
473 ba97b2d7 2024-03-20 stsp
474 ba97b2d7 2024-03-20 stsp got ref -r $testroot/repo-clone -d refs/tags/1.0 >/dev/null
475 ba97b2d7 2024-03-20 stsp got tag -r $testroot/repo-clone -m "new tag" 1.0 > /dev/null
476 ba97b2d7 2024-03-20 stsp local tagger_time=`git_show_tagger_time $testroot/repo-clone 1.0`
477 ba97b2d7 2024-03-20 stsp
478 ba97b2d7 2024-03-20 stsp (printf "220\r\n250\r\n250\r\n250\r\n354\r\n250\r\n221\r\n" \
479 ba97b2d7 2024-03-20 stsp | timeout 5 nc -l "$GOTD_TEST_SMTP_PORT" > $testroot/stdout) &
480 ba97b2d7 2024-03-20 stsp
481 ba97b2d7 2024-03-20 stsp got send -f -t 1.0 -q -r $testroot/repo-clone
482 ba97b2d7 2024-03-20 stsp ret=$?
483 ba97b2d7 2024-03-20 stsp if [ $ret -ne 0 ]; then
484 ba97b2d7 2024-03-20 stsp echo "got send failed unexpectedly" >&2
485 ba97b2d7 2024-03-20 stsp test_done "$testroot" "1"
486 ba97b2d7 2024-03-20 stsp return 1
487 ba97b2d7 2024-03-20 stsp fi
488 ba97b2d7 2024-03-20 stsp
489 ba97b2d7 2024-03-20 stsp wait %1 # wait for nc -l
490 ba97b2d7 2024-03-20 stsp
491 ba97b2d7 2024-03-20 stsp HOSTNAME=`hostname`
492 ba97b2d7 2024-03-20 stsp printf "HELO localhost\r\n" > $testroot/stdout.expected
493 ba97b2d7 2024-03-20 stsp printf "MAIL FROM:<${GOTD_USER}@${HOSTNAME}>\r\n" \
494 ba97b2d7 2024-03-20 stsp >> $testroot/stdout.expected
495 ba97b2d7 2024-03-20 stsp printf "RCPT TO:<${GOTD_DEVUSER}>\r\n" >> $testroot/stdout.expected
496 ba97b2d7 2024-03-20 stsp printf "DATA\r\n" >> $testroot/stdout.expected
497 ba97b2d7 2024-03-20 stsp printf "From: ${GOTD_USER}@${HOSTNAME}\r\n" >> $testroot/stdout.expected
498 ba97b2d7 2024-03-20 stsp printf "To: ${GOTD_DEVUSER}\r\n" >> $testroot/stdout.expected
499 ba97b2d7 2024-03-20 stsp printf "Subject: $GOTD_TEST_REPO_NAME: " >> $testroot/stdout.expected
500 ba97b2d7 2024-03-20 stsp printf "${GOTD_DEVUSER} changed refs/tags/1.0\r\n" \
501 ba97b2d7 2024-03-20 stsp >> $testroot/stdout.expected
502 ba97b2d7 2024-03-20 stsp printf "\r\n" >> $testroot/stdout.expected
503 ba97b2d7 2024-03-20 stsp printf "tag refs/tags/1.0\n" >> $testroot/stdout.expected
504 ba97b2d7 2024-03-20 stsp printf "from: $GOT_AUTHOR\n" >> $testroot/stdout.expected
505 ba97b2d7 2024-03-20 stsp d=`date -u -r $tagger_time +"%a %b %e %X %Y UTC"`
506 ba97b2d7 2024-03-20 stsp printf "date: $d\n" >> $testroot/stdout.expected
507 ba97b2d7 2024-03-20 stsp printf "object: commit $commit_id\n" >> $testroot/stdout.expected
508 ba97b2d7 2024-03-20 stsp printf " \n" >> $testroot/stdout.expected
509 ba97b2d7 2024-03-20 stsp printf " new tag\n \n" >> $testroot/stdout.expected
510 ba97b2d7 2024-03-20 stsp printf "\r\n" >> $testroot/stdout.expected
511 ba97b2d7 2024-03-20 stsp printf ".\r\n" >> $testroot/stdout.expected
512 ba97b2d7 2024-03-20 stsp printf "QUIT\r\n" >> $testroot/stdout.expected
513 ba97b2d7 2024-03-20 stsp
514 ba97b2d7 2024-03-20 stsp grep -v ^Date $testroot/stdout > $testroot/stdout.filtered
515 ba97b2d7 2024-03-20 stsp cmp -s $testroot/stdout.expected $testroot/stdout.filtered
516 ba97b2d7 2024-03-20 stsp ret=$?
517 ba97b2d7 2024-03-20 stsp if [ $ret -ne 0 ]; then
518 ba97b2d7 2024-03-20 stsp diff -u $testroot/stdout.expected $testroot/stdout.filtered
519 ba97b2d7 2024-03-20 stsp test_done "$testroot" "$ret"
520 ba97b2d7 2024-03-20 stsp return 1
521 ba97b2d7 2024-03-20 stsp fi
522 ba97b2d7 2024-03-20 stsp
523 ba97b2d7 2024-03-20 stsp test_done "$testroot" "$ret"
524 ba97b2d7 2024-03-20 stsp }
525 ba97b2d7 2024-03-20 stsp
526 ba97b2d7 2024-03-20 stsp test_parseargs "$@"
527 ba97b2d7 2024-03-20 stsp run_test test_file_changed
528 ba97b2d7 2024-03-20 stsp run_test test_many_commits_not_summarized
529 ba97b2d7 2024-03-20 stsp run_test test_many_commits_summarized
530 ba97b2d7 2024-03-20 stsp run_test test_branch_created
531 ba97b2d7 2024-03-20 stsp run_test test_branch_removed
532 ba97b2d7 2024-03-20 stsp run_test test_tag_created
533 ba97b2d7 2024-03-20 stsp run_test test_tag_changed