Skip to content
Snippets Groups Projects
Configuration.robot 9.78 KiB
Newer Older
  • Learn to ignore specific revisions
  • *** Settings ***
    
    mengxuan.zhao's avatar
    mengxuan.zhao committed
    Resource    environment/variables.txt 
    
    Library    REST    ${EM-VNF_SCHEMA}://${EM-VNF_HOST}:${EM-VNF_PORT}    ssl_verify=false
    
    Library    JSONLibrary
    Library    JSONSchemaLibrary    schemas/
    Library    OperatingSystem
    Library    DependencyLibrary
    
    
    *** Test Cases ***
    
    Set new VNF Configuration
    
        [Documentation]    Test ID: 6.3.1.1.1
    
        ...    Test title: Set a new VNF Configuration
    
        ...    Test objective: The objective is to test the creation of a new VNF configuration and perform a JSON schema validation of the returned configuration data structure
        ...    Pre-conditions: A VNF instance is instantiated
    
    Najam UI Hassan's avatar
    Najam UI Hassan committed
        ...    Reference: Clause 9.4.2.3.4 - ETSI GS NFV-SOL 002 [2] v2.7.1
    
        ...    Config ID: Config_prod_VE
        ...    Applicability: The VNF supports the generation of HTTP Etag opaque identifiers
    
        ...    Post-Conditions: The configuration is successfully set in the VNF and it matches the issued configuration
    
        Send VNF configuration
        Check HTTP Response Status Code Is    200
    
        Check HTTP Response Header Contains    ETag
    
        Check HTTP Response Body Json Schema Is   vnfConfigModifications
    
        Check Postcondition VNF Is Configured
    
    Get information about a VNF configuration
        [Tags]    no-etag
    
        [Documentation]    Test ID: 6.3.1.1.2
    
        ...    Test title: Get information about a VNF configuration
    
        ...    Test objective: The objective is to test the retrieval of an existing VNF instance configuration and perform a JSON schema validation of the collected configuration data structure
        ...    Pre-conditions: A VNF instance is instantiated. The VNF instance is already configured.
    
    Najam UI Hassan's avatar
    Najam UI Hassan committed
        ...    Reference: Clause 9.4.2.3.2 - ETSI GS NFV-SOL 002 [2] v2.7.1
    
        ...    Config ID: Config_prod_VE
        ...    Applicability: none
    
        ...    Post-Conditions: none
    
    Giacomo Bernini's avatar
    Giacomo Bernini committed
        Get VNF configuration
        Check HTTP Response Status Code Is    200
    
        Check HTTP Response Body Json Schema Is   vnfConfiguration
    
    Get information about a VNF configuration with HTTP Etag
    
        [Documentation]    Test ID: 6.3.1.1.3
    
        ...    Test title: Get information about a VNF configuration with HTTP Etag
    
        ...    Test objective: The objective is to test the retrieval of an existing VNF instance configuration, check the generation by the VNF of an HTTP Etag opaque identifier, and perform a JSON schema validation of the collected configuration data structure
        ...    Pre-conditions:  A VNF instance is instantiated. The VNF instance is already configured
    
    Najam UI Hassan's avatar
    Najam UI Hassan committed
        ...    Reference: Clause 9.4.2.3.2 - ETSI GS NFV-SOL 002 [2] v2.7.1
    
        ...    Config ID: Config_prod_VE
    
    Giacomo Bernini's avatar
    Giacomo Bernini committed
        ...    Applicability: The VNF supports the generation of HTTP Etag opaque identifiers
    
        ...    Post-Conditions: none
    
        Get VNF configuration
    
    Giacomo Bernini's avatar
    Giacomo Bernini committed
        Check HTTP Response Status Code Is    200
    
        Check HTTP Response Header Contains    ETag
    
        Check HTTP Response Body Json Schema Is   vnfConfiguration
    
    Set new VNF Configuration - HTTP Etag precondition unsuccessful
    
        [Documentation]    Test ID: 6.3.1.1.4
        ...    Test title: Set a new VNF Configuration - HTTP Etag precondition unsuccessful
        ...    Test objective: The objective is to test the unsuccess in setting a duplication of VNF configuration identified by an already used HTTP Etag identifier. The test also checks the JSON schema of the unsuccessful operation HTTP response.
        ...    Pre-conditions:  A VNF instance is instantiated. The VNF instance is already configured (Test ID 6.3.1.1.1) with a given HTTP Etag identifier.
    
    Najam UI Hassan's avatar
    Najam UI Hassan committed
        ...    Reference: Clause 9.4.2.3.4 - ETSI GS NFV-SOL 002 [2] v2.7.1
    
        ...    Config ID: Config_prod_VE
    
    Giacomo Bernini's avatar
    Giacomo Bernini committed
        ...    Applicability: The VNF supports the generation of HTTP Etag opaque identifiers
    
        ...    Post-Conditions:  The VNF configuration is not modified by the unsuccessful operation and it matches the configuration issued in Test ID 6.3.1.1.1
    
    Giacomo Bernini's avatar
    Giacomo Bernini committed
        Send Duplicated VNF configuration
        Check HTTP Response Status Code Is    412
        Check HTTP Response Body Json Schema Is   ProblemDetails
    
        Check Postcondition VNF Configuration Unmodified (Implicit)
    
    POST VNF Configuration - Method not implemented
    
        [Documentation]    Test ID: 6.3.1.1.5
    
        ...    Test title: POST VNF Configuration - Method not implemented
        ...    Test objective: The objective is to test that POST method is not allowed to create a new VNF configuration
    
    Najam UI Hassan's avatar
    Najam UI Hassan committed
        ...    Pre-conditions: none
    
    Najam UI Hassan's avatar
    Najam UI Hassan committed
        ...    Reference: Clause 9.4.2.3.1 - ETSI GS NFV-SOL 002 [2] v2.7.1
    
        ...    Config ID: Config_prod_VE
        ...    Applicability: none
    
        ...    Post-Conditions: none
    
        Send POST Request for VNF Configuration
    
        Check HTTP Response Status Code Is    405 
    
    
    PUT VNF Configuration - Method not implemented
    
        [Documentation]    Test ID: 6.3.1.1.6
    
        ...    Test title: PUT VNF Configuration - Method not implemented
        ...    Test objective: The objective is to test that PUT method is not allowed to modify an existing VNF configuration
    
    Najam UI Hassan's avatar
    Najam UI Hassan committed
        ...    Pre-conditions:  none
    
    Najam UI Hassan's avatar
    Najam UI Hassan committed
        ...    Reference: Clause 9.4.2.3.3 - ETSI GS NFV-SOL 002 [2] v2.7.1
    
        ...    Config ID: Config_prod_VE
        ...    Applicability: none
    
        ...    Post-Conditions: none
    
        Send PUT Request for VNF Configuration
        Check HTTP Response Status Code Is    405
    
    DELETE VNF Configuration - Method not implemented
    
        [Documentation]    Test ID: 6.3.1.1.7
    
        ...    Test title: Delete VNF Configuration - Method not implemented
        ...    Test objective: The objective is to test that DELETE method is not allowed to delete an existing VNF configuration
    
    Najam UI Hassan's avatar
    Najam UI Hassan committed
        ...    Pre-conditions:  none
    
    Najam UI Hassan's avatar
    Najam UI Hassan committed
        ...    Reference: Clause 9.4.2.3.5 - ETSI GS NFV-SOL 002 [2] v2.7.1
    
        ...    Config ID: Config_prod_VE
        ...    Applicability: none
    
    Najam UI Hassan's avatar
    Najam UI Hassan committed
        ...    Post-Conditions: none
    
        Send DELETE Request for VNF Configuration
        Check HTTP Response Status Code Is    405
    
    Giacomo Bernini's avatar
    Giacomo Bernini committed
    Get VNF configuration
        Log    Query VNF The GET method queries information about a configuration.
        Set Headers  {"Accept":"${ACCEPT}"}  
        Set Headers  {"Content-Type": "${CONTENT_TYPE}"}
        Run Keyword If    ${AUTH_USAGE} == 1    Set Headers    {"Authorization":"${AUTHORIZATION}"}
        Log    Execute Query and validate response
    
    Najam UI Hassan's avatar
    Najam UI Hassan committed
        Get    ${apiRoot}/${apiName}/${apiMajorVersion}/configuration
    
        ${output}=    Output    response
    
        Set Suite Variable    ${response}    ${output}
    
    Giacomo Bernini's avatar
    Giacomo Bernini committed
    
    Send VNF configuration
        log    Trying to perform a PATCH. This method modifies the configuration    
    
        Set Headers  {"Accept":"${ACCEPT}"} 
        Set Headers  {"Content-Type": "${CONTENT_TYPE}"} 
        Run Keyword If    ${AUTH_USAGE} == 1    Set Headers    {"Authorization":"${AUTHORIZATION}"}
    
        ${body}=    Get File    jsons/vnfConfigModifications.json
    
    Najam UI Hassan's avatar
    Najam UI Hassan committed
        Patch    ${apiRoot}/${apiName}/${apiMajorVersion}/configuration    ${body}
    
        ${output}=    Output    response
    
        Set Suite Variable    ${response}    ${output}
    
    Giacomo Bernini's avatar
    Giacomo Bernini committed
    Check HTTP Response Status Code Is
        [Arguments]    ${expected_status}    
    
        Should Be Equal As Strings    ${response['status']}    ${expected_status}
    
    Giacomo Bernini's avatar
    Giacomo Bernini committed
        Log    Status code validated
    
    Check HTTP Response Header Contains
        [Arguments]    ${CONTENT_TYPE}
    
        Log    ${response['headers']}
        Should Contain    ${response['headers']}    ${CONTENT_TYPE}
    
    Giacomo Bernini's avatar
    Giacomo Bernini committed
        Log    Header is present
        
    Check HTTP Response Body Json Schema Is
    
        [Arguments]    ${input}
    
        Should Contain    ${response['headers']['Content-Type']}    application/problem+json
        ${schema}=    Catenate    SEPARATOR=    ${input}    .schema.json
    
        Validate Json    ${schema}    ${response['body']}
    
    Giacomo Bernini's avatar
    Giacomo Bernini committed
        Log    Json Schema Validation OK
    
    Check Postcondition VNF Configuration Unmodified (Implicit)
    
        Log    Check Implicit Postcondition
        Check Postcondition VNF Is Configured
    
    Giacomo Bernini's avatar
    Giacomo Bernini committed
        
    Check Postcondition VNF Is Configured
    
        Log    Check Postcondition for VNF Configuration
    
    Giacomo Bernini's avatar
    Giacomo Bernini committed
        Get VNF configuration
    
        ${input_file}=    Get File    jsons/vnfConfigModifications.json
        ${input}=    evaluate    json.loads('''${input_file}''')    json
    
        Should Be Equal As Strings  ${response['body']}    ${input} 
    
    
    Send Duplicated VNF configuration
    
        Depends On Test    Send VNF configuration    # If the previous test scceeded, it means that Etag has been modified
    
        log    Trying to perform a PATCH. This method modifies an individual alarm resource
        Set Headers  {"Accept":"${ACCEPT}"}
        Set Headers  {"Content-Type": "${CONTENT_TYPE}"}
    
        Run Keyword If    ${AUTH_USAGE} == 1    Set Headers    {"Authorization":"${AUTHORIZATION}"}
    
        ${body}=    Get File    jsons/vnfConfigModifications.json
    
    Najam UI Hassan's avatar
    Najam UI Hassan committed
        Patch    ${apiRoot}/${apiName}/${apiMajorVersion}/configuration    ${body}
    
        ${output}=    Output    response
    
        Set Suite Variable    ${response}    ${output}
    
    
    Send POST Request for VNF Configuration
        log    Trying to perform a POST. This method should not be implemented
        Set Headers  {"Accept":"${ACCEPT}"}  
        Run Keyword If    ${AUTH_USAGE} == 1    Set Headers    {"Authorization":"${AUTHORIZATION}"}
    
    Najam UI Hassan's avatar
    Najam UI Hassan committed
        Post    ${apiRoot}/${apiName}/${apiMajorVersion}/configuration
    
        ${output}=    Output    response
    
        Set Suite Variable    ${response}    ${output}
    
        
    Send PUT Request for VNF Configuration
        log    Trying to perform a POST. This method should not be implemented
        Set Headers  {"Accept":"${ACCEPT}"}  
        Run Keyword If    ${AUTH_USAGE} == 1    Set Headers    {"Authorization":"${AUTHORIZATION}"}
    
    Najam UI Hassan's avatar
    Najam UI Hassan committed
        Put    ${apiRoot}/${apiName}/${apiMajorVersion}/configuration
    
        ${output}=    Output    response
    
        Set Suite Variable    ${response}    ${output}
    
        
    Send DELETE Request for VNF Configuration
        log    Trying to perform a POST. This method should not be implemented
        Set Headers  {"Accept":"${ACCEPT}"}  
        Run Keyword If    ${AUTH_USAGE} == 1    Set Headers    {"Authorization":"${AUTHORIZATION}"}
    
    Najam UI Hassan's avatar
    Najam UI Hassan committed
        Delete    ${apiRoot}/${apiName}/${apiMajorVersion}/configuration
    
        ${output}=    Output    response
    
        Set Suite Variable    ${response}    ${output}