SysUeApplications.robot 4.61 KB
Newer Older
Elian Kraja's avatar
Elian Kraja committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
''[Documentation]   robot --outputdir ../../outputs ./SysUeApplications.robot
...    Test Suite to validate Bandwidth Management API (APPCTX) operations.

*** Settings ***
Resource    environment/variables.txt
Resource    ../../../pics.txt
Resource    ../../../GenericKeywords.robot

Library     REST    ${MEC-APP_SCHEMA}://${MEC-APP_HOST}:${MEC-APP_PORT}    ssl_verify=false



*** Test Cases ***
TP_MEC_MEC016_MEO_UEAPPS_001_OK
    [Documentation] 
    ...  Check that the IUT responds with the list of user applications available when requested by an UE Application
    ...  Reference ETSI GS MEC 016 v2.2.1, clause 7.3.3.1
    ...  Reference https://forge.etsi.org/gitlab/mec/gs016-ue-app-api/blob/master/UEAppInterfaceApi.yaml#/definitions/ApplicationList
    Should Be True    ${PIC_MEC_SYSTEM} == 1
    Should Be True    ${PIC_SERVICES} == 1
    Retrieve the application contexts list
    Check HTTP Response Status Code Is    200
    Check HTTP Response Body Json Schema Is   ApplicationList
24
    ## Post condition
Elian Kraja's avatar
Elian Kraja committed
25
26
    FOR    ${appInfo}    IN    @{response['body']['appList']}
        ${passed}    Run Keyword And Return Status    Should Be Equal As Strings  ${appInfo['appInfo']['appName']}    ${APP_NAME}    
Elian Kraja's avatar
Elian Kraja committed
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
        Exit For Loop If    ${passed}
    END
    Should Be True    ${passed}
    
TP_MEC_MEC016_MEO_UEAPPS_001_NF
    [Documentation] 
    ...  Check that the IUT responds with an error when a request for an unknown URI is sent by a MEC Application
    ...  Reference ETSI GS MEC 016 v2.2.1, clause 7.3.3.1
    ...  Reference https://forge.etsi.org/gitlab/mec/gs016-ue-app-api/blob/master/UEAppInterfaceApi.yaml#/definitions/ApplicationList
    Should Be True    ${PIC_MEC_SYSTEM} == 1
    Should Be True    ${PIC_SERVICES} == 1
    Retrieve the application contexts list using wrong endpoint
    Check HTTP Response Status Code Is    404


TP_MEC_MEC016_MEO_UEAPPS_002_OK
    [Documentation] 
    ...  Check that the IUT responds with the list of user applications available when requested by an UE Application
    ...  Reference ETSI GS MEC 016 2.2.1, clause 7.3.3.1
    ...  Reference https://forge.etsi.org/gitlab/mec/gs016-ue-app-api/blob/master/UEAppInterfaceApi.yaml#/definitions/ApplicationList
    Should Be True    ${PIC_MEC_SYSTEM} == 1
    Should Be True    ${PIC_SERVICES} == 1
    Retrieve the application contexts list using filters    ${filter} 
    Check HTTP Response Status Code Is    200
    Check HTTP Response Body Json Schema Is   ApplicationList
Elian Kraja's avatar
Elian Kraja committed
52
53
    FOR    ${appInfo}    IN    @{response['body']['appList']}
        ${passed}    Run Keyword And Return Status    Should Be Equal As Strings  ${appInfo['appInfo']['appName']}    ${APP_NAME}    
Elian Kraja's avatar
Elian Kraja committed
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
        Exit For Loop If    ${passed}
    END
    Should Be True    ${passed}
    
TP_MEC_MEC016_MEO_UEAPPS_002_BR
    [Documentation] 
    ...  Check that the IUT responds with the list of user applications available when requested by an UE Application
    ...  Reference ETSI GS MEC 016 2.2.1, clause 7.3.3.1
    ...  Reference https://forge.etsi.org/gitlab/mec/gs016-ue-app-api/blob/master/UEAppInterfaceApi.yaml#/definitions/ApplicationList
    Should Be True    ${PIC_MEC_SYSTEM} == 1
    Should Be True    ${PIC_SERVICES} == 1
    Retrieve the application contexts list using filters    ${bad_filter} 
    Check HTTP Response Status Code Is    400



*** Keywords ***
Retrieve the application contexts list
    Should Be True    ${PIC_MEC_SYSTEM} == 1
    Should Be True    ${PIC_SERVICES} == 1
    Set Headers    {"Accept":"application/json"}
    Set Headers    {"Content-Type":"application/json"}
    Set Headers    {"Authorization":"${TOKEN}"}
    GET     ${apiRoot}/${apiName}/${apiVersion}/app_list
    ${output}=    Output    response
    Set Suite Variable    ${response}    ${output}
    
Retrieve the application contexts list using wrong endpoint
    Should Be True    ${PIC_MEC_SYSTEM} == 1
    Should Be True    ${PIC_SERVICES} == 1
    Set Headers    {"Accept":"application/json"}
    Set Headers    {"Content-Type":"application/json"}
    Set Headers    {"Authorization":"${TOKEN}"}
    GET     ${apiRoot}/${apiName}/${apiVersion}/app_list_error
    ${output}=    Output    response
    Set Suite Variable    ${response}    ${output}

Retrieve the application contexts list using filters
    [Arguments]    ${filter}
    Should Be True    ${PIC_MEC_SYSTEM} == 1
    Should Be True    ${PIC_SERVICES} == 1
    Set Headers    {"Accept":"application/json"}
    Set Headers    {"Content-Type":"application/json"}
    Set Headers    {"Authorization":"${TOKEN}"}
    GET     ${apiRoot}/${apiName}/${apiVersion}/app_list?${filter}
    ${output}=    Output    response
    Set Suite Variable    ${response}    ${output}