Merge "e2managererrors - err removed"
[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     ${CURDIR}/scripts.py
22 Resource   ../Resource/resource.robot
23 Library     OperatingSystem
24
25
26 *** Keywords ***
27 Post Request setup node b x-2
28     Set Headers     ${header}
29     POST        /v1/nodeb/x2-setup    ${json}
30
31
32 Get Request node b enb test1
33     Sleep    1s
34     GET      /v1/nodeb/test1
35
36
37 Get Request node b enb test2
38     Sleep    1s
39     GET      /v1/nodeb/test2
40
41 Post Request setup node b endc-setup
42     Set Headers     ${header}
43     POST        /v1/nodeb/endc-setup    ${endcjson}
44
45
46 Prepare Simulator For Load Information
47      Run And Return Rc And Output    ${stop_simu}
48      Run And Return Rc And Output    ${docker_Remove}
49      ${flush}  scripts.flush
50      Should Be Equal As Strings  ${flush}  True
51      Run And Return Rc And Output    ${run_simu_load}
52      ${result}=  Run And Return Rc And Output     ${docker_command}
53      Should Be Equal As Integers    ${result[1]}    5
54
55 Prepare Enviorment
56      ${flush}  scripts.flush
57      Should Be Equal As Strings  ${flush}  True
58      Run And Return Rc And Output    ${stop_simu}
59      Run And Return Rc And Output    ${docker_Remove}
60      Run And Return Rc And Output    ${run_simu_regular}
61      Run And Return Rc And Output    ${restart_e2adapter}
62      ${result}=  Run And Return Rc And Output     ${docker_command}
63      Should Be Equal As Integers    ${result[1]}    5
64
65 Start E2
66      Run And Return Rc And Output    ${start_e2}
67      ${result}=  Run And Return Rc And Output     ${docker_command}
68      Should Be Equal As Integers    ${result[1]}    5
69      Sleep  2s
70
71 Start Redis
72      Run And Return Rc And Output    ${redis_remove}
73      Run And Return Rc And Output    ${start_redis}
74      ${result}=  Run And Return Rc And Output     ${docker_command}
75      Should Be Equal As Integers    ${result[1]}    5
76
77
78
79
80