aboutsummaryrefslogtreecommitdiffstats
path: root/tests/vfc/nfvo-catalog/PNFDescriptors.robot
diff options
context:
space:
mode:
authorOlivia.Zhan <zhan.jie1@zte.com.cn>2019-07-11 09:27:06 +0800
committerOlivia Zhan <zhan.jie1@zte.com.cn>2019-07-11 01:28:35 +0000
commit4881bf309111157deacdc49c60326d2dcfd65016 (patch)
tree458c8910e8fe4921c64580f629096040e8d6993e /tests/vfc/nfvo-catalog/PNFDescriptors.robot
parent42a41b3869ae6a194b6325b5893d7057755ba7be (diff)
Add csit case for PNF Descriptors
Issue-ID: INT-1015 Signed-off-by: Olivia.Zhan <zhan.jie1@zte.com.cn> Change-Id: I3abe3fcb8094001a1de1f37c92cfcf8f403b2f95
Diffstat (limited to 'tests/vfc/nfvo-catalog/PNFDescriptors.robot')
-rw-r--r--tests/vfc/nfvo-catalog/PNFDescriptors.robot74
1 files changed, 74 insertions, 0 deletions
diff --git a/tests/vfc/nfvo-catalog/PNFDescriptors.robot b/tests/vfc/nfvo-catalog/PNFDescriptors.robot
new file mode 100644
index 00000000..c4fef131
--- /dev/null
+++ b/tests/vfc/nfvo-catalog/PNFDescriptors.robot
@@ -0,0 +1,74 @@
+*** Settings ***
+Resource ../../common.robot
+Library Collections
+Library RequestsLibrary
+Library OperatingSystem
+Library json
+Library HttpLibrary.HTTP
+
+*** Variables ***
+${catalog_port} 8806
+${pnf_descriptors_url} /api/nsd/v1/pnf_descriptors
+
+#json files
+${request_json} ${SCRIPTS}/../tests/vfc/nfvo-catalog/jsons/CreatePnfdInfoRequest.json
+
+#global variables
+${pnfdId}
+
+*** Test Cases ***
+Create new PNF Descriptor Resource
+ Log Create new PNF Descriptor Resource
+ [Documentation] The objective is to test the creation of a new Create new PNF Descriptor resource
+ ${json_value}= json_from_file ${request_json}
+ ${json_string}= string_from_json ${json_value}
+ ${headers} Create Dictionary Content-Type=application/json Accept=application/json
+ Create Session web_session http://${CATALOG_IP}:${catalog_port} headers=${headers}
+ Set Request Body ${json_string}
+ ${resp}= Post Request web_session ${pnf_descriptors_url} ${json_string}
+ Should Be Equal As Strings 201 ${resp.status_code}
+ ${response_json} json.loads ${resp.content}
+ Should Be Equal As Strings CREATED ${response_json['pnfdOnboardingState']}
+ ${pnfdId}= Convert To String ${response_json['id']}
+ Set Global Variable ${pnfdId}
+
+GET all PNF Descriptors Information
+ Log GET all PNF Descriptors Information
+ [Documentation] The objective is to test the retrieval of all the PNF Descriptors information
+ ${headers} Create Dictionary Content-Type=application/json Accept=application/json
+ Create Session web_session http://${CATALOG_IP}:${catalog_port} headers=${headers}
+ ${resp}= Get Request web_session ${pnf_descriptors_url}
+ Should Be Equal As Strings 200 ${resp.status_code}
+ ${response_json} json.loads ${resp.content}
+ Should Be Equal As Strings ${pnfdId} ${response_json[0]['id']}
+
+PUT all PNF Descriptors - Method not implemented
+ Log PUT all PNF Descriptors - Method not implemented
+ [Documentation] The objective is to test that PUT method is not allowed to modify existing PNF Descriptors
+ ${headers} Create Dictionary Content-Type=application/json Accept=application/json
+ Create Session web_session http://${CATALOG_IP}:${catalog_port} headers=${headers}
+ ${resp}= Put Request web_session ${pnf_descriptors_url}
+ Should Be Equal As Strings 405 ${resp.status_code}
+
+PATCH all PNF Descriptors - Method not implemented
+ Log PATCH all PNF Descriptors - Method not implemented
+ [Documentation] The objective is to test that PATCH method is not allowed to update existing PNF Descriptors
+ ${headers} Create Dictionary Content-Type=application/json Accept=application/json
+ Create Session web_session http://${CATALOG_IP}:${catalog_port} headers=${headers}
+ ${resp}= Patch Request web_session ${pnf_descriptors_url}
+ Should Be Equal As Strings 405 ${resp.status_code}
+
+DELETE all PNF Descriptors - Method not implemented
+ Log DELETE all PNF Descriptors - Method not implemented
+ [Documentation] The objective is to test that DELETE method is not allowed to delete existing PNF Descriptors
+ ${headers} Create Dictionary Content-Type=application/json Accept=application/json
+ Create Session web_session http://${CATALOG_IP}:${catalog_port} headers=${headers}
+ ${resp}= Delete Request web_session ${pnf_descriptors_url}
+ Should Be Equal As Strings 405 ${resp.status_code}
+
+DELETE PNF Package
+ Log DELETE PNF Package
+ ${headers} Create Dictionary Content-Type=application/json Accept=application/json
+ Create Session web_session http://${CATALOG_IP}:${catalog_port} headers=${headers}
+ ${resp}= Delete Request web_session ${pnf_descriptors_url}/${pnfdId}
+ Should Be Equal As Strings 204 ${resp.status_code}