Commit 60389d3e authored by Giacomo Bernini's avatar Giacomo Bernini
Browse files

Added doc for SOL003 VNF Pckg mgmt API

parent d9395ac8
Loading
Loading
Loading
Loading
+84 −74
Original line number Original line Diff line number Diff line
@@ -2,88 +2,98 @@
Library           JSONSchemaLibrary    schemas/
Library           JSONSchemaLibrary    schemas/
Resource          environment/variables.txt    # Generic Parameters
Resource          environment/variables.txt    # Generic Parameters
Resource          environment/individualSubscription.txt
Resource          environment/individualSubscription.txt
Resource          VNFPackageManagementKeywords.robot
Library           OperatingSystem
Library           OperatingSystem
Library           JSONLibrary
Library           JSONLibrary
Library           REST    ${NFVO_SCHEMA}://${NFVO_HOST}:${NFVO_PORT}
Library           REST    ${NFVO_SCHEMA}://${NFVO_HOST}:${NFVO_PORT}


*** Test Cases ***
*** Test Cases ***
GET Individual Subscription
GET Individual VNF Package Subscription
    Log    Trying to get a single subscription identified by subscriptionId
    [Documentation]    Test ID: 7.3.3.7.1
    Set Headers    {"Accept": "${ACCEPT_JSON}"}
    ...    Test title: GET Individual VNF Package Subscription
    Run Keyword If    ${AUTH_USAGE} == 1    Set Headers    {"Authorization": "${AUTHORIZATION}"}
    ...    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
    GET    ${apiRoot}/${apiName}/${apiVersion}/subscriptions/${subscriptionId}
    ...    Pre-conditions: At least one VNF package subscription is available in the NFVO.
    Integer    response status    200
    ...    Reference:  section 10.4.8.3.2 - SOL003 v2.4.1
    Log    Received a 200 OK as expected
    ...    Config ID: Config_prod_NFVO
    ${contentType}=    Output    response headers Content-Type
    ...    Applicability: none
    Should Contain    ${contentType}    ${CONTENT_TYPE_JSON}
    ...    Post-Conditions: none
    ${result}=    Output    response body
    Get Individual VNF Package Subscription
    Validate Json    PkgmSubscription.schema.json    ${result}
    Check HTTP Response Status Code Is    200
    Log    Validated PkgmSubscription schema
    Check HTTP Response Body Json Schema Is   PkgmSubscription
    Check HTTP Response Body Subscription Identifier matches the requested Subscription


GET Subscription - Negative (Not Found)
GET Individual VNF Package Subscription with invalid resource identifier
    Log    Trying to perform a request on a subscriptionID which doesn't exist
    [Documentation]    Test ID: 7.3.3.7.2
    Set Headers    {"Accept": "${ACCEPT_JSON}"}
    ...    Test title: GET Individual VNF Package Subscription with invalid resource identifier
    Run Keyword If    ${AUTH_USAGE} == 1    Set Headers    {"Authorization": "${AUTHORIZATION}"}
    ...    Test objective: The objective is to test that the retrieval of an individual VNF package subscription fails when using an invalid resource identifier
    GET    ${apiRoot}/${apiName}/${apiVersion}/subscriptions/${erroneousSubscriptionId}
    ...    Pre-conditions: At least one VNF package subscription is available in the NFVO.
    Integer    response status    404
    ...    Reference:  section 10.4.8.3.2 - SOL003 v2.4.1
    Log    Received 404 Not Found as expected
    ...    Config ID: Config_prod_NFVO
    ${contentType}=    Output    response headers Content-Type
    ...    Applicability: none
    Should Contain    ${contentType}    ${CONTENT_TYPE_JSON}
    ...    Post-Conditions: none
    Log    Trying to validate ProblemDetails
    GET individual VNF Package Subscription with invalid resource identifier
    ${problemDetails}=    Output    response body
    Check HTTP Response Status Code Is    404
    Validate Json    ProblemDetails.schema.json    ${problemDetails}
    Log    Validation OK


