-
Notifications
You must be signed in to change notification settings - Fork 17
/
test.sh
executable file
·243 lines (177 loc) · 8.3 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
#!/bin/bash
set -ex
# ==================================================================================
function test_app() {
local name=$1
local port="8080"
local container_id=$(docker run --name ${name}-test -d -p ${port} ${name})
# sleep is required because after docker run returns, the container is up but our server may not quite be yet
sleep 10
local http_port="$(docker port ${container_id} ${port}|sed 's/0.0.0.0://')"
local http_reply=$(curl --silent --show-error http://localhost:$http_port)
if [ "$http_reply" = 'hello, world' ]; then
echo "APP TEST PASSED"
docker rm -f ${container_id}
return 0
else
echo "APP TEST FAILED"
docker logs ${container_id}
docker rm -f ${container_id}
return -123
fi
}
# ==================================================================================
function test_metrics() {
local name=$1
local port="9779"
local container_id=$(docker run --name ${name}-test -d -p ${port} ${name})
# sleep is required because after docker run returns, the container is up but our server may not quite be yet
sleep 10
local metrics_port="$(docker port ${container_id} ${port}|sed 's/0.0.0.0://')"
local metrics_reply=$(curl --silent --show-error http://localhost:$metrics_port/metrics)
case $metrics_reply in
*"jvm_threads_current"*)
echo "METRICS TEST PASSED"
docker rm -f ${container_id}
return 0
;;
*)
echo "METRICS TEST FAILED"
docker logs ${container_id}
docker rm -f ${container_id}
return -123
;;
esac
}
# ==================================================================================
function test_entrypoint() {
local name=$1
local entrypoint=$2
local container_id=$(docker run --name ${name}-test -d \
-e LANG=en_US.UTF-8 -e PARAMETER_THAT_MAY_NEED_ESCAPING="&'\"|< é\\(" ${name} \
${entrypoint} --commandLineArgValueThatMayNeedEscaping="&'\"|< é\\(" --killDelay=1 --exitCode=0)
# sleep is required because after docker run returns, the container is up but our server may not quite be yet
local exitCode=$(docker wait ${container_id})
if [ "$exitCode" = '0' ]; then
echo "APP TEST PASSED (with entrypoint ${entrypoint})"
docker rm -f ${container_id}
return 0
else
echo "APP TEST FAILED (with entrypoint ${entrypoint})"
docker logs ${container_id}
docker rm -f ${container_id}
return -123
fi
}
# ==================================================================================
function test_container() {
test_app $1
# test_metrics $1
}
# ==================================================================================
function test_image() {
local dir=$1
local name=$2
docker build ${dir} -t ${name}
# ----------------------------------------------------------------------------------
# Presence of any required tools
# * Issues #171 and #184: unzip is required for Spring Boot devtools support
# ----------------------------------------------------------------------------------
docker run --rm --name ${name}-test-unzip ${name} unzip
# --------------------------------------------------------------------------------
# Gradle Spring Boot WAR <https://github.com/fabric8io-images/s2i/issues/123>
# --------------------------------------------------------------------------------
s2i build --copy java/examples/spring-gradle ${name} ${name}-spring-gradle
test_container "${name}-spring-gradle"
# ----------------------------------------------------------------------------------
# Maven
# ----------------------------------------------------------------------------------
s2i build --copy java/examples/maven ${name} ${name}-maven-example
# Now rebuild incrementally, it should not re-download .m2
s2i build --copy java/examples/maven ${name} ${name}-maven-example --incremental
test_container "${name}-maven-example"
# --------------------------------------------------------------------------------
# Gradle
# --------------------------------------------------------------------------------
s2i build --copy java/examples/gradle ${name} ${name}-gradle-example
# TODO https://github.com/fabric8io-images/s2i/issues/150
# s2i build --copy java/examples/gradle ${name} ${name}-gradle-example --incremental
test_container "${name}-gradle-example"
# ----------------------------------------------------------------------------------
# Binary
# ----------------------------------------------------------------------------------
mvn -f java/examples/maven/pom.xml clean package
mkdir -p java/examples/binary/deployments/
cp java/examples/maven/target/*.jar java/examples/binary/deployments/
s2i build --copy java/examples/binary/ ${name} ${name}-binary-example
rm java/examples/binary/deployments/*
test_container "${name}-binary-example"
# ----------------------------------------------------------------------------------
# Maven Wrapper
# ----------------------------------------------------------------------------------
s2i build --copy java/examples/maven-wrapper ${name} ${name}-maven-wrapper-example
s2i build --copy java/examples/maven-wrapper ${name} ${name}-maven-wrapper-example --incremental
# ----------------------------------------------------------------------------------
# Entrypoint Binary
# ----------------------------------------------------------------------------------
curl https://repo.spring.io/release/org/springframework/cloud/spring-cloud-deployer-spi-test-app/1.3.4.RELEASE/spring-cloud-deployer-spi-test-app-1.3.4.RELEASE-exec.jar \
-o java/examples/binary/deployments/app.jar
s2i build --copy java/examples/binary/ ${name} ${name}-entrypoint-binary-example
rm java/examples/binary/deployments/*
test_entrypoint "${name}-entrypoint-binary-example" "java -jar /deployments/app.jar" # works
test_entrypoint "${name}-entrypoint-binary-example" /opt/run-java/run-java.sh # will fail until https://github.com/fabric8io-images/run-java-sh/issues/75 is fixed
test_entrypoint "${name}-entrypoint-binary-example" /usr/local/s2i/run # will fail until https://github.com/fabric8io-images/run-java-sh/issues/75 is fixed
}
# ==================================================================================
function test_tomcat_java8_image() {
local dir="tomcat/images/tomcat85-java8-centos7"
local name="s2i-tomcat85-java8"
docker build ${dir} -t ${name}
s2i build --copy tomcat/examples/spring-mvc-showcase ${name} ${name}-spring-mvc
local port="8080"
local container_id=$(docker run --name ${name}-spring-mvc-test -d -p ${port} ${name}-spring-mvc)
# sleep is required because after docker run returns, the container is up but our server may not quite be yet
sleep 10
local http_port="$(docker port ${container_id} ${port}|sed 's/0.0.0.0://')"
local http_reply=$(curl --silent --show-error http://localhost:$http_port/spring-mvc-showcase/simple)
echo $http_reply
if [ "$http_reply" = "Hello world!" ]; then
echo "APP TEST PASSED"
docker rm -f ${container_id}
return 0
else
echo "APP TEST FAILED"
docker logs ${container_id}
docker rm -f ${container_id}
return -123
fi
}
function test_tomcat_java11_image() {
local dir="tomcat/images/tomcat85-java11-centos7"
local name="s2i-tomcat85-java11"
docker build ${dir} -t ${name}
s2i build --copy tomcat/examples/springmvc5 ${name} ${name}-spring-mvc-5
local port="8080"
local container_id=$(docker run --name ${name}-spring-mvc-5-test -d -p ${port} ${name}-spring-mvc-5)
# sleep is required because after docker run returns, the container is up but our server may not quite be yet
sleep 10
local http_port="$(docker port ${container_id} ${port}|sed 's/0.0.0.0://')"
local http_reply=$(curl --silent --show-error http://localhost:$http_port/spring-mvc-java11/hello)
echo $http_reply
if [ "$http_reply" = "Hello world!" ]; then
echo "APP TEST PASSED"
docker rm -f ${container_id}
return 0
else
echo "APP TEST FAILED"
docker logs ${container_id}
docker rm -f ${container_id}
return -123
fi
}
# ==================================================================================
cd java ; fish-pepper ; cd ..
test_image "java/images/centos-java11/" "s2i-java-11"
test_image "java/images/centos/" "s2i-java"
test_tomcat_java8_image
test_tomcat_java11_image