forked from dspinellis/git-issue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.sh
executable file
·219 lines (192 loc) · 5 KB
/
test.sh
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
#!/bin/sh
#
# (C) Copyright 2016 Diomidis Spinellis
#
# This file is part of gi, the Git-based issue management system.
#
# gi is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# gi is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with gi. If not, see <http://www.gnu.org/licenses/>.
#
# Display a test's result
message()
{
local okfail
okfail=$1
shift
if [ "$1" ] ; then
echo "$okfail $ntest - $*"
else
echo "$okfail $ntest - $testname"
fi |
sed "s/$gi_re/gi/"
}
ok()
{
message ok $*
}
fail()
{
message fail $*
}
# Test specified command, which should succeed
try()
{
ntest=$(expr $ntest + 1)
$* >/dev/null 2>&1
cd .issues
if git status | grep 'not staged' >/dev/null ; then
fail staging $*
else
ok staging $*
fi
cd ..
start
if [ $? = 0 ] ; then
ok $*
else
fail $*
fi
}
# Test specified command, which should fail
ntry()
{
ntest=$(expr $ntest + 1)
$* >/dev/null 2>&1
if [ $? != 0 ] ; then
ok "fail $*"
else
fail "fail $*"
fi
}
# grep for the specified pattern, which should be found
# Does not increment ntest, because it is executed as a separate process
try_grep()
{
grep "$1" >/dev/null 2>&1
if [ $? = 0 ] ; then
ok "grep $1"
else
fail "grep $1"
fi
}
# grep for the specified pattern, which should not be found
# Does not increment ntest, because it is executed as a separate process
try_ngrep()
{
grep "$1" >/dev/null 2>&1
if [ $? != 0 ] ; then
ok "not grep $1"
else
fail "not grep $1"
fi
}
# Start a new test with the specified description
start()
{
ntest=$(expr $ntest + 1)
testname="$@"
}
echo 'TAP version 13'
ntest=0
gi=../git-issue.sh
gi_re=$(echo $gi | sed 's/[^0-9A-Za-z]/\\&/g')
rm -rf testdir
mkdir testdir
cd testdir
try $gi init
try $gi list
start ; $gi list $issue | try_ngrep .
# New
try $gi new -s 'First-issue'
start ; $gi list | try_grep 'First-issue'
# New with editor
start
cat <<EOF >issue-desc
Second issue
Line in description
EOF
export VISUAL='mv ../issue-desc '; try $gi new
export VISUAL=
issue=$($gi list | awk '/Second issue/{print $1}')
# Show
start ; $gi show $issue | try_grep 'Second issue'
start ; $gi show $issue | try_grep 'Line in description'
start ; $gi show $issue | try_grep '^Author:'
start ; $gi show $issue | try_grep '^Tags:[ ]*open'
ntry $gi show xyzzy
# Comment
start
cat <<EOF >comment
Comment first line
comment second line
EOF
export VISUAL='mv ../comment '; try $gi comment $issue
export VISUAL=
start ; $gi show -c $issue | try_grep 'comment second line'
# Assign
try $gi assign $issue [email protected]
try $gi assign $issue [email protected]
start ; $gi show $issue | try_grep '^Assigned-to:[ ][email protected]'
# Watchers
try $gi watcher $issue [email protected]
start ; $gi show $issue | try_grep '^Watchers:[ ][email protected]'
try $gi watcher $issue [email protected]
ntry $gi watcher $issue [email protected]
start ; $gi show $issue | try_grep '^Watchers:.*[email protected]'
start ; $gi show $issue | try_grep '^Watchers:.*[email protected]'
try $gi watcher -r $issue [email protected]
start ; $gi show $issue | try_ngrep '^Watchers:.*[email protected]'
try $gi watcher $issue [email protected]
# Tags (most also tested through watchers)
try $gi tag $issue feature
start ; $gi show $issue | try_grep '^Tags:.*feature'
ntry $gi tag $issue feature
# List by tag
start ; $gi list feature | try_grep 'Second issue'
start ; $gi list open | try_grep 'First-issue'
start ; $gi list feature | try_ngrep 'First-issue'
try $gi tag -r $issue feature
start ; $gi list feature | try_ngrep 'Second issue'
try $gi tag $issue feature
# close
try $gi close $issue
start ; $gi list | try_ngrep 'Second issue'
start ; $gi list closed | try_grep 'Second issue'
# log
try $gi log
start ; n=$($gi log | tee foo | grep -c gi:)
try test $n -ge 18
# clone
# Required in order to allow a push to a non-bare repo
$gi git config --add receive.denyCurrentBranch ignore
cd ..
rm -rf testdir2
mkdir testdir2
cd testdir2
git clone ../testdir/.issues/ 2>/dev/null
start ; $gi show $issue | try_grep '^Watchers:.*[email protected]'
start ; $gi show $issue | try_grep '^Tags:.*feature'
start ; $gi show $issue | try_grep '^Assigned-to:[ ][email protected]'
start ; $gi show $issue | try_grep 'Second issue'
start ; $gi show $issue | try_grep 'Line in description'
start ; $gi show $issue | try_grep '^Author:'
start ; $gi show $issue | try_grep '^Tags:.*closed'
# Push and pull
try $gi tag $issue cloned
try $gi push
cd ../testdir
try $gi pull
$gi git reset --hard >/dev/null # Required, because we pushed to a non-bare repo
start ; $gi show $issue | try_grep '^Tags:.*cloned'
cd ..
rm -rf testdir testdir2