forked from bclary/mozilla-bitbar-docker
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlocal_test.sh
executable file
·57 lines (49 loc) · 1.52 KB
/
local_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
#!/usr/bin/env bash
set -e
# set -x
#
# runs inspec tests
#
# source common vars
. ./vars.sh
CONTAINER_NAME="devicepool-inspec-testing"
# if container exists, stop and remove it
# ignore errors if container doesn't exist
if [ -n "$(docker ps -a -q -f name=$CONTAINER_NAME)" ]; then
docker stop $CONTAINER_NAME || true
docker rm $CONTAINER_NAME || true
fi
# if we're on CircleCI (CIRCLE_BRANCH is defined), do special stuff
if [ -n "$CIRCLE_BRANCH" ]; then
PLATFORM_ARG=""
else
PLATFORM_ARG="--platform=$LINUX_PLAT"
fi
set -x
docker run \
--name $CONTAINER_NAME \
$PLATFORM_ARG \
-u root \
-e DEVICE_NAME='aje-test' \
-e TC_WORKER_TYPE='gecko-t-ap-test-g5' \
-e TC_WORKER_GROUP='bitbar' \
-e TASKCLUSTER_CLIENT_ID='project/autophone/bitbar-x-test-g5' \
-e TASKCLUSTER_ACCESS_TOKEN='not_a_real_secret' \
-e gecko_t_ap_test_g5="SECRET_SECRET_SECRET_DO NOT LEAK 1" \
-e TESTDROID_APIKEY="SECRET_SECRET_SECRET_DO NOT LEAK 2" \
-d -t devicepool
set +x
# if we're on CircleCI (CIRCLE_BRANCH is defined), do special stuff
if [ -n "$CIRCLE_BRANCH" ]; then
set -x
# output to junit2 format for CircleCI
inspec exec image_tests -t docker://$CONTAINER_NAME --reporter cli junit2:test-results/results.xml
else
set -x
# if we're running locally ignore the exit code so we can cleanup'
# TODO: figure out a more elegant way of handling this
inspec exec image_tests -t docker://$CONTAINER_NAME || true
fi
# # tear down
# docker stop $CONTAINER_NAME
# docker rm $CONTAINER_NAME