BjornMagnussonXA | 72667f1 | 2020-04-24 09:20:18 +0200 | [diff] [blame^] | 1 | #!/usr/bin/env bash |
| 2 | |
| 3 | # ============LICENSE_START=============================================== |
| 4 | # Copyright (C) 2020 Nordix Foundation. All rights reserved. |
| 5 | # ======================================================================== |
| 6 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | # you may not use this file except in compliance with the License. |
| 8 | # You may obtain a copy of the License at |
| 9 | # |
| 10 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | # |
| 12 | # Unless required by applicable law or agreed to in writing, software |
| 13 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | # See the License for the specific language governing permissions and |
| 16 | # limitations under the License. |
| 17 | # ============LICENSE_END================================================= |
| 18 | # |
| 19 | |
| 20 | |
| 21 | TC_ONELINE_DESCR="Resync of RIC via changes in the consul config" |
| 22 | |
| 23 | . ../common/testcase_common.sh $@ |
| 24 | . ../common/agent_api_functions.sh |
| 25 | . ../common/ricsimulator_api_functions.sh |
| 26 | . ../common/controller_api_functions.sh |
| 27 | |
| 28 | #### TEST BEGIN #### |
| 29 | |
| 30 | |
| 31 | # Clean container and start all needed containers # |
| 32 | clean_containers |
| 33 | |
| 34 | # Start one RIC of each type |
| 35 | start_ric_simulators ricsim_g1 1 OSC_2.1.0 |
| 36 | start_ric_simulators ricsim_g2 1 STD_1.1.3 |
| 37 | |
| 38 | start_mr |
| 39 | |
| 40 | start_cr |
| 41 | |
| 42 | start_consul_cbs |
| 43 | |
| 44 | prepare_consul_config NOSDNC ".consul_config.json" |
| 45 | |
| 46 | consul_config_app ".consul_config.json" |
| 47 | |
| 48 | start_control_panel |
| 49 | |
| 50 | start_policy_agent |
| 51 | |
| 52 | api_equal json:rics 2 120 |
| 53 | |
| 54 | |
| 55 | # Add an OSC RIC and check |
| 56 | start_ric_simulators ricsim_g2 2 STD_1.1.3 |
| 57 | |
| 58 | prepare_consul_config NOSDNC ".consul_config.json" |
| 59 | |
| 60 | consul_config_app ".consul_config.json" |
| 61 | |
| 62 | api_equal json:rics 3 120 |
| 63 | |
| 64 | check_policy_agent_logs |
| 65 | check_control_panel_logs |
| 66 | |
| 67 | # Remove one OSC RIC and check |
| 68 | start_ric_simulators ricsim_g2 1 STD_1.1.3 |
| 69 | |
| 70 | prepare_consul_config NOSDNC ".consul_config.json" |
| 71 | |
| 72 | consul_config_app ".consul_config.json" |
| 73 | |
| 74 | api_equal json:rics 2 120 |
| 75 | |
| 76 | check_policy_agent_logs |
| 77 | check_control_panel_logs |
| 78 | |
| 79 | store_logs END |
| 80 | |
| 81 | |
| 82 | #### TEST COMPLETE #### |
| 83 | |
| 84 | |
| 85 | print_result |
| 86 | |
| 87 | auto_clean_containers |