Commit 83ee998a authored by Elian Kraja's avatar Elian Kraja
Browse files

Editorial fixes

parent e6df2bf7
Loading
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@ TP_MEC_MEC028_SRV_WAI_008_OK
    [Documentation] 
    ...  Check that the IUT responds with the list of Subscription"
    ...	 Reference "ETSI GS MEC 028 2.2.1, clause 7.6.3.1
    ...  https://forge.etsi.org/rep/mec/gs028-wai-api/blob/v2.1.1/WlanInformationApi.yaml#/schemas/AssocStaSubscription ##Outdated
    ...  https://forge.etsi.org/rep/mec/gs028-wai-api/blob/v2.2.1/WlanInformationApi.yaml#/schemas/AssocStaSubscription
    Should Be True    ${PIC_MEC_SYSTEM} == 1
    Should Be True    ${PIC_SERVICES} == 1
    Retrieve existing subscription information  ${SUB_ID}
@@ -22,7 +22,7 @@ TP_MEC_MEC028_SRV_WAI_008_OK
    Check HTTP Response Body Json Schema Is   AssocStaSubscription
    Should Be Equal As Strings  ${response['body']['subscriptionType']}    ${SUB_TYPE}
    Should Be Equal As Strings  ${response['body']['callbackReference']}    ${CALLBACK_URI}
    Should Be Equal As Strings  ${response['body']['apId']['macId']}    ${MAC_ID}
    Should Be Equal As Strings  ${response['body']['apId']['bssid']}    ${BSS_ID}
   
TP_MEC_MEC028_SRV_WAI_008_NF
    [Documentation] 
@@ -47,7 +47,7 @@ TP_MEC_MEC028_SRV_WAI_009_OK
    Check HTTP Response Body Json Schema Is   AssocStaSubscription
    Should Be Equal As Strings  ${response['body']['subscriptionType']}    ${SUB_TYPE}
    Should Be Equal As Strings  ${response['body']['callbackReference']}    ${NEW_CALLBACK_URI}
    Should Be Equal As Strings  ${response['body']['apId']['macId']}    ${MAC_ID}
    Should Be Equal As Strings  ${response['body']['apId']['bssid']}    ${BSS_ID}
   
TP_MEC_MEC028_SRV_WAI_009_BR
    [Documentation] 
+1 −1
Original line number Diff line number Diff line
@@ -14,4 +14,4 @@ ${SUB_ID} 1
${NOT_EXISTING_SUB_ID}          99
${CALLBACK_URI}          http://callback.uri/1
${NEW_CALLBACK_URI}          http://new.callback.uri/1
${MAC_ID}          macId01
 No newline at end of file
${BSS_ID}          bssid01
 No newline at end of file
+14 −9
Original line number Diff line number Diff line
{
  "subscriptionType": "AssocStaSubscription",
  "callbackReference": "http://meAppClient.example.com/wai/v2/notifications/3",
  "_links": {
  	"href":""
    "self": {
      "href": "http://meAppServer.example.com/wai/v2/subscriptions/sub123"
    }
  },
      
  "apId": {
		"macId": "macId01"
    "bssid": "005C0A0A0A0A"
  },
	"callbackReference": "http://new.callback.uri/1",
	"subscriptionType": "AssocStaSubscription"
  "notificationEvent": {
    "threshold": 1,
    "trigger": 1
  }
}
 No newline at end of file
+14 −9
Original line number Diff line number Diff line
{
  "subscription": "AssocStaSubscription",
  "callback": "http://meAppClient.example.com/wai/v2/notifications/3",
  "_links": {
  	"href":""
    "self": {
      "href": "http://meAppServer.example.com/wai/v2/subscriptions/sub123"
    }
  },
      
  "apId": {
		"macId": "macId01"
    "bssid": "005C0A0A0A0A"
  },
	"callbackReference": "http://callback.uri/1",
	"subscriptionType": "INVALID_VALUE"
  "notificationEvent": {
    "threshold": 1,
    "trigger": 1
  }
}
 No newline at end of file