blob: 80617a3f8c20e97e21ffa855891e1a7847249cf1 [file] [log] [blame]
lukegleesonfa389b52021-07-05 14:59:49 +01001# ============LICENSE_START=======================================================
2# Copyright (c) 2021 Pantheon.tech.
puthuparambil.adityab46d1372021-07-09 12:51:10 +01003# Modifications Copyright (c) 2021 Bell Canada.
lukegleesonfa389b52021-07-05 14:59:49 +01004# ================================================================================
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
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
Ruslan Kashapovaad22402021-02-23 10:08:00 +020020*** Settings ***
Ruslan Kashapovd44fcee2021-02-26 11:42:29 +020021Documentation CPS - Actuator endpoints
22
23Library Collections
24Library RequestsLibrary
25
tragaitdd6021e2021-10-19 16:46:21 +010026Suite Setup Create Session MANAGEMENT_URL http://${CPS_CORE_HOST}:${CPS_CORE_MANAGEMENT_PORT}/manage
Ruslan Kashapovaad22402021-02-23 10:08:00 +020027
28*** Variables ***
29
Ruslan Kashapovaad22402021-02-23 10:08:00 +020030
31*** Test Cases ***
Nagendra90287055edff2022-01-24 14:50:15 +053032Test CPS Enhanced Healthcheck
33 [Documentation] Runs CPS Health Check. It will check for overall status update of CPS component like, Database and diskspace status along with liveliness and readiness check
34 ${response}= GET On Session MANAGEMENT_URL health expected_status=200
35 ${resp_body}= Convert to string ${response.text}
36 Should Contain ${resp_body} UP
37 Should Not Contain ${resp_body} DOWN