Allow passing arguments to ADML-HTTP docker image entrypoint
[anna.git] / example / diameter / launcher / resources / rest_api / ct / ct.sh
1 #!/bin/bash
2
3 #############
4 # VARIABLES #
5 #############
6
7 REPO_DIR="$(git rev-parse --show-toplevel 2>/dev/null)"
8 [ -z "$REPO_DIR" ] && { echo "You must execute under a valid git repository !" ; exit 1 ; }
9
10 SERVICES=${REPO_DIR}/example/diameter/launcher/resources/rest_api/ct/resources/servicesJson-request.json
11 ENDPOINT=http://localhost:8074
12 PORT=$(echo ${ENDPOINT} | cut -d: -f3)
13 C_NAME=anna-adml-http
14 # Entrypoint arguments (ft/st):
15 EXTRA_ARGUMENTS= # default is ft (function test: debug traces and traffic logs)
16 EXTRA_ARGUMENTS=st
17
18 VARIANT=${1:-Release}
19
20 #############
21 # EXECUTION #
22 #############
23
24 echo
25 echo "Variant: ${VARIANT}"
26 echo "Remember usage: $0 [variant: <[Release]|Debug]>"
27 echo
28
29 cd $(dirname $0)
30
31 # Basic requirement:
32 nghttp --version 2>/dev/null
33 [ $? -ne 0 ] && { echo -e "\nThe HTTP2 client 'nghttp' is required. Install with: sudo apt install nghttp\n" ; exit 1 ; }
34 echo "Requirement found !"
35
36 echo
37 echo "Rebuild ADML HTTP service image (y/n) [n]:"
38 read opt
39 [ -z "${opt}" ] && opt=n
40 if [ "${opt}" = "y" ]
41 then
42   ${REPO_DIR}/tools/build-anna-adml-http ${VARIANT}
43 fi
44
45 version=$(${REPO_DIR}/tools/version)
46 [ "${VARIANT}" = "Debug" ] && { version=${version}-debug ; C_NAME=${C_NAME}-debug ; }
47 echo "Restart ADML HTTP service image (version '${version}') ..."
48 docker kill ${C_NAME} &>/dev/null
49 cid=$(docker run --rm -d -p ${PORT}:${PORT} --name ${C_NAME} anna-adml-http:${version} ${EXTRA_ARGUMENTS} >/dev/null)
50 [ $? -ne 0 ] && exit 1
51
52 echo "Container id: ${cid} (deployed as '${C_NAME}')"
53
54 echo
55 echo "Configuring services (${SERVICES}) ..."
56 sleep 4 # wait for docker running
57 nghttp -H ":method: POST" -d ${SERVICES} ${ENDPOINT}/services | tee .response.json | jq '.'
58 result=$(cat .response.json | jq -r '.["success"]')
59 rm .response.json
60 if [ "${result}" = "false" ]
61 then
62   echo
63   echo "Check if another ADML HTTP service (anna-adml-http*) has been started (port ${PORT} busy ?)"
64   exit 1
65 fi
66
67 echo
68 echo -n "Waiting for server-client connection ..."
69 while true
70 do
71   docker exec -it ${C_NAME} bash -c "netstat -p \$(pgrep ADML) --numeric-ports | grep -w 3868 | grep -w ESTABLISHED" >/dev/null
72   [ $? -eq 0 ] && break
73   echo -n .
74   sleep 1
75 done
76 echo "Ready !"
77
78 echo
79 echo "Press ENTER to start component test, CTRL-C to abort ..."
80 read dummy
81
82 pytest
83