e1d6e636065446dce64f69f48a668d62364e3238
[ric-plt/e2mgr.git] / Automation / Tests / Resource / Keywords.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 Documentation   Keywords file
21 Library     ../Scripts/cleanup_db.py
22 Resource   ../Resource/resource.robot
23 Library     OperatingSystem
24
25
26
27
28
29 *** Keywords ***
30 Post Request setup node b x-2
31     Set Headers     ${header}
32     POST        /v1/nodeb/x2-setup    ${json}
33
34
35
36 Get Request node b enb test1
37     Sleep    1s
38     GET      /v1/nodeb/test1
39
40
41 Get Request node b enb test2
42     Sleep    1s
43     GET      /v1/nodeb/test2
44
45
46 Remove log files
47     Remove File  ${EXECDIR}/${gnb_log_filename}
48     Remove File  ${EXECDIR}/${e2mgr_log_filename}
49     Remove File  ${EXECDIR}/${rsm_log_filename}
50     Remove File  ${EXECDIR}/${e2adapter_log_filename}
51
52 Save logs
53     Sleep   1s
54     Run     ${Save_sim_log}
55     Run     ${Save_e2mgr_log}
56     Run     ${Save_rsm_log}
57     Run     ${Save_e2adapter_log}
58
59
60 Post Request setup node b endc-setup
61     Set Headers     ${header}
62     POST        /v1/nodeb/endc-setup    ${endcjson}
63
64 Stop Simulator
65     Run And Return Rc And Output    ${stop_simu}
66
67
68 Prepare Simulator For Load Information
69      Run And Return Rc And Output    ${stop_simu}
70      Run And Return Rc And Output    ${docker_Remove}
71      ${flush}  cleanup_db.flush
72      Should Be Equal As Strings  ${flush}  True
73      Run And Return Rc And Output    ${run_simu_load}
74      ${result}=  Run And Return Rc And Output     ${docker_command}
75      Should Be Equal As Integers    ${result[1]}    ${docker_number}
76
77 Prepare Enviorment
78      ${flush}  cleanup_db.flush
79      Should Be Equal As Strings  ${flush}  True
80      Run And Return Rc And Output    ${stop_simu}
81      Run And Return Rc And Output    ${docker_Remove}
82      Run And Return Rc And Output    ${run_simu_regular}
83      Run And Return Rc And Output    ${restart_e2adapter}
84      Sleep  2s
85      ${result}=  Run And Return Rc And Output     ${docker_command}
86      Should Be Equal As Integers    ${result[1]}    ${docker_number}
87
88 Start E2
89      Run And Return Rc And Output    ${start_e2}
90      ${result}=  Run And Return Rc And Output     ${docker_command}
91      Should Be Equal As Integers    ${result[1]}    ${docker_number}
92      Sleep  2s
93
94 Start Dbass
95      Run And Return Rc And Output    ${dbass_remove}
96      Run And Return Rc And Output    ${dbass_start}
97      ${result}=  Run And Return Rc And Output     ${docker_command}
98      Should Be Equal As Integers    ${result[1]}    ${docker_number}
99
100 Stop Dbass
101      Run And Return Rc And Output    ${dbass_stop}
102      ${result}=  Run And Return Rc And Output     ${docker_command}
103      Should Be Equal As Integers    ${result[1]}    ${docker_number-1}
104
105
106
107
108