diff options
author | Victor Morales <victor.morales@intel.com> | 2018-03-13 12:36:55 -0700 |
---|---|---|
committer | Gary Wu <gary.i.wu@huawei.com> | 2018-03-15 16:58:22 +0000 |
commit | df17a7ff9ba569227e8a2b5b1863800bbb8e1806 (patch) | |
tree | 749011aaf1b514e17c31edd9c12252a95f0aec18 /bootstrap/vagrant-onap/tests/test_vfc | |
parent | 1393fc2533cae1271126498f1661dec893922dae (diff) |
Deprecate vagrant-onap tool
The vagrant-onap tool needs to be moved to its own repo to have better
control of versions and autonomy. This change removes the project from
integration repository.
Change-Id: I90bd4505a9fc7376c31a780aa1b833ee2663af3e
Signed-off-by: Victor Morales <victor.morales@intel.com>
Depends-On: I79df8c35fccaa266a789217d441a6cf1183bd42a
Issue-ID: INT-441
Diffstat (limited to 'bootstrap/vagrant-onap/tests/test_vfc')
-rwxr-xr-x | bootstrap/vagrant-onap/tests/test_vfc | 68 |
1 files changed, 0 insertions, 68 deletions
diff --git a/bootstrap/vagrant-onap/tests/test_vfc b/bootstrap/vagrant-onap/tests/test_vfc deleted file mode 100755 index 3fadeafad..000000000 --- a/bootstrap/vagrant-onap/tests/test_vfc +++ /dev/null @@ -1,68 +0,0 @@ -#!/bin/bash - -source /var/onap_tests/_test_base -source /var/onap/vfc - -covered_functions=( -"clone_all_vfc_repos" "compile_all_vfc_repos" "install_vfc" "get_vfc_images" -) - -# test_clone_all_vfc_repos() - Verify cloning and pulling source code from repositories -function test_clone_all_vfc_repos { - clone_repos "vfc" - - #asserts_file_exist ${src_folders[vfc]}/pom.xml - #asserts_file_exist ${src_folders[vfc]}/gvnfm - asserts_file_exist ${src_folders[vfc]}/gvnfm/vnflcm/pom.xml - asserts_file_exist ${src_folders[vfc]}/gvnfm/vnfmgr/pom.xml - asserts_file_exist ${src_folders[vfc]}/gvnfm/vnfres/pom.xml - #asserts_file_exist ${src_folders[vfc]}/nfvo - asserts_file_exist ${src_folders[vfc]}/nfvo/catalog/run.sh - #asserts_file_exist ${src_folders[vfc]}/nfvo/driver - asserts_file_exist ${src_folders[vfc]}/nfvo/driver/ems/pom.xml - asserts_file_exist ${src_folders[vfc]}/nfvo/driver/sfc/pom.xml - #asserts_file_exist ${src_folders[vfc]}/nfvo/driver/vnfm - asserts_file_exist ${src_folders[vfc]}/nfvo/driver/vnfm/gvnfm/pom.xml - asserts_file_exist ${src_folders[vfc]}/nfvo/driver/vnfm/svnfm/pom.xml - asserts_file_exist ${src_folders[vfc]}/nfvo/lcm/pom.xml - asserts_file_exist ${src_folders[vfc]}/nfvo/wfengine/wso2/pom.xml -} - -# test_compile_all_vfc_repos() - Verify that all the VFC modules are compiled properly -function test_compile_all_vfc_repos { - clone_repos "vfc" - compile_all_vfc_repos - - # TODO(electrocucaracha): Add asserts_file_exist -} - -# test_get_vfc_images() - Verify all VFC images are built correctly. -function test_get_vfc_images { - clone_repos "vfc" - get_vfc_images - - asserts_image onap/gvnfmdriver - asserts_image onap/nslcm - asserts_image onap/vnfres - asserts_image onap/vnfmgr - asserts_image onap/vnflcm -} - -# test_install_vfc() - Verify that the VFC are up and running -function test_install_vfc { - clone_repos "vfc" - get_vfc_images - install_vfc - - asserts_image_running onap/nslcm - asserts_image_running onap/gvnfmdriver - asserts_image_running onap/vnfres - asserts_image_running onap/vnfmgr - asserts_image_running onap/vnflcm -} - -if [ "$1" != '*' ]; then - unset covered_functions - covered_functions=$1 -fi -main "${covered_functions[@]}" |