Merge "Change from using chef to local config files"
[integration.git] / bootstrap / vagrant-onap / tests / test_multicloud
1 #!/bin/bash
2
3 source /var/onap_tests/_test_base
4 source /var/onap/multicloud
5
6 covered_functions=(
7 "clone_multicloud_repos" "compile_multicloud_repos" "get_multicloud_images" "install_multicloud"
8 )
9
10 # test_clone_multicloud_repos() - Verify that Multi Cloud repositories are cloned properly
11 function test_clone_multicloud_repos {
12     clone_repos "multicloud"
13
14     #asserts_file_exist ${src_folders[multicloud]}/
15     asserts_file_exist ${src_folders[multicloud]}/framework/pom.xml
16     asserts_file_exist ${src_folders[multicloud]}/openstack/pom.xml
17     asserts_file_exist ${src_folders[multicloud]}/openstack/vmware/pom.xml
18     asserts_file_exist ${src_folders[multicloud]}/openstack/windriver/pom.xml
19     #asserts_file_exist ${src_folders[multicloud]}/azure/
20 }
21
22 # test_compile_multicloud_repos() -
23 function test_compile_multicloud_repos {
24     clone_repos "multicloud"
25     compile_repos "multicloud"
26
27     asserts_file_exist ${src_folders[multicloud]}/openstack/newton/target/multicloud-openstack-newton-1.0.0-SNAPSHOT.zip
28     asserts_file_exist ${src_folders[multicloud]}/openstack/ocata/target/multicloud-openstack-ocata-1.0.0-SNAPSHOT.zip
29     asserts_file_exist ${src_folders[multicloud]}/openstack/windriver/target/multicloud-openstack-windriver-1.0.0-SNAPSHOT.zip
30 }
31
32 # test_get_multicloud_images() -
33 function test_get_multicloud_images {
34     clone_repos "multicloud"
35     get_multicloud_images
36
37     asserts_image onap/multicloud/openstack-$openstack_release
38 }
39
40 # test_install_multicloud() - Verify the built and start of Multi Cloud services
41 function test_install_multicloud {
42     clone_repos "multicloud"
43     get_multicloud_images
44     install_multicloud
45
46     # NOTE(electrocucaracha): Depends on https://gerrit.onap.org/r/#/c/23631/
47     asserts_http_status_code http://127.0.0.1:9003/api/multicloud-$openstack_release/v0/swagger.json
48 }
49
50 if [ "$1" != '*' ]; then
51     unset covered_functions
52     covered_functions=$1
53 fi
54 main "${covered_functions[@]}"