Amichai | 4db397d | 2019-08-28 19:23:15 +0300 | [diff] [blame] | 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 |
ss412g | de19068 | 2019-10-24 09:29:26 +0300 | [diff] [blame^] | 21 | Library ../Scripts/cleanup_db.py |
Amichai | 4db397d | 2019-08-28 19:23:15 +0300 | [diff] [blame] | 22 | Resource ../Resource/resource.robot |
| 23 | Library OperatingSystem |
| 24 | |
| 25 | |
ss412g | 42996b7 | 2019-09-10 14:30:26 +0300 | [diff] [blame] | 26 | |
| 27 | |
| 28 | |
Amichai | 4db397d | 2019-08-28 19:23:15 +0300 | [diff] [blame] | 29 | *** Keywords *** |
| 30 | Post Request setup node b x-2 |
| 31 | Set Headers ${header} |
| 32 | POST /v1/nodeb/x2-setup ${json} |
| 33 | |
| 34 | |
ss412g | 42996b7 | 2019-09-10 14:30:26 +0300 | [diff] [blame] | 35 | |
Amichai | 4db397d | 2019-08-28 19:23:15 +0300 | [diff] [blame] | 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 | |
ss412g | 42996b7 | 2019-09-10 14:30:26 +0300 | [diff] [blame] | 45 | |
ss412g | de19068 | 2019-10-24 09:29:26 +0300 | [diff] [blame^] | 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 | |
ss412g | 42996b7 | 2019-09-10 14:30:26 +0300 | [diff] [blame] | 59 | |
Amichai | 4db397d | 2019-08-28 19:23:15 +0300 | [diff] [blame] | 60 | Post Request setup node b endc-setup |
| 61 | Set Headers ${header} |
| 62 | POST /v1/nodeb/endc-setup ${endcjson} |
| 63 | |
ss412g | 42996b7 | 2019-09-10 14:30:26 +0300 | [diff] [blame] | 64 | Stop Simulator |
| 65 | Run And Return Rc And Output ${stop_simu} |
| 66 | |
Amichai | 4db397d | 2019-08-28 19:23:15 +0300 | [diff] [blame] | 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} |
ss412g | de19068 | 2019-10-24 09:29:26 +0300 | [diff] [blame^] | 71 | ${flush} cleanup_db.flush |
ss412g | e7dbffd | 2019-09-03 18:34:28 +0300 | [diff] [blame] | 72 | Should Be Equal As Strings ${flush} True |
| 73 | Run And Return Rc And Output ${run_simu_load} |
Amichai | 4db397d | 2019-08-28 19:23:15 +0300 | [diff] [blame] | 74 | ${result}= Run And Return Rc And Output ${docker_command} |
ss412g | de19068 | 2019-10-24 09:29:26 +0300 | [diff] [blame^] | 75 | Should Be Equal As Integers ${result[1]} ${docker_number} |
Amichai | 4db397d | 2019-08-28 19:23:15 +0300 | [diff] [blame] | 76 | |
ss412g | e7dbffd | 2019-09-03 18:34:28 +0300 | [diff] [blame] | 77 | Prepare Enviorment |
ss412g | de19068 | 2019-10-24 09:29:26 +0300 | [diff] [blame^] | 78 | ${flush} cleanup_db.flush |
ss412g | e7dbffd | 2019-09-03 18:34:28 +0300 | [diff] [blame] | 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} |
ss412g | b50194c | 2019-09-11 14:14:56 +0300 | [diff] [blame] | 84 | Sleep 2s |
ss412g | e7dbffd | 2019-09-03 18:34:28 +0300 | [diff] [blame] | 85 | ${result}= Run And Return Rc And Output ${docker_command} |
ss412g | de19068 | 2019-10-24 09:29:26 +0300 | [diff] [blame^] | 86 | Should Be Equal As Integers ${result[1]} ${docker_number} |
ss412g | e7dbffd | 2019-09-03 18:34:28 +0300 | [diff] [blame] | 87 | |
| 88 | Start E2 |
| 89 | Run And Return Rc And Output ${start_e2} |
| 90 | ${result}= Run And Return Rc And Output ${docker_command} |
ss412g | de19068 | 2019-10-24 09:29:26 +0300 | [diff] [blame^] | 91 | Should Be Equal As Integers ${result[1]} ${docker_number} |
ss412g | e7dbffd | 2019-09-03 18:34:28 +0300 | [diff] [blame] | 92 | Sleep 2s |
| 93 | |
ss412g | de19068 | 2019-10-24 09:29:26 +0300 | [diff] [blame^] | 94 | Start Dbass |
| 95 | Run And Return Rc And Output ${dbass_remove} |
| 96 | Run And Return Rc And Output ${dbass_start} |
ss412g | e7dbffd | 2019-09-03 18:34:28 +0300 | [diff] [blame] | 97 | ${result}= Run And Return Rc And Output ${docker_command} |
ss412g | de19068 | 2019-10-24 09:29:26 +0300 | [diff] [blame^] | 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} |
ss412g | e7dbffd | 2019-09-03 18:34:28 +0300 | [diff] [blame] | 104 | |
| 105 | |
| 106 | |
| 107 | |
Amichai | 4db397d | 2019-08-28 19:23:15 +0300 | [diff] [blame] | 108 | |