From 918421d8d0bc97be6c9315cceff7563169250509 Mon Sep 17 00:00:00 2001 From: Aaron Hay Date: Mon, 15 Jan 2018 17:32:13 +0000 Subject: Updating APPC CSIT release support Updating docker image references for the current release (master) and the prior release (Amsterdam). Change-Id: I5bf45898c85695f82ecda8d418aa6a3786ddef14 Issue-ID: APPC-410 Signed-off-by: Aaron Hay --- .../tests/appc/healthcheck_amsterdam/test1.robot | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 test/csit/tests/appc/healthcheck_amsterdam/test1.robot (limited to 'test/csit/tests/appc/healthcheck_amsterdam/test1.robot') diff --git a/test/csit/tests/appc/healthcheck_amsterdam/test1.robot b/test/csit/tests/appc/healthcheck_amsterdam/test1.robot new file mode 100644 index 000000000..8bd49860b --- /dev/null +++ b/test/csit/tests/appc/healthcheck_amsterdam/test1.robot @@ -0,0 +1,27 @@ +*** Settings *** +Library OperatingSystem +Library Process + +*** Variables *** + +${bundle_query} ${SCRIPTS}/bundle_query.sh +${health_check} ${SCRIPTS}/health_check.sh +${db_query} ${SCRIPTS}/db_query.sh + + +*** Test Cases *** +Health check test case for APPC + [Documentation] Health check + ${result_hc}= Run Process bash ${health_check} > log_hc.txt shell=yes + Should Be Equal As Integers ${result_hc.rc} 0 + +Query bundle test case for APPC + [Documentation] Query bundles + ${result_bq}= Run Process bash ${bundle_query} > log_bq.txt shell=yes + Should Be Equal As Integers ${result_bq.rc} 0 + +Query database test case for APPC + [Documentation] Query database + ${result_db}= Run Process bash ${db_query} > log_db.txt shell=yes + Should Be Equal As Integers ${result_db.rc} 0 + -- cgit 1.2.3-korg