Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • nfv/api-tests
  • reinaortega/api-tests
2 results
Show changes
Showing
with 209 additions and 133 deletions
......@@ -92,10 +92,19 @@ Send Post Request Create new NS Performance Monitoring Job
Set Headers {"Content-Type": "${CONTENT_TYPE_JSON}"}
Run Keyword If ${AUTH_USAGE} == 1 Set Headers {"${AUTHORIZATION_HEADER}":"${AUTHORIZATION_TOKEN}"}
${template}= Get File jsons/CreatePmJobRequest.json
${body}= Format String ${template} pmJobId=${pmJobId}
${body}= Format String ${template} pmJobObjectInstanceId=${pmJobObjectInstanceId} callbackUri=${callback_uri} callbackEndpoint=${callback_endpoint} callbackPort=${callback_port} performanceMetric=${performanceMetric} collectionPeriod=${collectionPeriod} reportingPeriod=${reportingPeriod}
Log Creating mock request and response to handle GET operation on notification endpoint
&{notification_request}= Create Mock Request Matcher GET ${callback_endpoint}
&{notification_response}= Create Mock Response status_code=204
Log Issue the request
Create Mock Expectation ${notification_request} ${notification_response}
POST ${apiRoot}/${apiName}/${apiMajorVersion}/pm_jobs ${body}
${output}= Output response
Set Suite Variable ${response} ${output}
Log Verify producer tested the notification endpoint
Verify Mock Expectation ${notification_request}
Clear Requests ${callback_endpoint}
Send POST request for NS Performance Monitoring Job with unprocessable entity
Log trying to create a new NS PM Job
......@@ -103,7 +112,7 @@ Send POST request for NS Performance Monitoring Job with unprocessable entity
Set Headers {"Content-Type": "${CONTENT_TYPE_JSON}"}
Run Keyword If ${AUTH_USAGE} == 1 Set Headers {"${AUTHORIZATION_HEADER}":"${AUTHORIZATION_TOKEN}"}
${template}= Get File jsons/CreatePmJobRequest.json
${body}= Format String ${template} objectInstanceIds=${objectInstanceIds} callback_uri=${unreachable_callback_uri}:${callback_port}
${body}= Format String ${template} pmJobObjectInstanceId=${pmJobObjectInstanceId} callbackUri=${callback_uri} callbackEndpoint=${unreachable_callback_uri} callbackPort=${callback_port} performanceMetric=${performanceMetric} collectionPeriod=${collectionPeriod} reportingPeriod=${reportingPeriod}
POST ${apiRoot}/${apiName}/${apiMajorVersion}/pm_jobs ${body}
${output}= Output response
Set Suite Variable ${response} ${output}
......@@ -251,9 +260,18 @@ Send Patch request for individual NS Performance Job
Set Headers {"Content-Type": "${CONTENT_TYPE_PATCH}"}
Run Keyword If ${AUTH_USAGE} == 1 Set Headers {"${AUTHORIZATION_HEADER}":"${AUTHORIZATION_TOKEN}"}
${body}= Get File jsons/PmJobModifications.json
${body}= Format String ${body} callbackUri=${callback_uri} callbackEndpoint=${callback_endpoint} callbackPort=${callback_port}
Log Creating mock request and response to handle GET operation on notification endpoint
&{notification_request}= Create Mock Request Matcher GET ${callback_endpoint}
&{notification_response}= Create Mock Response status_code=204
Log Issue the request
Create Mock Expectation ${notification_request} ${notification_response}
PATCH ${apiRoot}/${apiName}/${apiMajorVersion}/pm_jobs/${pmJobId} ${body}
${output}= Output response
Set Suite Variable ${response} ${output}
Log Verify producer tested the notification endpoint
Verify Mock Expectation ${notification_request}
Clear Requests ${callback_endpoint}
Send Patch request for individual NS Performance Job - Etag mismatch
Log Trying to perform a PATCH
......@@ -263,9 +281,17 @@ Send Patch request for individual NS Performance Job - Etag mismatch
Run Keyword If ${AUTH_USAGE} == 1 Set Headers {"${AUTHORIZATION_HEADER}":"${AUTHORIZATION_TOKEN}"}
${template}= Get File jsons/PmJobModifications.json
${body}= Format String ${template} callbackUri=${callback_uri} callbackEndpoint=${callback_endpoint} callbackPort=${callback_port}
Log Creating mock request and response to handle GET operation on notification endpoint
&{notification_request}= Create Mock Request Matcher GET ${callback_endpoint}
&{notification_response}= Create Mock Response status_code=204
Log Issue the request
Create Mock Expectation ${notification_request} ${notification_response}
PATCH ${apiRoot}/${apiName}/${apiMajorVersion}/pm_jobs/${pmJobId} ${body}
${output}= Output response
Set Suite Variable ${response} ${output}
Log Verify producer tested the notification endpoint
Verify Mock Expectation ${notification_request}
Clear Requests ${callback_endpoint}
Send Patch request for individual NS Performance Job with unprocessable entity
......@@ -394,10 +420,18 @@ Send Post Request Create new Performance Threshold
Set Headers {"Accept": "${ACCEPT_JSON}"}
Set Headers {"Content-Type": "${CONTENT_TYPE_JSON}"}
${template}= Get File jsons/CreateThresholdRequest.json
${body}= Format String ${template} pmJobId=${pmJobId}
${body}= Format String ${template} thresholdObjectInstanceId=${thresholdObjectInstanceId} callbackUri=${callback_uri} callbackEndpoint=${callback_endpoint}
... callbackPort=${callback_port} performanceMetric=${performanceMetric} thresholdType=${thresholdType} thresholdValue=${thresholdValue} hysteresis=${hysteresis}
Log Creating mock request and response to handle GET operation on notification endpoint
&{notification_request}= Create Mock Request Matcher GET ${callback_endpoint}
&{notification_response}= Create Mock Response status_code=204
Log Issue the request
Create Mock Expectation ${notification_request} ${notification_response}
POST ${apiRoot}/${apiName}/${apiMajorVersion}/thresholds ${body}
${output}= Output response
Set Suite Variable ${response} ${output}
Set Suite Variable ${response} ${output}ndpoint
Verify Mock Expectation ${notification_request}
Clear Requests ${callback_endpoint}
Send POST request for Performance threshold with unprocessable entity
Log Creating a new Threshold
......@@ -405,10 +439,18 @@ Send POST request for Performance threshold with unprocessable entity
Set Headers {"Accept": "${ACCEPT_JSON}"}
Set Headers {"Content-Type": "${CONTENT_TYPE_JSON}"}
${template}= Get File jsons/CreateThresholdRequest.json
${body}= Format String ${template} callback_uri=${unreachable_callback_uri}:${callback_port}
${body}= Format String ${template} thresholdObjectInstanceId=${thresholdObjectInstanceId} callbackUri=${callback_uri} callbackEndpoint=${unreachable_callback_uri}
... callbackPort=${callback_port} performanceMetric=${performanceMetric} thresholdType=${thresholdType} thresholdValue=${thresholdValue} hysteresis=${hysteresis}
Log Creating mock request and response to handle GET operation on notification endpoint
&{notification_request}= Create Mock Request Matcher GET ${callback_endpoint}
&{notification_response}= Create Mock Response status_code=204
Log Issue the request
Create Mock Expectation ${notification_request} ${notification_response}
POST ${apiRoot}/${apiName}/${apiMajorVersion}/thresholds ${body}
${output}= Output response
Set Suite Variable ${response} ${output}
Set Suite Variable ${response} ${output}ndpoint
Verify Mock Expectation ${notification_request}
Clear Requests ${callback_endpoint}
Send PUT Request for all Performance Thresholds
Log PUT THresholds
......@@ -504,10 +546,19 @@ Send Patch request for individual NS performance Threshold
Set Headers {"Accept": "${ACCEPT_JSON}"}
Set Headers {"Content-Type": "${CONTENT_TYPE_PATCH}"}
Run Keyword If ${AUTH_USAGE} == 1 Set Headers {"${AUTHORIZATION_HEADER}":"${AUTHORIZATION_TOKEN}"}
${body}= Get File jsons/ThresholdModifications.json
${body}= Get File jsons/ThresholdModifications.json
${body}= Format String ${body} callbackUri=${callback_uri} callbackEndpoint=${callback_endpoint} callbackPort=${callback_port}
Log Creating mock request and response to handle GET operation on notification endpoint
&{notification_request}= Create Mock Request Matcher GET ${callback_endpoint}
&{notification_response}= Create Mock Response status_code=204
Log Issue the request
Create Mock Expectation ${notification_request} ${notification_response}
PATCH ${apiRoot}/${apiName}/${apiMajorVersion}/thresholds/${thresholdId} ${body}
${output}= Output response
Set Suite Variable ${response} ${output}
Log Verify producer tested the notification endpoint
Verify Mock Expectation ${notification_request}
Clear Requests ${callback_endpoint}
Send Patch request for individual NS performance Threshold - Etag mismatch
Log Trying to PUT threshold
......@@ -517,9 +568,17 @@ Send Patch request for individual NS performance Threshold - Etag mismatch
Run Keyword If ${AUTH_USAGE} == 1 Set Headers {"${AUTHORIZATION_HEADER}":"${AUTHORIZATION_TOKEN}"}
${template}= Get File jsons/ThresholdModifications.json
${body}= Format String ${template} callbackUri=${callback_uri} callbackEndpoint=${callback_endpoint} callbackPort=${callback_port}
Log Creating mock request and response to handle GET operation on notification endpoint
&{notification_request}= Create Mock Request Matcher GET ${callback_endpoint}
&{notification_response}= Create Mock Response status_code=204
Log Issue the request
Create Mock Expectation ${notification_request} ${notification_response}
PATCH ${apiRoot}/${apiName}/${apiMajorVersion}/thresholds/${thresholdId} ${body}
${output}= Output response
Set Suite Variable ${response} ${output}
Log Verify producer tested the notification endpoint
Verify Mock Expectation ${notification_request}
Clear Requests ${callback_endpoint}
Send Patch request for Individual Threshold with unprocessable entity
Set Headers {"Accept":"${ACCEPT_JSON}"}
......
......@@ -13,7 +13,7 @@ NS Performance Information Availability Notification
... Test title: NS Performance Information Availability Notification
... Test objective: The objective is to test that NS Performance Information Availability Notification is delivered with success to the notification consumer
... Pre-conditions: A NS performance job is created, and information availability notifications is available in the NFVO.
... Reference: Clause 7.4.9.3.1 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 7.4.9.3.1 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_Notif_Endpoint
... Applicability: none
... Post-Conditions: none
......@@ -25,7 +25,7 @@ NS Threshold Crossed Notification
... Test title: NS Threshold Crossed Notification
... Test objective: The objective is to test that NS Threshold Crossed Notification is delivered with success to the notification consumer
... Pre-conditions: A NS performance job is created, and threshold crossed notifications is available in the NFVO.
... Reference: Clause 7.4.9.3.1 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 7.4.9.3.1 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_Notif_Endpoint
... Applicability: none
... Post-Conditions: none
......
......@@ -16,7 +16,7 @@ NS Performance Information Availability Notification
... Test title: NS Performance Information Availability Notification
... Test objective: The objective is to test the dispatch of NS Performance Information Availability Notification when new NS performance information is available in the NFVO, and perform a JSON schema and content validation of the delivered notification. The action that triggers the notification under test is an explicit test step, but it is not performed by the test system.
... Pre-conditions: A NS performance job is created, and a subscription for information availability notifications is available in the NFVO.
... Reference: Clause 7.4.9.3.1 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 7.4.9.3.1 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -29,7 +29,7 @@ NS Threshold Crossed Notification
... Test title: NS Threshold Crossed Notification
... Test objective: The objective is to test the dispatch of NS Threshold Crossed Notification when a previously set NS performance metric threshold is crossed, and perform a JSON schema and content validation of the delivered notification. The action that triggers the notification under test is an explicit test step, but it is not performed by the test system.
... Pre-conditions: A NS performance job is created, and a threshold subscription is available in the NFVO.
... Reference: Clause 7.4.9.3.1 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 7.4.9.3.1 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......
......@@ -6,6 +6,10 @@ Library JSONLibrary
Library OperatingSystem
Library REST ${NFVO_SCHEMA}://${NFVO_HOST}:${NFVO_PORT} ssl_verify=false
Library MockServerLibrary
Library Process
Suite Setup Create Sessions
Suite Teardown Terminate All Processes kill=true
*** Test Cases ***
GET all NS Performance Monitoring Jobs
......@@ -13,7 +17,7 @@ GET all NS Performance Monitoring Jobs
... Test title: GET all NS Performance Monitoring Jobs
... Test objective: The objective is to test the retrieval of all the available NS performance monitoring jobs and perform a JSON schema and content validation of the collected jobs data structure
... Pre-conditions: A NS instance is instantiated. One or more NS performance jobs are set in the NFVO.
... Reference: Clause 7.4.2.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 7.4.2.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -27,7 +31,7 @@ GET NS Performance Monitoring Jobs with attribute-based filter
... Test title: GET all NS Performance Monitoring Jobs with attribute-based filter
... Test objective: The objective is to test the retrieval of NS performance monitoring jobs using attribute-based filter, perform a JSON schema validation of the collected jobs data structure, and verify that the retrieved information matches the issued attribute-based filter
... Pre-conditions: A NS instance is instantiated. One or more NS performance jobs are set in the NFVO.
... Reference: Clause 7.4.2.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 7.4.2.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -41,7 +45,7 @@ GET all NS Performance Monitoring Jobs with "all_fields" attribute selector
... Test title: GET all NS Performance Monitoring Jobs with "all_fields" attribute selector
... Test objective: The objective is to test the retrieval of all NS performance monitoring jobs "all_fields" attribute selector, perform a JSON schema validation of the collected jobs data structure, and verify that the retrieved information matches the issued "all_fileds" selector
... Pre-conditions: A NS instance is instantiated. One or more NS performance jobs are set in the NFVO.
... Reference: Clause 4.3.3.2.1, 7.4.2.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 4.3.3.2.1, 7.4.2.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -55,7 +59,7 @@ GET all NS Performance Monitoring Jobs with "exclude_default" attribute selector
... Test title: GET all NS Performance Monitoring Jobs with "exclude_default" attribute selector
... Test objective: The objective is to test the retrieval of all NS performance monitoring jobs "exclude_default" attribute selector, perform a JSON schema validation of the collected jobs data structure, and verify that the retrieved information matches the issued "exclude_default" selector
... Pre-conditions: A NS instance is instantiated. One or more NS performance jobs are set in the NFVO.
... Reference: Clause 4.3.3.2.1, 7.4.2.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 4.3.3.2.1, 7.4.2.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -69,7 +73,7 @@ GET all NS Performance Monitoring Jobs with "fields" attribute selector
... Test title: GET all NS Performance Monitoring Jobs with "fields" attribute selector
... Test objective: The objective is to test the retrieval of all NS performance monitoring jobs "fields" attribute selector, perform a JSON schema validation of the collected jobs data structure, and verify that the retrieved information matches the issued "include" selector
... Pre-conditions: A NS instance is instantiated. One or more NS performance jobs are set in the NFVO.
... Reference: Clause 4.3.3.2.1, 7.4.2.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 4.3.3.2.1, 7.4.2.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: The NFVO supports the use of "include" attribute selector
... Post-Conditions: none
......@@ -83,7 +87,7 @@ GET all NS Performance Monitoring Jobs with "exclude" attribute selector
... Test title: GET all NS Performance Monitoring Jobs with exclude_fields attribute selector
... Test objective: The objective is to test the retrieval of all NS performance monitoring jobs "exclude" attribute selector, perform a JSON schema validation of the collected jobs data structure, and verify that the retrieved information matches the issued "exclude" selector
... Pre-conditions: A NS instance is instantiated. One or more NS performance jobs are set in the NFVO.
... Reference: Clause 4.3.3.2.1, 7.4.2.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 4.3.3.2.1, 7.4.2.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: The NFVO supports the use of "exclude" attribute selector
... Post-Conditions: none
......@@ -97,7 +101,7 @@ GET NS Performance Monitoring Jobs with invalid attribute-based filter
... Test title: GET NS Performance Monitoring Jobs with invalid attribute-based filter
... Test objective: The objective is to test that the retrieval of NS performance monitoring jobs fails when using invalid attribute-based filter, and perform the JSON schema validation of the failed operation HTTP response
... Pre-conditions: A NS instance is instantiated. One or more NS performance jobs are set in the NFVO.
... Reference: Clause 7.4.2.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 7.4.2.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -110,7 +114,7 @@ GET NS Performance Monitoring Jobs with invalid resource endpoint
... Test title: GET NS Performance Monitoring Jobs with invalid resource endpoint
... Test objective: The objective is to test that the retrieval of NS performance monitoring jobs fails when using invalid resource endpoint
... Pre-conditions: A NS instance is instantiated. One or more NS performance jobs are set in the NFVO.
... Reference: Clause 7.4.2.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 7.4.2.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -123,7 +127,7 @@ Create new NS Performance Monitoring Job
... Test title: Create a new NS Performance Monitoring Job
... Test objective: The objective is to test the creation of a new NS performance monitoring job and perform the JSON schema validation of the returned job data structure
... Pre-conditions: A NS instance is instantiated. One or more NS performance jobs are set in the NFVO.
... Reference: Clause 7.4.2.3.1 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 7.4.2.3.1 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: The NS Performance Job is successfully created on the NFVO
......@@ -137,7 +141,7 @@ PUT all NS Performance Monitoring Jobs - Method not implemented
... Test title: PUT all NS Performance Monitoring Jobs - Method not implemented
... Test objective: The objective is to test that PUT method is not allowed to modify NS Performance Monitoring Jobs
... Pre-conditions: A NS instance is instantiated. One or more NS performance jobs are set in the NFVO.
... Reference: Clause 7.4.2.3.3 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 7.4.2.3.3 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -149,7 +153,7 @@ PATCH all NS Performance Monitoring Jobs - Method not implemented
... Test title: PATCH all NS Performance Monitoring Jobs - Method not implemented
... Test objective: The objective is to test that PATCH method is not allowed to update NS Performance Monitoring Jobs
... Pre-conditions: A NS instance is instantiated. One or more NS performance jobs are set in the NFVO.
... Reference: Clause 7.4.2.3.4 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 7.4.2.3.4 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -161,7 +165,7 @@ DELETE all NS Performance Monitoring Jobs - Method not implemented
... Test title: DELETE all NS Performance Monitoring Jobs - Method not implemented
... Test objective: The objective is to test that DELETE method is not allowed to delete NS Performance Monitoring Jobs
... Pre-conditions: A NS instance is instantiated. One or more NS performance jobs are set in the NFVO.
... Reference: Clause 7.4.2.3.5 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 7.4.2.3.5 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -173,7 +177,7 @@ GET all NS Performance Monitoring Jobs as Paged Response
... Test title: GET all NS Performance Monitoring Jobs as Paged Response
... Test objective: The objective is to test the retrieval of all the available NS performance monitoring jobs as paged response.
... Pre-conditions: A NS instance is instantiated. One or more NS performance jobs are set in the NFVO.
... Reference: Clause 7.4.2.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 7.4.2.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -186,7 +190,7 @@ GET NS Performance Monitoring Jobs - Bad Request Response too Big
... Test title: GET NS Performance Monitoring Jobs - Bad Request Response too Big
... Test objective: The objective is to test that the retrieval of NS performance monitoring jobs fails because reponse is too big, and perform the JSON schema validation of the failed operation HTTP response
... Pre-conditions: A NS instance is instantiated. One or more NS performance jobs are set in the NFVO.
... Reference: Clause 7.4.2.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 7.4.2.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -199,7 +203,7 @@ GET all NS Performance Monitoring Jobs with "fields" and "exclude_default" attri
... Test title: GET all NS Performance Monitoring Jobs with "fields" and "exclude_default" attribute selector
... Test objective: The objective is to test the retrieval of all NS performance monitoring jobs "fields" and "exclude_default" attribute selector, perform a JSON schema validation of the collected jobs data structure, and verify that the retrieved information matches the issued selector
... Pre-conditions: A NS instance is instantiated. One or more NS performance jobs are set in the NFVO.
... Reference: Clause 4.3.3.2.1, 7.4.2.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 4.3.3.2.1, 7.4.2.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: The NFVO supports the use of "include" attribute selector
... Post-Conditions: none
......@@ -213,7 +217,7 @@ POST new NS Performance Monitoring Job - Unprocessable Entity
... Test title: POST new NS Performance Monitoring Job - Unprocessable Entity
... Test objective: The objective is to test the creation of a new NS performance monitoring job fails when a request contains syntactically correct data but the data cannot be processed.
... Pre-conditions: A NS instance is instantiated. One or more NS performance jobs are set in the NFVO.
... Reference: clause 7.4.2.3.1 - ETSI GS NFV-SOL 005 [3] V3.3.1
... Reference: clause 7.4.2.3.1 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......
......@@ -6,6 +6,11 @@ Resource NSPerformanceManagementKeywords.robot
Library JSONLibrary
Library REST ${NFVO_SCHEMA}://${NFVO_HOST}:${NFVO_PORT} ssl_verify=false
Library OperatingSystem
Library MockServerLibrary
Library Process
Suite Setup Create Sessions
Suite Teardown Terminate All Processes kill=true
*** Test Cases ***
GET All Performance Thresholds
......@@ -13,7 +18,7 @@ GET All Performance Thresholds
... Test title: GET All Performance Thresholds
... Test objective: The objective is to test the retrieval of all the available NS performance thresholds and perform a JSON schema validation of the collected thresholds data structure
... Pre-conditions: A NS instance is instantiated. One or more NS performance thresholds are set in the NFVO.
... Reference: Clause 7.4.5.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 7.4.5.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -26,7 +31,7 @@ GET Performance Thresholds with attribute-based filter
... Test title: GET Performance Thresholds with attribute-based filter
... Test objective: The objective is to test the retrieval of all the available NS performance thresholds when using attribute-based filters, perform a JSON schema validation of the collected thresholds data structure, and verify that the retrieved information matches the issued attribute-based filter
... Pre-conditions: A NS instance is instantiated. One or more NS performance thresholds are set in the NFVO.
... Reference: Clause 7.4.5.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 7.4.5.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -40,7 +45,7 @@ GET Performance Thresholds with invalid attribute-based filter
... Test title: GET Performance Thresholds with invalid attribute-based filter
... Test objective: The objective is to test that the retrieval of NS performance thresholds fails when using invalid attribute-based filter, and perform the JSON schema validation of the failed operation HTTP response
... Pre-conditions: A NS instance is instantiated. One or more NS performance thresholds are set in the NFVO.
... Reference: Clause 7.4.5.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 7.4.5.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -53,7 +58,7 @@ GET Performance Thresholds with invalid resource endpoint
... Test title: GET Performance Thresholds with invalid resource endpoint
... Test objective: The objective is to test that the retrieval of NS performance thresholds fails when using invalid resource endpoint, and perform the JSON schema validation of the failed operation HTTP response
... Pre-conditions: A NS instance is instantiated. One or more NS performance thresholds are set in the NFVO.
... Reference: Clause 7.4.5.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 7.4.5.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -66,7 +71,7 @@ Create new Performance Threshold
... Test title: Create new Performance Threshold
... Test objective: The objective is to test the creation of a new NS performance threshold and perform the JSON schema validation of the returned threshold data structure
... Pre-conditions: A NS instance is instantiated.
... Reference: Clause 7.4.5.3.1 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 7.4.5.3.1 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: The NS performance Threshold is successfully created on the NFVO
......@@ -81,7 +86,7 @@ PUT Performance Thresholds - Method not implemented
... Test title: PUT Performance Thresholds - Method not implemented
... Test objective: The objective is to test that PUT method is not allowed to modify NS performance Thresholds
... Pre-conditions: A NS instance is instantiated. One or more NS performance thresholds are set in the NFVO.
... Reference: Clause 7.4.5.3.3 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 7.4.5.3.3 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -93,7 +98,7 @@ PATCH Performance Thresholds - Method not implemented
... Test title: PATCH Performance Thresholds - Method not implemented
... Test objective: The objective is to test that PATCH method is not allowed to modify NS performance Thresholds
... Pre-conditions: A NS instance is instantiated. One or more NS performance thresholds are set in the NFVO.
... Reference: Clause 7.4.5.3.4 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 7.4.5.3.4 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -105,7 +110,7 @@ DELETE Performance Thresholds - Method not implemented
... Test title: DELETE Performance Thresholds - Method not implemented
... Test objective: The objective is to test that DELETE method is not allowed to update NS performance Thresholds
... Pre-conditions: A NS instance is instantiated. One or more NS performance thresholds are set in the NFVO.
... Reference: Clause 7.4.5.3.5 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 7.4.5.3.5 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -117,7 +122,7 @@ GET All Performance Thresholds as Paged Response
... Test title: GET All Performance Thresholds as Paged Response
... Test objective: The objective is to test the retrieval of all the available NS performance thresholds as paged response.
... Pre-conditions: A NS instance is instantiated. One or more NS performance thresholds are set in the NFVO.
... Reference: Clause 7.4.5.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 7.4.5.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -130,7 +135,7 @@ GET Performance Thresholds - Bad Request Response too Big
... Test title: GET Performance Thresholds - Bad Request Response too Big
... Test objective: The objective is to test that the retrieval of NS performance thresholds fails because reponse is too big, and perform the JSON schema validation of the failed operation HTTP response
... Pre-conditions: A NS instance is instantiated. One or more NS performance thresholds are set in the NFVO.
... Reference: Clause 7.4.5.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 7.4.5.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -143,7 +148,7 @@ POST new Performance Threshold - Unprocessable Entity
... Test title: POST new Performance Threshold - Unprocessable Entity
... Test objective: The objective is to test the creation of a new NS performance threshold fails when a request contains syntactically correct data but the data cannot be processed.
... Pre-conditions: A NS instance is instantiated.
... Reference: clause 7.4.5.3.1 - ETSI GS NFV-SOL 005 [3] V3.3.1
... Reference: clause 7.4.5.3.1 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......
......@@ -15,20 +15,27 @@ ${NFVO_CHECKS_NOTIF_ENDPOINT} 1
${MOCK_SERVER_JAR} ../../../bin/mockserver-netty-5.5.0-jar-with-dependencies.jar
${testOptionalMethods} 0
#${testOptionalMethods} 0
${callback_port} 9091
${callback_uri} http://172.22.1.7
${unreachable_callback_uri} http://not-reachable-uri
${callback_endpoint} /nspm/subscriptions
${callback_endpoint_error} /subs_404
${sleep_interval} 20s
#${callback_endpoint_error} /subs_404
#${sleep_interval} 20s
${invalid_etag} invalid etag
${total_polling_time} 2 min
${polling_interval} 10 sec
#${objectType} my_type
${pmJobObjectInstanceId} my_id
${thresholdObjectInstanceId} my_id
${performanceMetric} cpu_util
${thresholdType} SIMPLE
${thresholdValue} 10
......
{{
"objectInstanceIds": ["{pmJobId}"],
"objectInstanceIds": ["{pmJobObjectInstanceId} "],
"criteria": {{
"performanceMetric": "{performanceMetric}",
"performanceMetricGroup": [],
"collectionPeriod": {collectionPeriod},
"reportingPeriod": {reportingPeriod}
}},
"callbackUri": "{callback_uri}"
"callbackUri": "{callbackUri}:{callbackPort}{callbackEndpoint}"
}}
\ No newline at end of file
{{
"objectInstanceIds" : "{pmJobId}",
"objectType": "{objectType}",
"objectInstanceId" : "{thresholdObjectInstanceId}",
"criteria" : {{
"performanceMetric": "{performanceMetric}",
"thresholdType": "{thresholdType}",
"simpleThresholdDetails": {{
"thresholdValue": {thresholdValue},
"hysteresis": {hysteresis}
"thresholdValue": "{thresholdValue}",
"hysteresis": "{hysteresis}"
}}
}},
"callbackUri": "{callback_uri}"
"callbackUri": "{callbackUri}:{callbackPort}{callbackEndpoint}"
}}
\ No newline at end of file
{
"callbackUri": ""
"callbackUri": "{callbackUri}:{callbackPort}{callbackEndpoint}"
}
\ No newline at end of file
{
"callbackUri":""
"callbackUri": "{callbackUri}:{callbackPort}{callbackEndpoint}"
}
\ No newline at end of file
......@@ -11,7 +11,7 @@ Get Access configuration for external artifacts
... Test title: Get Access configuration for external artifacts
... Test objective: The objective is to test the GET method reads the access configuration information that is used by the NFVO to get the content of external VNF package artifacts and perform a JSON schema and content validation of the collected data structure
... Pre-conditions: One or more VNF packages are onboarded in the NFVO.
... Reference: Clause 9.4.4a.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.4a.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -24,7 +24,7 @@ Get Access configuration for external artifacts - Not Found
... Test title: Get Access configuration for external artifacts - Not Found
... Test objective: The objective is to test that the retrieval of access configuration information that is used by the NFVO to get the content of external VNF package artifacts fails because resource is not present.
... Pre-conditions: none
... Reference: Clause 9.4.4a.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.4a.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -37,7 +37,7 @@ PUT Access configuration for external artifacts
... Test title: Access configuration for external artifacts
... Test objective: The objective is to test that PUT method provides the access configuration information for the NFVO to download the content of external VNF package artifacts.
... Pre-conditions: the individual VNF package resource shall have been created, and the value of "onboardingState" attribute shall equal to "CREATED" or "ERROR"
... Reference: Clause 9.4.4a.3.3 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.4a.3.3 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -51,7 +51,7 @@ PUT Access configuration for external artifacts - Downloading
... Test title: Access configuration for external artifacts - Downloading
... Test objective: The objective is to test that VNF package has been uploaded successfully previously, to indicate that the access configuration information has been stored successfully by the NFVO and the NFVO now starts downloading external artifacts.
... Pre-conditions: the individual VNF package resource shall have been created, and the value of "onboardingState" attribute shall equal to "CREATED" or "ERROR"
... Reference: Clause 9.4.4a.3.3 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.4a.3.3 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -64,7 +64,7 @@ PUT Access configuration for external artifacts - Conflict
... Test title: Access configuration for external artifacts
... Test objective: The objective is to test that PUT method provides the access configuration information for the NFVO to download the content of external VNF package artifacts.
... Pre-conditions: the individual VNF package resource shall have been created, and the value of "onboardingState" attribute is neither "CREATED" nor "ERROR"
... Reference: Clause 9.4.4a.3.3 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.4a.3.3 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -77,7 +77,7 @@ POST Access configuration for external artifacts - Method not implemented
... Test title: POST Access configuration for external artifacts - Method not implemented
... Test objective: The objective is to test that POST method is not allowed to create access configuration for external artifacts
... Pre-conditions: none
... Reference: Clause 9.4.4a.3.1 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.4a.3.1 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -89,7 +89,7 @@ PATCH Access configuration for external artifacts - Method not implemented
... Test title: PATCH Access configuration for external artifacts - Method not implemented
... Test objective: The objective is to test that PATCH method is not allowed to update access configuration for external artifacts
... Pre-conditions: none
... Reference: Clause 9.4.4a.3.4 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.4a.3.4 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -101,7 +101,7 @@ DELETE Access configuration for external artifacts - Method not implemented
... Test title: DELETE Access configuration for external artifacts - Method not implemented
... Test objective: The objective is to test that DELETE method is not allowed to delete access configuration for external artifacts
... Pre-conditions: none
... Reference: Clause 9.4.4a.3.5 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.4a.3.5 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......
......@@ -12,7 +12,7 @@ GET Individual VNF Package Subscription
... Test title: GET Individual VNF Package Subscription
... Test objective: The objective is to test the retrieval of individual VNF package subscription and perform a JSON schema and content validation of the returned subscription data structure
... Pre-conditions: At least one VNF package subscription is available in the NFVO.
... Reference: Clause 9.4.9.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.9.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -27,7 +27,7 @@ GET Individual VNF Package Subscription with invalid resource identifier
... Test title: GET Individual VNF Package Subscription with invalid resource identifier
... Test objective: The objective is to test that the retrieval of an individual VNF package subscription fails when using an invalid resource identifier
... Pre-conditions: At least one VNF package subscription is available in the NFVO.
... Reference: Clause 9.4.9.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.9.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -40,7 +40,7 @@ DELETE Individual VNF Package Subscription with invalid resource identifier
... Test title: DELETE Individual VNF Package Subscription with invalid resource identifier
... Test objective: The objective is to test that the deletion of an individual VNF package subscription fails when using an invalid resource identifier
... Pre-conditions: At least one VNF package subscription is available in the NFVO.
... Reference: Clause 9.4.9.3.5 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.9.3.5 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -52,7 +52,7 @@ POST Individual VNF Package Subscription - Method not implemented
... Test title: POST Individual VNF Package Subscription - Method not implemented
... Test objective: The objective is to test that POST method is not allowed to create a new VNF Package Subscription
... Pre-conditions: none
... Reference: Clause 9.4.9.3.1 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.9.3.1 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -64,7 +64,7 @@ PUT Individual VNF Package Subscription - Method not implemented
... Test title: PUT Individual VNF Package Subscription - Method not implemented
... Test objective: The objective is to test that PUT method is not allowed to update an existing VNF Package subscription
... Pre-conditions: At least one VNF package subscription is available in the NFVO.
... Reference: Clause 9.4.9.3.3 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.9.3.3 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -76,7 +76,7 @@ PATCH Individual VNF Package Subscription - Method not implemented
... Test title: PATCH Individual VNF Package Subscription - Method not implemented
... Test objective: The objective is to test that PATCH method is not allowed to modify an existing VNF Package subscription
... Pre-conditions: At least one VNF package subscription is available in the NFVO.
... Reference: Clause 9.4.9.3.4 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.9.3.4 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -88,7 +88,7 @@ DELETE Individual VNF Package Subscription
... Test title: DELETE Individual VNF Package Subscription
... Test objective: The objective is to test the deletion of an individual VNF package subscription
... Pre-conditions: At least one VNF package subscription is available in the NFVO.
... Reference: Clause 9.4.9.3.5 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.9.3.5 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: The VNF Package Subscription is not available anymore in the NFVO
......
......@@ -11,7 +11,7 @@ GET Individual VNF Package
... Test title: GET Individual VNF Package
... Test objective: The objective is to test the retrieval of an individual VNF package information perform a JSON schema validation of the collected data structure
... Pre-conditions: One or more VNF packages are onboarded in the NFVO.
... Reference: Clause 9.4.3.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.3.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -26,7 +26,7 @@ GET Individual VNF Package with invalid resource identifier
... Test title: GET Individual VNF Package with invalid resource identifier
... Test objective: The objective is to test that the retrieval of an individual VNF package fails when using an invalid resource identifier
... Pre-conditions: One or more VNF packages are onboarded in the NFVO.
... Reference: Clause 9.4.3.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.3.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -39,7 +39,7 @@ POST Individual VNF Package - Method not implemented
... Test title: POST Individual VNF Package - Method not implemented
... Test objective: The objective is to test that POST method is not allowed to create new VNF Package
... Pre-conditions: none
... Reference: Clause 9.4.3.3.1 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.3.3.1 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -51,7 +51,7 @@ PUT Individual VNF Package - Method not implemented
... Test title: PUT Individual VNF Package - Method not implemented
... Test objective: The objective is to test that PUT method is not allowed to modify a VNF Package
... Pre-conditions: One or more VNF packages are onboarded in the NFVO.
... Reference: Clause 9.4.3.3.3 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.3.3.3 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -63,7 +63,7 @@ Disable Individual VNF Package
... Test title: Disable Individual VNF Package
... Test objective: The objective is to test the disabling of an individual VNF Package and perform a JSON schema and content validation of the collected data structure
... Pre-conditions: One or more VNF Packages are onboarded in the NFVO in ENABLED operational state.
... Reference: Clause 9.4.3.3.4 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.3.3.4 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: The VNF Package is in operational state DISABLED
......@@ -77,7 +77,7 @@ Disable Individual VNF Package with conflict due to operational state DISABLED
... Test title: Disable Individual VNF Package with conflict due to operational state DISABLED
... Test objective: The objective is to test that disabling an individual VNF Package that is already in DISABLED operational state fails and perform a JSON schema validation of the failed operation HTTP response
... Pre-conditions: One or more VNF Packages are onboarded in the NFVO in DISABLED operational state (Test ID 5.3.5.2.5).
... Reference: Clause 9.4.3.3.4 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.3.3.4 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -90,7 +90,7 @@ Enable Individual VNF Package
... Test title: Enable Individual VNF Package
... Test objective: The objective is to test the enabling of an individual VNF Package and perform a JSON schema and content validation of the collected data structure
... Pre-conditions: One or more VNF Packages are onboarded in the NFVO in DISABLED operational state (Test ID 5.3.5.2.5).
... Reference: Clause 9.4.3.3.4 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.3.3.4 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: The VNF Package is in operational state ENABLED
......@@ -104,7 +104,7 @@ Enable Individual VNF Package with conflict due to operational state ENABLED
... Test title: Enable Individual VNF Package with conflict due to operational state ENABLED
... Test objective: The objective is to test that enabling an individual VNF Package that is already in ENABLED operational state fails and perform a JSON schema validation of the failed operation HTTP response
... Pre-conditions: One or more VNF Packages are onboarded in the NFVO in ENABLED operational state (Test ID 5.3.5.2.7).
... Reference: Clause 9.4.3.3.4 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.3.3.4 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -117,7 +117,7 @@ DELETE Individual VNF Package
... Test title: DELETE Individual VNF Package
... Test objective: The objective is to test the deletion of an individual VNF Package
... Pre-conditions: One or more VNF packages are onboarded in the NFVO in DISABLED operational state
... Reference: Clause 9.4.3.3.5 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.3.3.5 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: The VNF Package is not available anymore in the NFVO
......@@ -130,7 +130,7 @@ DELETE Individual VNF Package in operational state ENABLED
... Test title: DELETE Individual VNF Package in operational state ENABLED
... Test objective: The objective is to test that the deletion of an individual VNF Package in operational state ENABLED fails. The test also performs a JSON schema validation of the failed operation HTTP response.
... Pre-conditions: One or more VNF Package are onboarded in the NFVO in ENABLED operational state (Test ID 5.3.1.2.7).
... Reference: Clause 9.4.3.3.5 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.3.3.5 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: The VNF Package is not deleted by the failed operation.
......@@ -144,7 +144,7 @@ DELETE Individual VNF Package used for instantiated VNF instances
... Test title: DELETE Individual VNF Package used for instantiated VNF instances
... Test objective: The objective is to test that the deletion of an individual VNF Package that is used in instantiated VNF instances fails. The test also performs a JSON schema validation of the failed operation HTTP response.
... Pre-conditions: One or more VNF instances are instantiated based on the concerned VNF package.
... Reference: Clause 9.4.3.3.5 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.3.3.5 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: The VNF Package is not deleted by the failed operation.
......
......@@ -11,7 +11,7 @@ GET Individual VNF Package Artifact
... Test title: GET Individual VNF Package Artifact
... Test objective: The objective is to test the retrieval of an individual VNF package artifact
... Pre-conditions: One or more VNF packages are onboarded in the NFVO.
... Reference: Clause 9.4.7.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.7.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -23,7 +23,7 @@ GET Individual VNF Package Artifact in octet stream format
... Test title: GET Individual VNF Package Artifact in octet stream format
... Test objective: The objective is to test the retrieval of an individual VNF package artifact when the NFVO cannot determine the artifact content type. The test performs a validation that the returned artifcat in is octet-stream format
... Pre-conditions: One or more VNF packages are onboarded in the NFVO.
... Reference: Clause 9.4.7.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.7.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: The NFVO cannot determine the content type of the artifact
... Post-Conditions: none
......@@ -36,7 +36,7 @@ GET Individual VNF Package Artifact with Range Request and NFVO supporting Range
... Test title: GET Individual VNF Package Artifact with Range Request and NFVO supporting Range Requests
... Test objective: The objective is to test the retrieval of an individual VNF package artifact when using a range request to return single range of bytes from the file, with the NFVO supporting it. The test also perform a validation that returned content matches the issued range
... Pre-conditions: One or more VNF packages are onboarded in the NFVO.
... Reference: Clause 9.4.7.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.7.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: The NFVO supports range requests to return single range of bytes from the VNF package artifact
... Post-Conditions: none
......@@ -50,7 +50,7 @@ GET Individual VNF Package Artifact with Range Request and NFVO not supporting R
... Test title: GET Individual VNF Package Artifact with Range Request and NFVO not supporting Range Requests
... Test objective: The objective is to test that the retrieval of an individual VNF package artifact, when using a range request to return single range of bytes from the file and the NFVO not supporting it, returns the full VNF Package artifact.
... Pre-conditions: One or more VNF packages are onboarded in the NFVO.
... Reference: Clause 9.4.7.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.7.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: The NFVO does not support range requests to return single range of bytes from the VNF package artifact
... Post-Conditions: none
......@@ -62,7 +62,7 @@ GET Individual VNF Package Artifact with invalid Range Request
... Test title: GET Individual VNF Package Artifact with invalid Range Request
... Test objective: The objective is to test that the retrieval of an individual VNF package artifact fails when using a range request that does not match any available byte range in the file.
... Pre-conditions: One or more VNF packages are onboarded in the NFVO.
... Reference: Clause 9.4.7.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.7.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: The NFVO supports range requests to return single range of bytes from the VNF package artifact
... Post-Conditions: none
......@@ -74,7 +74,7 @@ GET Individual VNF Package Artifact with invalid resource identifier
... Test title: GET Individual VNF Package Artifact with invalid resource identifier
... Test objective: The objective is to test that the retrieval of an individual VNF package artifact fails when using an invalid resource identifier
... Pre-conditions: One or more VNF packages are onboarded in the NFVO.
... Reference: Clause 9.4.7.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.7.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -87,7 +87,7 @@ GET Individual VNF Package Artifact with conflict due to onboarding state
... Test title: GET Individual VNF Package Artifact with conflict due to onboarding state
... Test objective: The objective is to test that the retrieval of an individual VNF package artifact fails due to a conflict when the VNF Package is not in onboarding state ONBOARDED in the NFVO. The test also performs a validation of the JSON schema validation of the failed operation HTTP response
... Pre-conditions: The onboarding state of the VNF package for which the content is requested is different from ONBOARDED.
... Reference: Clause 9.4.7.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.7.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -100,7 +100,7 @@ POST Individual VNF Package Artifact - Method not implemented
... Test title: POST Individual VNF Package Artifact - Method not implemented
... Test objective: The objective is to test that POST method is not allowed to create new VNF Package artifact
... Pre-conditions: none
... Reference: Clause 9.4.7.3.1 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.7.3.1 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -112,7 +112,7 @@ PUT Individual VNF Package Artifact - Method not implemented
... Test title: PUT Individual VNF Package Artifact - Method not implemented
... Test objective: The objective is to test that PUT method is not allowed to modify a VNF Package artifact
... Pre-conditions: One or more VNF packages are onboarded in the NFVO.
... Reference: Clause 9.4.7.3.3 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.7.3.3 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -124,7 +124,7 @@ PATCH Individual VNF Package Artifact - Method not implemented
... Test title: PATCH Individual VNF Package Artifact - Method not implemented
... Test objective: The objective is to test that PATCH method is not allowed to update a VNF Package artifact
... Pre-conditions: One or more VNF packages are onboarded in the NFVO.
... Reference: Clause 9.4.7.3.4 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.7.3.4 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -136,7 +136,7 @@ DELETE Individual VNF Package Artifact - Method not implemented
... Test title: DELETE Individual VNF Package Artifact - Method not implemented
... Test objective: The objective is to test that DELETE method is not allowed to delete a VNF Package artifact
... Pre-conditions: One or more VNF packages are onboarded in the NFVO.
... Reference: Clause 9.4.7.3.5 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.7.3.5 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......
......@@ -11,7 +11,7 @@ Get Manifest in Individual VNF Package
... Test title: Get Manifest in Individual VNF Package
... Test objective: The objective is to test that content of manifest within a NVF Package is read successfully.
... Pre-conditions: One or more VNF packages are onboarded in the NFVO.
... Reference: Clause 9.4.4b.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.4b.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -24,7 +24,7 @@ Get Manifest in Individual VNF Package with security information
... Test title: Get Manifest in Individual VNF Package with security information
... Test objective: The objective is to test the retrieval of the Manifest in individual VNF package shall include in the ZIP archive the security information when requested with "include_signature" parameter, and perform a validation that returned content is in zip format
... Pre-conditions: One or more VNF packages are onboarded in the NFVO.
... Reference: Clause 9.4.4b.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.4b.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -37,7 +37,7 @@ Get Manifest in Individual VNF Package - Not Acceptable
... Test title: Get Manifest in Individual VNF Package - Not Acceptable
... Test objective: The objective is to test that the "Accept" header is not compatible with Content type "application/zip" but "incude_signature" is provided.\
... Pre-conditions: One or more VNF packages are onboarded in the NFVO.
... Reference: Clause 9.4.4b.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.4b.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -50,7 +50,7 @@ Get Manifest in Individual VNF Package - Conflict
... Test title: Get Manifest in Individual VNF Package - Conflict
... Test objective: The objective is to test that the operation cannot be executed currently, due to a conflict with the state of the resource.
... Pre-conditions: One or more VNF packages are onboarded in the NFVO.
... Reference: Clause 9.4.4b.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.4b.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -63,7 +63,7 @@ POST Manifest in Individual VNF Package - Method not implemented
... Test title: POST Manifest in Individual VNF Package - Method not implemented
... Test objective: The objective is to test that POST method is not allowed to create new Manifest
... Pre-conditions: none
... Reference: Clause 9.4.4b.3.1 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.4b.3.1 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -75,7 +75,7 @@ PUT Manifest in Individual VNF Package - Method not implemented
... Test title: PUT Manifest in Individual VNF Package - Method not implemented
... Test objective: The objective is to test that PUT method is not allowed to modify a Manifest
... Pre-conditions: One or more VNF packages are onboarded in the NFVO.
... Reference: Clause 9.4.4b.3.3 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.4b.3.3 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -87,7 +87,7 @@ PATCH Manifest in Individual VNF Package - Method not implemented
... Test title: PATCH Manifest in Individual VNF Package - Method not implemented
... Test objective: The objective is to test that PATCH method is not allowed to update a Manifest
... Pre-conditions: One or more VNF packages are onboarded in the NFVO.
... Reference: Clause 9.4.4b.3.4 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.4b.3.4 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -99,7 +99,7 @@ DELETE Manifest in Individual VNF Package - Method not implemented
... Test title: DELETE Manifest in Individual VNF Package - Method not implemented
... Test objective: The objective is to test that DELETE method is not allowed to delete a Manifest
... Pre-conditions: One or more VNF packages are onboarded in the NFVO.
... Reference: Clause 9.4.4b.3.5 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.4b.3.5 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......
......@@ -14,7 +14,7 @@ VNF Package Onboarding Notification
... Test title: VNF Package Onboarding Notification
... Test objective: The objective is to test that VNF Package Onboarding Notification is delivered with success to the notification consumer
... Pre-conditions: A VNF package subscription for onboarding notifications is available in the NFVO.
... Reference: Clause 9.4.10.3.1 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.10.3.1 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_Notif_Endpoint
... Applicability: none
... Post-Conditions: none
......@@ -26,7 +26,7 @@ VNF Package Change Notification
... Test title: VNF Package Change Notification
... Test objective: The objective is to test that VNF Package Change Notification is delivered with success to the notification consumer
... Pre-conditions: A VNF package subscription for change notifications is available in the NFVO.
... Reference: Clause 9.4.10.3.1 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.10.3.1 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_Notif_Endpoint
... Applicability: none
... Post-Conditions: none
......
......@@ -16,7 +16,7 @@ VNF Package Onboarding Notification
... Test title: VNF Package Onboarding Notification
... Test objective: The objective is to test the dispatch of VNF Package Onboarding notification when the VNF package onboarding operation is successfully completed, and perform a JSON schema and content validation of the delivered notification. The action that triggers the notification under test is an explicit test step, but it is not performed by the test system.
... Pre-conditions: A VNF package subscription for onboarding notifications is available in the NFVO.
... Reference: Clause 9.4.10.3.1 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.10.3.1 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -29,7 +29,7 @@ VNF Package Operational State Change Notification
... Test title: VNF Package Operational State Change Notification
... Test objective: The objective is to test the dispatch of VNF Package Change notification when the VNF package operational state is modified, and perform a JSON schema and content validation of the delivered notification. The action that triggers the notification under test is an explicit test step, but it is not performed by the test system.
... Pre-conditions: A VNF package subscription for change notifications is available in the NFVO.
... Reference: Clause 9.4.10.3.1 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.10.3.1 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -43,7 +43,7 @@ VNF Package Deletion Notification
... Test title: VNF Package Deletion Notification
... Test objective: The objective is to test the dispatch of VNF Package Change notification when the VNF package is deleted on the NFVO, and perform a JSON schema and content validation of the delivered notification. The action that triggers the notification under test is an explicit test step, but it is not performed by the test system.
... Pre-conditions: A VNF package subscription for change notifications is available in the NFVO.
... Reference: Clause 9.4.10.3.1 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.10.3.1 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......
......@@ -16,7 +16,7 @@ Get All VNF Package Subscriptions
... Test title: GET all VNF Package Subscriptions
... Test objective: The objective is to test the retrieval of all VNF package subscriptions and perform a JSON schema validation of the returned subscriptions data structure
... Pre-conditions: At least one VNF package subscription is available in the NFVO.
... Reference: Clause 9.4.8.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.8.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -29,7 +29,7 @@ Get VNF Package Subscriptions with attribute-based filter
... Test title: Get VNF Package Subscriptions with attribute-based filter
... Test objective: The objective is to test the retrieval of VNF package subscriptions using attribute-based filter, perform a JSON schema validation of the collected data structure, and verify that the retrieved information matches the issued attribute-based filters
... Pre-conditions: At least one VNF package subscription is available in the NFVO.
... Reference: Clause 9.4.8.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.8.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -43,7 +43,7 @@ Get VNF Package Subscriptions with invalid attribute-based filter
... Test title: Get VNF Package Subscriptions with attribute-based filters
... Test objective: The objective is to test that the retrieval of VNF package subscriptions fails when using invalid attribute-based filters, and perform the JSON schema validation of the failed operation HTTP response.
... Pre-conditions: At least one VNF package subscription is available in the NFVO.
... Reference: Clause 9.4.8.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.8.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -56,7 +56,7 @@ GET VNF Package Subscription with invalid resource endpoint
... Test title: GET VNF Package Subscription with invalid resource endpoint
... Test objective: The objective is to test that the retrieval of all VNF package subscriptions fails when using invalid resource endpoint.
... Pre-conditions: At least one VNF package subscription is available in the NFVO.
... Reference: Clause 9.4.8.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.8.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -69,7 +69,7 @@ Create new VNF Package subscription
... Test title: Create new VNF Package subscription
... Test objective: The objective is to test the creation of a new VNF package subscription and perform a JSON schema and content validation of the returned subscription data structure
... Pre-conditions: none
... Reference: Clause 9.4.8.3.1 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.8.3.1 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: The VNF package subscription is successfully set and it matches the issued subscription
......@@ -85,7 +85,7 @@ Create duplicated VNF Package subscription with NFVO not creating duplicated sub
... Test title: Create duplicated VNF Package subscription with NFVO not creating duplicated subscriptions
... Test objective: The objective is to test the attempt of a creation of a duplicated VNF package subscription and check that no new subscription is created by the NFVO and a link to the original subscription is returned
... Pre-conditions: At least one VNF package subscription is available in the NFVO.
... Reference: Clause 9.4.8.3.1 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.8.3.1 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: The NFVO does not support the creation of duplicated subscriptions
... Post-Conditions: The existing VNF package subscription returned is available in the NFVO
......@@ -101,7 +101,7 @@ Create duplicated VNF Package subscription with NFVO creating duplicated subscri
... Test title: Create duplicated VNF Package subscription with NFVO creating duplicated subscriptions
... Test objective: The objective is to test the creation of a duplicated VNF package subscription and perform a JSON schema and content validation of the returned duplicated subscription data structure
... Pre-conditions: At least one VNF package subscription is available in the NFVO.
... Reference: Clause 9.4.8.3.1 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.8.3.1 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: The NFVO supports the creation of duplicated subscriptions
... Post-Conditions: The duplicated VNF package subscription is successfully set and it matches the issued subscription
......@@ -116,7 +116,7 @@ PUT VNF Package Subscriptions - Method not implemented
... Test title: PUT VNF Package Subscriptions - Method not implemented
... Test objective: The objective is to test that PUT method is not allowed to modify VNF package subscriptions
... Pre-conditions: At least one VNF package subscription is available in the NFVO.
... Reference: Clause 9.4.8.3.3 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.8.3.3 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -128,7 +128,7 @@ PATCH VNF Package Subscriptions - Method not implemented
... Test title: PATCH VNF Package Subscriptions - Method not implemented
... Test objective: The objective is to test that PATCH method is not allowed to update VNF package subscriptions
... Pre-conditions: At least one VNF package subscription is available in the NFVO.
... Reference: Clause 9.4.8.3.4 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.8.3.4 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -151,7 +151,7 @@ Get All VNF Package Subscriptions as Paged Response
... Test title: GET all VNF Package Subscriptions as Paged Response
... Test objective: The objective is to test the retrieval of all VNF package subscriptions as paged response.
... Pre-conditions: At least one VNF package subscription is available in the NFVO.
... Reference: Clause 9.4.8.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.8.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -164,7 +164,7 @@ Get VNF Package Subscriptions - Bad Request Response too Big
... Test title: Get VNF Package Subscriptions - Bad Request Response too Big
... Test objective: The objective is to test that the retrieval of VNF package subscriptions fails because response is too big, and perform the JSON schema validation of the failed operation HTTP response.
... Pre-conditions: At least one VNF package subscription is available in the NFVO.
... Reference: Clause 9.4.8.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.8.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......
......@@ -22,7 +22,7 @@ Get VNFD in Individual VNF Package in Zip Format
... Test title: Get VNFD in Individual VNF Package in Zip Format
... Test objective: The objective is to test the retrieval of the VNFD in zip format for an individual VNF package and perform a validation that returned content is in zip format
... Pre-conditions: One or more VNF packages are onboarded in the NFVO.
... Reference: Clause 9.4.4.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.4.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -68,7 +68,7 @@ Get VNFD in Individual VNF Package with invalid resource identifier
... Test title: Get VNFD in Individual VNF Package with invalid resource identifier
... Test objective: The objective is to test that the retrieval of the VNFD for an individual VNF Package fails when using an invalid resource identifier
... Pre-conditions: none
... Reference: Clause 9.4.4.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.4.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -81,7 +81,7 @@ Get VNFD in Individual VNF Package with conflict due to onboarding state
... Test title: Get VNFD in Individual VNF Package with conflict due to onboarding state
... Test objective: The objective is to test that the retrieval of the VNFD for an individual VNF Package fails due to a conflict when the VNF Package is not in onboarding state ONBOARDED in the NFVO. The test also performs a validation of the JSON schema validation of the failed operation HTTP response
... Pre-conditions: The onboarding state of the VNF package for which the VNFD is requested is different from ONBOARDED.
... Reference: Clause 9.4.4.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.4.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -94,7 +94,7 @@ POST VNFD in Individual VNF Package - Method not implemented
... Test title: POST VNFD in Individual VNF Package - Method not implemented
... Test objective: The objective is to test that POST method is not allowed to create new VNFD
... Pre-conditions: none
... Reference: Clause 9.4.4.3.1 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.4.3.1 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -106,7 +106,7 @@ PUT VNFD in Individual VNF Package - Method not implemented
... Test title: PUT VNFD in Individual VNF Package - Method not implemented
... Test objective: The objective is to test that PUT method is not allowed to modify a VNFD
... Pre-conditions: One or more VNF packages are onboarded in the NFVO.
... Reference: Clause 9.4.4.3.3 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.4.3.3 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -118,7 +118,7 @@ PATCH VNFD in Individual VNF Package - Method not implemented
... Test title: PATCH VNFD in Individual VNF Package - Method not implemented
... Test objective: The objective is to test that PATCH method is not allowed to update a VNFD
... Pre-conditions: One or more VNF packages are onboarded in the NFVO.
... Reference: Clause 9.4.4.3.4 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.4.3.4 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -130,7 +130,7 @@ DELETE VNFD in Individual VNF Package - Method not implemented
... Test title: DELETE VNFD in Individual VNF Package - Method not implemented
... Test objective: The objective is to test that DELETE method is not allowed to delete a VNFD
... Pre-conditions: One or more VNF packages are onboarded in the NFVO.
... Reference: Clause 9.4.4.3.5 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.4.3.5 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -142,7 +142,7 @@ Get VNFD in Individual VNF Package with security information
... Test title: Get VNFD in Individual VNF Package with security information
... Test objective: The objective is to test the retrieval of the VNFD in zip format for an individual VNF package shall include in the ZIP archive the security information when requested with "include_signature" parameter, and perform a validation that returned content is in zip format
... Pre-conditions: One or more VNF packages are onboarded in the NFVO.
... Reference: Clause 9.4.4.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.4.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......
......@@ -12,7 +12,7 @@ Get VNF Package Artifact
... Test title: Get VNF Package Artifact
... Test objective: The objective is to test that the GET request read the whole content of the archive containing the artifact files successfully, and perform a validation that returned content is in Zip format
... Pre-conditions: One or more VNF packages are onboarded in the NFVO.
... Reference: Clause 9.4.5a.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.5a.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -25,7 +25,7 @@ Get VNF Package Artifact with "exclude_all_mano_artifacts" parameter
... Test title: Get VNF Package Artifact with "exclude_all_mano_artifacts" parameter
... Test objective: The objective is to test that the GET request read the whole content of the archive containing the artifact files successfully and it doesnot contain additional MANO artifacts when requested with "exclude_all_mano_artifacts" parameter
... Pre-conditions: One or more VNF packages are onboarded in the NFVO.
... Reference: Clause 9.4.5a.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.5a.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -38,7 +38,7 @@ Get VNF Package Artifact with "exclude_all_non_mano_artifacts" parameter
... Test title: Get VNF Package Artifact with "exclude_all_non_mano_artifacts" parameter
... Test objective: The objective is to test that the GET request read the whole content of the archive containing the artifact files successfully and it doesnot contain non-MANO Artifacts when requested with "exclude_all_non_mano_artifacts" parameter
... Pre-conditions: One or more VNF packages are onboarded in the NFVO.
... Reference: Clause 9.4.5a.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.5a.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -51,7 +51,7 @@ Get VNF Package Artifact with "select_non_mano_artifact_sets" parameter
... Test title: Get VNF Package Artifact with "select_non_mano_artifact_sets" parameter
... Test objective: The objective is to test that the GET request read the whole content of the archive containing the artifact files successfully and also contain non_MANO artifacts set when requested with "select_non_mano_artifact_sets" parameter
... Pre-conditions: One or more VNF packages are onboarded in the NFVO.
... Reference: Clause 9.4.5a.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.5a.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -64,7 +64,7 @@ Get VNF Package Artifact with "include_signatures" parameter
... Test title: Get VNF Package Artifact with "include_signatures" parameter
... Test objective: The objective is to test that the GET request read the whole content of the archive containing the artifact files successfully and also contain security certificates when requested with "include_signature" parameter, and perform a validation that returned content is in Zip format
... Pre-conditions: One or more VNF packages are onboarded in the NFVO.
... Reference: Clause 9.4.5a.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.5a.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -77,7 +77,7 @@ Get VNF Package Artifact with Range Request and NFVO supporting Range Requests
... Test title: Get VNF Package Artifact with Range Request and NFVO supporting Range Requests
... Test objective: The objective is to test the GET request read the whole content of the archive containing the artifact files successfully when using a range request to return single range of bytes from the file, with the NFVO supporting it. The test also perform a validation that returned content matches the issued range
... Pre-conditions: One or more VNF packages are onboarded in the NFVO.
... Reference: Clause 9.4.5a.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.5a.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: The NFVO supports range requests to return single range of bytes from the VNF package artifact
... Post-Conditions: none
......@@ -91,7 +91,7 @@ Get VNF Package Artifact with invalid URI parameters "exclude_all_non_mano_artif
... Test title: Get VNF Package Artifact with invalid URI parameters "exclude_all_non_mano_artifacts", "select_non_mano_artifact_sets"
... Test objective: The objective is to test that the GET request to read the whole content of the archive containing the artifact files fails when both "exclude_all_non_mano_artifacts" and "select_non_mano_artifact_sets" are present in request
... Pre-conditions: One or more VNF packages are onboarded in the NFVO.
... Reference: Clause 9.4.5a.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.5a.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -104,7 +104,7 @@ Get VNF Package Artifact with invalid URI parameters "exclude_all_non_mano_artif
... Test title: Get VNF Package Artifact with invalid URI parameters "exclude_all_non_mano_artifacts", "exclude_all_mano_artifactss"
... Test objective: The objective is to test that the GET request to read the whole content of the archive containing the artifact files fails when both "exclude_all_non_mano_artifacts" and "exclude_all_mano_artifacts" are present in request
... Pre-conditions: One or more VNF packages are onboarded in the NFVO.
... Reference: Clause 9.4.5a.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.5a.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -117,7 +117,7 @@ Get VNF Package Artifact with invalid URI parameters undifend select_non_mano_ar
... Test title: Get VNF Package Artifact with invalid URI parameters undefined select_non_mano_artifact_sets
... Test objective: The objective is to test that the GET request to read the whole content of the archive containing the artifact files fails when one or more value provided in "select_non_mano_artifact_sets" are not provided in Manifest.
... Pre-conditions: One or more VNF packages are onboarded in the NFVO.
... Reference: Clause 9.4.5a.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.5a.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -130,7 +130,7 @@ Get VNF Package Artifact with conflict due to onboarding state
... Test title: Get VNF Package Artifact with conflict due to onboarding state
... Test objective: The objective is to test that the GET request to read the whole content of the archive containing the artifact files fails due to a conflict when the VNF Package is not in onboarding state ONBOARDED in the NFVO. The test also performs a validation of the JSON schema validation of the failed operation HTTP response
... Pre-conditions: The onboarding state of the VNF package for which the content is requested is different from ONBOARDED.
... Reference: Clause 9.4.5a.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.5a.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -143,7 +143,7 @@ GET VNF Package Artifact with invalid Range Request
... Test title: GET VNF Package Artifact with invalid Range Request
... Test objective: The objective is to test that the GET request to read the whole content of the archive containing the artifact files fails when using a range request that does not match any available byte range in the file.
... Pre-conditions: One or more VNF packages are onboarded in the NFVO.
... Reference: Clause 9.4.5a.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.5a.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: The NFVO supports range requests to return single range of bytes from the VNF package artifact
... Post-Conditions: none
......@@ -156,7 +156,7 @@ POST VNF Package Artifact - Method not implemented
... Test title: POST VNF Package Artifact - Method not implemented
... Test objective: The objective is to test that POST method is not allowed to create new VNF Package artifact
... Pre-conditions: none
... Reference: Clause 9.4.5a.3.1 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.5a.3.1 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -168,7 +168,7 @@ PUT VNF Package Artifact - Method not implemented
... Test title: PUT VNF Package Artifact - Method not implemented
... Test objective: The objective is to test that PUT method is not allowed to modify a VNF Package artifact
... Pre-conditions: One or more VNF packages are onboarded in the NFVO.
... Reference: Clause 9.4.5a.3.3 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.5a.3.3 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -192,7 +192,7 @@ DELETE VNF Package Artifact - Method not implemented
... Test title: DELETE VNF Package Artifact - Method not implemented
... Test objective: The objective is to test that DELETE method is not allowed to delete a VNF Package artifact
... Pre-conditions: One or more VNF packages are onboarded in the NFVO.
... Reference: Clause 9.4.6.3.5 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.6.3.5 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......@@ -204,7 +204,7 @@ Get VNF Package Artifact with "include_external_artifacts" parameter
... Test title: Get VNF Package Artifact with "include_external_artifacts" parameter
... Test objective: The objective is to test that GET request reads the whole content of the archive containing the external artifacts successfully when requested with "include_external_artifacts" parameter
... Pre-conditions: One or more VNF packages are onboarded in the NFVO.
... Reference: Clause 9.4.5a.3.2 - ETSI GS NFV-SOL 005 [3] v3.3.1
... Reference: Clause 9.4.5a.3.2 - ETSI GS NFV-SOL 005 [3] v3.5.1
... Config ID: Config_prod_NFVO
... Applicability: none
... Post-Conditions: none
......