diff options
author | Pamela Dragosh <pdragosh@research.att.com> | 2017-08-03 13:31:15 +0000 |
---|---|---|
committer | Pamela Dragosh <pdragosh@research.att.com> | 2017-08-03 13:36:18 +0000 |
commit | f1f7c51c48f2fc3b1d6575b7af8f2a48f387ec25 (patch) | |
tree | 074b692f238a4c5779470acd3a1efb5ecd85ae18 /test/csit/tests/policy/suite1 | |
parent | 0146bff780af110d4183de8178ebdf7537545239 (diff) |
[POLICY-142] policy starting test
Change-Id: I8debebb638b8cbdd03d6d5c89234770d43b3ae9b
Signed-off-by: Pamela Dragosh <pdragosh@research.att.com>
Diffstat (limited to 'test/csit/tests/policy/suite1')
-rw-r--r-- | test/csit/tests/policy/suite1/__init__.robot | 2 | ||||
-rw-r--r-- | test/csit/tests/policy/suite1/test1.robot | 30 |
2 files changed, 32 insertions, 0 deletions
diff --git a/test/csit/tests/policy/suite1/__init__.robot b/test/csit/tests/policy/suite1/__init__.robot new file mode 100644 index 000000000..c7970e6aa --- /dev/null +++ b/test/csit/tests/policy/suite1/__init__.robot @@ -0,0 +1,2 @@ +*** Settings *** +Documentation Policy - Suite 1 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 |