Switch to ODL_SYSTEM_IP and OPENSTACK vars
[functest.git] / testcases / Controllers / ODL / custom_tests / neutron / 020__subnets.robot
1 *** Settings ***
2 Documentation     Checking Subnets 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/subnets
11 ${OSREST}         /v2.0/subnets
12 ${data}           {"subnet":{"network_id":"${NETID}","ip_version":4,"cidr":"172.16.64.0/24","allocation_pools":[{"start":"172.16.64.20","end":"172.16.64.120"}]}}
13
14 *** Test Cases ***
15 Check OpenStack Subnets
16     [Documentation]    Checking OpenStack Neutron for known subnets
17     [Tags]    Subnets 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 subnets
25     [Documentation]    Checking OpenDaylight Neutron API for known subnets
26     [Tags]    Subnets 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 New subnet
34     [Documentation]    Create new subnet in OpenStack
35     [Tags]    Create Subnet OpenStack Neutron
36     Log    ${data}
37     ${resp}    post request    OSSession    ${OSREST}    data=${data}
38     Should be Equal As Strings    ${resp.status_code}    201
39     ${result}    To JSON    ${resp.content}
40     ${result}    Get From Dictionary    ${result}    subnet
41     ${SUBNETID}    Get From Dictionary    ${result}    id
42     Log    ${result}
43     Log    ${SUBNETID}
44     Set Global Variable    ${SUBNETID}
45     sleep    2
46
47 Check New subnet
48     [Documentation]    Check new subnet created in OpenDaylight
49     [Tags]    Check    subnet OpenDaylight
50     ${resp}    get request    ODLSession    ${ODLREST}/${SUBNETID}
51     Should be Equal As Strings    ${resp.status_code}    200