aboutsummaryrefslogtreecommitdiffstats
path: root/tests/multicloud-windriver/provision/sanity_test_multicloud.robot
blob: c257e33fdce0cb55d4644cddb02c23843e772fe2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
*** settings ***
Library     Collections
Library     RequestsLibrary
Library     OperatingSystem
Library     json

*** Variables ***
@{return_ok_list}=   200  201  202
${queryswagger_windriver_url}    /api/multicloud-titanium_cloud/v0/swagger.json


*** Test Cases ***
TitaniumCloudSwaggerTest
    [Documentation]    query swagger info rest test
    ${headers}    Create Dictionary    Content-Type=application/json    Accept=application/json
    Create Session    web_session    http://${SERVICE_IP}:${SERVICE_PORT}    headers=${headers}
    ${resp}=  Get Request    web_session    ${queryswagger_windriver_url}
    ${responese_code}=     Convert To String      ${resp.status_code}
    List Should Contain Value    ${return_ok_list}   ${responese_code}
    ${response_json}    json.loads    ${resp.content}
    ${swagger_version}=    Convert To String      ${response_json['swagger']}
    Should Be Equal    ${swagger_version}    2.0