Skip to content
Snippets Groups Projects
IndividualSubscription.robot 10.6 KiB
Newer Older
  • Learn to ignore specific revisions
  • Elian Kraja's avatar
    Elian Kraja committed
    *** Settings ***
    Library           JSONSchemaLibrary    schemas/
    
    Elian Kraja's avatar
    Elian Kraja committed
    Resource          environment/variables.txt    # Generic Parameters
    
    Elian Kraja's avatar
    Elian Kraja committed
    Library           OperatingSystem
    
    Library           REST    ${EM-VNF_SCHEMA}://${EM-VNF_HOST}:${EM-VNF_PORT}    ssl_verify=false
    
    Elian Kraja's avatar
    Elian Kraja committed
    
    *** Test Cases ***
    
    GET Individual VNF Indicator Subscription
        [Documentation]    Test ID: 6.3.2.5.1
        ...    Test title: Get individual subscription to VNF performance indicators
        ...    Test objective: The objective is to test the retrieval of individual VNF performance indicator subscription and perform a JSON schema validation of the returned subscription data structure
        ...    Pre-conditions: A VNF instance is instantiated. At least one VNF indicator subscription is available in the VNF.
    
        ...    Reference: Clause 8.4.6.3.2 - ETSI GS NFV-SOL 002 [2] v3.3.1
    
        ...    Config ID: Config_prod_VE
        ...    Applicability: The VNF supports the generation and maintenance of performance indicators
        ...    Post-Conditions: none
        Get Individual VNF Indicator Subscription
        Check HTTP Response Status Code Is    200
        Check HTTP Response Body Json Schema Is   VnfIndicatorSubscription
    
    GET Individual VNF Indicator Subscription with invalid resource identifier
        [Documentation]    Test ID: 6.3.2.5.2
        ...    Test title: Get individual subscription to VNF performance indicators
        ...    Test objective: The objective is to test that the retrieval of individual VNF performance indicator subscription fails when using an invalid resource identifier. The test also checks the JSON schema of the unsuccessful operation HTTP response.
        ...    Pre-conditions: A VNF instance is instantiated. At least one VNF indicator subscription is available in the VNF.
    
        ...    Reference: Clause 8.4.6.3.2 - ETSI GS NFV-SOL 002 [2] v3.3.1
    
        ...    Config ID: Config_prod_VE
        ...    Applicability: The VNF supports the generation and maintenance of performance indicators
        ...    Post-Conditions: none
        GET Individual VNF Indicator Subscription with invalid resource identifier
        Check HTTP Response Status Code Is    404
        Check HTTP Response Body Json Schema Is   ProblemDetails
    
    
    DELETE Individual VNF Indicator Subscription
        [Documentation]    Test ID: 6.3.2.5.3
        ...    Test title: Delete individual subscription to VNF performance indicators
        ...    Test objective: The objective is to test the deletion of an individual VNF performance indicator subscription.
        ...    Pre-conditions: A VNF instance is instantiated. At least one VNF indicator subscription is available in the VNF.
    
        ...    Reference: clause 8.4.6.3.5 - ETSI GS NFV-SOL 002 [2] v3.3.1
    
        ...    Config ID: Config_prod_VE
        ...    Applicability: The VNF supports the generation and maintenance of performance indicators
        ...    Post-Conditions: The subscription to VNF performance indicators is deleted
        Send Delete Request for Individual VNF Indicator Subscription
        Check HTTP Response Status Code Is    204
        Check Postcondition Individual VNF Indicator Subscription is Deleted
    
    DELETE Individual VNF Indicator Subscription with invalid resource identifier
        [Documentation]    Test ID: 6.3.2.5.4
        ...    Test title: Delete individual subscription to VNF performance indicators
        ...    Test objective: The objective is to test that the deletion of an individual VNF performance indicator subscription fails when using an invalid resource identifier. The test also checks the JSON schema of the unsuccessful operation HTTP response.
        ...    Pre-conditions: A VNF instance is instantiated. At least one VNF indicator subscription is available in the VNF.
    
        ...    Reference: clause 8.4.6.3.5 - ETSI GS NFV-SOL 002 [2] v3.3.1
    
        ...    Config ID: Config_prod_VE
        ...    Applicability: The VNF supports the generation and maintenance of performance indicators
        ...    Post-Conditions: none   
        Send Delete Request for Individual VNF Indicator Subscription with invalid resource identifier
        Check HTTP Response Status Code Is    404
        Check HTTP Response Body Json Schema Is   ProblemDetails
    
    
    PUT Individual VNF Indicator Subscription - Method not implemented
    
    Michele Carignani's avatar
    Michele Carignani committed
        [Documentation]    Test ID: 6.3.2.5.5
    
        ...    Test title: PUT individual VNF indicator subscription - Method not implemented
        ...    Test objective: The objective is to test that PUT method is not allowed to modify an individual VNF performance indicator subscription
    
    Najam UI Hassan's avatar
    Najam UI Hassan committed
        ...    Pre-conditions: none
    
        ...    Reference: Clause 8.4.6.3.3 - ETSI GS NFV-SOL 002 [2] v3.3.1
    
        ...    Config ID: Config_prod_VE
        ...    Applicability: The VNF supports the generation and maintenance of performance indicators.
    
    Najam UI Hassan's avatar
    Najam UI Hassan committed
        ...    Post-Conditions: none
    
        Send Put Request for Individual VNF Indicator Subscription
        Check HTTP Response Status Code Is    405
    
    PATCH Individual VNF Indicator Subscription - Method not implemented
    
    Michele Carignani's avatar
    Michele Carignani committed
        [Documentation]    Test ID: 6.3.2.5.6
    
        ...    Test title: PUT individual VNF indicator subscription - Method not implemented
        ...    Test objective: The objective is to test that PATCH method is not allowed to update an individual VNF performance indicator subscription
    
    Najam UI Hassan's avatar
    Najam UI Hassan committed
        ...    Pre-conditions: none
    
        ...    Reference: Clause 8.4.6.3.4 - ETSI GS NFV-SOL 002 [2] v3.3.1
    
        ...    Config ID: Config_prod_VE
        ...    Applicability: The VNF supports the generation and maintenance of performance indicators.
    
    Najam UI Hassan's avatar
    Najam UI Hassan committed
        ...    Post-Conditions: none
    
        Send Patch Request for Individual VNF Indicator Subscription
        Check HTTP Response Status Code Is    405
    
    POST Individual VNF Indicator Subscription - Method not implemented
    
    Michele Carignani's avatar
    Michele Carignani committed
        [Documentation]    Test ID: 6.3.2.5.7
    
        ...    Test title: PUT individual VNF indicator subscription - Method not implemented
        ...    Test objective: The objective is to test that PUT method is not allowed to modify an individual VNF performance indicator subscription
    
    Najam UI Hassan's avatar
    Najam UI Hassan committed
        ...    Pre-conditions: none
    
        ...    Reference: Clause 8.4.6.3.1 - ETSI GS NFV-SOL 002 [2] v3.3.1
    
        ...    Config ID: Config_prod_VE
        ...    Applicability: The VNF supports the generation and maintenance of performance indicators.
    
    Najam UI Hassan's avatar
    Najam UI Hassan committed
        ...    Post-Conditions: none
    
        Send Post Request for Individual VNF Indicator Subscription
        Check HTTP Response Status Code Is    405
    
    
    Get Individual VNF Indicator Subscription
    
    Elian Kraja's avatar
    Elian Kraja committed
        Log    Trying to get a given subscription identified by subscriptionId
        Set Headers    {"Accept": "${ACCEPT_JSON}"}
    
        Run Keyword If    ${AUTH_USAGE} == 1    Set Headers    {"${AUTHORIZATION_HEADER}":"${AUTHORIZATION_TOKEN}"}
    
    Najam UI Hassan's avatar
    Najam UI Hassan committed
        GET    ${apiRoot}/${apiName}/${apiMajorVersion}/subscriptions/${subscriptionId}
    
        ${output}=    Output    response
    
        Set Suite Variable    ${response}    ${output}
    
    
    GET Individual VNF Indicator Subscription with invalid resource identifier
    
    Elian Kraja's avatar
    Elian Kraja committed
        Log    Trying to perform a request on a subscriptionID which doesn't exist
        Set Headers    {"Accept": "${ACCEPT_JSON}"}
    
        Run Keyword If    ${AUTH_USAGE} == 1    Set Headers    {"${AUTHORIZATION_HEADER}":"${AUTHORIZATION_TOKEN}"}
    
    Najam UI Hassan's avatar
    Najam UI Hassan committed
        GET    ${apiRoot}/${apiName}/${apiMajorVersion}/subscriptions/${erroneousSubscriptionId}
    
        ${output}=    Output    response
    
        Set Suite Variable    ${response}    ${output}
    
    
    Send Delete Request for Individual VNF Indicator Subscription
    
    Elian Kraja's avatar
    Elian Kraja committed
        Log    Trying to perform a DELETE on a subscriptionId
        Set Headers    {"Accept": "${ACCEPT_JSON}"}
    
        Run Keyword If    ${AUTH_USAGE} == 1    Set Headers    {"${AUTHORIZATION_HEADER}":"${AUTHORIZATION_TOKEN}"}
    
    Najam UI Hassan's avatar
    Najam UI Hassan committed
        DELETE    ${apiRoot}/${apiName}/${apiMajorVersion}/subscriptions/${subscriptionId}
    
        ${output}=    Output    response
    
        Set Suite Variable    ${response}    ${output}
    
    Send Delete Request for Individual VNF Indicator Subscription with invalid resource identifier
    
    Elian Kraja's avatar
    Elian Kraja committed
        Log    Trying to perform a DELETE on a subscriptionId which doesn't exist
        Set Headers    {"Accept": "${ACCEPT_JSON}"}
    
        Run Keyword If    ${AUTH_USAGE} == 1    Set Headers    {"${AUTHORIZATION_HEADER}":"${AUTHORIZATION_TOKEN}"}
    
    Najam UI Hassan's avatar
    Najam UI Hassan committed
        DELETE    ${apiRoot}/${apiName}/${apiMajorVersion}/subscriptions/${erroneousSubscriptionId}
    
        ${output}=    Output    response
    
        Set Suite Variable    ${response}    ${output}
    
        
    Send Post Request for Individual VNF Indicator Subscription
        Log    Trying to create a new subscription
    
        Run Keyword If    ${AUTH_USAGE} == 1    Set Headers    {"${AUTHORIZATION_HEADER}":"${AUTHORIZATION_TOKEN}"}
    
    Najam UI Hassan's avatar
    Najam UI Hassan committed
        POST    ${apiRoot}/${apiName}/${apiMajorVersion}/subscriptions/${erroneousSubscriptionId}
    
        ${output}=    Output    response
    
        Set Suite Variable    ${response}    ${output}   
    
    
    Send Put Request for Individual VNF Indicator Subscription
    
    Elian Kraja's avatar
    Elian Kraja committed
        Log    Trying to perform a PUT. This method should not be implemented
        Set Headers    {"Accept": "${ACCEPT_JSON}"}
    
        Run Keyword If    ${AUTH_USAGE} == 1    Set Headers    {"${AUTHORIZATION_HEADER}":"${AUTHORIZATION_TOKEN}"}
    
    Najam UI Hassan's avatar
    Najam UI Hassan committed
        GET    ${apiRoot}/${apiName}/${apiMajorVersion}/subscriptions/${subscriptionId}
    
        ${origOutput}=    Output    response
    
        Set Suite Variable    ${origResponse}    ${origOutput}
    
    Najam UI Hassan's avatar
    Najam UI Hassan committed
        PUT    ${apiRoot}/${apiName}/${apiMajorVersion}/subscriptions/${subscriptionId}
    
        ${output}=    Output    response
    
        Set Suite Variable    ${response}    ${output}   
    
    Send Patch Request for Individual VNF Indicator Subscription
        Log    Trying to create a new subscription
    
        Run Keyword If    ${AUTH_USAGE} == 1    Set Headers    {"${AUTHORIZATION_HEADER}":"${AUTHORIZATION_TOKEN}"}
    
    Najam UI Hassan's avatar
    Najam UI Hassan committed
        GET    ${apiRoot}/${apiName}/${apiMajorVersion}/subscriptions/${subscriptionId}
    
        ${origOutput}=    Output    response
    
        Set Suite Variable    ${origResponse}    ${origOutput}
    
    Najam UI Hassan's avatar
    Najam UI Hassan committed
        PATCH    ${apiRoot}/${apiName}/${apiMajorVersion}/subscriptions/${subscriptionId}
    
        ${output}=    Output    response
    
        Set Suite Variable    ${response}    ${output}
    
    Check HTTP Response Status Code Is
        [Arguments]    ${expected_status}    
        ${status}=    Convert To Integer    ${expected_status}    
    
        Should Be Equal    ${response['status']}    ${status}
    
        Log    Status code validated
    
    Check HTTP Response Header Contains
        [Arguments]    ${CONTENT_TYPE}
    
        Log    ${response['headers']}
        Should Contain    ${response['headers']}    ${CONTENT_TYPE}
    
        Log    Header is present
        
    Check HTTP Response Body Json Schema Is
    
        [Arguments]    ${input}
    
        Should Contain    ${response['headers']['Content-Type']}    application/json
    
        ${schema} =    Catenate    SEPARATOR=    ${input}    .schema.json
    
        Validate Json    ${schema}    ${response['body']}
    
        Log    Json Schema Validation OK
    
    Check Postcondition Individual VNF Indicator Subscription is Deleted
        Log    Check Postcondition subscription is deleted
        GET Individual VNF Indicator Subscription
        Check HTTP Response Status Code Is    404