diff options
author | Victor Morales <victor.morales@intel.com> | 2017-11-20 16:38:28 -0800 |
---|---|---|
committer | Victor Morales <victor.morales@intel.com> | 2017-11-20 16:38:28 -0800 |
commit | f1f1ba5dac1b531c346758072c798ceb511100b3 (patch) | |
tree | a571f9e83be31abd3c63595c04a46dcd7e901a7d /bootstrap/vagrant-onap/tests/test_vvp | |
parent | 25bfc6b99f73bd02047dcc13e64390140777402a (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/tests/test_vvp')
-rwxr-xr-x[-rw-r--r--] | bootstrap/vagrant-onap/tests/test_vvp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bootstrap/vagrant-onap/tests/test_vvp b/bootstrap/vagrant-onap/tests/test_vvp index f77fdf4d3..4762e1da2 100644..100755 --- a/bootstrap/vagrant-onap/tests/test_vvp +++ b/bootstrap/vagrant-onap/tests/test_vvp @@ -9,7 +9,7 @@ covered_functions=( # test_clone_all_vvp_repos() - Verify the cloning of VNFSDK source repo. function test_clone_all_vvp_repos { - clone_all_vvp_repos + clone_repos "vvp" asserts_file_exist $vvp_src_folder/cms/pom.xml asserts_file_exist $vvp_src_folder/devkit/LICENSE.TXT @@ -25,15 +25,15 @@ function test_clone_all_vvp_repos { # test_compile_all_vvp_repos () - Verify if VNFSDK source repo compiles correctly. function test_compile_all_vvp_repos { - clone_all_vvp_repos - compile_all_vvp_repos + clone_repos "vvp" + compile_repos "vvp" # asserts_file_exist $vvp_src_folder/ } # test_get_vvp_images() - Verify that the VNFSDK images are created or retrieved function test_get_vvp_images { - clone_all_vvp_repos + clone_repos "vvp" get_vvp_images #asserts_image refrepo:latest @@ -41,7 +41,7 @@ function test_get_vvp_images { # test_install_vvp() - Verify that VNFSDK docker images are running. function test_install_vvp { - clone_all_vvp_repos + clone_repos "vvp" get_vvp_images install_vvp |