-
Notifications
You must be signed in to change notification settings - Fork 5
/
Jenkinsfile.groovy
343 lines (296 loc) · 9.44 KB
/
Jenkinsfile.groovy
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
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
#!/usr/bin/env groovy
node {
// Used for consistency between other variables
def APP_NAME = 'earthquake-geoserve-ui'
// Base group from where general images may be pulled
def DEVOPS_REGISTRY = "${GITLAB_INNERSOURCE_REGISTRY}/devops/images"
// Flag to capture exceptions and mark build as failure
def FAILURE = null
// What version to tag built image as
def IMAGE_VERSION = null
// Set by "checkout" step below
def SCM_VARS = [:]
// Name of image to use as basis when building LOCAL_IMAGE/DEPLOY_IMAGE
def BASE_IMAGE = "${DEVOPS_REGISTRY}/usgs/nginx:latest"
// Used to install dependencies and build distributables
def BUILDER_CONTAINER = "${APP_NAME}-${BUILD_ID}-BUILDER"
def BUILDER_IMAGE = "${DEVOPS_REGISTRY}/usgs/node:8"
// Name of image to deploy (push) to registry
def DEPLOY_IMAGE = "${GITLAB_INNERSOURCE_REGISTRY}/ghsc/hazdev/earthquake-geoserve/ui"
// Run application locally for testing security vulnerabilities
def LOCAL_CONTAINER = "${APP_NAME}-${BUILD_ID}-PENTEST"
def LOCAL_IMAGE = "local/${APP_NAME}:${BUILD_ID}"
// Runs zap.sh as daemon and used to execute zap-cli calls within
def OWASP_CONTAINER = "${APP_NAME}-${BUILD_ID}-OWASP"
def OWASP_IMAGE = "${DEVOPS_REGISTRY}/owasp/zap2docker-stable"
def OWASP_REPORT_DIR = "${WORKSPACE}/owasp-data"
// Used to run linting, unit tests, coverage, and e2e within this container
def TESTER_IMAGE = "${DEVOPS_REGISTRY}/trion/ng-cli-e2e"
// Queue up tasks that can be run in parallel
def SECURITY_CHECKS = [:]
try {
stage('Initialize') {
// Clean up old reports
sh "rm -rf ${OWASP_REPORT_DIR}"
// Clone latest source
SCM_VARS = checkout scm
sh "git fetch --tags origin"
if (GIT_BRANCH != '') {
// Check out the specified branch
sh "git checkout --detach ${GIT_BRANCH}"
// Update relevant SCM_VARS
SCM_VARS.GIT_BRANCH = GIT_BRANCH
SCM_VARS.GIT_COMMIT = sh(
returnStdout: true,
script: "git rev-parse HEAD"
)
}
// Determine image tag to use
if (SCM_VARS.GIT_BRANCH != 'origin/master') {
IMAGE_VERSION = SCM_VARS.GIT_BRANCH.split('/').last().replace(' ', '_')
} else {
IMAGE_VERSION = 'latest'
}
}
stage('Build Image') {
def info = [:]
def pkgInfo = readJSON file: 'package.json'
info.version = pkgInfo.version
info.branch = SCM_VARS.GIT_BRANCH
info.commit = SCM_VARS.GIT_COMMIT
info.image = IMAGE_VERSION
// Convert from Map --> JSON
info = readJSON text: groovy.json.JsonOutput.toJson(info)
// Install all dependencies
docker.image(BUILDER_IMAGE).inside() {
withEnv([
'npm_config_cache=/tmp/npm-cache',
'HOME=/tmp'
]) {
ansiColor('xterm') {
sh """
source /etc/profile.d/nvm.sh > /dev/null 2>&1
npm config set package-lock false
# Now install everything else so the build works as expected
npm install --no-save
npm run build
npm run buildApp
"""
writeJSON file: 'dist/metadata.json', pretty: 4, json: info
}
}
}
// Build candidate image for later penetration testing
ansiColor('xterm') {
sh """
docker pull ${BASE_IMAGE}
docker build \
--build-arg BASE_IMAGE=${BASE_IMAGE} \
-t ${LOCAL_IMAGE} \
.
"""
}
}
stage('Unit Tests') {
// Note that running angular tests destroys the "dist" folder that was
// originally created in Install stage. This is not needed later, so
// okay, but just be aware ...
// Run linting, unit tests, and end-to-end tests
docker.image(TESTER_IMAGE).inside () {
ansiColor('xterm') {
sh """
ng lint
"""
sh """
ng test earthquake-geoserve-ui --watch=false --code-coverage --progress false --browsers ChromeHeadless
"""
sh """
ng test hazdev-ng-geoserve-output --watch=false --browsers ChromeHeadless
"""
sh """
ng e2e --progress false
"""
}
}
// Publish results
cobertura(
autoUpdateHealth: false,
autoUpdateStability: false,
coberturaReportFile: '**/cobertura-coverage.xml',
conditionalCoverageTargets: '70, 0, 0',
failUnhealthy: false,
failUnstable: false,
lineCoverageTargets: '80, 0, 0',
maxNumberOfBuilds: 0,
methodCoverageTargets: '80, 0, 0',
onlyStable: false,
sourceEncoding: 'ASCII',
zoomCoverageChart: false
)
}
SECURITY_CHECKS['Scan Dependencies'] = {
// Analyze dependencies
ansiColor('xterm') {
dependencyCheckAnalyzer(
datadir: '',
hintsFile: '',
includeCsvReports: false,
includeHtmlReports: true,
includeJsonReports: false,
includeVulnReports: true,
isAutoupdateDisabled: false,
outdir: 'dependency-check-data',
scanpath: "${WORKSPACE}",
skipOnScmChange: false,
skipOnUpstreamChange: false,
suppressionFile: 'suppression.xml',
zipExtensions: ''
)
}
// Publish results
publishHTML (target: [
allowMissing: true,
alwaysLinkToLastBuild: true,
keepAll: true,
reportDir: 'dependency-check-data',
reportFiles: 'dependency-check-report.html',
reportName: 'Dependency Analysis'
])
}
SECURITY_CHECKS['Penetration Tests'] = {
def ZAP_API_PORT = '8090'
// Ensure report output directory exists
sh """
if [ ! -d "${OWASP_REPORT_DIR}" ]; then
mkdir -p ${OWASP_REPORT_DIR}
chmod 777 ${OWASP_REPORT_DIR}
fi
"""
// Start a container to run penetration tests against
sh """
docker run --rm --name ${LOCAL_CONTAINER} \
-d ${LOCAL_IMAGE}
"""
// Start a container to execute OWASP PENTEST
sh """
docker run --rm -d -u zap \
--name=${OWASP_CONTAINER} \
--link=${LOCAL_CONTAINER}:application \
-v ${OWASP_REPORT_DIR}:/zap/reports:rw \
-i ${OWASP_IMAGE} \
zap.sh \
-daemon \
-port ${ZAP_API_PORT} \
-config api.disablekey=true
"""
// Wait for OWASP container to be ready, but not for too long
timeout(
time: 20,
unit: 'SECONDS'
) {
echo 'Waiting for OWASP container to finish starting up'
sh """
set +x
status='FAILED'
while [ \$status != 'SUCCESS' ]; do
sleep 1;
status=`\
(\
docker exec -i ${OWASP_CONTAINER} \
curl -I localhost:${ZAP_API_PORT} \
> /dev/null 2>&1 && echo 'SUCCESS'\
) \
|| \
echo 'FAILED'\
`
done
"""
}
// Run the penetration tests
ansiColor('xterm') {
sh """
PENTEST_IP='application'
docker exec ${OWASP_CONTAINER} \
zap-cli -v -p ${ZAP_API_PORT} spider \
http://\$PENTEST_IP/
docker exec ${OWASP_CONTAINER} \
zap-cli -v -p ${ZAP_API_PORT} active-scan \
http://\$PENTEST_IP/
docker exec ${OWASP_CONTAINER} \
zap-cli -v -p ${ZAP_API_PORT} report \
-o /zap/reports/owasp-zap-report.html -f html
docker stop ${OWASP_CONTAINER} ${LOCAL_CONTAINER}
"""
}
// Publish results
publishHTML (target: [
allowMissing: true,
alwaysLinkToLastBuild: true,
keepAll: true,
reportDir: OWASP_REPORT_DIR,
reportFiles: 'owasp-zap-report.html',
reportName: 'OWASP ZAP Report'
])
}
stage('Security') {
parallel SECURITY_CHECKS
}
stage('Publish Image') {
// Re-tag candidate image as actual image name and push actual image to
// repository
docker.withRegistry(
"https://${GITLAB_INNERSOURCE_REGISTRY}",
'innersource-hazdev-cicd'
) {
ansiColor('xterm') {
sh """
docker tag \
${LOCAL_IMAGE} \
${DEPLOY_IMAGE}:${IMAGE_VERSION}
"""
sh """
docker push ${DEPLOY_IMAGE}:${IMAGE_VERSION}
"""
}
}
}
stage('Trigger Deploy') {
build(
job: 'deploy-ui',
parameters: [
string(name: 'IMAGE_VERSION', value: IMAGE_VERSION)
],
propagate: false,
wait: false
)
}
} catch (e) {
mail to: '[email protected]',
from: 'noreply@jenkins',
subject: 'Jenkins: earthquake-geoserve-ui',
body: "Project build (${BUILD_TAG}) failed '${e}'"
FAILURE = e
} finally {
stage('Cleanup') {
sh """
set +e;
# Cleaning up any leftover containers...
docker container rm --force \
${BUILDER_CONTAINER} \
${OWASP_CONTAINER} \
${LOCAL_CONTAINER} \
;
# Cleaning up any leftover images...
docker image rm --force \
${DEPLOY_IMAGE} \
${LOCAL_IMAGE} \
;
exit 0;
"""
if (FAILURE) {
currentBuild.result = 'FAILURE'
throw FAILURE
}
}
}
}