Update Robot Framework format - step 13
[integration/test.git] / csit / suites / openstack / neutron / 010__networks.robot
index 5525ed18b36ec4159a40724b2473402f3c36bdc6..d34b040b3df5bc1b4ed6fc2b9b4cee80e846b802 100644 (file)
@@ -1,19 +1,23 @@
 *** Settings ***
-Documentation     Checking Network created in OpenStack are pushed to OpenDaylight
-Suite Setup       Create Session    OSSession    ${NEUTRONURL}    headers=${X-AUTH}
-Suite Teardown    Delete All Sessions
-Library           Collections
-Library           RequestsLibrary
-Resource          ../../../variables/Variables.robot
+Documentation       Checking Network created in OpenStack are pushed to OpenDaylight
+
+Library             Collections
+Library             RequestsLibrary
+Resource            ../../../variables/Variables.robot
+
+Suite Setup         Create Session    OSSession    ${NEUTRONURL}    headers=${X-AUTH}
+Suite Teardown      Delete All Sessions
+
 
 *** Variables ***
-${OSREST}         /v2.0/networks
-${postNet}        {"network":{"name":"odl_network","admin_state_up":true}}
+${OSREST}       /v2.0/networks
+${postNet}      {"network":{"name":"odl_network","admin_state_up":true}}
+
 
 *** Test Cases ***
 Check OpenStack Networks
     [Documentation]    Checking OpenStack Neutron for known networks
-    [Tags]    Network Neutron OpenStack
+    [Tags]    network neutron openstack
     Log    ${X-AUTH}
     ${resp}    get request    OSSession    ${OSREST}
     Should be Equal As Strings    ${resp.status_code}    200
@@ -22,7 +26,7 @@ Check OpenStack Networks
 
 Check OpenDaylight Networks
     [Documentation]    Checking OpenDaylight Neutron API for known networks
-    [Tags]    Network Neutron OpenDaylight
+    [Tags]    network neutron opendaylight
     Create Session    ODLSession    http://${ODL_SYSTEM_IP}:${PORT}    headers=${HEADERS}    auth=${AUTH}
     ${resp}    get request    ODLSession    ${NEUTRON_NETWORKS_API}
     Should be Equal As Strings    ${resp.status_code}    200
@@ -31,7 +35,7 @@ Check OpenDaylight Networks
 
 Create Network
     [Documentation]    Create new network in OpenStack
-    [Tags]    Create Network OpenStack Neutron
+    [Tags]    create network openstack neutron
     Log    ${postNet}
     ${resp}    post request    OSSession    ${OSREST}    data=${postNet}
     Should be Equal As Strings    ${resp.status_code}    201
@@ -45,6 +49,6 @@ Create Network
 
 Check Network
     [Documentation]    Check network created in OpenDaylight
-    [Tags]    Check    Network OpenDaylight
+    [Tags]    check    network opendaylight
     ${resp}    get request    ODLSession    ${NEUTRON_NETWORKS_API}/${NetID}
     Should be Equal As Strings    ${resp.status_code}    200