aboutsummaryrefslogtreecommitdiffstats
path: root/test/csit/tests
diff options
context:
space:
mode:
authorGary Wu <gary.i.wu@huawei.com>2017-07-12 14:53:01 -0700
committerGary Wu <gary.i.wu@huawei.com>2017-07-12 14:53:01 -0700
commitcf6028ef5147a966fc29759aa36ce199ede71fb5 (patch)
treefbdcf9d30318c981716e1e560af6c02ab4e31187 /test/csit/tests
parent8f1a47466f25ef2b941cd73dd7cc0bbe7b1b7fc6 (diff)
Sample CSIT test suite
Change-Id: I07f685cb13cea2996e97fab4c65441bbd39f9539 Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
Diffstat (limited to 'test/csit/tests')
-rw-r--r--test/csit/tests/integration/suite1/__init__.robot2
-rw-r--r--test/csit/tests/integration/suite1/test1.robot30
-rw-r--r--test/csit/tests/integration/suite2/__init__.robot2
-rw-r--r--test/csit/tests/integration/suite2/test1.robot35
4 files changed, 69 insertions, 0 deletions
diff --git a/test/csit/tests/integration/suite1/__init__.robot b/test/csit/tests/integration/suite1/__init__.robot
new file mode 100644
index 000000000..f310a65b7
--- /dev/null
+++ b/test/csit/tests/integration/suite1/__init__.robot
@@ -0,0 +1,2 @@
+*** Settings ***
+Documentation Integration - Suite 1
diff --git a/test/csit/tests/integration/suite1/test1.robot b/test/csit/tests/integration/suite1/test1.robot
new file mode 100644
index 000000000..10e685213
--- /dev/null
+++ b/test/csit/tests/integration/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
diff --git a/test/csit/tests/integration/suite2/__init__.robot b/test/csit/tests/integration/suite2/__init__.robot
new file mode 100644
index 000000000..f04a3af26
--- /dev/null
+++ b/test/csit/tests/integration/suite2/__init__.robot
@@ -0,0 +1,2 @@
+*** Settings ***
+Documentation Integration - Suite 2
diff --git a/test/csit/tests/integration/suite2/test1.robot b/test/csit/tests/integration/suite2/test1.robot
new file mode 100644
index 000000000..fd841861b
--- /dev/null
+++ b/test/csit/tests/integration/suite2/test1.robot
@@ -0,0 +1,35 @@
+*** 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 www.open-o.org can be reached
+ Create Session openo http://www.open-o.org
+ CheckUrl openo /
+
+Mock Hello Server Test
+ [Documentation] Check /hello endpoint
+ Create Session hello http://${MOCK_IP}:1080
+ CheckUrl hello /hello
+
+*** Keywords ***
+CheckDir
+ [Arguments] ${path}
+ Directory Should Exist ${path}
+
+CheckUrl
+ [Arguments] ${session} ${path}
+ ${resp}= Get Request ${session} ${path}
+ Should Be Equal As Integers ${resp.status_code} 200