diff options
author | 2018-03-13 12:26:08 -0700 | |
---|---|---|
committer | 2018-03-13 12:26:08 -0700 | |
commit | 4d7590ed7425a94c0f87a8461548c2461d79a710 (patch) | |
tree | 083ffc33a4cd6d8eff42deeea1da0b50c49efdfe /tests/test_vfc | |
parent | ceb22354fcb078e8991a66dc9bc11dd5f21e77f4 (diff) |
Migrate vagrant-onap to devtool repo
This change covers the migration of the vagrant-onap tool's code
which was located under integration repo to devtool's repository.
The tool was renamed to avoid misunderstandings about its goals.
Change-Id: I79df8c35fccaa266a789217d441a6cf1183bd42a
Signed-off-by: Victor Morales <victor.morales@intel.com>
Issue-ID: INT-441
Diffstat (limited to 'tests/test_vfc')
-rwxr-xr-x | tests/test_vfc | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/tests/test_vfc b/tests/test_vfc new file mode 100755 index 0000000..3fadeaf --- /dev/null +++ b/tests/test_vfc @@ -0,0 +1,68 @@ +#!/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[@]}" |