aboutsummaryrefslogtreecommitdiffstats
path: root/test/csit/tests/integration/suite2/test1.robot
diff options
context:
space:
mode:
Diffstat (limited to 'test/csit/tests/integration/suite2/test1.robot')
-rw-r--r--test/csit/tests/integration/suite2/test1.robot35
1 files changed, 0 insertions, 35 deletions
diff --git a/test/csit/tests/integration/suite2/test1.robot b/test/csit/tests/integration/suite2/test1.robot
deleted file mode 100644
index 722dadfba..000000000
--- a/test/csit/tests/integration/suite2/test1.robot
+++ /dev/null
@@ -1,35 +0,0 @@
-*** 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.onap.org can be reached
- Create Session openo http://www.onap.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