aboutsummaryrefslogtreecommitdiffstats
path: root/tests/ccsdk/oran/suite2/test1.robot
diff options
context:
space:
mode:
authormaximesson <maxime.bonneau@est.tech>2020-08-07 14:18:32 +0200
committermaximesson <maxime.bonneau@est.tech>2020-08-07 14:47:49 +0200
commit181070f74c056828ff293dfbe692590543703a93 (patch)
tree6af49340620380fbaefaf6da98ac22f62457f7a0 /tests/ccsdk/oran/suite2/test1.robot
parent8380fca432d740fe0c1d00fb9a39d3917672d91e (diff)
PLaceholder for CSIT
Change-Id: I7f0ef4ed815c39abaf1c231cfba3c0dad226094e Issue-ID: CCSDK-2491 Signed-off-by: maximesson <maxime.bonneau@est.tech>
Diffstat (limited to 'tests/ccsdk/oran/suite2/test1.robot')
-rw-r--r--tests/ccsdk/oran/suite2/test1.robot30
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/ccsdk/oran/suite2/test1.robot b/tests/ccsdk/oran/suite2/test1.robot
new file mode 100644
index 00000000..5d354dde
--- /dev/null
+++ b/tests/ccsdk/oran/suite2/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 www.onap.org can be reached
+ Create Session openo http://www.onap.org
+ CheckUrl openo /
+
+*** 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