457ca9c74d56fc189244828b4b048095090f669a
[ric-plt/e2mgr.git] / Automation / Tests / X2-Setup / x2_setup_existing_not_assoc_test.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 *** Settings ***
20 Suite Setup   Prepare Enviorment
21 Resource   ../Resource/resource.robot
22 Resource   ../Resource/Keywords.robot
23 Resource    ../Resource/scripts_variables.robot
24 Library     OperatingSystem
25 Library     ../Scripts/find_rmr_message.py
26 Library     ../Scripts/rsmscripts.py
27 Library     ../Scripts/e2mdbscripts.py
28 Library     REST      ${url}
29
30 *** Test Cases ***
31 X2 - Setup Test 1
32     Post Request setup node b x-2
33     Integer     response status       204
34
35 Restart Simulator
36     Restart Simulator
37
38 Verify RAN is NOT associated with E2T instance
39    ${result}    e2mdbscripts.verify_ran_is_associated_with_e2t_instance     test1    e2t.att.com:38000
40    Should Be True    ${result} == False
41
42
43 X2 - Setup Test 2
44     Post Request setup node b x-2
45     Integer     response status       204
46
47 X2 - Get Nodeb
48     Get Request Node B Enb test1
49     Integer  response status  200
50     String   response body ranName    test1
51     String   response body associatedE2tInstanceAddress     e2t.att.com:38000  
52
53 prepare logs for tests
54     Remove log files
55     Save logs
56
57 X2 - RAN Connected message going to be sent
58     ${result}    find_rmr_message.verify_logs     ${EXECDIR}   ${e2mgr_log_filename}  ${RAN_CONNECTED_message_type}    ${Meid_test1}
59     Should Be Equal As Strings    ${result}      True
60
61 RSM RESOURCE STATUS REQUEST message sent
62     ${result}    find_rmr_message.verify_logs     ${EXECDIR}    ${rsm_log_filename}  ${RIC_RES_STATUS_REQ_message_type_successfully_sent}    ${RAN_NAME_test1}
63     Should Be Equal As Strings    ${result}      True
64
65 Verify RSM RAN info exists in redis
66    ${result}=   rsmscripts.verify_rsm_ran_info_start_false
67    Should Be Equal As Strings  ${result}    True
68
69 Verify RAN is associated with E2T instance
70    ${result}    e2mdbscripts.verify_ran_is_associated_with_e2t_instance     test1    e2t.att.com:38000
71    Should Be True    ${result}