blob: 2d0932366b036c60940ad8e794c3f720a522f82b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
*** Settings ***
Documentation Checking Subnets created in OpenStack are pushed to OpenDaylight
Suite Setup Create Session OSSession http://${NEUTRON}:9696 headers=${X-AUTH}
Suite Teardown Delete All Sessions
Library Collections
Library RequestsLibrary
Variables ../../../variables/Variables.py
*** Variables ***
${ODLREST} /controller/nb/v2/neutron/subnets
${OSREST} /v2.0/subnets
${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"}]}}
*** Test Cases ***
Check OpenStack Subnets
[Documentation] Checking OpenStack Neutron for known subnets
[Tags] Subnets Neutron OpenStack
Log ${X-AUTH}
${resp} get request OSSession ${OSREST}
Should be Equal As Strings ${resp.status_code} 200
${OSResult} To Json ${resp.content}
Set Suite Variable ${OSResult}
Log ${OSResult}
Check OpenDaylight subnets
[Documentation] Checking OpenDaylight Neutron API for known subnets
[Tags] Subnets Neutron OpenDaylight
Create Session ODLSession http://${CONTROLLER}:${PORT} headers=${HEADERS} auth=${AUTH}
${resp} get request ODLSession ${ODLREST}
Should be Equal As Strings ${resp.status_code} 200
${ODLResult} To Json ${resp.content}
Set Suite Variable ${ODLResult}
Log ${ODLResult}
Create New subnet
[Documentation] Create new subnet in OpenStack
[Tags] Create Subnet OpenStack Neutron
Log ${data}
${resp} post request OSSession ${OSREST} data=${data}
Should be Equal As Strings ${resp.status_code} 201
${result} To JSON ${resp.content}
${result} Get From Dictionary ${result} subnet
${SUBNETID} Get From Dictionary ${result} id
Log ${result}
Log ${SUBNETID}
Set Global Variable ${SUBNETID}
sleep 2
Check New subnet
[Documentation] Check new subnet created in OpenDaylight
[Tags] Check subnet OpenDaylight
${resp} get request ODLSession ${ODLREST}/${SUBNETID}
Should be Equal As Strings ${resp.status_code} 200
|