This repository was archived by the owner on Sep 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 249
/
Copy pathrun.sh
executable file
·165 lines (144 loc) · 3.87 KB
/
run.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
#!/bin/bash -e
# Copyright 2017 Google Inc. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
RUN_NOTEBOOK=0
RUN_CLIENT_UNIT=0
RUN_SERVER_UNIT=0
CONTAINER_STARTED=0
HERE=$(dirname $0)
JASMINE=$HERE/node_modules/jasmine/bin/jasmine.js
function parseOptions() {
while [[ $# -gt 0 ]]; do
case "$1" in
--client-unit-tests)
RUN_CLIENT_UNIT=1
shift
;;
--notebook-tests)
RUN_NOTEBOOK=1
shift
;;
--server-unit-tests)
RUN_SERVER_UNIT=1
shift
;;
-u|--unit-tests)
RUN_CLIENT_UNIT=1
RUN_SERVER_UNIT=1
shift
;;
-*)
echo "Uknown option '$1'"
exit 1
;;
*)
echo "Uknown argument '$1'"
exit 1
;;
esac
done
if (( RUN_CLIENT_UNIT + RUN_SERVER_UNIT + RUN_NOTEBOOK == 0 )); then
# If no parts were specified, run all parts
echo Run all test sections
RUN_CLIENT_UNIT=1
RUN_SERVER_UNIT=1
RUN_NOTEBOOK=1
fi
}
function cleanup() {
if [[ $CONTAINER_STARTED -ne 0 ]]; then
echo Stopping container..
docker stop $container_datalab $selenium_container
fi
exit
}
function makeTestsHome() {
TESTS_HOME=$HOME/datalab_tests
mkdir -p $TESTS_HOME
}
# Delete the files using the same container context as they were created.
function cleanTestsHome() {
echo "Deleting old content from ${TESTS_HOME}.."
docker run \
--entrypoint="/bin/bash" \
-p 127.0.0.1:8081:8080 \
-v $TESTS_HOME:/content \
datalab \
-c "rm -rf /content/* && sleep 1"
}
function startContainers() {
CONTAINER_STARTED=1
echo Starting Datalab container..
container_datalab=$(docker run -d \
--entrypoint="/datalab/run.sh" \
-p 127.0.0.1:8081:8080 \
-v $TESTS_HOME:/content \
-e "ENABLE_USAGE_REPORTING=false" \
-e "DATALAB_SHUTDOWN_COMMAND=echo" \
datalab)
docker pull selenium/standalone-chrome > /dev/null
echo Starting selenium container..
selenium_container=$(docker run -d -p 4444:4444 --net="host" selenium/standalone-chrome)
echo -n Polling on Datalab..
until $(curl --output /dev/null --silent --head --fail http://localhost:8081); do
printf '.'
sleep 1
done
echo ' Done.'
echo -n Polling on Selenium..
until $(curl --output /dev/null --silent --head --fail http://localhost:4444/wd/hub); do
printf '.'
sleep 1
done
echo ' Done.'
}
function installNodeModulesInBuild() {
echo "Running 'npm install' in build dir"
(cd ${HERE}/../build/web/nb && npm install)
}
function runNotebookTests() {
echo Running notebook integration tests
$JASMINE --config=$HERE/notebook/jasmine.json
}
function runClientUnitTests() {
echo Running client unit tests
$JASMINE --config=$HERE/client-unit/jasmine.json
}
function runServerUnitTests() {
echo Running server unit tests
$JASMINE --config=$HERE/server-unit/jasmine.json
}
function main() {
parseOptions "$@"
# For travis, we do not care about interrupts and cleanup,
# it will just waste time
if [ -z "$TRAVIS" ]; then
trap cleanup INT EXIT SIGHUP SIGINT SIGTERM
fi
# Unit tests are fast, run them first
if (( RUN_CLIENT_UNIT > 0 )); then
runClientUnitTests
fi
if (( RUN_SERVER_UNIT > 0 )); then
installNodeModulesInBuild
runServerUnitTests
fi
if (( RUN_NOTEBOOK > 0 )); then
makeTestsHome
cleanTestsHome
startContainers
runNotebookTests
fi
}
main "$@"