DELETE Subscription
DELETE Individual VNF Package Subscription with invalid resource identifier
    Log    Trying to perform a DELETE on a subscriptionId
    [Documentation]    Test ID: 7.3.3.7.3
    Set Headers    {"Accept": "${ACCEPT_JSON}"}
    ...    Test title: DELETE Individual VNF Package Subscription with invalid resource identifier
    Run Keyword If    ${AUTH_USAGE} == 1    Set Headers    {"Authorization": "${AUTHORIZATION}"}
    ...    Test objective: The objective is to test that the deletion of an individual VNF package subscription fails when using an invalid resource identifier
    DELETE    ${apiRoot}/${apiName}/${apiVersion}/subscriptions/${subscriptionId}
    ...    Pre-conditions: At least one VNF package subscription is available in the NFVO.
    Integer    response status    204
    ...    Reference:  section 10.4.8.3.5 - SOL003 v2.4.1
    Log    Received 204 No Content as expected
    ...    Config ID: Config_prod_NFVO
    #Log    Trying to get the deleted element
    ...    Applicability: none
    #Create HTTP Context    ${NFVO_HOST}:${NFVO_PORT}    ${NFVO_SCHEMA}
    ...    Post-Conditions: none   
    #Set Request Header    Accept    ${ACCEPT_JSON}
    Send Delete request for individual VNF Package Subscription with invalid resource identifier
    #Run Keyword If    ${AUTH_USAGE} == 1    Set Request Header    Authorization    ${AUTHORIZATION}
    Check HTTP Response Status Code Is    404
    #GET    ${apiRoot}/${apiName}/${apiVersion}/subscriptions/${subscriptionId}
    #Response Status Code Should Equal    404
    #Log    The subscriptionId is not present in database


DELETE Subscription - Negative (Not Found)
POST Individual VNF Package Subscription - Method not implemented
    Log    Trying to perform a DELETE on a subscriptionId which doesn't exist
    [Documentation]    Test ID: 7.3.3.7.4
    Set Headers    {"Accept": "${ACCEPT_JSON}"}
    ...    Test title: POST Individual VNF Package Subscription - Method not implemented
    Run Keyword If    ${AUTH_USAGE} == 1    Set Headers    {"Authorization": "${AUTHORIZATION}"}
    ...    Test objective: The objective is to test that POST method is not allowed to create a new VNF Package Subscription
    DELETE    ${apiRoot}/${apiName}/${apiVersion}/subscriptions/${erroneousSubscriptionId}
    ...    Pre-conditions: none
    Integer    response status    404
    ...    Reference:  section 10.4.8.3.1 - SOL003 v2.4.1
    Log    The subscriptionId is not present in database
    ...    Config ID: Config_prod_NFVO
    ${contentType}=    Output    response headers Content-Type
    ...    Applicability: none
    Should Contain    ${contentType}    ${CONTENT_TYPE_JSON}
    ...    Post-Conditions: The VNF Package Subscription is not created on the NFVO
    Log    Trying to validate ProblemDetails
    Send Post request for individual VNF Package Subscription
    ${problemDetails}=    Output    response body
    Check HTTP Response Status Code Is    405
    Validate Json    ProblemDetails.schema.json    ${problemDetails}
    Check Postcondition VNF Package Subscription is not Created
    Log    Validation OK


PUT Subscription - (Method not implemented)
PUT Individual VNF Package Subscription - Method not implemented
    Log    Trying to perform a PUT. This method should not be implemented
    [Documentation]    Test ID: 7.3.3.7.5
    Set Headers    {"Accept": "${ACCEPT_JSON}"}
    ...    Test title: PUT Individual VNF Package Subscription - Method not implemented
    Run Keyword If    ${AUTH_USAGE} == 1    Set Headers    {"Authorization": "${AUTHORIZATION}"}
    ...    Test objective: The objective is to test that PUT method is not allowed to update an existing VNF Package subscription
    PUT    ${apiRoot}/${apiName}/${apiVersion}/subscriptions/${subscriptionId}
    ...    Pre-conditions: At least one VNF package subscription is available in the NFVO.
    Integer    response status    405
    ...    Reference:  section 10.4.8.3.3 - SOL003 v2.4.1
    Log    Received 405 Method not implemented as expected
    ...    Config ID: Config_prod_NFVO
    ...    Applicability: none
    ...    Post-Conditions: The VNF Package subscription is not modified by the operation
    Send Put request for individual VNF Package Subscription
    Check HTTP Response Status Code Is    405
    Check Postcondition VNF Package Subscription is Unmodified (Implicit)


PATCH Subscription - (Method not implemented)
PATCH Individual VNF Package Subscription - Method not implemented
    Log    Trying to perform a PATCH. This method should not be implemented
    [Documentation]    Test ID: 7.3.3.7.6
    Set Headers    {"Accept": "${ACCEPT_JSON}"}
    ...    Test title: PATCH Individual VNF Package Subscription - Method not implemented
    Run Keyword If    ${AUTH_USAGE} == 1    Set Headers    {"Authorization": "${AUTHORIZATION}"}
    ...    Test objective: The objective is to test that PATCH method is not allowed to modify an existing VNF Package subscription
    PATCH    ${apiRoot}/${apiName}/${apiVersion}/subscriptions/${subscriptionId}
    ...    Pre-conditions: At least one VNF package subscription is available in the NFVO.
    Integer    response status    405
    ...    Reference:  section 10.4.8.3.4 - SOL003 v2.4.1
    Log    Received 405 Method not implemented as expected
    ...    Config ID: Config_prod_NFVO

    ...    Applicability: none
