Commit 4f086f94 authored by Ikram Haq's avatar Ikram Haq
Browse files

Add Remaining TestCases For MEC048 Test Suite

parent f09801d3
Loading
Loading
Loading
Loading
Loading
+843 −3

File changed.

Preview size limit exceeded, changes collapsed.

+9 −1
Original line number Diff line number Diff line
@@ -16,3 +16,11 @@ ${REMOVE_ACTION} REMOVE
${NO_ACTION}                        NO_ACTION
${TENANT_ID_PLACEHOLDER}            TENANT_ID_PLACEHOLDER
${NOT_EXISTING_TENANT_ID}           NOT_EXISTING_TENANT_ID
${NOT_EXISTING_SITE_ID}             NOT_EXISTING_SITE_ID
${NOT_EXISTING_SUBSCRIPTION_ID}     NOT_EXISTING_SUBSCRIPTION_ID
# Notification Server variables
${NOTIFICATION_SERVER_IP}      127.0.0.1
${NOTIFICATION_SERVER_PORT}    8888
${NOTIFICATION_SERVER_TIMEOUT}  60
${NOTIFICATION_SERVER_HTTP_METHOD}  POST
${NOTIFICATION_SERVER_URI}     /callback_url
 No newline at end of file
+9 −0
Original line number Diff line number Diff line
{
    "notificationType": "ExpiryNotification",
    "_links": {
      "subscription": {
        "href": "http://example.com/cse/v1/subscriptions/subscription-123"
      }
    },
    "expiryDeadline": "2099-12-31T23:59:59Z"
  }
 No newline at end of file
+3 −3
Original line number Diff line number Diff line
{
    "cpuQuota": "NUMBER_OF_CPUS",
    "memoryQuota": "MEMORY_IN_MB",
    "diskQuota": "AMOUNT_OF_DISK_IN_GB"
    "cpuQuota": 5,
    "memoryQuota": 2192,
    "diskQuota": 70
}
 No newline at end of file
+11 −0
Original line number Diff line number Diff line
{
    "subscriptionType": "ResourceUsageSubscription",
    "callbackReference": "some/uri",
    "customerId": "placeholder",
    "tenantId": "placeholder",
    "notificationTrigger": {
      "triggerType": 10,
      "threshold": 4,
      "greaterOrLess": false
    }
  }
 No newline at end of file
Loading