diff options
author | Jerry Flood <jflood@att.com> | 2019-02-25 15:02:53 -0500 |
---|---|---|
committer | Jerry Flood <jflood@att.com> | 2019-02-25 15:03:20 -0500 |
commit | c98ae2d0bd8ef115e5302d421a751b6f5c3d838d (patch) | |
tree | 115d138feb840bf03e1732cc63dfd97ac2523a63 /cmso-robot/robot | |
parent | f168a37fc269e58e77ad10969960ef84446a47ee (diff) |
Add build of robot container
Issue-ID: OPTFRA-393
Change-Id: Ifa0ea6100f997793ccafe2164318bc802d75700a
Signed-off-by: Jerry Flood <jflood@att.com>
Diffstat (limited to 'cmso-robot/robot')
-rw-r--r-- | cmso-robot/robot/testsuites/AAAwait_for_server.robot | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/cmso-robot/robot/testsuites/AAAwait_for_server.robot b/cmso-robot/robot/testsuites/AAAwait_for_server.robot new file mode 100644 index 0000000..c655c98 --- /dev/null +++ b/cmso-robot/robot/testsuites/AAAwait_for_server.robot @@ -0,0 +1,18 @@ +*** Settings *** +Documentation Wait for service to be up before starting + +Library StringTemplater +Library UUID + +Resource ../resources/scheduler_common.robot + + +*** Test Cases *** +Wait For Healthy CMSO + [Tags] ete + Wait Until Keyword Succeeds 240s 30s CMSO Health Check + +*** Keywords *** +CMSO Health Check + ${resp}= Get Change Management alias health + Should Be Equal as Strings ${resp.status_code} 200
\ No newline at end of file |