Skip to content
Snippets Groups Projects
Commit cc865801 authored by piscione's avatar piscione
Browse files

Updated MEC033 TCs for registered IoT Device: added test setup, test teardown and made some fixes.

parent 332e9c56
No related branches found
No related tags found
1 merge request!3Merge of TT027 branch into master
......@@ -63,4 +63,12 @@ Check HTTP Response Contain Header with value
Check HTTP Response Header Contains ${HEADER_TOCHECK}
Should Be Equal As Strings ${value} ${response['headers']['Content-Type']}
Get value entry from JSON file
[Arguments] ${filename} ${key}
${file}= Catenate SEPARATOR= jsons/ ${filename} .json
${body}= Get File ${file}
${data}= Evaluate ${body}
${value_key} Set Variable ${data}[${key}]
[return] ${value_key}
\ No newline at end of file
......@@ -8,151 +8,234 @@ Resource ../../../../GenericKeywords.robot
Library REST ${SCHEMA}://${HOST}:${PORT} ssl_verify=false
Library OperatingSystem
Test Setup Test Setup ${DEVICE_ID_PLACEHOLDER} DeviceInfo ${NO_ACTION}
Test Teardown Test TearDown ${DEVICE_ID_PLACEHOLDER} DeviceInfo ${NO_ACTION}
*** Test Cases ***
TP_MEC_MEC033_IOTS_IOTDEV_001_OK_01
TC_MEC_MEC033_IOTS_IOTDEV_001_OK_01
[Documentation]
... Check that the IUT responds with the list of registered IoT devices when queried by a Service Consumer
... ETSI GS MEC 033 V3.1.1, clause 7.3.3.1
... https://www.etsi.org/deliver/etsi_gs/MEC/001_099/033/03.01.01_60/gs_MEC033v030101p.pdf
[Setup] Test Setup ${None} DeviceInfo ${REGISTER_ACTION}
${DEVICE_ID_VALUE} Get value entry from JSON file DeviceInfo deviceId
Retrieve all registered IOT Device information
Check HTTP Response Status Code Is 200
Check HTTP Response Body Json Schema Is DeviceInfoList
FOR ${element} IN @{response['body']}
Log ${element}
Should Be Equal As Strings ${element}[imsi] ${EXPECTED_IMSI}
Should Be Equal As Strings ${element}[supi] ${EXPECTED_SUPI}
Should Be Equal As Strings ${element}[enabled] ${False}
END
END
[TearDown] Test TearDown ${DEVICE_ID_VALUE} ${None} ${REMOVE_ACTION}
TP_MEC_MEC033_IOTS_IOTDEV_001_OK_02
TC_MEC_MEC033_IOTS_IOTDEV_001_OK_02
[Documentation]
... "Check that the IUT responds with the list of registered IoT devices when queried using a filter by a Service Consumer
... ETSI GS MEC 033 V3.1.1, clause 7.3.3.1
... https://www.etsi.org/deliver/etsi_gs/MEC/001_099/033/03.01.01_60/gs_MEC033v030101p.pdf
[Setup] Test Setup ${None} DeviceInfo ${REGISTER_ACTION}
${DEVICE_ID_VALUE} Get value entry from JSON file DeviceInfo deviceId
Retrieve all registered IOT Device information with filter or query param ${FILTER_ON_ENABLE}
Check HTTP Response Status Code Is 200
Check HTTP Response Body Json Schema Is DeviceInfoList
FOR ${element} IN @{response['body']}
FOR ${element} IN @{response['body']}
Should Be Equal As Strings ${element}[enabled] ${False}
END
[TearDown] Test TearDown ${DEVICE_ID_VALUE} ${None} ${REMOVE_ACTION}
TP_MEC_MEC033_IOTS_IOTDEV_001_OK_03
TC_MEC_MEC033_IOTS_IOTDEV_001_OK_03
[Documentation]
... "Check that the IUT responds with the list of registered IoT devices when queried by a Service Consumer filtering one field
... ETSI GS MEC 033 V3.1.1, clause 7.3.3.1
... https://www.etsi.org/deliver/etsi_gs/MEC/001_099/033/03.01.01_60/gs_MEC033v030101p.pdf
[Setup] Test Setup ${None} DeviceInfo ${REGISTER_ACTION}
${DEVICE_ID_VALUE} Get value entry from JSON file DeviceInfo deviceId
Retrieve all registered IOT Device information with filter or query param ${DEVICE_ID_FIELDS}
Check HTTP Response Status Code Is 200
Check HTTP Response Body Json Schema Is DeviceInfoList
[TearDown] Test TearDown ${DEVICE_ID_VALUE} ${None} ${REMOVE_ACTION}
TP_MEC_MEC033_IOTS_IOTDEV_001_OK_04
TC_MEC_MEC033_IOTS_IOTDEV_001_OK_04
[Documentation]
... "Check that the IUT responds with the list of registered IoT devices when queried by a Service Consumer filtering one field
... ETSI GS MEC 033 V3.1.1, clause 7.3.3.1
... https://www.etsi.org/deliver/etsi_gs/MEC/001_099/033/03.01.01_60/gs_MEC033v030101p.pdf
[Setup] Test Setup ${None} DeviceInfo ${REGISTER_ACTION}
${DEVICE_ID_VALUE} Get value entry from JSON file DeviceInfo deviceId
Retrieve all registered IOT Device information with filter or query param ${FIELDS_AND_FILTER}
Check HTTP Response Status Code Is 200
Check HTTP Response Body Json Schema Is DeviceInfoList
FOR ${element} IN @{response['body']}
Should Be Equal As Strings ${element}[enabled] ${False}
END
[TearDown] Test TearDown ${DEVICE_ID_VALUE} ${None} ${REMOVE_ACTION}
TP_MEC_MEC033_IOTS_IOTDEV_001_OK_02
TC_MEC_MEC033_IOTS_IOTDEV_002_OK
[Documentation]
... Check that the IUT registers the information of an IoT device when requested by a Service Consumer
... ETSI GS MEC 033 V3.1.1, clause 7.3.3.4
... https://www.etsi.org/deliver/etsi_gs/MEC/001_099/033/03.01.01_60/gs_MEC033v030101p.pdf
[Setup] Test Setup ${None} DeviceInfo ${REGISTER_ACTION}
Register IOT Device information DeviceInfo
Check HTTP Response Status Code Is 201
Check HTTP Response Body Json Schema Is DeviceInfo
${file}= Catenate SEPARATOR= jsons/ DeviceInfo .json
${body}= Get File ${file}
${json}= evaluate json.loads('''${body}''') json
Should Be Equal As Strings ${response['body']['deviceId']} ${json}[deviceId]
Should Be Equal As Strings ${response['body']['imsi']} ${json}[imsi]
Should Be Equal As Strings ${response['body']['supi']} ${json}[supi]
Should Be Equal As Strings ${response['body']['enabled']} ${False}
${DEVICE_ID_VALUE} Get value entry from JSON file DeviceInfo deviceId
${IMSI} Get value entry from JSON file DeviceInfo imsi
${SUPI} Get value entry from JSON file DeviceInfo supi
Should Be Equal As Strings ${response['body']['deviceId']} ${DEVICE_ID_VALUE}
Should Be Equal As Strings ${response['body']['imsi']} ${IMSI}
Should Be Equal As Strings ${response['body']['supi']} ${SUPI}
Should Be Equal As Strings ${response['body']['enabled']} ${False}
[TearDown] Test TearDown ${DEVICE_ID_VALUE} ${None} ${REMOVE_ACTION}
TP_MEC_MEC033_IOTS_IOTDEV_001_BR_02
TC_MEC_MEC033_IOTS_IOTDEV_002_BR
[Documentation]
... Check that the IUT returns an error when Service Consumer request to register an IoT device with incorrect parameters
... ETSI GS MEC 033 V3.1.1, clause 7.3.3.4
... https://www.etsi.org/deliver/etsi_gs/MEC/001_099/033/03.01.01_60/gs_MEC033v030101p.pdf
## No setup needed
Register IOT Device information DeviceInfoBR
Check HTTP Response Status Code Is 400
## No Teardown needed: the IUT has not stored information because of BR error.
TP_MEC_MEC033_IOTS_IOTDEV_003_OK
TC_MEC_MEC033_IOTS_IOTDEV_003_OK
[Documentation]
... Check that the IUT returns the IoT device information when requested by Service Consumer specifying the device identifier
... ETSI GS MEC 033 V3.1.1, clause 7.4.3.1
... https://www.etsi.org/deliver/etsi_gs/MEC/001_099/033/03.01.01_60/gs_MEC033v030101p.pdf
Retrieve specific registered IOT Device information ${DEVICE_ID}
[Setup] Test Setup ${None} DeviceInfo ${REGISTER_ACTION}
${DEVICE_ID_VALUE} Get value entry from JSON file DeviceInfo deviceId
Retrieve specific registered IOT Device information ${DEVICE_ID_VALUE}
Check HTTP Response Status Code Is 200
Check HTTP Response Body Json Schema Is DeviceInfo
Should Be Equal As Strings ${response['body']['deviceId']} ${DEVICE_ID}
Should Be Equal As Strings ${response['body']['deviceId']} ${DEVICE_ID_VALUE}
[TearDown] Test TearDown ${DEVICE_ID_VALUE} ${None} ${REMOVE_ACTION}
TP_MEC_MEC033_IOTS_IOTDEV_003_NF
TC_MEC_MEC033_IOTS_IOTDEV_003_NF
[Documentation]
... Check that the IUT returns error when Service Consumer request to retrieve a not registered IoT device
... ETSI GS MEC 033 V3.1.1, clause 7.4.3.1
... https://www.etsi.org/deliver/etsi_gs/MEC/001_099/033/03.01.01_60/gs_MEC033v030101p.pdf
[Setup] Test Setup ${NOT_EXISTING_DEVICE_ID} ${None} ${REMOVE_ACTION}
Retrieve specific registered IOT Device information ${NOT_EXISTING_DEVICE_ID}
Check HTTP Response Status Code Is 404
## No Teardown needed: the IUT has not stored information because of NF error.
TP_MEC_MEC033_IOTS_IOTDEV_004_OK
TC_MEC_MEC033_IOTS_IOTDEV_004_OK
[Documentation]
... Check that the IUT returns an error when Service Consumer request to register an IoT device with incorrect parameters
... ETSI GS MEC 033 V3.1.1, clause 7.4.3.2
... https://www.etsi.org/deliver/etsi_gs/MEC/001_099/033/03.01.01_60/gs_MEC033v030101p.pdf
Update IOT Device information ${DEVICE_ID} DeviceInfoUpdate
[Setup] Test Setup ${None} DeviceInfo ${REGISTER_ACTION}
${DEVICE_ID_VALUE} Get value entry from JSON file DeviceInfo deviceId
${TRAFFIC_RULE_DES} Get value entry from JSON file DeviceInfoUpdate TrafficRuleDescriptor
Update IOT Device information ${DEVICE_ID_VALUE} DeviceInfoUpdate
Check HTTP Response Status Code Is 200
Check HTTP Response Body Json Schema Is DeviceInfo
Should Be Equal As Strings ${response['body']['TrafficRuleDescriptor']['trafficRuleId']} ${TRAFFIC_RULE_DES['trafficRuleId']}
Should Be Equal As Strings ${response['body']['TrafficRuleDescriptor']['filterType']} ${TRAFFIC_RULE_DES['filterType']}
Should Be Equal As Strings ${response['body']['TrafficRuleDescriptor']['action']} ${TRAFFIC_RULE_DES['action']}
Should Be Equal As Strings ${response['body']['TrafficRuleDescriptor']['trafficFilter']} ${TRAFFIC_RULE_DES['trafficFilter']}
Should Be Equal As Strings ${response['body']['TrafficRuleDescriptor']['enabled']} ${True}
[TearDown] Test TearDown ${DEVICE_ID_VALUE} DeviceInfo ${REMOVE_ACTION}
TP_MEC_MEC033_IOTS_IOTDEV_004_NF
TC_MEC_MEC033_IOTS_IOTDEV_004_NF
[Documentation]
... Check that the IUT returns an error when a Service Consumer requests to update a not registered IoT device
... ETSI GS MEC 033 V3.1.1, clause 7.4.3.2
... https://www.etsi.org/deliver/etsi_gs/MEC/001_099/033/03.01.01_60/gs_MEC033v030101p.pdf
[Setup] Test Setup ${NOT_EXISTING_DEVICE_ID} ${None} ${REMOVE_ACTION}
Update IOT Device information ${NOT_EXISTING_DEVICE_ID} DeviceInfoUpdate
Check HTTP Response Status Code Is 404
##No teardown
TP_MEC_MEC033_IOTS_IOTDEV_004_BR
TC_MEC_MEC033_IOTS_IOTDEV_004_BR
[Documentation]
... Check that the IUT returns an error when a Service Consumer requests to update an existing IoT device with incorrect parameters
... ETSI GS MEC 033 V3.1.1, clause 7.4.3.2
... https://www.etsi.org/deliver/etsi_gs/MEC/001_099/033/03.01.01_60/gs_MEC033v030101p.pdf
[Setup] Test Setup ${NOT_EXISTING_DEVICE_ID} ${None} ${REMOVE_ACTION}
Update IOT Device information ${NOT_EXISTING_DEVICE_ID} DeviceInfoUpdateBR
Check HTTP Response Status Code Is 400
## No Teardown needed: the IUT has not stored information because of NF error.
TP_MEC_MEC033_IOTS_IOTDEV_005_OK
TC_MEC_MEC033_IOTS_IOTDEV_005_OK
[Documentation]
... Check that the IUT deregisters an IoT device information when requested by a Service Consumer specifying the IoT registered device identifier
... ETSI GS MEC 033 V3.1.1, clause 7.4.3.5
... https://www.etsi.org/deliver/etsi_gs/MEC/001_099/033/03.01.01_60/gs_MEC033v030101p.pdf
Deregister IOT Device information ${DEVICE_ID}
[Setup] Test Setup ${None} DeviceInfo ${REGISTER_ACTION}
${DEVICE_ID_VALUE} Get value entry from JSON file DeviceInfo deviceId
Deregister IOT Device information ${DEVICE_ID_VALUE}
Check HTTP Response Status Code Is 204
## No Teardown needed
TP_MEC_MEC033_IOTS_IOTDEV_005_NF
TC_MEC_MEC033_IOTS_IOTDEV_005_NF
[Documentation]
... "Check that the IUT returns an error when a Service Consumer requests to deregisters an IoT device using incorrect parameters
... ETSI GS MEC 033 V3.1.1, clause 7.4.3.5
... https://www.etsi.org/deliver/etsi_gs/MEC/001_099/033/03.01.01_60/gs_MEC033v030101p.pdf
[Setup] Test Setup ${NOT_EXISTING_DEVICE_ID} ${None} ${REMOVE_ACTION}
Deregister IOT Device information ${NOT_EXISTING_DEVICE_ID}
Check HTTP Response Status Code Is 404
##No tearDown needed
############################################################################
############################################################################
############################################################################
*** Keywords ***
Test Setup
[Arguments] ${deviceId} ${content} ${action}
Set Headers {"Accept":"application/json"}
Set Headers {"Content-Type":"application/json"}
Set Headers {"Authorization":"${TOKEN}"}
IF '''${action}''' == '''${REGISTER_ACTION}'''
${file}= Catenate SEPARATOR= jsons/ ${content} .json
${body}= Get File ${file}
POST ${apiRoot}/${apiName}/${apiVersion}/registered_devices ${body}
END
IF '''${action}''' == '''${REMOVE_ACTION}'''
DELETE ${apiRoot}/${apiName}/${apiVersion}/registered_devices/${deviceId}
END
Test Teardown
[Arguments] ${deviceId} ${content} ${action}
Set Headers {"Accept":"application/json"}
Set Headers {"Content-Type":"application/json"}
Set Headers {"Authorization":"${TOKEN}"}
IF '''${action}''' == '''${REGISTER_ACTION}'''
${file}= Catenate SEPARATOR= jsons/ ${content} .json
${body}= Get File ${file}
POST ${apiRoot}/${apiName}/${apiVersion}/registered_devices ${body}
END
IF '''${action}''' == '''${REMOVE_ACTION}'''
DELETE ${apiRoot}/${apiName}/${apiVersion}/registered_devices/${deviceId}
END
Retrieve all registered IOT Device information
Should Be True ${PIC_MEC_PLAT} == 1
Should Be True ${PIC_SERVICES} == 1
......@@ -198,7 +281,6 @@ Register IOT Device information
${output}= Output response
Set Suite Variable ${response} ${output}
Update IOT Device information
[Arguments] ${deviceId} ${content}
Should Be True ${PIC_MEC_PLAT} == 1
......
......@@ -8,13 +8,14 @@ ${TOKEN} asic YWxhZGRpbjpvcGVuc2VzYW1l
${apiRoot}
${apiName} amsi
${apiVersion} v1
${EXPECTED_IMSI} 310170845466094
${EXPECTED_SUPI} 310170845466094
${EXPECTED_ENABLED} false
${REGISTER_ACTION} REGISTER
${REMOVE_ACTION} REMOVE
${NO_ACTION} NO_ACTION
${FILTER_ON_ENABLE} (eq,enabled,false)
${DEVICE_ID_FIELDS} fields=deviceId
${FIELDS_AND_FILTER} fields=deviceId&filter=(eq,enabled,false)
${DEVICE_ID} deviceId
${DEVICE_ID_PLACEHOLDER} PLACEHOLDER_DEVICEID
${NOT_EXISTING_DEVICE_ID} notExistingDeviceId
\ No newline at end of file
{
"deviceAuthenticationInfo": "Some custom info",
"deviceId": "deviceA",
"deviceId": "deviceId",
"imsi": "310170845466094",
"supi": "310170845466094"
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment