-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtest.sh
executable file
·41 lines (32 loc) · 1.35 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
#!/bin/bash
# This script compares the container ID obtained from docker ps and a test
# app writen in golang using the GetID function.
docker rmi --force goagent-test
docker rm goagent-test
docker build --no-cache -f tests/docker/Dockerfile -t goagent-test .
# ACTUAL_CONTAINER_ID is obtained from the golang application running inside the
# docker file
ACTUAL_CONTAINER_ID=$(docker run --name goagent-test goagent-test)
if [[ -z "$ACTUAL_CONTAINER_ID" ]]; then
echo "Failed to obtain the actual container ID, empty value"
exit 1
fi
# EXPECTED_SHORTEN_CONTAINER_ID is obtained from `docker ps`
EXPECTED_SHORTEN_CONTAINER_ID=$(docker ps -q -a --filter "name=goagent-test")
if [[ -z "$EXPECTED_SHORTEN_CONTAINER_ID" ]]; then
echo "Failed to obtain the expected container ID, empty value"
exit 1
fi
SHORTEN_LENGTH=${#EXPECTED_SHORTEN_CONTAINER_ID} # the length of the short format
ACTUAL_SHORTEN_CONTAINER_ID="${ACTUAL_CONTAINER_ID:0:$SHORTEN_LENGTH}"
docker stop $ACTUAL_CONTAINER_ID
echo ""
if [[ "$EXPECTED_SHORTEN_CONTAINER_ID" == "$ACTUAL_SHORTEN_CONTAINER_ID" ]]; then
echo "Container ID successfully obtained \"$EXPECTED_SHORTEN_CONTAINER_ID\"."
exit 0
else
echo -n "Failed to obtain the container ID, expected something starting"
echo -n " with \"$EXPECTED_SHORTEN_CONTAINER_ID\""
echo " got \"$ACTUAL_CONTAINER_ID\"."
exit 1
fi