aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap/vagrant-onap/lib/robot
diff options
context:
space:
mode:
authorVictor Morales <victor.morales@intel.com>2017-11-20 16:38:28 -0800
committerVictor Morales <victor.morales@intel.com>2017-11-20 16:38:28 -0800
commitf1f1ba5dac1b531c346758072c798ceb511100b3 (patch)
treea571f9e83be31abd3c63595c04a46dcd7e901a7d /bootstrap/vagrant-onap/lib/robot
parent25bfc6b99f73bd02047dcc13e64390140777402a (diff)
Refactor clone and compile functions
The clone_all_* and compile_all_* functions share same instructions for performing their functionality. This change pretends to reduce the duplication of the code. Change-Id: Ief63a5a58c79af85c829602b0451637424659438 Signed-off-by: Victor Morales <victor.morales@intel.com> Issue-Id: INT-339
Diffstat (limited to 'bootstrap/vagrant-onap/lib/robot')
-rwxr-xr-xbootstrap/vagrant-onap/lib/robot36
1 files changed, 9 insertions, 27 deletions
diff --git a/bootstrap/vagrant-onap/lib/robot b/bootstrap/vagrant-onap/lib/robot
index 6dcdf90f0..d9b841757 100755
--- a/bootstrap/vagrant-onap/lib/robot
+++ b/bootstrap/vagrant-onap/lib/robot
@@ -2,36 +2,18 @@
source /var/onap/functions
-robot_src_folder=$git_src_folder/testsuite
-robot_repos=("heatbridge" "properties" "python-testing-utils")
-
-# clone_robot_repos() - Function that clones Robot source repo.
-function clone_robot_repos {
- clone_repo testsuite $robot_src_folder
-
- for dirc in ${robot_repos[@]}; do
- clone_repo testsuite/$dirc $robot_src_folder/$dirc
- done
-}
-
-# compile_robot_repos() - Function that compile Robot source repo.
-function compile_robot_repos {
- install_python_package tox
- compile_src $robot_src_folder
-
- for dirc in ${robot_repos[@]}; do
- compile_src $robot_src_folder/$dirc
- done
-}
+testsuite_src_folder=$git_src_folder/testsuite
+testsuite_repos=("testsuite" "testsuite/heatbridge" "testsuite/properties" \
+"testsuite/python-testing-utils")
# _setup_ete_folder() - Create and copy ete folder structure
function _setup_ete_folder {
mkdir -p /opt/eteshare/config
- cp $src_folder/integration_* /opt/eteshare/config
- cp $src_folder/vm_config2robot.sh /opt/eteshare/config
- cp $src_folder/ete.sh /opt
- cp $src_folderdemo.sh /opt
+ cp $testsuite_src_folder/integration_* /opt/eteshare/config
+ cp $testsuite_src_folder/vm_config2robot.sh /opt/eteshare/config
+ cp $testsuite_src_folder/ete.sh /opt
+ cp $testsuite_src_folder/demo.sh /opt
chmod +x /opt/ete.sh
chmod +x /opt/demo.sh
@@ -51,10 +33,10 @@ function install_robot {
# init_robot() - Function that initialize Robot services
function init_robot {
if [[ "$clone_repo" == "True" ]]; then
- clone_robot_repos
+ clone_repos "testsuite"
_setup_ete_folder
if [[ "$compile_repo" == "True" ]]; then
- compile_robot_repos
+ compile_repos "testsuite"
fi
fi