[RIC-430] KeepAlive Automation fix + Update Swagger - Add ConnectionStatus to Get...
[ric-plt/e2mgr.git] / Automation / Tests / KeepAlive / keep_alive_test.robot
1 robot##############################################################################
2 #
3 #   Copyright (c) 2019 AT&T Intellectual Property.
4 #
5 #   Licensed under the Apache License, Version 2.0 (the "License");
6 #   you may not use this file except in compliance with the License.
7 #   You may obtain a copy of the License at
8 #
9 #       http://www.apache.org/licenses/LICENSE-2.0
10 #
11 #   Unless required by applicable law or agreed to in writing, software
12 #   distributed under the License is distributed on an "AS IS" BASIS,
13 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 #   See the License for the specific language governing permissions and
15 #   limitations under the License.
16 #
17 ##############################################################################
18 *** Settings ***
19 Variables  ../Scripts/variables.py
20 Suite Setup   Prepare Enviorment    ${True}    ${False}
21 Resource   ../Resource/resource.robot
22 Resource   ../Resource/Keywords.robot
23 Library    ../Scripts/find_error_script.py
24 Library     ../Scripts/find_rmr_message.py
25 Library     ../Scripts/e2mdbscripts.py
26 Library    OperatingSystem
27 Library    Collections
28 Library     REST      ${url}
29
30 *** Variables ***
31 ${url}  ${e2mgr_address}
32
33 *** Test Cases ***
34
35 Get request gnb
36     Sleep    2s
37     Get Request nodeb
38     Integer  response status  200
39     String   response body ranName    ${ranname}
40     String   response body connectionStatus    CONNECTED
41     String   response body nodeType     GNB
42     String   response body associatedE2tInstanceAddress  ${e2t_alpha_address}
43     Integer  response body gnb ranFunctions 0 ranFunctionId  1
44     Integer  response body gnb ranFunctions 0 ranFunctionRevision  1
45     Integer  response body gnb ranFunctions 1 ranFunctionId  2
46     Integer  response body gnb ranFunctions 1 ranFunctionRevision  1
47     Integer  response body gnb ranFunctions 2 ranFunctionId  3
48     Integer  response body gnb ranFunctions 2 ranFunctionRevision  1
49
50
51 Verify RAN is associated with E2T instance
52    ${result}    e2mdbscripts.verify_ran_is_associated_with_e2t_instance      ${ranname}    ${e2t_alpha_address}
53    Should Be True    ${result}
54
55 Stop E2T
56     Stop E2
57
58 Prepare logs
59     Remove log files
60     Save logs
61
62 Verify RAN is not associated with E2T instance
63     Sleep  6m
64     Get Request nodeb
65     Integer  response status  200
66     String   response body ranName    ${ranname}
67     Missing  response body associatedE2tInstanceAddress
68     String   response body connectionStatus    DISCONNECTED
69
70 Verify E2T instance removed from db
71     ${result}    e2mdbscripts.verify_e2t_instance_key_exists     ${e2t_alpha_address}
72     Should Be True    ${result} == False
73
74     ${result}    e2mdbscripts.verify_e2t_instance_exists_in_addresses     ${e2t_alpha_address}
75     Should Be True    ${result} == False
76
77
78 [Teardown]    Run Keywords
79               Start E2
80               AND wait until keyword succeeds  2 min    10 sec    Validate Required Dockers