Commit c0172340 authored by Giacomo Bernini's avatar Giacomo Bernini
Browse files

Merge branch 'InterconnectedTests' into '4.5.1-dev'

Interconnected test cases -  Implementation of tests for v4.5.1

See merge request !319
parents e01b0190 813b7638
Loading
Loading
Loading
Loading
+0 −0

Empty file added.

+822 −0

File added.

Preview size limit exceeded, changes collapsed.

+22 −0
Original line number Diff line number Diff line
*** Settings ***
Resource          environment/variables.txt    # Generic Parameters
Resource          IC_TC_Keywords.robot
Library           JSONLibrary

*** Test Cases ***

Create a new subscription and query information about multiple and individual subscription resources​
    [Documentation]    Test ID: 11.3.7
    ...    Test title: Create a new subscription and query information about multiple and individual subscription resources​
    ...    Test objective: The objective is to test the interconnected case of subscription resource creation and query multiple and individual resources
    ...    Pre-conditions: none
    ...    Reference: ETSI GS NFV-SOL 003 [1] v4.5.1
    ...    Config ID: Config_prod_NFVO, Config_prod_VNFM
    ...    Applicability: none
    ...    Post-Conditions: none
    GET Individual VNF Package
    POST Create a new subscription
    GET Subscriptions
    GET Individual Subscription

+24 −0
Original line number Diff line number Diff line
*** Settings ***
Resource          environment/variables.txt    # Generic Parameters
Resource          IC_TC_Keywords.robot
Library           JSONLibrary

*** Test Cases ***

Delete individual subscription
    [Documentation]    Test ID: 11.3.8
    ...    Test title: Delete individual subscription
    ...    Test objective: The objective is to test the interconnected case of subscription resource creation and deletion
    ...    Pre-conditions: none
    ...    Reference: ETSI GS NFV-SOL 003 [1] v4.5.1
    ...    Config ID: Config_prod_NFVO, Config_prod_VNFM
    ...    Applicability: none
    ...    Post-Conditions: Subscription deleted from VNFM
    GET Individual VNF Package
    POST Create a new subscription
    GET Subscriptions
    GET Individual Subscription
    DELETE an individual subscription


+20 −0
Original line number Diff line number Diff line
*** Settings ***
Resource          environment/variables.txt    # Generic Parameters
Resource          IC_TC_Keywords.robot
Library           JSONLibrary

*** Test Cases ***

Create a new VNF instance resource and query information about multiple and individual VNF instance​
    [Documentation]    Test ID: 11.3.1
    ...    Test title: Create a new VNF instance resource and query information about multiple and individual VNF instance​
    ...    Test objective: The objective is to test the interconnected case of VNF instance resource creation and query multiple and individual resources
    ...    Pre-conditions: none
    ...    Reference: ETSI GS NFV-SOL 003 [1] v4.5.1
    ...    Config ID: Config_prod_NFVO, Config_prod_VNFM
    ...    Applicability: none
    ...    Post-Conditions: none
    GET Individual VNF Package
    POST Create a new vnfInstance
    GET information about multiple VNF instances
    GET Information about an individual VNF Instance
 No newline at end of file
Loading