Merge "Attempt to check CSIT Wait for CBS startup"
[integration/csit.git] / tests / vfc / gvnfm-vnflcm / test.robot
1 *** settings ***
2 Resource    ../../common.robot
3 Library     Collections
4 Library     RequestsLibrary
5 Library     OperatingSystem
6 Library     json
7 Library     HttpLibrary.HTTP
8
9 *** Variables ***
10 @{return_ok_list}=   200  201  202  204
11 ${queryswagger_url}    /api/vnflcm/v1/swagger.json
12 ${query_vnfs_url}    /api/vnflcm/v1/vnf_instances
13 ${healthcheck_url}   /api/vnflcm/v1/health_check
14
15 #json files
16 ${create_vnf_json}    ${SCRIPTS}/../tests/vfc/gvnfm-vnflcm/jsoninput/create_vnf.json
17
18 #global variables
19 ${vnfInstId}
20
21 *** Test Cases ***
22 VnflcmSwaggerTest
23     [Documentation]    query swagger info vnflcm by MSB
24     ${headers}    Create Dictionary    Content-Type=application/json    Accept=application/json
25     Create Session    web_session    http://${VNFLCM_IP}:8801    headers=${headers}
26     ${resp}=  Get Request    web_session    ${queryswagger_url}
27     ${responese_code}=     Convert To String      ${resp.status_code}
28     List Should Contain Value    ${return_ok_list}   ${responese_code}
29     ${response_json}    json.loads    ${resp.content}
30     ${swagger_version}=    Convert To String      ${response_json['swagger']}
31     Should Be Equal    ${swagger_version}    2.0
32
33 VnflcmHealthCheckTest
34     [Documentation]    check health for vnflcm by MSB
35     ${headers}    Create Dictionary    Content-Type=application/json    Accept=application/json
36     Create Session    web_session    http://${VNFLCM_IP}:8801    headers=${headers}
37     ${resp}=  Get Request    web_session    ${healthcheck_url}
38     ${responese_code}=     Convert To String      ${resp.status_code}
39     List Should Contain Value    ${return_ok_list}   ${responese_code}
40     ${response_json}    json.loads    ${resp.content}
41     ${health_status}=    Convert To String      ${response_json['status']}
42     Should Be Equal    ${health_status}    active
43
44 VnflcmQueryVnfsTest
45     [Documentation]    check health for vnflcm by MSB
46     ${headers}    Create Dictionary    Content-Type=application/json    Accept=application/json
47     Create Session    web_session    http://${VNFLCM_IP}:8801    headers=${headers}
48     ${resp}=  Get Request    web_session    ${query_vnfs_url}
49     ${responese_code}=     Convert To String      ${resp.status_code}
50     List Should Contain Value    ${return_ok_list}   ${responese_code}