Switch to ODL_SYSTEM_IP and OPENSTACK vars
[functest.git] / testcases / Controllers / ODL / custom_tests / neutron / 010__networks.robot
1 *** Settings ***
2 Documentation     Checking Network created in OpenStack are pushed to OpenDaylight
3 Suite Setup       Create Session    OSSession    http://${OPENSTACK}:9696    headers=${X-AUTH}
4 Suite Teardown    Delete All Sessions
5 Library           Collections
6 Library           RequestsLibrary
7 Variables         ../../../variables/Variables.py
8
9 *** Variables ***
10 ${ODLREST}        /controller/nb/v2/neutron/networks
11 ${OSREST}         /v2.0/networks
12 ${postNet}        {"network":{"name":"odl_network","admin_state_up":true}}
13
14 *** Test Cases ***
15 Check OpenStack Networks
16     [Documentation]    Checking OpenStack Neutron for known networks
17     [Tags]    Network Neutron OpenStack
18     Log    ${X-AUTH}
19     ${resp}    get request    OSSession    ${OSREST}
20     Should be Equal As Strings    ${resp.status_code}    200
21     ${OSResult}    To Json    ${resp.content}
22     Log    ${OSResult}
23
24 Check OpenDaylight Networks
25     [Documentation]    Checking OpenDaylight Neutron API for known networks
26     [Tags]    Network Neutron OpenDaylight
27     Create Session    ODLSession    http://${ODL_SYSTEM_IP}:${PORT}    headers=${HEADERS}    auth=${AUTH}
28     ${resp}    get request    ODLSession    ${ODLREST}
29     Should be Equal As Strings    ${resp.status_code}    200
30     ${ODLResult}    To Json    ${resp.content}
31     Log    ${ODLResult}
32
33 Create Network
34     [Documentation]    Create new network in OpenStack
35     [Tags]    Create Network OpenStack Neutron
36     Log    ${postNet}
37     ${resp}    post request    OSSession    ${OSREST}    data=${postNet}
38     Should be Equal As Strings    ${resp.status_code}    201
39     ${result}    To JSON    ${resp.content}
40     ${result}    Get From Dictionary    ${result}    network
41     ${NETID}    Get From Dictionary    ${result}    id
42     Log    ${result}
43     Log    ${NETID}
44     Set Global Variable    ${NETID}
45     sleep    2
46
47 Check Network
48     [Documentation]    Check network created in OpenDaylight
49     [Tags]    Check    Network OpenDaylight
50     ${resp}    get request    ODLSession    ${ODLREST}/${NetID}
51     Should be Equal As Strings    ${resp.status_code}    200