POST Subscription - (Method not implemented)
    ...    Post-Conditions: The VNF Package subscription is not modified by the operation
    Log    Trying to perform a POST. This method should not be implemented
    Send Patch request for individual VNF Package Subscription
    Set Headers    {"Accept": "${ACCEPT_JSON}"}
    Check HTTP Response Status Code Is    405
    Run Keyword If    ${AUTH_USAGE} == 1    Set Headers    {"Authorization": "${AUTHORIZATION}"}
    Check Postcondition VNF Package Subscription is Unmodified (Implicit)
    POST    ${apiRoot}/${apiName}/${apiVersion}/subscriptions/${subscriptionId}
    Integer    response status    405
    Log    Received 405 Method not implemented as expected


DELETE Individual VNF Package Subscription
    [Documentation]    Test ID: 7.3.3.7.7
    ...    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:  section 10.4.8.3.5 - SOL003 v2.4.1
    ...    Config ID: Config_prod_NFVO
    ...    Applicability: none
    ...    Post-Conditions: The VNF Package Subscription is not available anymore in the NFVO    
    Send Delete request for individual VNF Package Subscription
    Check HTTP Response Status Code Is    204
    Check Postcondition VNF Package Subscription is Deleted
 No newline at end of file
+87 −14
Original line number Original line Diff line number Diff line
@@ -13,12 +13,28 @@ Suite Teardown Terminate All Processes kill=true


*** Test Cases ***
*** Test Cases ***
Get All VNF Package Subscriptions
Get All VNF Package Subscriptions
    [Documentation]    Test ID: 7.3.3.6.1
    ...    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:  section 10.4.7.3.2 - SOL003 v2.4.1
    ...    Config ID: Config_prod_NFVO
    ...    Applicability: none
    ...    Post-Conditions: none    
    Get all VNF Package Subscriptions
    Get all VNF Package Subscriptions
    Check HTTP Response Status Code Is    200
    Check HTTP Response Status Code Is    200
    Check HTTP Response Body Json Schema Is    PkgmSubscriptions
    Check HTTP Response Body Json Schema Is    PkgmSubscriptions




Get VNF Package Subscriptions with attribute-based filter
Get VNF Package Subscriptions with attribute-based filter
    [Documentation]    Test ID: 7.3.3.6.2
    ...    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:  section 10.4.7.3.2 - SOL003 v2.4.1
    ...    Config ID: Config_prod_NFVO
    ...    Applicability: none
    ...    Post-Conditions: none
    Get VNF Package Subscriptions with attribute-based filters
    Get VNF Package Subscriptions with attribute-based filters
    Check HTTP Response Status Code Is    200
    Check HTTP Response Status Code Is    200
    Check HTTP Response Body Json Schema Is    PkgmSubscription
    Check HTTP Response Body Json Schema Is    PkgmSubscription
@@ -26,55 +42,112 @@ Get VNF Package Subscriptions with attribute-based filter




Get VNF Package Subscriptions with invalid attribute-based filter
Get VNF Package Subscriptions with invalid attribute-based filter
    [Documentation]    Test ID: 7.3.3.6.3
    ...    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:  section 10.4.7.3.2 - SOL003 v2.4.1
    ...    Config ID: Config_prod_NFVO
    ...    Applicability: none
    ...    Post-Conditions: none
    Get VNF Package Subscriptions with invalid attribute-based filters
    Get VNF Package Subscriptions with invalid attribute-based filters
    Check HTTP Response Status Code Is    400
    Check HTTP Response Status Code Is    400
    Check HTTP Response Body Json Schema Is   ProblemDetails    
    Check HTTP Response Body Json Schema Is   ProblemDetails    
    
    
GET VNF Package Subscription with invalid resource endpoint
GET VNF Package Subscription with invalid resource endpoint
    [Documentation]    Test ID: 7.3.3.6.4
    ...    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:  section 10.4.7.3.2 - SOL003 v2.4.1
    ...    Config ID: Config_prod_NFVO
    ...    Applicability: none
    ...    Post-Conditions: none    
    Get VNF Package Subscriptions with invalid resource endpoint
    Get VNF Package Subscriptions with invalid resource endpoint
    Check HTTP Response Status Code Is    404
    Check HTTP Response Status Code Is    404



