2019-07-19 09:50:26 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2019-09-11 11:55:24 +00:00
|
|
|
# Script to run the System Tests Base/Delta(Bad) for HIRS TPM 2.0 Provisioner
|
2019-07-19 09:50:26 +00:00
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
echo ""
|
2019-09-11 11:55:24 +00:00
|
|
|
echo "System Tests Base/Delta(Bad) TPM 2.0 Starting..."
|
2019-07-19 09:50:26 +00:00
|
|
|
echo ""
|
|
|
|
|
|
|
|
# Start System Testing Docker Environment
|
|
|
|
cd .ci/docker
|
|
|
|
|
2019-08-02 16:39:56 +00:00
|
|
|
docker-compose -f docker-compose-tpm2-base-delta-bad.yml up -d
|
2019-07-19 09:50:26 +00:00
|
|
|
|
|
|
|
tpm2_container_id="$(docker ps -aqf "name=hirs-aca-provisioner-tpm2")"
|
2019-12-23 10:28:26 +00:00
|
|
|
echo "TPM 2.0 Container ID: $tpm2_container_id"
|
2019-07-19 09:50:26 +00:00
|
|
|
|
|
|
|
tpm2_container_status="$(docker inspect $tpm2_container_id --format='{{.State.Status}}')"
|
2019-12-23 10:28:26 +00:00
|
|
|
echo "TPM 2.0 Container Status: $tpm2_container_status"
|
2019-07-19 09:50:26 +00:00
|
|
|
|
|
|
|
while [[ $tpm2_container_status == "running" ]]
|
|
|
|
do
|
|
|
|
sleep 20
|
|
|
|
|
|
|
|
# Add status message, so Travis will not time out.
|
|
|
|
# It may timeout if it hasn't received output for more than 10 minutes.
|
|
|
|
echo "Still running tests, please wait..."
|
|
|
|
|
|
|
|
tpm2_container_status="$(docker inspect $tpm2_container_id --format='{{.State.Status}}')"
|
|
|
|
done
|
|
|
|
|
|
|
|
# Store container exit code
|
|
|
|
tpm2_container_exit_code="$(docker inspect $tpm2_container_id --format='{{.State.ExitCode}}')"
|
2019-12-23 10:28:26 +00:00
|
|
|
echo "TPM 2.0 Container Exit Code: $tpm2_container_exit_code"
|
2019-07-19 09:50:26 +00:00
|
|
|
|
|
|
|
# Display container log
|
|
|
|
echo ""
|
|
|
|
echo "===========hirs-aca-provisioner-tpm2 System Tests Log:==========="
|
|
|
|
docker logs $tpm2_container_id
|
|
|
|
|
|
|
|
echo ""
|
2019-09-11 11:55:24 +00:00
|
|
|
echo "End of System Tests Base/Delta(Bad) TPM 2.0 , cleaning up..."
|
2019-07-19 09:50:26 +00:00
|
|
|
echo ""
|
|
|
|
# Clean up services and network
|
|
|
|
docker-compose down
|
|
|
|
|
|
|
|
# Clean up dangling containers
|
|
|
|
echo "Cleaning up dangling containers..."
|
|
|
|
echo ""
|
|
|
|
docker ps -a
|
|
|
|
echo ""
|
|
|
|
docker container prune --force
|
|
|
|
echo ""
|
|
|
|
|
|
|
|
# Return container exit code
|
|
|
|
if [[ $tpm2_container_exit_code == 0 ]]
|
|
|
|
then
|
2019-09-11 11:55:24 +00:00
|
|
|
echo "SUCCESS: System Tests Base/Delta(Bad) TPM 2.0 passed"
|
2019-07-19 09:50:26 +00:00
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2019-09-11 11:55:24 +00:00
|
|
|
echo "ERROR: System Tests Base/Delta(Bad) TPM 2.0 failed"
|
2019-07-19 09:50:26 +00:00
|
|
|
exit 1
|