diff options
author | ecaiyanlinux <martin.c.yan@est.tech> | 2021-09-02 12:21:00 +0200 |
---|---|---|
committer | ecaiyanlinux <martin.c.yan@est.tech> | 2021-09-02 15:09:36 +0200 |
commit | 9002c53de67fd594efbf8f66f3b0706ad9a9bec2 (patch) | |
tree | c8ae82b69c039d02542b43ccb749e13e688bdb82 /csit/tests/healthcheck/test3.robot | |
parent | 2d34af551ed404a43afdfebb63b2a1b426722071 (diff) |
Improvement & Enhancement of csit tests
Improve integration with sdnc
Use env variables to replace image urls & tags
Signed-off-by: ecaiyanlinux <martin.c.yan@est.tech>
Issue-ID: CCSDK-3433
Change-Id: Id6d6e428e5ddba018b50710710d077613d02b2e8
Diffstat (limited to 'csit/tests/healthcheck/test3.robot')
-rw-r--r-- | csit/tests/healthcheck/test3.robot | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/csit/tests/healthcheck/test3.robot b/csit/tests/healthcheck/test3.robot new file mode 100644 index 00000000..cedac7e5 --- /dev/null +++ b/csit/tests/healthcheck/test3.robot @@ -0,0 +1,16 @@ +*** Settings *** +Library OperatingSystem +Library Process + +*** Variables *** + +${pms_a1sim_sdnc} ${SCRIPTS}/healthcheck/test/pms_a1sim_sdnc.sh + + +*** Test Cases *** + +Health check test case for NONRTRIC + [Documentation] Deploy NONRTRIC with SDNC + Start Process ${pms_a1sim_sdnc} >> log_hc.txt shell=yes + ${cli_cmd_output}= Wait For Process timeout=600 + Should Be Equal as Integers ${cli_cmd_output.rc} 0 |