Update Robot Framework format - step 16
[integration/test.git] / csit / suites / usc / udp / 300_Callhome_UDP / Test.robot
index 40869064ff7fd1105eb485723033acf42387f7ce..cca158b16167c7dacfd1ccb4c7937d5128a402b1 100644 (file)
@@ -1,21 +1,28 @@
 *** Settings ***
-Documentation     Test suite for callhome DTLS channel
-Suite Setup       Create Session    session    http://${ODL_SYSTEM_IP}:${RESTCONFPORT}    auth=${AUTH}    headers=${HEADERS}
-Suite Teardown    Delete All Sessions
-Test Timeout      1 minute
-Library           Collections
-Library           OperatingSystem
-Library           SSHLibrary
-Library           RequestsLibrary
-Library           json
-Library           ../../../../libraries/Common.py
-Variables         ../../../../variables/Variables.py
-Resource          ../../../../libraries/UscUtils.robot
+Documentation       Test suite for callhome DTLS channel
+
+Library             Collections
+Library             OperatingSystem
+Library             SSHLibrary
+Library             RequestsLibrary
+Library             json
+Library             ../../../../libraries/Common.py
+Variables           ../../../../variables/Variables.py
+Resource            ../../../../libraries/UscUtils.robot
+
+Suite Setup         Create Session    session    http://${ODL_SYSTEM_IP}:${RESTCONFPORT}    auth=${AUTH}    headers=${HEADERS}
+Suite Teardown      Delete All Sessions
+Test Timeout        1 minute
+
 
 *** Test Cases ***
 Add Channel
     [Documentation]    Add an USC TLS callhome channel
-    ${content}    Create Dictionary    hostname=${TOOLS_SYSTEM_IP}    tcp=false    port=${ECHO_SERVER_PORT}    remote=false
+    ${content}    Create Dictionary
+    ...    hostname=${TOOLS_SYSTEM_IP}
+    ...    tcp=false
+    ...    port=${ECHO_SERVER_PORT}
+    ...    remote=false
     ${channel}    Create Dictionary    channel=${content}
     ${input}    Create Dictionary    input=${channel}
     ${data}    json.dumps    ${input}
@@ -39,7 +46,11 @@ Check added Channel
 
 Send Messages
     [Documentation]    Send test messages multiple times
-    ${content}    Create Dictionary    hostname=${TOOLS_SYSTEM_IP}    port=${ECHO_SERVER_PORT}    tcp=false    content=${TEST_MESSAGE}
+    ${content}    Create Dictionary
+    ...    hostname=${TOOLS_SYSTEM_IP}
+    ...    port=${ECHO_SERVER_PORT}
+    ...    tcp=false
+    ...    content=${TEST_MESSAGE}
     ${channel}    Create Dictionary    channel=${content}
     ${input}    Create Dictionary    input=${channel}
     FOR    ${index}    IN RANGE    0    ${NUM_OF_MESSAGES}