blob: 55ff40e07695adf4e12809db371531bf38864ab7 [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
puthuparambil.adityab46d1372021-07-09 12:51:10 +010026Suite Setup Create Session MANAGEMENT_URL http://${CPS_HOST}:${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 ***
Ruslan Kashapovd44fcee2021-02-26 11:42:29 +020032Test Liveness Probe Endpoint
puthuparambil.adityab46d1372021-07-09 12:51:10 +010033 ${response}= GET On Session MANAGEMENT_URL health/liveness expected_status=200
Ruslan Kashapovd44fcee2021-02-26 11:42:29 +020034 Should Be Equal As Strings ${response.json()['status']} UP
Ruslan Kashapovaad22402021-02-23 10:08:00 +020035
Ruslan Kashapovd44fcee2021-02-26 11:42:29 +020036Test Readiness Probe Endpoint
puthuparambil.adityab46d1372021-07-09 12:51:10 +010037 ${response}= GET On Session MANAGEMENT_URL health/readiness expected_status=200
lukegleesonfa389b52021-07-05 14:59:49 +010038 Should Be Equal As Strings ${response.json()['status']} UP
puthuparambil.adityab46d1372021-07-09 12:51:10 +010039