Loading MEC011/SRV/APPSAQ/PlatAppServices.robot +89 −53 Original line number Diff line number Diff line Loading @@ -10,44 +10,46 @@ Library REST ${SCHEMA}://${HOST}:${PORT} ssl_verify=false Default Tags TC_MEC_SRV_APPSAQ *** Test Cases *** TP_MEC_MEC011_SRV_APPSAQ_001_OK *** Test Cases *** TC_MEC_MEC011_SRV_APPSAQ_001_OK [Documentation] ... Check that the IUT responds with a list of available MEC services ... for a given application instance when queried by a MEC Application ... ... Reference "ETSI GS MEC 011 3.2.1, clause 5.2.5", ... Reference "ETSI GS MEC 011 3.2.1, clause 8.1.2.2", ... Reference "ETSI GS MEC 011 3.2.1, clause 8.2.6.3.1" ... Reference ETSI GS MEC 011 3.2.1, clause 5.2.5, ... ETSI GS MEC 011 3.2.1, clause 8.1.2.2, ... ETSI GS MEC 011 3.2.1, clause 8.2.6.3.1 [Tags] PIC_MEC_PLAT PIC_SERVICES [Setup] Create new service ServiceInfo ${APP_INSTANCE_ID} Get a list of mecService of an application instance ${APP_INSTANCE_ID} Check HTTP Response Status Code Is 200 Check HTTP Response Body Json Schema Is ServiceInfoList [TearDown] Remove individual service ${APP_INSTANCE_ID} ${SERVICE_ID} TP_MEC_MEC011_SRV_APPSAQ_001_BR TC_MEC_MEC011_SRV_APPSAQ_001_BR [Documentation] ... Check that the IUT responds with an error when ... a request with incorrect parameters is sent by a MEC Application ... ... Reference "ETSI GS MEC 011 3.2.1, clause 5.2.5", ... Reference "ETSI GS MEC 011 3.2.1, clause 8.1.2.2", ... Reference "ETSI GS MEC 011 3.2.1, clause 8.2.6.3.1" ... Reference ETSI GS MEC 011 3.2.1, clause 5.2.5, ... ETSI GS MEC 011 3.2.1, clause 8.1.2.2, ... ETSI GS MEC 011 3.2.1, clause 8.2.6.3.1 [Tags] PIC_MEC_PLAT PIC_SERVICES # Wrong query parameter name should trigger an error response. Get a list of mecService of an application instance with parameters ${APP_INSTANCE_ID} ${INSTANCE_ID} ${FAKE_INSTANCE_ID_VALUE} Check HTTP Response Status Code Is 400 TP_MEC_MEC011_SRV_APPSAQ_002_OK TC_MEC_MEC011_SRV_APPSAQ_002_OK [Documentation] ... Check that the IUT notifies the authorised relevant (subscribed) application ... instances when a new service for a given application instance is registered ... ... Reference "ETSI GS MEC 011 3.2.1, clause 5.2.5", ... Reference "ETSI GS MEC 011 3.2.1, clause 8.1.2.2", ... Reference "ETSI GS MEC 011 3.2.1, clause 8.2.6.3.4" ... Reference ETSI GS MEC 011 3.2.1, clause 5.2.5, ... ETSI GS MEC 011 3.2.1, clause 8.1.2.2, ... ETSI GS MEC 011 3.2.1, clause 8.2.6.3.4 [Tags] PIC_MEC_PLAT PIC_SERVICES Create new service ServiceInfo ${APP_INSTANCE_ID} Check HTTP Response Status Code Is 201 Loading @@ -57,133 +59,145 @@ TP_MEC_MEC011_SRV_APPSAQ_002_OK ##TODO add notification server TP_MEC_MEC011_SRV_APPSAQ_002_BR TC_MEC_MEC011_SRV_APPSAQ_002_BR [Documentation] ... Check that the IUT responds with an error when ... a request with incorrect parameters is sent by a MEC Application ... ... Reference "ETSI GS MEC 011 3.2.1, clause 5.2.5", ... Reference "ETSI GS MEC 011 3.2.1, clause 8.1.2.2", ... Reference "ETSI GS MEC 011 3.2.1, clause 8.2.6.3.4" ... Reference ETSI GS MEC 011 3.2.1, clause 5.2.5, ... ETSI GS MEC 011 3.2.1, clause 8.1.2.2, ... ETSI GS MEC 011 3.2.1, clause 8.2.6.3.4 [Tags] PIC_MEC_PLAT PIC_SERVICES Create new service ServiceInfoError ${APP_INSTANCE_ID} Check HTTP Response Status Code Is 400 TP_MEC_MEC011_SRV_APPSAQ_002_NF TC_MEC_MEC011_SRV_APPSAQ_002_NF [Documentation] ... Check that the IUT responds with an error when ... a request for an unknown URI is sent by a MEC Application ... ... Reference "ETSI GS MEC 011 3.2.1, clause 5.2.5", ... Reference "ETSI GS MEC 011 3.2.1, clause 8.1.2.2", ... Reference "ETSI GS MEC 011 3.2.1, clause 8.2.6.3.4" ... Reference ETSI GS MEC 011 3.2.1, clause 5.2.5, ... ETSI GS MEC 011 3.2.1, clause 8.1.2.2, ... ETSI GS MEC 011 3.2.1, clause 8.2.6.3.4 [Tags] PIC_MEC_PLAT PIC_SERVICES [Setup] Remove individual service ${NON_EXISTENT_APP_INSTANCE_ID} ${SERVICE_ID} Create new service ServiceInfo ${NON_EXISTENT_APP_INSTANCE_ID} Check HTTP Response Status Code Is 404 TP_MEC_MEC011_SRV_APPSAQ_003_OK TC_MEC_MEC011_SRV_APPSAQ_003_OK [Documentation] ... Check that the IUT responds with the information on a specific service ... for a given application instance when queried by a MEC Application ... ... Reference "ETSI GS MEC 011 3.2.1, clause 5.2.5", ... Reference "ETSI GS MEC 011 3.2.1, clause 8.1.2.2", ... Reference "ETSI GS MEC 011 3.2.1, clause 8.2.7.3.1" ... Reference ETSI GS MEC 011 3.2.1, clause 5.2.5, ... ETSI GS MEC 011 3.2.1, clause 8.1.2.2, ... ETSI GS MEC 011 3.2.1, clause 8.2.7.3.1 [Tags] PIC_MEC_PLAT PIC_SERVICES [Setup] Create new service ServiceInfo ${APP_INSTANCE_ID} Get individual service ${APP_INSTANCE_ID} ${SERVICE_ID} Check HTTP Response Status Code Is 200 Check HTTP Response Body Json Schema Is ServiceInfo Check Response Contains ${response['body']} serInstanceId ${SERVICE_ID} [TearDown] Remove individual service ${APP_INSTANCE_ID} ${SERVICE_ID} TP_MEC_MEC011_SRV_APPSAQ_003_NF TC_MEC_MEC011_SRV_APPSAQ_003_NF [Documentation] ... Check that the IUT responds with an error when ... a request for an unknown URI is sent by a MEC Application ... ... Reference "ETSI GS MEC 011 3.2.1, clause 5.2.5", ... Reference "ETSI GS MEC 011 3.2.1, clause 8.1.2.2", ... Reference "ETSI GS MEC 011 3.2.1, clause 8.2.7.3.1" ... Reference ETSI GS MEC 011 3.2.1, clause 5.2.5, ... ETSI GS MEC 011 3.2.1, clause 8.1.2.2, ... ETSI GS MEC 011 3.2.1, clause 8.2.7.3.1 [Tags] PIC_MEC_PLAT PIC_SERVICES [Setup] Remove individual service ${NON_EXISTENT_APP_INSTANCE_ID} ${SERVICE_ID} Get individual service ${APP_INSTANCE_ID} ${NON_EXISTENT_SERVICE_ID} Check HTTP Response Status Code Is 404 TP_MEC_MEC011_SRV_APPSAQ_004_OK TC_MEC_MEC011_SRV_APPSAQ_004_OK [Documentation] ... Check that the IUT updates a service information for a given ... application instance when commanded by a MEC Application ... ... Reference "ETSI GS MEC 011 3.2.1, clause 5.2.4", ... Reference "ETSI GS MEC 011 3.2.1, clause 8.1.2.2", ... Reference "ETSI GS MEC 011 3.2.1, clause 8.2.7.3.2" ... Reference ETSI GS MEC 011 3.2.1, clause 5.2.4, ... ETSI GS MEC 011 3.2.1, clause 8.1.2.2, ... ETSI GS MEC 011 3.2.1, clause 8.2.7.3.2 [Tags] PIC_MEC_PLAT PIC_SERVICES [Setup] Create new service ServiceInfo ${APP_INSTANCE_ID} Update service ${APP_INSTANCE_ID} ${SERVICE_ID} ServiceInfoUpdated Check HTTP Response Status Code Is 200 Check HTTP Response Body Json Schema Is ServiceInfo Check Response Contains ${response['body']} version ${SVC_NEW_VERSION} [TearDown] Remove individual service ${APP_INSTANCE_ID} ${SERVICE_ID} TP_MEC_MEC011_SRV_APPSAQ_004_BR TC_MEC_MEC011_SRV_APPSAQ_004_BR [Documentation] ... Check that the IUT responds with an error when ... a request with incorrect parameters is sent by a MEC Application ... ... Reference "ETSI GS MEC 011 3.2.1, clause 5.2.4", ... Reference "ETSI GS MEC 011 3.2.1, clause 8.1.2.2", ... Reference "ETSI GS MEC 011 3.2.1, clause 8.2.7.3.2" ... Reference ETSI GS MEC 011 3.2.1, clause 5.2.4, ... ETSI GS MEC 011 3.2.1, clause 8.1.2.2, ... ETSI GS MEC 011 3.2.1, clause 8.2.7.3.2 [Tags] PIC_MEC_PLAT PIC_SERVICES [Setup] Create new service ServiceInfo ${APP_INSTANCE_ID} Update service ${APP_INSTANCE_ID} ${SERVICE_ID} ServiceInfoUpdatedError Check HTTP Response Status Code Is 400 [TearDown] Remove individual service ${APP_INSTANCE_ID} ${SERVICE_ID} TP_MEC_MEC011_SRV_APPSAQ_004_NF TC_MEC_MEC011_SRV_APPSAQ_004_NF [Documentation] ... Check that the IUT responds with an error when ... a request for an unknown URI is sent by a MEC Application ... ... Reference "ETSI GS MEC 011 3.2.1, clause 5.2.4", ... Reference "ETSI GS MEC 011 3.2.1, clause 8.1.2.2", ... Reference "ETSI GS MEC 011 3.2.1, clause 8.2.7.3.2" ... Reference ETSI GS MEC 011 3.2.1, clause 5.2.4, ... ETSI GS MEC 011 3.2.1, clause 8.1.2.2, ... ETSI GS MEC 011 3.2.1, clause 8.2.7.3.2 [Tags] PIC_MEC_PLAT PIC_SERVICES [Setup] Remove individual service ${APP_INSTANCE_ID} ${NON_EXISTENT_SERVICE_ID} Update service ${APP_INSTANCE_ID} ${NON_EXISTENT_SERVICE_ID} ServiceInfoUpdated Check HTTP Response Status Code Is 404 TP_MEC_MEC011_SRV_APPSAQ_004_PF TC_MEC_MEC011_SRV_APPSAQ_004_PF [Documentation] ... Check that the IUT responds with an error when ... a request sent by a MEC Application doesn't comply with a required condition ... ... Reference "ETSI GS MEC 011 3.2.1, clause 5.2.4", ... Reference "ETSI GS MEC 011 3.2.1, clause 8.1.2.2", ... Reference "ETSI GS MEC 011 3.2.1, clause 8.2.7.3.2" ... Reference ETSI GS MEC 011 3.2.1, clause 5.2.4, ... ETSI GS MEC 011 3.2.1, clause 8.1.2.2, ... ETSI GS MEC 011 3.2.1, clause 8.2.7.3.2 [Tags] PIC_MEC_PLAT PIC_SERVICES [Setup] Create new service ServiceInfo ${APP_INSTANCE_ID} Update service with etag ${APP_INSTANCE_ID} ${SERVICE_ID} ServiceInfoUpdated ${INVALID_ETAG} Check HTTP Response Status Code Is 412 [TearDown] Remove individual service ${APP_INSTANCE_ID} ${SERVICE_ID} TP_MEC_MEC011_SRV_APPSAQ_005_OK TC_MEC_MEC011_SRV_APPSAQ_005_OK [Documentation] ... Check that the IUT executes the deletion of a service ... for a given application instance when requested by a MEC Application ... ... Reference "ETSI GS MEC 011 3.2.1, clause 8.2.7.3.5" ... Reference ETSI GS MEC 011 3.2.1, clause 8.2.7.3.5 [Tags] PIC_MEC_PLAT PIC_SERVICES [Setup] Create new service ServiceInfo ${APP_INSTANCE_ID} Remove individual service ${APP_INSTANCE_ID} ${SERVICE_ID} Check HTTP Response Status Code Is 204 TP_MEC_MEC011_SRV_APPSAQ_005_NF TC_MEC_MEC011_SRV_APPSAQ_005_NF [Documentation] ... Check that the IUT responds with an error when ... a request for deletion of a unknown service is sent by a MEC Application ... ... Reference "ETSI GS MEC 011 3.2.1, clause 8.2.7.3.5" ... Reference ETSI GS MEC 011 3.2.1, clause 8.2.7.3.5 [Tags] PIC_MEC_PLAT PIC_SERVICES [Setup] Remove individual service ${APP_INSTANCE_ID} ${NON_EXISTENT_SERVICE_ID} Remove individual service ${APP_INSTANCE_ID} ${NON_EXISTENT_SERVICE_ID} Check HTTP Response Status Code Is 404 Loading Loading @@ -266,3 +280,25 @@ Remove individual service ${output}= Output response Set Suite Variable ${response} ${output} # Check Plaform IUT notifies the MEC Application instances # [Documentation] # ... # [Arguments] ${instance_id} ${content} # TODO check how to send the message (isn't defined). Does it need to be tested as it's not defined? # // MEC 011, clause 6.4.2 # the IUT entity sends a notification_message containing # body containing # notificationType set to "SerAvailabilityNotification", # services containing # serName set to SERVICE_NAME # _links containing # subscription set to MP1_SUBSCRIPTION_A # ; # ; # ; # ; # to the MEC_APP_Subscriber entity Loading
MEC011/SRV/APPSAQ/PlatAppServices.robot +89 −53 Original line number Diff line number Diff line Loading @@ -10,44 +10,46 @@ Library REST ${SCHEMA}://${HOST}:${PORT} ssl_verify=false Default Tags TC_MEC_SRV_APPSAQ *** Test Cases *** TP_MEC_MEC011_SRV_APPSAQ_001_OK *** Test Cases *** TC_MEC_MEC011_SRV_APPSAQ_001_OK [Documentation] ... Check that the IUT responds with a list of available MEC services ... for a given application instance when queried by a MEC Application ... ... Reference "ETSI GS MEC 011 3.2.1, clause 5.2.5", ... Reference "ETSI GS MEC 011 3.2.1, clause 8.1.2.2", ... Reference "ETSI GS MEC 011 3.2.1, clause 8.2.6.3.1" ... Reference ETSI GS MEC 011 3.2.1, clause 5.2.5, ... ETSI GS MEC 011 3.2.1, clause 8.1.2.2, ... ETSI GS MEC 011 3.2.1, clause 8.2.6.3.1 [Tags] PIC_MEC_PLAT PIC_SERVICES [Setup] Create new service ServiceInfo ${APP_INSTANCE_ID} Get a list of mecService of an application instance ${APP_INSTANCE_ID} Check HTTP Response Status Code Is 200 Check HTTP Response Body Json Schema Is ServiceInfoList [TearDown] Remove individual service ${APP_INSTANCE_ID} ${SERVICE_ID} TP_MEC_MEC011_SRV_APPSAQ_001_BR TC_MEC_MEC011_SRV_APPSAQ_001_BR [Documentation] ... Check that the IUT responds with an error when ... a request with incorrect parameters is sent by a MEC Application ... ... Reference "ETSI GS MEC 011 3.2.1, clause 5.2.5", ... Reference "ETSI GS MEC 011 3.2.1, clause 8.1.2.2", ... Reference "ETSI GS MEC 011 3.2.1, clause 8.2.6.3.1" ... Reference ETSI GS MEC 011 3.2.1, clause 5.2.5, ... ETSI GS MEC 011 3.2.1, clause 8.1.2.2, ... ETSI GS MEC 011 3.2.1, clause 8.2.6.3.1 [Tags] PIC_MEC_PLAT PIC_SERVICES # Wrong query parameter name should trigger an error response. Get a list of mecService of an application instance with parameters ${APP_INSTANCE_ID} ${INSTANCE_ID} ${FAKE_INSTANCE_ID_VALUE} Check HTTP Response Status Code Is 400 TP_MEC_MEC011_SRV_APPSAQ_002_OK TC_MEC_MEC011_SRV_APPSAQ_002_OK [Documentation] ... Check that the IUT notifies the authorised relevant (subscribed) application ... instances when a new service for a given application instance is registered ... ... Reference "ETSI GS MEC 011 3.2.1, clause 5.2.5", ... Reference "ETSI GS MEC 011 3.2.1, clause 8.1.2.2", ... Reference "ETSI GS MEC 011 3.2.1, clause 8.2.6.3.4" ... Reference ETSI GS MEC 011 3.2.1, clause 5.2.5, ... ETSI GS MEC 011 3.2.1, clause 8.1.2.2, ... ETSI GS MEC 011 3.2.1, clause 8.2.6.3.4 [Tags] PIC_MEC_PLAT PIC_SERVICES Create new service ServiceInfo ${APP_INSTANCE_ID} Check HTTP Response Status Code Is 201 Loading @@ -57,133 +59,145 @@ TP_MEC_MEC011_SRV_APPSAQ_002_OK ##TODO add notification server TP_MEC_MEC011_SRV_APPSAQ_002_BR TC_MEC_MEC011_SRV_APPSAQ_002_BR [Documentation] ... Check that the IUT responds with an error when ... a request with incorrect parameters is sent by a MEC Application ... ... Reference "ETSI GS MEC 011 3.2.1, clause 5.2.5", ... Reference "ETSI GS MEC 011 3.2.1, clause 8.1.2.2", ... Reference "ETSI GS MEC 011 3.2.1, clause 8.2.6.3.4" ... Reference ETSI GS MEC 011 3.2.1, clause 5.2.5, ... ETSI GS MEC 011 3.2.1, clause 8.1.2.2, ... ETSI GS MEC 011 3.2.1, clause 8.2.6.3.4 [Tags] PIC_MEC_PLAT PIC_SERVICES Create new service ServiceInfoError ${APP_INSTANCE_ID} Check HTTP Response Status Code Is 400 TP_MEC_MEC011_SRV_APPSAQ_002_NF TC_MEC_MEC011_SRV_APPSAQ_002_NF [Documentation] ... Check that the IUT responds with an error when ... a request for an unknown URI is sent by a MEC Application ... ... Reference "ETSI GS MEC 011 3.2.1, clause 5.2.5", ... Reference "ETSI GS MEC 011 3.2.1, clause 8.1.2.2", ... Reference "ETSI GS MEC 011 3.2.1, clause 8.2.6.3.4" ... Reference ETSI GS MEC 011 3.2.1, clause 5.2.5, ... ETSI GS MEC 011 3.2.1, clause 8.1.2.2, ... ETSI GS MEC 011 3.2.1, clause 8.2.6.3.4 [Tags] PIC_MEC_PLAT PIC_SERVICES [Setup] Remove individual service ${NON_EXISTENT_APP_INSTANCE_ID} ${SERVICE_ID} Create new service ServiceInfo ${NON_EXISTENT_APP_INSTANCE_ID} Check HTTP Response Status Code Is 404 TP_MEC_MEC011_SRV_APPSAQ_003_OK TC_MEC_MEC011_SRV_APPSAQ_003_OK [Documentation] ... Check that the IUT responds with the information on a specific service ... for a given application instance when queried by a MEC Application ... ... Reference "ETSI GS MEC 011 3.2.1, clause 5.2.5", ... Reference "ETSI GS MEC 011 3.2.1, clause 8.1.2.2", ... Reference "ETSI GS MEC 011 3.2.1, clause 8.2.7.3.1" ... Reference ETSI GS MEC 011 3.2.1, clause 5.2.5, ... ETSI GS MEC 011 3.2.1, clause 8.1.2.2, ... ETSI GS MEC 011 3.2.1, clause 8.2.7.3.1 [Tags] PIC_MEC_PLAT PIC_SERVICES [Setup] Create new service ServiceInfo ${APP_INSTANCE_ID} Get individual service ${APP_INSTANCE_ID} ${SERVICE_ID} Check HTTP Response Status Code Is 200 Check HTTP Response Body Json Schema Is ServiceInfo Check Response Contains ${response['body']} serInstanceId ${SERVICE_ID} [TearDown] Remove individual service ${APP_INSTANCE_ID} ${SERVICE_ID} TP_MEC_MEC011_SRV_APPSAQ_003_NF TC_MEC_MEC011_SRV_APPSAQ_003_NF [Documentation] ... Check that the IUT responds with an error when ... a request for an unknown URI is sent by a MEC Application ... ... Reference "ETSI GS MEC 011 3.2.1, clause 5.2.5", ... Reference "ETSI GS MEC 011 3.2.1, clause 8.1.2.2", ... Reference "ETSI GS MEC 011 3.2.1, clause 8.2.7.3.1" ... Reference ETSI GS MEC 011 3.2.1, clause 5.2.5, ... ETSI GS MEC 011 3.2.1, clause 8.1.2.2, ... ETSI GS MEC 011 3.2.1, clause 8.2.7.3.1 [Tags] PIC_MEC_PLAT PIC_SERVICES [Setup] Remove individual service ${NON_EXISTENT_APP_INSTANCE_ID} ${SERVICE_ID} Get individual service ${APP_INSTANCE_ID} ${NON_EXISTENT_SERVICE_ID} Check HTTP Response Status Code Is 404 TP_MEC_MEC011_SRV_APPSAQ_004_OK TC_MEC_MEC011_SRV_APPSAQ_004_OK [Documentation] ... Check that the IUT updates a service information for a given ... application instance when commanded by a MEC Application ... ... Reference "ETSI GS MEC 011 3.2.1, clause 5.2.4", ... Reference "ETSI GS MEC 011 3.2.1, clause 8.1.2.2", ... Reference "ETSI GS MEC 011 3.2.1, clause 8.2.7.3.2" ... Reference ETSI GS MEC 011 3.2.1, clause 5.2.4, ... ETSI GS MEC 011 3.2.1, clause 8.1.2.2, ... ETSI GS MEC 011 3.2.1, clause 8.2.7.3.2 [Tags] PIC_MEC_PLAT PIC_SERVICES [Setup] Create new service ServiceInfo ${APP_INSTANCE_ID} Update service ${APP_INSTANCE_ID} ${SERVICE_ID} ServiceInfoUpdated Check HTTP Response Status Code Is 200 Check HTTP Response Body Json Schema Is ServiceInfo Check Response Contains ${response['body']} version ${SVC_NEW_VERSION} [TearDown] Remove individual service ${APP_INSTANCE_ID} ${SERVICE_ID} TP_MEC_MEC011_SRV_APPSAQ_004_BR TC_MEC_MEC011_SRV_APPSAQ_004_BR [Documentation] ... Check that the IUT responds with an error when ... a request with incorrect parameters is sent by a MEC Application ... ... Reference "ETSI GS MEC 011 3.2.1, clause 5.2.4", ... Reference "ETSI GS MEC 011 3.2.1, clause 8.1.2.2", ... Reference "ETSI GS MEC 011 3.2.1, clause 8.2.7.3.2" ... Reference ETSI GS MEC 011 3.2.1, clause 5.2.4, ... ETSI GS MEC 011 3.2.1, clause 8.1.2.2, ... ETSI GS MEC 011 3.2.1, clause 8.2.7.3.2 [Tags] PIC_MEC_PLAT PIC_SERVICES [Setup] Create new service ServiceInfo ${APP_INSTANCE_ID} Update service ${APP_INSTANCE_ID} ${SERVICE_ID} ServiceInfoUpdatedError Check HTTP Response Status Code Is 400 [TearDown] Remove individual service ${APP_INSTANCE_ID} ${SERVICE_ID} TP_MEC_MEC011_SRV_APPSAQ_004_NF TC_MEC_MEC011_SRV_APPSAQ_004_NF [Documentation] ... Check that the IUT responds with an error when ... a request for an unknown URI is sent by a MEC Application ... ... Reference "ETSI GS MEC 011 3.2.1, clause 5.2.4", ... Reference "ETSI GS MEC 011 3.2.1, clause 8.1.2.2", ... Reference "ETSI GS MEC 011 3.2.1, clause 8.2.7.3.2" ... Reference ETSI GS MEC 011 3.2.1, clause 5.2.4, ... ETSI GS MEC 011 3.2.1, clause 8.1.2.2, ... ETSI GS MEC 011 3.2.1, clause 8.2.7.3.2 [Tags] PIC_MEC_PLAT PIC_SERVICES [Setup] Remove individual service ${APP_INSTANCE_ID} ${NON_EXISTENT_SERVICE_ID} Update service ${APP_INSTANCE_ID} ${NON_EXISTENT_SERVICE_ID} ServiceInfoUpdated Check HTTP Response Status Code Is 404 TP_MEC_MEC011_SRV_APPSAQ_004_PF TC_MEC_MEC011_SRV_APPSAQ_004_PF [Documentation] ... Check that the IUT responds with an error when ... a request sent by a MEC Application doesn't comply with a required condition ... ... Reference "ETSI GS MEC 011 3.2.1, clause 5.2.4", ... Reference "ETSI GS MEC 011 3.2.1, clause 8.1.2.2", ... Reference "ETSI GS MEC 011 3.2.1, clause 8.2.7.3.2" ... Reference ETSI GS MEC 011 3.2.1, clause 5.2.4, ... ETSI GS MEC 011 3.2.1, clause 8.1.2.2, ... ETSI GS MEC 011 3.2.1, clause 8.2.7.3.2 [Tags] PIC_MEC_PLAT PIC_SERVICES [Setup] Create new service ServiceInfo ${APP_INSTANCE_ID} Update service with etag ${APP_INSTANCE_ID} ${SERVICE_ID} ServiceInfoUpdated ${INVALID_ETAG} Check HTTP Response Status Code Is 412 [TearDown] Remove individual service ${APP_INSTANCE_ID} ${SERVICE_ID} TP_MEC_MEC011_SRV_APPSAQ_005_OK TC_MEC_MEC011_SRV_APPSAQ_005_OK [Documentation] ... Check that the IUT executes the deletion of a service ... for a given application instance when requested by a MEC Application ... ... Reference "ETSI GS MEC 011 3.2.1, clause 8.2.7.3.5" ... Reference ETSI GS MEC 011 3.2.1, clause 8.2.7.3.5 [Tags] PIC_MEC_PLAT PIC_SERVICES [Setup] Create new service ServiceInfo ${APP_INSTANCE_ID} Remove individual service ${APP_INSTANCE_ID} ${SERVICE_ID} Check HTTP Response Status Code Is 204 TP_MEC_MEC011_SRV_APPSAQ_005_NF TC_MEC_MEC011_SRV_APPSAQ_005_NF [Documentation] ... Check that the IUT responds with an error when ... a request for deletion of a unknown service is sent by a MEC Application ... ... Reference "ETSI GS MEC 011 3.2.1, clause 8.2.7.3.5" ... Reference ETSI GS MEC 011 3.2.1, clause 8.2.7.3.5 [Tags] PIC_MEC_PLAT PIC_SERVICES [Setup] Remove individual service ${APP_INSTANCE_ID} ${NON_EXISTENT_SERVICE_ID} Remove individual service ${APP_INSTANCE_ID} ${NON_EXISTENT_SERVICE_ID} Check HTTP Response Status Code Is 404 Loading Loading @@ -266,3 +280,25 @@ Remove individual service ${output}= Output response Set Suite Variable ${response} ${output} # Check Plaform IUT notifies the MEC Application instances # [Documentation] # ... # [Arguments] ${instance_id} ${content} # TODO check how to send the message (isn't defined). Does it need to be tested as it's not defined? # // MEC 011, clause 6.4.2 # the IUT entity sends a notification_message containing # body containing # notificationType set to "SerAvailabilityNotification", # services containing # serName set to SERVICE_NAME # _links containing # subscription set to MP1_SUBSCRIPTION_A # ; # ; # ; # ; # to the MEC_APP_Subscriber entity