Aaron Hay | 5a7cb08 | 2017-08-21 19:09:35 +0000 | [diff] [blame] | 1 | *** Settings *** |
Aaron Hay | db1e9c5 | 2017-08-24 15:06:59 +0000 | [diff] [blame^] | 2 | Library OperatingSystem |
| 3 | Library Process |
| 4 | |
| 5 | *** Variables *** |
| 6 | |
| 7 | ${bundle_query} ${SCRIPTS}/bundle_query.sh |
| 8 | ${health_check} ${SCRIPTS}/health_check.sh |
Aaron Hay | 5a7cb08 | 2017-08-21 19:09:35 +0000 | [diff] [blame] | 9 | |
| 10 | |
| 11 | *** Test Cases *** |
Aaron Hay | db1e9c5 | 2017-08-24 15:06:59 +0000 | [diff] [blame^] | 12 | Health check test case for APPC |
| 13 | [Documentation] Health check |
| 14 | ${result_hc}= Run Process bash ${health_check} > log_hc.txt shell=yes |
| 15 | Should Be Equal As Integers ${result_hc.rc} 0 |
| 16 | |
| 17 | Query bundle test case for APPC |
| 18 | [Documentation] Query bundles |
| 19 | ${result_bq}= Run Process bash ${bundle_query} > log_bq.txt shell=yes |
| 20 | Should Be Equal As Integers ${result_bq.rc} 0 |
| 21 | |
| 22 | |