diff options
author | Aaron Hay <ah415j@att.com> | 2018-01-15 17:32:13 +0000 |
---|---|---|
committer | Aaron Hay <ah415j@att.com> | 2018-01-15 18:35:40 +0000 |
commit | 918421d8d0bc97be6c9315cceff7563169250509 (patch) | |
tree | bd80a541487fadcc8db6a5185cacac0080301cec /test/csit/tests/appc/healthcheck_amsterdam/test1.robot | |
parent | 90ab86b018fe1a8cdeabee762084afedf98b7752 (diff) |
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 <ah415j@att.com>
Diffstat (limited to 'test/csit/tests/appc/healthcheck_amsterdam/test1.robot')
-rw-r--r-- | test/csit/tests/appc/healthcheck_amsterdam/test1.robot | 27 |
1 files changed, 27 insertions, 0 deletions
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 + |