Added CSIT for Macroflow with HEAT
[integration/csit.git] / scripts / sdc / docker_health.sh
1 #!/bin/bash
2
3 curl localhost:9200/_cluster/health?pretty=true
4
5 echo "BE Health Check:"
6 curl http://localhost:8080/sdc2/rest/healthCheck
7
8 echo ""
9 echo ""
10 echo "FE Health Check:"
11 curl http://localhost:8181/sdc1/rest/healthCheck
12
13 echo ""
14 echo ""
15 http_code=$(curl -o out.html -w '%{http_code}' -H "Accept: application/json" -H "Content-Type: application/json" -H "USER_ID: jh0003" http://localhost:8080/sdc2/rest/v1/user/demo;)
16 if [[ ${http_code} != 200 ]]
17 then
18     echo "Error [${http_code}] while checking existence of user"
19     return ${http_code}
20 fi
21 echo "Check user existence: OK"
22