Skip to content
Snippets Groups Projects
Commit ba915f31 authored by Giacomo Bernini's avatar Giacomo Bernini
Browse files

fixed indentation problems

parent deb00878
No related branches found
No related tags found
No related merge requests found
...@@ -15,6 +15,7 @@ Library JSONLibrary ...@@ -15,6 +15,7 @@ Library JSONLibrary
Library Collections Library Collections
Library JSONSchemaLibrary schemas/ Library JSONSchemaLibrary schemas/
Library Process Library Process
Library String
*** Keywords *** *** Keywords ***
...@@ -54,9 +55,9 @@ GET VNF Packages with attribute-based filter ...@@ -54,9 +55,9 @@ GET VNF Packages with attribute-based filter
Check HTTP Response Body VnfPkgsInfo Matches the requested Attribute-Based Filter Check HTTP Response Body VnfPkgsInfo Matches the requested Attribute-Based Filter
Log Checking that attribute-based filter is matched Log Checking that attribute-based filter is matched
@{attr} = Split String ${POS_FILTER} ,${VAR_SEPERATOR} @{attr} = Split String ${POS_FILTER} ,${VAR_SEPERATOR}
@{var_id} = Split String @{attr}[0] ,${SEPERATOR} @{var_id} = Split String @{attr}[0] ,${SEPERATOR}
@{var_provider} = Split String @{attr}[1] ,${SEPERATOR} @{var_provider} = Split String @{attr}[1] ,${SEPERATOR}
Should Be True "${response['body'][0]['vnfdId']}"=="@{var_id}[1]" and "${response['body'][0]['vnfProvider']}"=="@{var_provider}[1]" Should Be True "${response['body'][0]['vnfdId']}"=="@{var_id}[1]" and "${response['body'][0]['vnfProvider']}"=="@{var_provider}[1]"
GET VNF Packages with invalid attribute-based filter GET VNF Packages with invalid attribute-based filter
......
...@@ -445,6 +445,18 @@ Send PUT Request to upload NSD Content as plain text file in synchronous mode ...@@ -445,6 +445,18 @@ Send PUT Request to upload NSD Content as plain text file in synchronous mode
${output}= Output response ${output}= Output response
Set Suite Variable ${response} ${output} Set Suite Variable ${response} ${output}
Check Post Condition NSD Content has been Uploaded
Log Checking NsdOnboardingNotification Recieved
Wait Until Keyword Succeeds ${retry} ${interval} Check Response is NsdOnboardingNotification
Check Response is NsdOnboardingNotification
${response}= Output response body
Should Contain ${response['headers']['Content-Type']} application/json
${schema} = Catenate SEPARATOR= NsdOnboardingNotification .schema.json
Validate Json ${schema} ${response['body']}
Log Json Schema Validation OK
Check Postcondition NSD Content is uploaded and available in the NFVO Check Postcondition NSD Content is uploaded and available in the NFVO
Get single file NSD Content in Plain or Zip Format Get single file NSD Content in Plain or Zip Format
Check HTTP Response Status Code Is 200 Check HTTP Response Status Code Is 200
......
...@@ -19,7 +19,7 @@ POST Individual NSInstance - Method not implemented ...@@ -19,7 +19,7 @@ POST Individual NSInstance - Method not implemented
... Post-Conditions: Check Postcondition NS Instance is not created ... Post-Conditions: Check Postcondition NS Instance is not created
POST IndividualNSInstance POST IndividualNSInstance
Check HTTP Response Status Code Is 405 Check HTTP Response Status Code Is 405
Check Postcondition NS Instance is not crerated Check Postcondition NS Instance is not created
GET Information about an individual NS Instance GET Information about an individual NS Instance
[Documentation] Test ID: 5.3.2.2.2 [Documentation] Test ID: 5.3.2.2.2
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment