-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.sh
executable file
·299 lines (235 loc) · 7.67 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
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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
#!/bin/bash
#
# test.sh - run Structr deployment and selenium tests in a dockerized setup
#
# prerequisites:
# - docker
# - curl
#
BASE_URL=http://localhost
PORT=11223
USERNAME=admin
PASSWORD=admin
VERSION=3.2-SNAPSHOT
NETWORK=selenium-tests
MAX_TRIES=60
WAIT=5
LOG=/dev/null
REUSE_EXISTING=true
IMAGE_EXISTS=false
DUMP_CONFIG=false
RECORD=false
NAME=structr:selenium
SUMMARY=.
EXIT_CODE=0
function started() {
curl -si $BASE_URL:$PORT/structr/rest >/dev/null
}
function cancel() {
echo "Error: Structr not responding, cancelling server set up"
docker stop $CONTAINER
}
function usage() {
echo
echo "Usage"
echo " test.sh [-c] [-d <webapp>] [-h] [-n <image name>] [-l <logfile>] [-r] [-u] [-v <version> [-t <testsuite>]"
echo
echo "Options"
echo " -c - dump configuration and exit"
echo " -d <webapp> - deploy the webapp from the given directory"
echo " -h - print this message and exit"
echo " -l <logfile> - use given log file (default: /dev/null)"
echo " -n <image name> - use given test image name (default: $NAME)"
echo " -r - recording mode (dont run tests, just start the instance)"
echo " -s <summary> - create the given summary file"
echo " -t <testsuite> - run tests in the given directory"
echo " -u - update test image (don't resuse existing images)"
echo " -v <version> - use given Structr version (default: 3.1.1)"
echo
echo "Docker reference"
echo " list containers - docker container ls [-a]"
echo " run shell on container - docker exec -ti <name> /bin/sh"
echo " list images - docker image ls [-a]"
echo " manage containers - docker container rm <name> | create <name> | start <name> | stop <name>"
echo " manage images - docker image rm <id> | create | start <id> | stop <id>"
echo " manage networks - docker network ls | rm | create | start <name> | stop <name>"
echo " fetch logs / stdout - docker logs [-f] <name>"
echo
exit 0
}
# process command line options
while [ "$#" -gt 0 ]; do
case "$1" in
-c) DUMP_CONFIG="true"; shift 1;;
-d) SOURCE="$2"; shift 2;;
-h) usage; shift 1;;
-l) LOG="$2"; shift 2;;
-n) NAME="$2"; shift 2;;
-r) RECORD="true"; shift 1;;
-s) SUMMARY="$2"; shift 2;;
-t) TESTSUITE="$2"; shift 2;;
-u) REUSE_EXISTING="false"; shift 1;;
-v) VERSION="$2"; shift 2;;
*)
echo "Error: unknown option $1"
usage
;;
esac
done
if [ "$DUMP_CONFIG" == "true" ]; then
echo
echo "Configuration:"
echo
echo " deployment source: $SOURCE"
echo " test suite: $TESTSUITE"
echo " Structr version: $VERSION"
echo " Test image name: $NAME"
echo " base URL: $BASE_URL"
echo " HTTP port: $PORT"
echo " REST username: $USERNAME"
echo " REST password: $PASSWORD"
echo " network: $NETWORK"
echo " log file: $LOG"
echo " health check interval: $WAIT"
echo " health check retries: $MAX_TRIES"
echo " recording mode: $RECORD"
echo " test summary file: $SUMMARY"
echo
exit 0
fi
if [ "$REUSE_EXISTING" == "false" ]; then
echo "Removing test image" |tee -a $LOG
docker image rm selenium-test >>$LOG
fi
if "$RECORD" == "true" ]; then
echo "#"
echo "# running in RECORDING mode"
echo "# $(date)"
echo "#"
else
if [ -z "$TESTSUITE" ]; then
echo "Error: missing testsuite parameter"
usage
fi
echo "#"
echo "# running in TESTING mode"
echo "# $(date)"
echo "#"
fi
# check for existence of structr-selenium-dsl and build the project
if [ ! -e structr-selenium-dsl-0.1-SNAPSHOT.jar ]; then
echo "Building selenium test runner.."
cd structr-selenium-dsl
mvn clean package
cp target/structr-selenium-dsl-0.1-SNAPSHOT.jar ..
cd ..
fi
# check for existing image, reuse if it exists (and not forced to update)
if docker inspect --type=image $NAME >/dev/null 2>&1; then
IMAGE_EXISTS=true
fi
echo "Creating isolated network.." |tee -a $LOG
docker network create $NETWORK >>$LOG
if [ "$IMAGE_EXISTS" == "true" ] && [ "$REUSE_EXISTING" == "true" ]; then
#
# start Structr using an existing image from previous runs
#
echo "Re-using existing image $NAME" |tee -a $LOG
CONTAINER=$(docker create --network $NETWORK --net-alias structr -p $PORT:8082 $NAME)
echo "Starting container.." |tee -a $LOG
docker start $CONTAINER >>$LOG || exit 1
echo -n "Waiting for Structr to become available.." |tee -a $LOG
sleep $WAIT
until started || [ $MAX_TRIES -eq 0 ]; do
echo -n "."
sleep $WAIT
done
echo "."
if [ $MAX_TRIES -eq 0 ]; then
cancel
fi
if [ -x /usr/bin/notify-send ]; then
notify-send "Structr Selenium Test Runner" "Test instance is ready"
fi
else
#
# start Structr using a new image
#
echo "Creating new container from version $VERSION" |tee -a $LOG
CONTAINER=$(docker create --network $NETWORK --net-alias structr -p $PORT:8082 structr/structr:$VERSION)
echo "Container: $CONTAINER"
echo "Copying resources.." |tee -a $LOG
if [ -e license.key ]; then
docker cp license.key $CONTAINER:/var/lib/structr/license.key >>$LOG || exit 1
fi
if [ -n "$SOURCE" ]; then
docker cp $SOURCE $CONTAINER:/tmp/webapp >>$LOG || exit 1
fi
docker cp structr.conf $CONTAINER:/var/lib/structr/structr.conf >>$LOG || exit 1
echo "Starting container.." |tee -a $LOG
docker start $CONTAINER >>$LOG
echo "Waiting for Structr to become available..." |tee -a $LOG
sleep $WAIT
until started || [ $MAX_TRIES -eq 0 ]; do
echo -n "."
sleep $WAIT
done
echo "."
if [ $MAX_TRIES -eq 0 ]; then
cancel
fi
if [ -n "$SOURCE" ]; then
echo "Deploying webapp from $SOURCE.." |tee -a $LOG
curl -si -HX-User:$USERNAME -HX-Password:$PASSWORD $BASE_URL:$PORT/structr/rest/maintenance/deploy -d '{ mode: import, source: "/tmp/webapp" }' >>$LOG || exit 1
fi
echo "Storing Structr image for later use.." |tee -a $LOG
docker commit $CONTAINER $NAME >>$LOG || exit 1
fi
if [ "$RECORD" == "true" ]; then
#
# wait for user interaction and stop container afterwards, no tests are executed
#
echo "Structr instance started in recording mode."
echo "URL: $BASE_URL:$PORT"
echo
read -n 1 -s -r -p "Press any key to stop.."
echo
echo "Stopping container.." |tee -a $LOG
docker stop $CONTAINER >>$LOG || exit 1
echo "Removing container.." |tee -a $LOG
docker container rm $CONTAINER >>$LOG || exit 1
else
#
# create or re-use test image and run tests
#
echo "Creating test image.." |tee -a $LOG
#docker image build -q -t selenium-test . >>$LOG || exit 1
docker image build -q -t selenium-test .
echo "Creating test container.." |tee -a $LOG
TESTCONTAINER=$(docker create --network $NETWORK --shm-size=2g selenium-test)
docker cp $TESTSUITE $TESTCONTAINER:/tmp/testsuite >>$LOG || exit 1
docker start -a $TESTCONTAINER |tee -a $LOG || exit 1
EXIT_CODE=$(docker inspect $TESTCONTAINER --format='{{.State.ExitCode}}')
if [ $EXIT_CODE -gt 0 ]; then
echo "Downloading server.log and screenshots"
docker exec -ti $CONTAINER /bin/sh -c 'cat /var/lib/structr/logs/server.log' >server.log
docker cp $TESTCONTAINER:/tmp/screenshots . >>$LOG
fi
echo "Downloading test summary file.."
if [ "$SUMMARY" != "." ]; then
TARGET=`dirname $SUMMARY`
if [ ! -e $TARGET ]; then
mkdir $TARGET
fi
fi
docker cp $TESTCONTAINER:/tmp/selenium-test-summary.xml $SUMMARY
echo "Stopping containers.." |tee -a $LOG
docker stop $CONTAINER >>$LOG || exit 1
docker stop $TESTCONTAINER >>$LOG || exit 1
echo "Removing containers.." |tee -a $LOG
docker container rm $CONTAINER >>$LOG || exit 1
docker container rm $TESTCONTAINER >>$LOG || exit 1
fi
echo "Removing isolated network" |tee -a $LOG
docker network rm $NETWORK >>$LOG || exit 1
exit $EXIT_CODE