Commit 6d3e969a authored by Giacomo Bernini's avatar Giacomo Bernini
Browse files

Merge branch '2.7.1-dev-test-ids-fix' into '2.7.1-dev'

SOL002/3/5 Fixes for Test IDs in v2.7.1

See merge request !175
parents be8b9466 b474d5d9
Loading
Loading
Loading
Loading
+16 −1
Original line number Diff line number Diff line
@@ -38,6 +38,17 @@ Create a duplicated Subscription
    Post Create subscription
    Check Response for duplicated subscription

Void
     [Documentation]    Test ID: 6.3.4.4.3
    ...    Test title: Void
    ...    Test objective: Void
    ...    Pre-conditions: Void
    ...    Reference: Void
    ...    Config ID: Void
    ...    Applicability: Void
    ...    Post-Conditions: Void
    Void

GET Subscriptions
    [Documentation]    Test ID: 6.3.4.4.4
    ...    Test title: GET Subscriptions
@@ -276,7 +287,7 @@ Get subscriptions with filter "filter.probableCauses"
    Check PostCondition HTTP Response Body Subscriptions Matches the requested attribute-based filter "filter_probableCauses"
    
POST Create a new Subscription - Unprocessable Entity
    [Documentation]    Test ID: 6.3.4.4.21
    [Documentation]    Test ID: 6.3.4.4.22
    ...    Test title: POST Create a new Subscription - Unprocessable Entity
    ...    Test objective: The objective is to test that content type of the payload body is supported and the payload body of a request contains syntactically correct data but the data cannot be processed.
    ...    re-conditions: none
@@ -511,3 +522,7 @@ Check Response for duplicated subscription
    Run Keyword If    ${VNFM_ALLOWS_DUPLICATE_SUBS} == 1    Check HTTP Response Status Code Is    201
    Run Keyword If    ${VNFM_ALLOWS_DUPLICATE_SUBS} == 1    Check HTTP Response Body Json Schema Is    FmSubscription
    Run Keyword If    ${VNFM_ALLOWS_DUPLICATE_SUBS} == 0    Check HTTP Response Status Code Is    303

Void
    log    do nothing
      
+1 −1
Original line number Diff line number Diff line
@@ -172,7 +172,7 @@ GET status information about multiple VNF LCM Operation OCC - Bad Request Respon
    Check HTTP Response Body Json Schema Is    ProblemDetails
    
GET status information about multiple VNF LCM Operation OCC with "exclude_default" and "fields"   
    [Documentation]    Test ID: 7.3.1.11.13
    [Documentation]    Test ID: 7.3.1.11.14
    ...    Test title: GET status information about multiple VNF LCM Operation OCC with "exclude_default" and "fields"
    ...    Test objective: The objective is to test that GET method retrieve Query status information about multiple VNF lifecycle management operation occurrences.
    ...    Pre-conditions: none
+28 −1
Original line number Diff line number Diff line
@@ -58,6 +58,17 @@ Get multi file VNFD in Individual VNF Package in Plain or Zip Format
    Check HTTP Response Status Code Is    200
    Check HTTP Response Header Content-Type Is    application/zip

Void
     [Documentation]    Test ID: 7.3.3.4.5
    ...    Test title: Void
    ...    Test objective: Void
    ...    Pre-conditions: Void
    ...    Reference: Void
    ...    Config ID: Void
    ...    Applicability: Void
    ...    Post-Conditions: Void
    Void

Get VNFD in Individual VNF Package with invalid resource identifier
    [Documentation]    Test ID: 7.3.3.4.6
    ...    Test title: Get VNFD in Individual VNF Package with invalid resource identifier
@@ -183,6 +194,17 @@ Get multi file VNFD in Individual OnBoarded VNF Package in Plain or Zip Format
    Check HTTP Response Status Code Is    200
    Check HTTP Response Header Content-Type Is    application/zip

Void
     [Documentation]    Test ID: 7.3.3.4.16
    ...    Test title: Void
    ...    Test objective: Void
    ...    Pre-conditions: Void
    ...    Reference: Void
    ...    Config ID: Void
    ...    Applicability: Void
    ...    Post-Conditions: Void
    Void

Get VNFD in Individual OnBoarded VNF Package with invalid resource identifier
    [Documentation]    Test ID: 7.3.3.4.17
    ...    Test title: Get VNFD in Individual OnBoarded VNF Package with invalid resource identifier
@@ -281,3 +303,8 @@ Get multi file VNFD in Individual OnBoarded VNF Package with security informatio
    Get multi file VNFD in Individual OnBoarded VNF Package with security information
    Check HTTP Response Status Code Is    200
    Check HTTP Response Header Content-Type Is    application/zip
    
*** Keywords ***

Void
    log    do nothing
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
@@ -73,7 +73,7 @@ DELETE an individual subscription
    Check Postcondition VNF Virtualised Resources Quota Available Notification individual Subscriptions is Deleted
    
Get Information about an individual subscription - Not Found
    [Documentation]    Test ID: 7.3.7.2.2
    [Documentation]    Test ID: 7.3.7.2.6
    ...    Test title: Get Information about an individual subscription - Not Found
    ...    Test objective: The objective is to test that the retrieval of an individual Virtualised Resources Quota Available Notification subscription subscribed by the client fils when resource is not present 
    ...    Pre-conditions: The subscription with the given id does not exists
+16 −0
Original line number Diff line number Diff line
@@ -107,6 +107,17 @@ Enable Individual Network Service Descriptor with HTTP Etag precondition failure
    Send PATCH to enable Individual Network Service Descriptor with HTTP Etag precondition failure
    Check HTTP Response Status Code Is    412

Void
     [Documentation]    Test ID: 5.3.1.2.8
    ...    Test title: Void
    ...    Test objective: Void
    ...    Pre-conditions: Void
    ...    Reference: Void
    ...    Config ID: Void
    ...    Applicability: Void
    ...    Post-Conditions: Void
    Void

DELETE Individual Network Service Descriptor
    [Documentation]    Test ID: 5.3.1.2.9
    ...    Test title:  DELETE Individual Network Service Descriptor
@@ -157,3 +168,8 @@ PUT Individual Network Service Descriptor - Method not implemented
    ...    Post-Conditions: none
    Send PUT Request for Individual Network Service Descriptor
    Check HTTP Response Status Code Is    405
    
*** Keywords ***

Void
    log    do nothing
Loading