forked from Cray-HPE/hms-capmc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrunCT.sh
executable file
·83 lines (69 loc) · 2.57 KB
/
runCT.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
#!/usr/bin/env bash
#
# MIT License
#
# (C) Copyright [2022] Hewlett Packard Enterprise Development LP
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
# to deal in the Software without restriction, including without limitation
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
# and/or sell copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
# OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
# OTHER DEALINGS IN THE SOFTWARE.
#
set -x
# Add .exe if running in a WSL environment
if $(uname -r | grep -q "Microsoft"); then
shopt -s expand_aliases
alias docker-compose=docker-compose.exe
fi
# Configure docker compose
export COMPOSE_PROJECT_NAME=$RANDOM
export COMPOSE_FILE=docker-compose.test.ct.yaml
args="-f $COMPOSE_FILE -p $COMPOSE_PROJECT_NAME"
echo "COMPOSE_PROJECT_NAME: ${COMPOSE_PROJECT_NAME}"
echo "COMPOSE_FILE: $COMPOSE_FILE"
function cleanup() {
docker-compose $args down
if ! [[ $? -eq 0 ]]; then
echo "Failed to decompose environment!"
exit 1
fi
exit $1
}
# Get the base containers running
echo "Starting containers..."
docker-compose $args build --no-cache
docker-compose $args up -d cray-capmc #this will stand up everything except for the integration test container
docker-compose $args up -d ct-tests-functional-wait-for-smd
docker wait ${COMPOSE_PROJECT_NAME}_ct-tests-functional-wait-for-smd_1
docker logs ${COMPOSE_PROJECT_NAME}_ct-tests-functional-wait-for-smd_1
docker-compose $args up --exit-code-from ct-tests-smoke ct-tests-smoke
test_result=$?
echo "Cleaning up containers..."
if [[ $test_result -ne 0 ]]; then
echo "CT smoke tests FAILED!"
cleanup 1
fi
docker-compose $args up --exit-code-from ct-tests-functional ct-tests-functional
test_result=$?
# Clean up
echo "Cleaning up containers..."
if [[ $test_result -ne 0 ]]; then
echo "CT functional tests FAILED!"
cleanup 1
fi
# Cleanup
echo "CT tests PASSED!"
cleanup 0