5f3f59f32e1bdcde7b6dd6dde1b7c044f2c22373
[ric-plt/e2mgr.git] / Automation / Tests / Lost_Connection / LostConnectionTestConnectedRan.robot
1 ##############################################################################
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 #
19 #   This source code is part of the near-RT RIC (RAN Intelligent Controller)
20 #   platform project (RICP).
21 #
22 *** Settings ***
23 Variables  ../Scripts/variables.py
24 Suite Setup   Prepare Enviorment    ${True}
25 Resource   ../Resource/resource.robot
26 Resource   ../Resource/Keywords.robot
27 Library    ../Scripts/find_error_script.py
28 Library     ../Scripts/e2mdbscripts.py
29 Library     ../Scripts/log_scripts.py
30 Library     OperatingSystem
31 Library    Collections
32 Library     REST      ${url}
33
34 *** Variables ***
35 ${url}  ${e2mgr_address}
36
37 *** Test Cases ***
38
39 Prepare Redis Monitor Log
40     Start Redis Monitor
41
42 Setup Ran and verify it's CONNECTED and associated
43     Get Request node b gnb
44     Integer  response status  200
45     String   response body ranName    ${ranname}
46     String   response body connectionStatus    CONNECTED
47     String   response body associatedE2tInstanceAddress  ${e2t_alpha_address}
48
49 Stop simulator
50    Stop Simulator
51
52 Verify connection status is DISCONNECTED and RAN is not associated with E2T instance
53     Sleep    30s
54     GET      ${getNodeb}
55     Integer  response status  200
56     String   response body ranName    ${ranname}
57     Missing  response body associatedE2tInstanceAddress
58     String   response body connectionStatus    DISCONNECTED
59
60 prepare logs for tests
61     Remove log files
62     Save logs
63
64 Verify E2T instance is NOT associated with RAN
65    ${result}    e2mdbscripts.verify_ran_is_associated_with_e2t_instance     ${ranname}  ${e2t_alpha_address}
66    Should Be True    ${result} == False
67
68 Redis Monitor Logs - Verify Publish
69     Redis Monitor Logs - Verify Publish To Connection Status Channel   ${ran_name}    DISCONNECTED
70
71 [Teardown]    Run Keywords
72               Start Simulator
73               AND wait until keyword succeeds  2 min    10 sec    Validate Required Dockers
74               AND Stop Redis Monitor