Introduce CPS integration testing (CSIT)
[cps.git] / csit / scripts / actuator / check_endpoint.sh
1 #!/bin/bash
2 #
3 #  ============LICENSE_START=======================================================
4 #  Copyright (C) 2021 Pantheon.tech
5 #  ================================================================================
6 #  Licensed under the Apache License, Version 2.0 (the "License");
7 #  you may not use this file except in compliance with the License.
8 #  You may obtain a copy of the License at
9 #
10 #        http://www.apache.org/licenses/LICENSE-2.0
11 #  Unless required by applicable law or agreed to in writing, software
12 #  distributed under the License is distributed on an "AS IS" BASIS,
13 #  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 #  See the License for the specific language governing permissions and
15 #  limitations under the License.
16 #
17 #  SPDX-License-Identifier: Apache-2.0
18 #  ============LICENSE_END=========================================================
19 #
20
21 # $1 is endpoint for GET request
22
23 echo "Testing CPS actuator endpoint $1"
24
25 response=$(curl -o /dev/null -s -w "%{http_code}\n" -H "Accept: application/json" -H "Content-Type: application/json" -X GET $1)
26
27 if [ "$response" == "200" ]; then
28     echo "CPS Actuator endpoint check successful."
29     exit 0;
30 fi
31
32 echo "CPS Actuator endpoint check failed with response code ${response}."
33 exit 1