python3 changes in openstack scripts
[integration/test.git] / csit / suites / openstack / neutron / 030__ports.robot
1 *** Settings ***
2 Documentation     Checking Port created in OpenStack are pushed to OpenDaylight
3 Suite Setup       Create Session    OSSession    ${NEUTRONURL}    headers=${X-AUTH}
4 Suite Teardown    Delete All Sessions
5 Library           Collections
6 Library           RequestsLibrary
7 Resource          ../../../variables/Variables.robot
8
9 *** Variables ***
10 ${OSREST}         /v2.0/ports
11 ${data}           {"port":{"network_id":"${NETID}","admin_state_up": true}}
12
13 *** Test Cases ***
14 Check OpenStack ports
15     [Documentation]    Checking OpenStack Neutron for known ports
16     [Tags]    Ports Neutron OpenStack
17     Log    ${X-AUTH}
18     ${resp}    get request    OSSession    ${OSREST}
19     Should be Equal As Strings    ${resp.status_code}    200
20     ${OSResult}    To Json    ${resp.text}
21     Log    ${OSResult}
22
23 Check OpenDaylight ports
24     [Documentation]    Checking OpenDaylight Neutron API for known ports
25     [Tags]    Ports Neutron OpenDaylight
26     Create Session    ODLSession    http://${ODL_SYSTEM_IP}:${PORT}    headers=${HEADERS}    auth=${AUTH}
27     ${resp}    get request    ODLSession    ${NEUTRON_PORTS_API}
28     Should be Equal As Strings    ${resp.status_code}    200
29     ${ODLResult}    To Json    ${resp.text}
30     Log    ${ODLResult}
31
32 Create New Port
33     [Documentation]    Create new port in OpenStack
34     [Tags]    Create port OpenStack Neutron
35     Log    ${data}
36     ${resp}    post request    OSSession    ${OSREST}    data=${data}
37     Should be Equal As Strings    ${resp.status_code}    201
38     ${result}    To JSON    ${resp.text}
39     ${result}    Get From Dictionary    ${result}    port
40     ${PORTID}    Get From Dictionary    ${result}    id
41     Log    ${result}
42     Log    ${PORTID}
43     Set Global Variable    ${PORTID}
44     sleep    2
45
46 Check New Port
47     [Documentation]    Check new port created in OpenDaylight
48     [Tags]    Check port OpenDaylight
49     ${resp}    get request    ODLSession    ${NEUTRON_PORTS_API}/${PORTID}
50     Should be Equal As Strings    ${resp.status_code}    200