Commit 608d1148 authored by Elian Kraja's avatar Elian Kraja
Browse files

Fix on MEC016 appList

parent a9131a60
Pipeline #6827 passed with stage
in 0 seconds
...@@ -21,8 +21,8 @@ TP_MEC_MEC016_MEO_UEAPPS_001_OK ...@@ -21,8 +21,8 @@ TP_MEC_MEC016_MEO_UEAPPS_001_OK
Retrieve the application contexts list Retrieve the application contexts list
Check HTTP Response Status Code Is 200 Check HTTP Response Status Code Is 200
Check HTTP Response Body Json Schema Is ApplicationList Check HTTP Response Body Json Schema Is ApplicationList
FOR ${appInfo} IN @{response['body']['appInfo']['appInfo']} FOR ${appInfo} IN @{response['body']['appList']}
${passed} Run Keyword And Return Status Should Be Equal As Strings ${appInfo} ${APP_NAME} ${passed} Run Keyword And Return Status Should Be Equal As Strings ${appInfo['appInfo']['appName']} ${APP_NAME}
Exit For Loop If ${passed} Exit For Loop If ${passed}
END END
Should Be True ${passed} Should Be True ${passed}
...@@ -48,8 +48,8 @@ TP_MEC_MEC016_MEO_UEAPPS_002_OK ...@@ -48,8 +48,8 @@ TP_MEC_MEC016_MEO_UEAPPS_002_OK
Retrieve the application contexts list using filters ${filter} Retrieve the application contexts list using filters ${filter}
Check HTTP Response Status Code Is 200 Check HTTP Response Status Code Is 200
Check HTTP Response Body Json Schema Is ApplicationList Check HTTP Response Body Json Schema Is ApplicationList
FOR ${appInfo} IN @{response['body']['appInfo']['appInfo']} FOR ${appInfo} IN @{response['body']['appList']}
${passed} Run Keyword And Return Status Should Be Equal As Strings ${appInfo} ${APP_NAME} ${passed} Run Keyword And Return Status Should Be Equal As Strings ${appInfo['appInfo']['appName']} ${APP_NAME}
Exit For Loop If ${passed} Exit For Loop If ${passed}
END END
Should Be True ${passed} Should Be True ${passed}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment