Commit 027309a6 authored by Elian Kraja's avatar Elian Kraja
Browse files

Fix on RobotFiles

parent 43ed693f
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -25,7 +25,7 @@ TC_MEC_SRV_RLOCLOOK_001_OK
    Get the access points list        ${ZONE_ID}
    Get the access points list        ${ZONE_ID}
    Check HTTP Response Status Code Is    200
    Check HTTP Response Status Code Is    200
    Check HTTP Response Body Json Schema Is    AccessPointList
    Check HTTP Response Body Json Schema Is    AccessPointList
    Check Result Contains    ${response['body']['accessPointList']}    zoneId    ${ZONE_ID}
    Should Be Equal As Strings    ${response['body']['accessPointList']['zoneId']}	${ZONE_ID}




TC_MEC_SRV_RLOCLOOK_001_NF
TC_MEC_SRV_RLOCLOOK_001_NF
+127 −123
Original line number Original line Diff line number Diff line
{
{
              "properties": {
                "accessPointList": {
                  "description": "A type containing list of access points.",
                  "description": "A type containing list of access points.",
                  "type": "object",
                  "type": "object",
                  "required": [
                  "required": [
@@ -122,3 +124,5 @@
                    }
                    }
                  }
                  }
                }
                }
              }
            }
 No newline at end of file
+2 −3
Original line number Original line Diff line number Diff line
@@ -26,9 +26,8 @@ TC_MEC_SRV_UEAREASUB_001_OK
    Create new subscription    CircleNotificationSubscription
    Create new subscription    CircleNotificationSubscription
    Check HTTP Response Status Code Is    201
    Check HTTP Response Status Code Is    201
    Check HTTP Response Body Json Schema Is    CircleNotificationSubscription
    Check HTTP Response Body Json Schema Is    CircleNotificationSubscription
    Check Result Contains    ${response['body']['circleNotificationSubscription']}    clientCorrelator    ${UEAREASUB_CLIENT_ID} 
    Should Be Equal As Strings    ${response['body']['circleNotificationSubscription']['callbackReference']}        ${APP_UEAREASUB_CALLBACK_URI}
    Check Result Contains    ${response['body']['circleNotificationSubscription']}    callbackReference    ${APP_UEAREASUB_CALLBACK_URI}
    Should Be Equal As Strings    ${response['body']['circleNotificationSubscription']['address']}    ${IP_ADDRESS}
    Check Result Contains    ${response['body']['circleNotificationSubscription']}    address    ${IP_ADDRESS}
    
    




+3 −4
Original line number Original line Diff line number Diff line
@@ -25,9 +25,8 @@ TC_MEC_SRV_UEINFOSUB_001_OK
    Create new subscription    ZonalTrafficSubscription
    Create new subscription    ZonalTrafficSubscription
    Check HTTP Response Status Code Is    201
    Check HTTP Response Status Code Is    201
    Check HTTP Response Body Json Schema Is    ZonalTrafficSubscription
    Check HTTP Response Body Json Schema Is    ZonalTrafficSubscription
    Check Result Contains    ${response['body']['zonalTrafficSubscription']}    clientCorrelator    ${ZONAL_TRAF_SUB_CLIENT_ID}
    Should Be Equal As Strings    ${response['body']['zonalTrafficSubscription']['callbackReference']}        ${ZONAL_TRAF_NOTIF_CALLBACK_URI}
    Check Result Contains    ${response['body']['zonalTrafficSubscription']}    callbackReference    ${ZONAL_TRAF_NOTIF_CALLBACK_URI}
    Should Be Equal As Strings    ${response['body']['zonalTrafficSubscription']['zoneId']}        ${ZONAL_TRAF_ZONE_ID}
    Check Result Contains    ${response['body']['zonalTrafficSubscription']}    zoneId    ${ZONAL_TRAF_ZONE_ID}




TC_MEC_SRV_UEINFOSUB_001_BR
TC_MEC_SRV_UEINFOSUB_001_BR
@@ -55,7 +54,7 @@ TC_MEC_SRV_UEINFOSUB_002_OK
    Check HTTP Response Status Code Is    204
    Check HTTP Response Status Code Is    204




TC_MEC_SRV_UEDISTSUB_002_NF
TC_MEC_SRV_UEINFOSUB_002_NF
    [Documentation]
    [Documentation]
    ...    Check that the IUT responds with an error when
    ...    Check that the IUT responds with an error when
    ...    a request for an unknown URI is sent by a MEC Application
    ...    a request for an unknown URI is sent by a MEC Application
+1 −1
Original line number Original line Diff line number Diff line
@@ -12,7 +12,7 @@ ${apiVersion} v2
# Specific variables
# Specific variables
${ZONAL_TRAF_SUB_CLIENT_ID}            0123
${ZONAL_TRAF_SUB_CLIENT_ID}            0123
${ZONAL_TRAF_NOTIF_CALLBACK_URI}       {"notifyURL": "http://clientApp.example.com/location_notifications/123456"}
${ZONAL_TRAF_NOTIF_CALLBACK_URI}       {"notifyURL": "http://clientApp.example.com/location_notifications/123456"}
${ZONAL_TRAF_ZONE_ID}                  zone01
${ZONAL_TRAF_ZONE_ID}                  zone1


${SUBSCRIPTION_ID}                    e0deee2b-6e50-4f33-ab09-8bf0585025d3
${SUBSCRIPTION_ID}                    e0deee2b-6e50-4f33-ab09-8bf0585025d3
${NON_EXISTENT_SUBSCRIPTION_ID}       NON_EXISTENT_SUBSCRIPTION_ID
${NON_EXISTENT_SUBSCRIPTION_ID}       NON_EXISTENT_SUBSCRIPTION_ID
 No newline at end of file
Loading