From 000de533553068dae03f9e83bd285b9059b63ca3 Mon Sep 17 00:00:00 2001 From: Victor Morales Date: Thu, 31 Aug 2017 17:28:10 -0500 Subject: Add MultCloud/MultiVIM support These changes allows to provide MultiCloud support. Change-Id: Ic420817df1471077f71290a926fd7e509c052d75 Signed-off-by: Victor Morales Issue-Id: MULTICLOUD-53 --- bootstrap/vagrant-onap/tests/test_multicloud | 38 ++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 bootstrap/vagrant-onap/tests/test_multicloud (limited to 'bootstrap/vagrant-onap/tests/test_multicloud') diff --git a/bootstrap/vagrant-onap/tests/test_multicloud b/bootstrap/vagrant-onap/tests/test_multicloud new file mode 100644 index 000000000..4767152e9 --- /dev/null +++ b/bootstrap/vagrant-onap/tests/test_multicloud @@ -0,0 +1,38 @@ +#!/bin/bash + +source /var/onap_tests/_test_base +source /var/onap/multicloud + +covered_functions=( +"clone_multicloud_repos" "compile_multicloud_repos" "install_multicloud" +) + +# test_clone_multicloud_repos() - Verify that Multi Cloud repositories are cloned properly +function test_clone_multicloud_repos { + clone_multicloud_repos + + asserts_file_exist $multicloud_src_folder/framework/multivimbroker/pom.xml + asserts_file_exist $multicloud_src_folder/openstack/pom.xml + asserts_file_exist $multicloud_src_folder/openstack/vmware/pom.xml +} + +# test_compile_multicloud_repos() - +function test_compile_multicloud_repos { + clone_multicloud_repos + compile_multicloud_repos + + asserts_file_exist $multicloud_src_folder/openstack/newton/target/multicloud-openstack-newton-1.0.0-SNAPSHOT.zip + asserts_file_exist $multicloud_src_folder/openstack/vmware/vio/target/multivimdriver-vio-1.1.0-SNAPSHOT.zip +} + +# test_install_multicloud() - Verify the built and start of Multi Cloud services +function test_install_multicloud { + clone_multicloud_repos + install_multicloud +} + +if [ "$1" != '*' ]; then + unset covered_functions + covered_functions=$1 +fi +main "${covered_functions[@]}" -- cgit 1.2.3-korg