Gary Wu | 9abb61c | 2018-09-27 10:38:50 -0700 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | # |
| 3 | # Copyright 2016-2017 Huawei Technologies Co., Ltd. |
| 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 | # |
Dileep Ranganathan | 425ba92 | 2018-10-04 15:34:34 -0700 | [diff] [blame] | 17 | echo "# aaf-sms setup.sh script"; |
| 18 | source ${WORKSPACE}/plans/aaf/sms-test-plan/setup.sh |
Gary Wu | 9abb61c | 2018-09-27 10:38:50 -0700 | [diff] [blame] | 19 | |
| 20 | # |
| 21 | # add here eventual scripts needed for music |
| 22 | # |
| 23 | echo "# music scripts calling"; |
Gary Wu | 13111e9 | 2018-09-27 11:31:33 -0700 | [diff] [blame] | 24 | source ${WORKSPACE}/scripts/optf-has/has/music_script.sh |
Gary Wu | 9abb61c | 2018-09-27 10:38:50 -0700 | [diff] [blame] | 25 | |
| 26 | |
| 27 | # |
| 28 | echo "# simulator scripts calling"; |
Gary Wu | 13111e9 | 2018-09-27 11:31:33 -0700 | [diff] [blame] | 29 | source ${WORKSPACE}/scripts/optf-has/has/simulator_script.sh |
Gary Wu | 9abb61c | 2018-09-27 10:38:50 -0700 | [diff] [blame] | 30 | |
| 31 | # add here eventual scripts needed for optf/has |
| 32 | # |
| 33 | echo "# optf/has scripts calling"; |
Gary Wu | 13111e9 | 2018-09-27 11:31:33 -0700 | [diff] [blame] | 34 | source ${WORKSPACE}/scripts/optf-has/has/has_script.sh |
Gary Wu | 9abb61c | 2018-09-27 10:38:50 -0700 | [diff] [blame] | 35 | |
| 36 | # |
| 37 | # add here below the start of all docker containers needed for optf/has CSIT testing |
| 38 | # |
| 39 | echo "# optf/has scripts docker containers spinoff"; |
| 40 | |
| 41 | # |
| 42 | # add here all the configuration steps eventually needed to be carried out for optf/has CSIT testing |
| 43 | # |
| 44 | echo "# optf/has configuration step"; |
| 45 | |
| 46 | |
| 47 | # |
| 48 | # add here all ROBOT_VARIABLES settings |
| 49 | # |
| 50 | echo "# optf/has robot variables settings"; |
| 51 | echo "conductor ip = ${COND_IP}" |
| 52 | echo "music ip = ${TOMCAT_IP}" |
| 53 | |
| 54 | ROBOT_VARIABLES="-v MUSIC_HOSTNAME:http://${TOMCAT_IP} -v MUSIC_PORT:8080 -v COND_HOSTNAME:http://${COND_IP} -v COND_PORT:8091" |
| 55 | |
| 56 | echo ${ROBOT_VARIABLES} |
| 57 | |
| 58 | |
| 59 | |