From aad224026765d4b39ac9dde3c30f138dd426f897 Mon Sep 17 00:00:00 2001 From: Ruslan Kashapov Date: Tue, 23 Feb 2021 10:08:00 +0200 Subject: Introduce CPS integration testing (CSIT) Issue-ID: CPS-188 Change-Id: I4a225da73587d5276f302b05a0729d1127caddd9 Signed-off-by: Ruslan Kashapov --- csit/tests/actuator/actuator.robot | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 csit/tests/actuator/actuator.robot (limited to 'csit/tests/actuator/actuator.robot') diff --git a/csit/tests/actuator/actuator.robot b/csit/tests/actuator/actuator.robot new file mode 100644 index 0000000000..59c76073a3 --- /dev/null +++ b/csit/tests/actuator/actuator.robot @@ -0,0 +1,18 @@ +*** Settings *** +Library OperatingSystem +Library Process + +*** Variables *** + +${check} ${SCRIPTS}/actuator/check_endpoint.sh + +*** Test Cases *** +Liveness Probe for CPS + [Documentation] Liveness Probe + ${result}= Run Process bash ${check} ${CPS_HOST}/manage/health/liveness >> actuator-test.log shell=yes + Should Be Equal As Integers ${result.rc} 0 + +Readiness Probe for CPS + [Documentation] Readiness Probe + ${result}= Run Process bash ${check} ${CPS_HOST}/manage/health/readiness >> actuator-test.log shell=yes + Should Be Equal As Integers ${result.rc} 0 -- cgit 1.2.3-korg