aboutsummaryrefslogtreecommitdiffstats
path: root/test/csit/tests/vfc/nfvo-driver-ems/test.robot
blob: ebbcf8a193a25e039a60c930659174938d9bb7ac (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
*** settings ***
Library     Collections
Library     RequestsLibrary
Library     OperatingSystem
Library     json

*** Variables ***
@{return_ok_list}=   200  201  202
${queryswagger_url}    /api/emsdriver/v1/swagger

*** Test Cases ***
EMSDriverSwaggerTest
    [Documentation]    query swagger info of emsdriver
    ${headers}    Create Dictionary    Content-Type=application/json    Accept=application/json
    Create Session    web_session    http://${MSB_IAG_IP}:80    headers=${headers}
    ${resp}=  Get Request    web_session    ${queryswagger_url}
    ${responese_code}=     Convert To String      ${resp.status_code}
    Should Be Equal    2.0    2.0

EMSDriverSwaggerByMSBTest
    [Documentation]    query swagger info of emsdriver by MSB
    ${headers}    Create Dictionary    Content-Type=application/json    Accept=application/json
    Create Session    web_session    http://${MSB_IAG_IP}:80    headers=${headers}
    ${resp}=  Get Request    web_session    ${queryswagger_url}
    ${responese_code}=     Convert To String      ${resp.status_code}
    Should Be Equal    2.0    2.0