summaryrefslogtreecommitdiff
path: root/test/run.sh
blob: 430041c272c3beec8cdc916a44abca0bdb532dee (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
269
270
271
272
#!/bin/bash
# depends on: bwrap, expect

cd $(dirname "$0")
set -x

fail() {
    set +x
    echo >&2
    echo "Test  : $testname failed" >&2
    echo "Reason: $@" >&2
    echo >&2
    exit 2
}

clean() {
    if [ -d "bin" ]; then
	rm -r bin
    fi
    if [ -d "work" ]; then
	rm -r work
    fi
    mkdir bin work
    cp ../git-repo bin
}

run() {
    bwrap \
	--ro-bind /bin /bin \
	--ro-bind /usr /usr \
	--ro-bind /etc /etc \
	--ro-bind /lib /lib \
	--ro-bind /lib64 /lib64 \
	--ro-bind /run /run \
	--dev /dev \
	--proc /proc \
	--ro-bind bin /usr/local/bin \
	--bind work /git \
	$1
}

filemode() {
    stat --format=%a "$@"
}

########################
testname=help
clean

{
    cat <<EOF
spawn git repo help
expect "Subcommands of git repo are"	
wait
EOF
} | run expect -f - || fail "Expect script failed"
    
echo "done"
########################
testname=create-public
clean

{
    cat <<EOF
spawn git repo create-public

expect "New repository name.git"
send "test-repo.git\n"

expect "Description"
send "Test description\n"

expect "Create test-repo.git in"
send "y\n"
wait
EOF
}  | run expect -f - || fail "Expect script failed"

test -d work/$USER/test-repo.git ||
    fail "repo creation failed"
grep "Test description" work/$USER/test-repo.git/description ||
    fail "Setting description failed"
test $(filemode work/$USER/test-repo.git) == 2775 ||
    fail "Repodir created with wrong filemode"
test $(filemode work/$USER/test-repo.git/description) == 664 ||
    fail "Repodir created with wrong filemode"
test -f work/$USER/test-repo.git/PUBLIC ||
    fail "Test for PUBLIC file"

########################
testname=create-shared
clean

{
    cat <<EOF
spawn git repo create-shared

expect "New repository name.git"
send "test-repo.git\n"

expect "Description"
send "Test description\n"

expect "Create test-repo.git in"
send "y\n"
wait
EOF
}  | run expect -f - || fail "Expect script failed"

test -d work/$USER/test-repo.git ||
    fail "repo creation failed"
grep "Test description" work/$USER/test-repo.git/description ||
    fail "Setting description failed"
test $(filemode work/$USER/test-repo.git) == 2770 ||
    fail "Repodir created with wrong filemode"
test $(filemode work/$USER/test-repo.git/description) == 660 ||
    fail "Repodir created with wrong filemode"
test \! -f work/$USER/test-repo.git/PUBLIC ||
    fail "Test for PUBLIC file"

########################
testname=create-private
clean

{
    cat <<EOF
spawn git repo create-private

expect "New repository name.git"
send "test-repo.git\n"

expect "Description"
send "Test description\n"

expect "Create test-repo.git in"
send "y\n"
wait
EOF
}  | run expect -f - || fail "Expect script failed"

test -d work/$USER/test-repo.git ||
    fail "repo creation failed"
grep "Test description" work/$USER/test-repo.git/description ||
    fail "Setting description failed"
test $(filemode work/$USER/test-repo.git) == 2700 ||
    fail "Repodir created with wrong filemode"
test $(filemode work/$USER/test-repo.git/description) == 600 ||
    fail "Repodir created with wrong filemode"
test \! -f work/$USER/test-repo.git/PUBLIC ||
    fail "Test for PUBLIC file"

########################
testname=list
clean

{
    cat <<EOF
spawn git repo create-private
expect "New repository name.git"
send "test-repo1.git\n"
expect "Description"
send "Test description\n"
expect "Create"
send "y\n"
wait

spawn git repo create-private
expect "New repository name.git"
send "test-repo2.git\n"
expect "Description"
send "Test description\n"
expect "Create"
send "y\n"
wait

spawn git repo list
expect -re "test-repo1\.git.*owner=$USER.*Test description"
expect -re "test-repo2"
EOF
}  | run expect -f - || fail "Expect script failed"


########################
testname=public-make-private
clean

{
    cat <<EOF
spawn git repo create-public
expect "New repository name.git*"
send "test-repo.git\n"
expect "Description"
send "Test description\n"
expect "Create test-repo.git "
send "y\n"
expect eof
wait

spawn git repo make-private /git/$USER/test-repo.git
expect "test-repo.git*(owner=$USER)"
expect eof
wait
EOF
}  | run expect -f - || fail "Expect script failed"

test $(filemode work/$USER/test-repo.git) == 2700 ||
    fail "Repodir created with wrong filemode"
test $(filemode work/$USER/test-repo.git/description) == 600 ||
    fail "Repodir created with wrong filemode"
test \! -f work/$USER/test-repo.git/PUBLIC ||
    fail "Test for PUBLIC file"


########################
testname=private-make-public
clean

{
    cat <<EOF
spawn git repo create-private
expect "New repository name.git*"
send "test-repo.git\n"
expect "Description"
send "Test description\n"
expect "Create test-repo.git "
send "y\n"
expect eof
wait

spawn git repo make-public /git/$USER/test-repo.git
expect "test-repo.git*(owner=$USER group=* PUBLIC)"
expect eof
wait
EOF
}  | run expect -f - || fail "Expect script failed"

test $(filemode work/$USER/test-repo.git) == 2775 ||
    fail "Repodir created with wrong filemode"
test $(filemode work/$USER/test-repo.git/description) == 664 ||
    fail "Repodir created with wrong filemode"
test -f work/$USER/test-repo.git/PUBLIC ||
    fail "Test for PUBLIC file"


########################
testname=show-public
clean

{
    cat <<EOF
spawn git repo create-public
expect "New repository name.git*"
send "test-repo.git\n"
expect "Description"
send "Test description\n"
expect "Create test-repo.git "
send "y\n"
expect eof
wait

spawn git repo show /git/$USER/test-repo.git
#expect "/git/$USER/test-repo.git"
expect "Permissions mode 2775"
expect "sharedrepository=0664"
expect "SSH"
expect "HTTP"
expect "set-url origin"
expect "update description"
expect eof
wait
EOF
}  | run expect -f - || fail "Expect script failed"