blob: c2c6a9c083b908608196602a1c6d51c69d80542b [file] [log] [blame]
Gary Wu9abb61c2018-09-27 10:38:50 -07001*** settings ***
2Resource ../../common.robot
3Library Collections
4Library RequestsLibrary
5Library OperatingSystem
6Library json
7Library HttpLibrary.HTTP
8
9*** Variables ***
10@{return_ok_list}= 200 201 202 204
11${queryswagger_url} /api/vnflcm/v1/swagger.json
fujinhua329de3e2019-04-16 08:37:35 +080012${query_vnfs_url} /api/vnflcm/v1/vnf_instances
fujinhuaba33cc42019-04-04 09:01:32 +080013${healthcheck_url} /api/vnflcm/v1/health_check
Gary Wu9abb61c2018-09-27 10:38:50 -070014
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 ***
22VnflcmSwaggerTest
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
fujinhuaba33cc42019-04-04 09:01:32 +080032
33VnflcmHealthCheckTest
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
fujinhua329de3e2019-04-16 08:37:35 +080043
44VnflcmQueryVnfsTest
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}