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_multicloud | |
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_multicloud')
-rwxr-xr-x | bootstrap/vagrant-onap/tests/test_multicloud | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/bootstrap/vagrant-onap/tests/test_multicloud b/bootstrap/vagrant-onap/tests/test_multicloud deleted file mode 100755 index 1b5b85de6..000000000 --- a/bootstrap/vagrant-onap/tests/test_multicloud +++ /dev/null @@ -1,54 +0,0 @@ -#!/bin/bash - -source /var/onap_tests/_test_base -source /var/onap/multicloud - -covered_functions=( -"clone_multicloud_repos" "compile_multicloud_repos" "get_multicloud_images" "install_multicloud" -) - -# test_clone_multicloud_repos() - Verify that Multi Cloud repositories are cloned properly -function test_clone_multicloud_repos { - clone_repos "multicloud" - - #asserts_file_exist ${src_folders[multicloud]}/ - asserts_file_exist ${src_folders[multicloud]}/framework/pom.xml - asserts_file_exist ${src_folders[multicloud]}/openstack/pom.xml - asserts_file_exist ${src_folders[multicloud]}/openstack/vmware/pom.xml - asserts_file_exist ${src_folders[multicloud]}/openstack/windriver/pom.xml - #asserts_file_exist ${src_folders[multicloud]}/azure/ -} - -# test_compile_multicloud_repos() - -function test_compile_multicloud_repos { - clone_repos "multicloud" - compile_repos "multicloud" - - asserts_file_exist ${src_folders[multicloud]}/openstack/newton/target/multicloud-openstack-newton-1.0.0-SNAPSHOT.zip - asserts_file_exist ${src_folders[multicloud]}/openstack/ocata/target/multicloud-openstack-ocata-1.0.0-SNAPSHOT.zip - asserts_file_exist ${src_folders[multicloud]}/openstack/windriver/target/multicloud-openstack-windriver-1.0.0-SNAPSHOT.zip -} - -# test_get_multicloud_images() - -function test_get_multicloud_images { - clone_repos "multicloud" - get_multicloud_images - - asserts_image onap/multicloud/openstack-$openstack_release -} - -# test_install_multicloud() - Verify the built and start of Multi Cloud services -function test_install_multicloud { - clone_repos "multicloud" - get_multicloud_images - install_multicloud - - # NOTE(electrocucaracha): Depends on https://gerrit.onap.org/r/#/c/23631/ - asserts_http_status_code http://127.0.0.1:9003/api/multicloud-$openstack_release/v0/swagger.json -} - -if [ "$1" != '*' ]; then - unset covered_functions - covered_functions=$1 -fi -main "${covered_functions[@]}" |