Create new VNF Package subscription
Create new VNF Package subscription
    [Documentation]    Test ID 7.3.3.6.5
    ...    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:  section 10.4.7.3.1 - SOL003 v2.4.1
    ...    Config ID: Config_prod_NFVO
    ...    Applicability: none
    ...    Post-Conditions: The VNF package subscription is successfully set and it matches the issued subscription    
    Send Post Request for VNF Package Subscription
    Send Post Request for VNF Package Subscription
    Check HTTP Response Status Code Is    201
    Check HTTP Response Status Code Is    201
    Check HTTP Response Body Json Schema Is    PkgmSubscription
    Check HTTP Response Body Json Schema Is    PkgmSubscription
    Check HTTP Response Body Matches the Subscription
    Check HTTP Response Body PkgmSubscription Attributes Values Match the Issued Subscription
    Check Postcondition VNF Package Subscription Is Set 
    Check Postcondition VNF Package Subscription Is Set 




Create duplicated VNF Package subscription with duplication handler
Create duplicated VNF Package subscription with NFVO not creating duplicated subscriptions
    [Tags]    no-duplicated-subs
    [Tags]    no-duplicated-subs
    [Documentation]    Test ID 7.3.3.6.6
    ...    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:  section 10.4.7.3.1 - SOL003 v2.4.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
    Send Post Request for Duplicated VNF Package Subscription
    Send Post Request for Duplicated VNF Package Subscription
    Check HTTP Response Status Code Is    303
    Check HTTP Response Status Code Is    303
    Check HTTP Response Body Is Empty
    Check HTTP Response Body Is Empty
    Check HTTP Response Header Contains    Location
    Check HTTP Response Header Contains    Location
    Check Postcondition VNF Package Subscription Is Set    Location
    Check Postcondition Subscription Resource Returned in Location Header Is Available



Create duplicated VNF Package subscription without duplication handler
Create duplicated VNF Package subscription with NFVO creating duplicated subscriptions
    [Tags]    duplicated-subs
    [Tags]    duplicated-subs
    [Documentation]    Test ID 7.3.3.6.7
    ...    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:  section 10.4.7.3.1 - SOL003 v2.4.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
    Send Post Request for Duplicated VNF Package Subscription
    Send Post Request for Duplicated VNF Package Subscription
    Check HTTP Response Status Code Is    201
    Check HTTP Response Status Code Is    201
    Check HTTP Response Body Json Schema Is    PmSubscription
    Check HTTP Response Body Json Schema Is    PkgmSubscription
    Check HTTP Response Body Matches the Subscription
    Check HTTP Response Body PkgmSubscription Attributes Values Match the Issued Subscription
    Check Postcondition VNF Package Subscription Is Set 
    Check Postcondition VNF Package Subscription Is Set 




PUT VNF Package Subscriptions - Method not implemented
PUT VNF Package Subscriptions - Method not implemented
    [Documentation]    Test ID 7.3.3.6.8
    ...    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:  section 10.4.7.3.3 - SOL003 v2.4.1
    ...    Config ID: Config_prod_NFVO
    ...    Applicability: none
    ...    Post-Conditions: none
    Send Put Request for VNF Package Subscriptions
    Send Put Request for VNF Package Subscriptions
    Check HTTP Response Status Code Is    405
    Check HTTP Response Status Code Is    405
    
    
    
PATCH VNF Package Subscriptions - Method not implemented
PATCH VNF Package Subscriptions - Method not implemented
    [Documentation]    Test ID 7.3.3.6.9
    ...    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:  section 10.4.7.3.4 - SOL003 v2.4.1
    ...    Config ID: Config_prod_NFVO
    ...    Applicability: none
    ...    Post-Conditions: none
    Send Patch Request for VNF Package Subscriptions
    Send Patch Request for VNF Package Subscriptions
    Check HTTP Response Status Code Is    405
    Check HTTP Response Status Code Is    405
    
    
        
        
DELETE VNF Package Subscriptions - Method not implemented
DELETE VNF Package Subscriptions - Method not implemented
    [Documentation]    Test ID 7.3.3.6.10
    ...    Test title: DELETE VNF Package Subscriptions - Method not implemented
    ...    Test objective: The objective is to test that DELETE method is not allowed to delete VNF package subscriptions
    ...    Pre-conditions: At least one VNF package subscription is available in the NFVO.
    ...    Reference:  section 10.4.7.3.5 - SOL003 v2.4.1
    ...    Config ID: Config_prod_NFVO
    ...    Applicability: none
    ...    Post-Conditions: The VNF package subscriptions are not deleted by the failed operation 
    Send Delete Request for VNF Package Subscriptions
    Send Delete Request for VNF Package Subscriptions
    Check HTTP Response Status Code Is    405
    Check HTTP Response Status Code Is    405

    Check Postcondition VNF Package Subscriptions Exists

+131 −93

File changed.

Preview size limit exceeded, changes collapsed.

+129 −81

File changed.

Preview size limit exceeded, changes collapsed.

+291 −7

File changed.

Preview size limit exceeded, changes collapsed.

Loading