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 | ############################################################################## |
nm755n | 15d3982 | 2019-11-28 16:56:00 +0000 | [diff] [blame] | 18 | # |
| 19 | # This source code is part of the near-RT RIC (RAN Intelligent Controller) |
| 20 | # platform project (RICP). |
| 21 | # |
Amichai | 4db397d | 2019-08-28 19:23:15 +0300 | [diff] [blame] | 22 | |
| 23 | *** Settings *** |
| 24 | Documentation Keywords file |
ss412g | de19068 | 2019-10-24 09:29:26 +0300 | [diff] [blame] | 25 | Library ../Scripts/cleanup_db.py |
Amichai | 4db397d | 2019-08-28 19:23:15 +0300 | [diff] [blame] | 26 | Resource ../Resource/resource.robot |
| 27 | Library OperatingSystem |
| 28 | |
Amichai | 4db397d | 2019-08-28 19:23:15 +0300 | [diff] [blame] | 29 | *** Keywords *** |
ec472j | 0995008 | 2020-04-08 16:44:48 +0300 | [diff] [blame] | 30 | Get Request node b gnb |
Amichai | 4db397d | 2019-08-28 19:23:15 +0300 | [diff] [blame] | 31 | Sleep 1s |
ec472j | 0995008 | 2020-04-08 16:44:48 +0300 | [diff] [blame] | 32 | GET ${getNodeb} |
Amichai | 4db397d | 2019-08-28 19:23:15 +0300 | [diff] [blame] | 33 | |
ec472j | 09288ab | 2020-04-23 13:13:01 +0300 | [diff] [blame] | 34 | Update Ran request |
| 35 | Sleep 1s |
| 36 | PUT ${update_gnb_url} ${update_gnb_body} |
ec472j | 0995008 | 2020-04-08 16:44:48 +0300 | [diff] [blame] | 37 | |
ss412g | a07b859 | 2020-06-16 21:51:33 +0300 | [diff] [blame^] | 38 | Set General Configuration request |
| 39 | Sleep 1s |
| 40 | PUT ${set_general_configuration} ${set_general_configuration_body} |
Amichai | 4db397d | 2019-08-28 19:23:15 +0300 | [diff] [blame] | 41 | |
ec472j | 09288ab | 2020-04-23 13:13:01 +0300 | [diff] [blame] | 42 | Update Ran request not valid |
| 43 | Sleep 1s |
| 44 | PUT ${update_gnb_url} ${update_gnb_body_notvalid} |
| 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} |
ss412g | efcb452 | 2019-12-02 16:59:19 +0200 | [diff] [blame] | 49 | Remove File ${EXECDIR}/${e2t_log_filename} |
ss412g | efcb452 | 2019-12-02 16:59:19 +0200 | [diff] [blame] | 50 | Remove File ${EXECDIR}/${rm_sim_log_filename} |
ss412g | de19068 | 2019-10-24 09:29:26 +0300 | [diff] [blame] | 51 | |
| 52 | Save logs |
| 53 | Sleep 1s |
| 54 | Run ${Save_sim_log} |
| 55 | Run ${Save_e2mgr_log} |
ss412g | efcb452 | 2019-12-02 16:59:19 +0200 | [diff] [blame] | 56 | Run ${Save_e2t_log} |
ss412g | efcb452 | 2019-12-02 16:59:19 +0200 | [diff] [blame] | 57 | Run ${Save_rm_sim_log} |
Amichai | 4db397d | 2019-08-28 19:23:15 +0300 | [diff] [blame] | 58 | |
ss412g | 42996b7 | 2019-09-10 14:30:26 +0300 | [diff] [blame] | 59 | Stop Simulator |
| 60 | Run And Return Rc And Output ${stop_simu} |
| 61 | |
ss412g | e7dbffd | 2019-09-03 18:34:28 +0300 | [diff] [blame] | 62 | Prepare Enviorment |
Amichai | f846c59 | 2020-01-08 16:45:07 +0200 | [diff] [blame] | 63 | Log To Console Starting preparations |
ss412g | efcb452 | 2019-12-02 16:59:19 +0200 | [diff] [blame] | 64 | ${starting_timestamp} Evaluate datetime.datetime.now(datetime.timezone.utc).isoformat("T") modules=datetime |
| 65 | ${e2t_log_filename} Evaluate "e2t.${SUITE NAME}.log".replace(" ","-") |
| 66 | ${e2mgr_log_filename} Evaluate "e2mgr.${SUITE NAME}.log".replace(" ","-") |
| 67 | ${gnb_log_filename} Evaluate "gnb.${SUITE NAME}.log".replace(" ","-") |
ss412g | efcb452 | 2019-12-02 16:59:19 +0200 | [diff] [blame] | 68 | ${rm_sim_log_filename} Evaluate "rm_sim.${SUITE NAME}.log".replace(" ","-") |
ec472j | 0995008 | 2020-04-08 16:44:48 +0300 | [diff] [blame] | 69 | ${Save_sim_log} Evaluate 'docker logs --since ${starting_timestamp} gnbe2_oran_simu > ${gnb_log_filename}' |
ss412g | efcb452 | 2019-12-02 16:59:19 +0200 | [diff] [blame] | 70 | ${Save_e2mgr_log} Evaluate 'docker logs --since ${starting_timestamp} e2mgr > ${e2mgr_log_filename}' |
| 71 | ${Save_e2t_log} Evaluate 'docker logs --since ${starting_timestamp} e2 > ${e2t_log_filename}' |
ss412g | efcb452 | 2019-12-02 16:59:19 +0200 | [diff] [blame] | 72 | ${Save_rm_sim_log} Evaluate 'docker logs --since ${starting_timestamp} rm_sim > ${rm_sim_log_filename}' |
ec472j | 0995008 | 2020-04-08 16:44:48 +0300 | [diff] [blame] | 73 | Set Suite Variable ${e2t_log_filename} |
ss412g | efcb452 | 2019-12-02 16:59:19 +0200 | [diff] [blame] | 74 | Set Suite Variable ${e2mgr_log_filename} |
| 75 | Set Suite Variable ${gnb_log_filename} |
ss412g | efcb452 | 2019-12-02 16:59:19 +0200 | [diff] [blame] | 76 | Set Suite Variable ${rm_sim_log_filename} |
ss412g | efcb452 | 2019-12-02 16:59:19 +0200 | [diff] [blame] | 77 | Set Suite Variable ${Save_sim_log} |
| 78 | Set Suite Variable ${Save_e2mgr_log} |
| 79 | Set Suite Variable ${Save_e2t_log} |
ss412g | efcb452 | 2019-12-02 16:59:19 +0200 | [diff] [blame] | 80 | Set Suite Variable ${Save_rm_sim_log} |
Amichai | f846c59 | 2020-01-08 16:45:07 +0200 | [diff] [blame] | 81 | |
| 82 | Log To Console Ready to flush db |
ss412g | de19068 | 2019-10-24 09:29:26 +0300 | [diff] [blame] | 83 | ${flush} cleanup_db.flush |
ss412g | e7dbffd | 2019-09-03 18:34:28 +0300 | [diff] [blame] | 84 | Should Be Equal As Strings ${flush} True |
| 85 | Run And Return Rc And Output ${stop_simu} |
| 86 | Run And Return Rc And Output ${docker_Remove} |
| 87 | Run And Return Rc And Output ${run_simu_regular} |
ss412g | 9d922dc | 2019-12-24 01:42:40 +0200 | [diff] [blame] | 88 | Sleep 3s |
Amichai | f846c59 | 2020-01-08 16:45:07 +0200 | [diff] [blame] | 89 | Log To Console Validating dockers are up |
ss412g | e7dbffd | 2019-09-03 18:34:28 +0300 | [diff] [blame] | 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 | |
| 93 | Start E2 |
| 94 | Run And Return Rc And Output ${start_e2} |
| 95 | ${result}= Run And Return Rc And Output ${docker_command} |
ss412g | de19068 | 2019-10-24 09:29:26 +0300 | [diff] [blame] | 96 | Should Be Equal As Integers ${result[1]} ${docker_number} |
ss412g | e7dbffd | 2019-09-03 18:34:28 +0300 | [diff] [blame] | 97 | Sleep 2s |
| 98 | |
ss412g | efcb452 | 2019-12-02 16:59:19 +0200 | [diff] [blame] | 99 | Stop E2 |
| 100 | Run And Return Rc And Output ${stop_e2} |
| 101 | ${result}= Run And Return Rc And Output ${docker_command} |
| 102 | Should Be Equal As Integers ${result[1]} ${docker_number-1} |
| 103 | Sleep 2s |
| 104 | |
ss412g | de19068 | 2019-10-24 09:29:26 +0300 | [diff] [blame] | 105 | Start Dbass |
| 106 | Run And Return Rc And Output ${dbass_remove} |
| 107 | Run And Return Rc And Output ${dbass_start} |
ss412g | e7dbffd | 2019-09-03 18:34:28 +0300 | [diff] [blame] | 108 | ${result}= Run And Return Rc And Output ${docker_command} |
ss412g | de19068 | 2019-10-24 09:29:26 +0300 | [diff] [blame] | 109 | Should Be Equal As Integers ${result[1]} ${docker_number} |
| 110 | |
| 111 | Stop Dbass |
| 112 | Run And Return Rc And Output ${dbass_stop} |
| 113 | ${result}= Run And Return Rc And Output ${docker_command} |
| 114 | Should Be Equal As Integers ${result[1]} ${docker_number-1} |
ss412g | e7dbffd | 2019-09-03 18:34:28 +0300 | [diff] [blame] | 115 | |
ss412g | efcb452 | 2019-12-02 16:59:19 +0200 | [diff] [blame] | 116 | Restart simulator |
ec472j | 0995008 | 2020-04-08 16:44:48 +0300 | [diff] [blame] | 117 | Run And Return Rc And Output ${restart_simu} |
ss412g | efcb452 | 2019-12-02 16:59:19 +0200 | [diff] [blame] | 118 | ${result}= Run And Return Rc And Output ${docker_command} |
| 119 | Should Be Equal As Integers ${result[1]} ${docker_number} |
| 120 | |
Amichai | 63b5d92 | 2019-12-26 15:22:55 +0200 | [diff] [blame] | 121 | Start RoutingManager Simulator |
| 122 | Run And Return Rc And Output ${start_routingmanager_sim} |
ss412g | e7dbffd | 2019-09-03 18:34:28 +0300 | [diff] [blame] | 123 | |
Amichai | 63b5d92 | 2019-12-26 15:22:55 +0200 | [diff] [blame] | 124 | Stop RoutingManager Simulator |
| 125 | Run And Return Rc And Output ${stop_routingmanager_sim} |
ss412g | e7dbffd | 2019-09-03 18:34:28 +0300 | [diff] [blame] | 126 | |
ec472j | 09288ab | 2020-04-23 13:13:01 +0300 | [diff] [blame] | 127 | Restart simulator with less docker |
| 128 | Run And Return Rc And Output ${restart_simu} |
| 129 | ${result}= Run And Return Rc And Output ${docker_command} |
| 130 | Should Be Equal As Integers ${result[1]} ${docker_number-1} |
Amichai | 4db397d | 2019-08-28 19:23:15 +0300 | [diff] [blame] | 131 | |
ss412g | a07b859 | 2020-06-16 21:51:33 +0300 | [diff] [blame^] | 132 | Flush And Populate DB |
| 133 | ${flush} cleanup_db.flush |
| 134 | Sleep 2s |
| 135 | |