Merge "sdlgo versions updated to v0.3.1"
[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
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
47 Post Request setup node b endc-setup
48     Set Headers     ${header}
49     POST        /v1/nodeb/endc-setup    ${endcjson}
50
51 Stop Simulator
52     Run And Return Rc And Output    ${stop_simu}
53
54
55 Prepare Simulator For Load Information
56      Run And Return Rc And Output    ${stop_simu}
57      Run And Return Rc And Output    ${docker_Remove}
58      ${flush}  scripts.flush
59      Should Be Equal As Strings  ${flush}  True
60      Run And Return Rc And Output    ${run_simu_load}
61      ${result}=  Run And Return Rc And Output     ${docker_command}
62      Should Be Equal As Integers    ${result[1]}    5
63
64 Prepare Enviorment
65      ${flush}  scripts.flush
66      Should Be Equal As Strings  ${flush}  True
67      Run And Return Rc And Output    ${stop_simu}
68      Run And Return Rc And Output    ${docker_Remove}
69      Run And Return Rc And Output    ${run_simu_regular}
70      Run And Return Rc And Output    ${restart_e2adapter}
71      Sleep  2s
72      ${result}=  Run And Return Rc And Output     ${docker_command}
73      log to console   ${result}
74      Should Be Equal As Integers    ${result[1]}    5
75
76 Start E2
77      Run And Return Rc And Output    ${start_e2}
78      ${result}=  Run And Return Rc And Output     ${docker_command}
79      Should Be Equal As Integers    ${result[1]}    5
80      Sleep  2s
81
82 Start Redis
83      Run And Return Rc And Output    ${redis_remove}
84      Run And Return Rc And Output    ${start_redis}
85      ${result}=  Run And Return Rc And Output     ${docker_command}
86      Should Be Equal As Integers    ${result[1]}    5
87
88
89
90
91