aboutsummaryrefslogtreecommitdiffstats
path: root/tests/ccsdk/oran/suite1/test1.robot
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ccsdk/oran/suite1/test1.robot')
-rw-r--r--tests/ccsdk/oran/suite1/test1.robot30
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/ccsdk/oran/suite1/test1.robot b/tests/ccsdk/oran/suite1/test1.robot
new file mode 100644
index 00000000..10e68521
--- /dev/null
+++ b/tests/ccsdk/oran/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