353664b64b3fa3888c98b3ec1be4776684b7e5b0
[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 node b gnb
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 prepare logs for tests
52     Remove log files
53     Save logs
54
55 Verify RAN is associated with E2T instance
56    ${result}    e2mdbscripts.verify_ran_is_associated_with_e2t_instance      ${ranname}    ${e2t_alpha_address}
57    Should Be True    ${result}
58
59 Stop E2T
60     Stop E2
61
62 Prepare logs
63     Remove log files
64     Save logs
65
66 Verify RAN is not associated with E2T instance
67     Sleep  6m
68     Get Request node b gnb
69     Integer  response status  200
70     String   response body ranName    ${ranname}
71     Missing  response body associatedE2tInstanceAddress
72     String   response body connectionStatus    DISCONNECTED
73
74 Verify E2T instance removed from db
75     ${result}    e2mdbscripts.verify_e2t_instance_key_exists     ${e2t_alpha_address}
76     Should Be True    ${result} == False
77
78     ${result}    e2mdbscripts.verify_e2t_instance_exists_in_addresses     ${e2t_alpha_address}
79     Should Be True    ${result} == False
80
81
82 [Teardown]    Run Keywords
83               Start E2
84               AND wait until keyword succeeds  2 min    10 sec    Validate Required Dockers