Commit 2e22c48e authored by Elian Kraja's avatar Elian Kraja Committed by Michele Carignani
Browse files

BugFixing

parent efdf31e2
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@ TC_MEC_SRV_APPSUB_001_OK
    [Tags]    PIC_MEC_PLAT    PIC_SERVICES
    Get Subscriptions list    ${APP_INSTANCE_ID}
    Check HTTP Response Status Code Is    200
    Check HTTP Response Body Json Schema Is    SubscriptionsLinkList
    Check HTTP Response Body Json Schema Is    AppTerminationNotificationSubscription


TC_MEC_SRV_APPSUB_001_NF
+52 −0
Original line number Diff line number Diff line
{
  "tyre": "array",
  "items": {
    "description": "This type represents the information that the MEC platform notifies the subscribed application instance about  the corresponding application instance termination/stop.",
    "type": "object",
    "required": [
      "subscriptionType",
      "callbackReference",
      "_links",
      "appInstanceId"
    ],
    "properties": {
      "subscriptionType": {
        "description": "Shall be set to AppTerminationNotificationSubscription.",
        "type": "string",
        "example": "AppTerminationNotificationSubscription"
      },
      "callbackReference": {
        "description": "URI selected by the MEC application instance to receive notifications on the subscribed MEC application instance management information. This shall be included in both the request and the response.",
        "type": "string",
        "format": "uri"
      },
      "_links": {
        "description": "Self-referring URI.",
        "type": "object",
        "required": [
          "self"
        ],
        "properties": {
          "self": {
            "description": "This type represents a type of link and may be referenced from data structures",
            "type": "object",
            "properties": {
              "href": {
                "description": "URI referring to a resource",
                "type": "string",
                "format": "uri",
                "example": "/mecAppSuptApi/example"
              }
            }
          }
        },
        "readOnly": true
      },
      "appInstanceId": {
        "description": "It is used as the filtering criterion for the subscribed events.",
        "type": "string",
        "example": "ID1"
      }
    }
  }
}
 No newline at end of file
+2 −2
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@
                  "type": "object",
                  "required": [
                    "href",
                    "rel"
                    "subscriptionType"
                  ],
                  "properties": {
                    "href": {
@@ -41,7 +41,7 @@
                      "format": "uri",
                      "example": "/mecAppSuptApi/example"
                    },
                    "rel": {
                    "subscriptionType": {
                      "description": "The values shall be set to AppTerminationNotificationSubscription.",
                      "type": "string"
                    }
+1 −1
Original line number Diff line number Diff line
@@ -143,5 +143,5 @@ Update a DNS Rule
    
Update a DNS Rule with invalid etag
    [Arguments]    ${appInstanceId}    ${dnsRuleId}    ${content}
    Set Headers    {"If-Match": ${INVALID_ETAG}}
    Set Headers    {"If-Match": "${INVALID_ETAG}"}
    Update a DNS Rule    ${appInstanceId}    ${dnsRuleId}    ${content}
 No newline at end of file