f833a3e7311e82f8992591baf071e9abe39368fc
[ric-plt/e2mgr.git] / Automation / Tests / ConfigurationUpdate / ConfigurationUpdate_prepartations_tests.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
23
24 *** Settings ***
25 Suite Setup   Prepare Enviorment
26 Resource   ../Resource/resource.robot
27 Resource   ../Resource/Keywords.robot
28 Library     OperatingSystem
29 Library     REST      ${url}
30 Resource    ../Resource/scripts_variables.robot
31 Library     String
32 Library     Process
33 Library     ../Scripts/find_rmr_message.py
34
35
36 *** Test Cases ***
37 X2 - Setup and Get
38     Post Request setup node b x-2
39     Get Request node b enb test1
40     String   response body connectionStatus    CONNECTED
41
42
43 Run Configuration update
44     Run    ${Run_Config}
45     Sleep   1s
46
47 Prepare logs for tests
48     Remove log files
49     Save logs
50
51 Verify logs - Confiugration update - Begin Tag Get
52     ${Configuration}=   Grep File  ./${gnb_log_filename}  <ENDCConfigurationUpdate>
53     ${ConfigurationAfterStrip}=     Strip String    ${Configuration}
54     Should Be Equal     ${ConfigurationAfterStrip}        <ENDCConfigurationUpdate>
55
56 Verify logs - Confiugration update - End Tag Get
57     ${ConfigurationEnd}=   Grep File  ./${gnb_log_filename}  </ENDCConfigurationUpdate>
58     ${ConfigurationEndAfterStrip}=     Strip String    ${ConfigurationEnd}
59     Should Be Equal     ${ConfigurationEndAfterStrip}        </ENDCConfigurationUpdate>
60
61 Verify logs - Confiugration update - Ack Tag Begin
62     ${ConfigurationAck}=   Grep File  ./${gnb_log_filename}   <ENDCConfigurationUpdateAcknowledge>
63     ${ConfigurationAckAfter}=     Strip String    ${ConfigurationAck}
64     Should Be Equal     ${ConfigurationAckAfter}        <ENDCConfigurationUpdateAcknowledge>
65
66 Verify logs - Confiugration update - Ack Tag End
67     ${ConfigurationAckEnd}=   Grep File  ./${gnb_log_filename}  </ENDCConfigurationUpdateAcknowledge>
68     ${ConfigurationAckEndAfterStrip}=     Strip String    ${ConfigurationAckEnd}
69     Should Be Equal     ${ConfigurationAckEndAfterStrip}        </ENDCConfigurationUpdateAcknowledge>
70
71 Verify logs - find RIC_ENDC_CONF_UPDATE
72    ${result}   find_rmr_message.verify_logs  ${EXECDIR}  ${e2mgr_log_filename}  ${configurationupdate_message_type}  ${Meid_test1}
73    Should Be Equal As Strings    ${result}      True
74 Verify logs - find RIC_ENDC_CONF_UPDATE_ACK
75    ${result1}  find_rmr_message.verify_logs  ${EXECDIR}  ${e2mgr_log_filename}  ${configurationupdate_ack_message_type}  ${Meid_test1}
76    Should Be Equal As Strings    ${result1}      True
77
78
79
80
81
82