diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2017-08-03 16:19:27 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-08-03 16:19:27 +0000 |
commit | 3529c70a5bff5139f6d483a86ddfca407374022f (patch) | |
tree | 2f7b5337ca027b36de3fbb31953f0e141577d4dd /test/csit/tests/policy/suite1/test1.robot | |
parent | b73e6141c5f03f95cd39c6f1b8d44908f35b9467 (diff) | |
parent | f1f7c51c48f2fc3b1d6575b7af8f2a48f387ec25 (diff) |
Merge "[POLICY-142] policy starting test"
Diffstat (limited to 'test/csit/tests/policy/suite1/test1.robot')
-rw-r--r-- | test/csit/tests/policy/suite1/test1.robot | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/test/csit/tests/policy/suite1/test1.robot b/test/csit/tests/policy/suite1/test1.robot new file mode 100644 index 000000000..10e685213 --- /dev/null +++ b/test/csit/tests/policy/suite1/test1.robot @@ -0,0 +1,30 @@ +*** Settings *** +Library OperatingSystem +Library RequestsLibrary + +*** Variables *** +${MESSAGE} Hello, world! + +*** Test Cases *** +String Equality Test + Should Be Equal ${MESSAGE} Hello, world! + +Dir Test + [Documentation] Check if /tmp exists + Log ${MESSAGE} + CheckDir /tmp + +Url Test + [Documentation] Check if google.com can be reached + CheckUrl http://www.google.com + +*** Keywords *** +CheckDir + [Arguments] ${path} + Directory Should Exist ${path} + +CheckUrl + [Arguments] ${url} + Create Session session ${url} + ${resp}= Get Request session / + Should Be Equal As Integers ${resp.status_code} 200 |