diff options
Diffstat (limited to 'bootstrap/vagrant-onap/tests/test_aai')
-rwxr-xr-x[-rw-r--r--] | bootstrap/vagrant-onap/tests/test_aai | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/bootstrap/vagrant-onap/tests/test_aai b/bootstrap/vagrant-onap/tests/test_aai index 10777d678..d9a48697c 100644..100755 --- a/bootstrap/vagrant-onap/tests/test_aai +++ b/bootstrap/vagrant-onap/tests/test_aai @@ -28,7 +28,7 @@ function test_install_haproxy { # test_clone_all_aai_repos() - Verify that all the AAI Repos are cloned function test_clone_all_aai_repos { - clone_all_aai_repos + clone_repos "aai" asserts_file_exist $aai_src_folder/aai-common/pom.xml asserts_file_exist $aai_src_folder/aai-config/cookbooks/aai-resources/runlist-aai-resources.json @@ -54,7 +54,7 @@ function test_clone_all_aai_repos { # test_compile_aai_repos() - Verify that all the AAI Repositories complile properly function test_compile_aai_repos { - clone_all_aai_repos + clone_repos "aai" compile_aai_repos for common in annotations auth core schema utils; do @@ -71,7 +71,7 @@ function test_compile_aai_repos { # test_setup_titan() - Verify that Titan Cassandra DB is up and running function test_setup_titan { - clone_all_aai_repos + clone_repos "aai" install_hadoop setup_titan @@ -80,7 +80,7 @@ function test_setup_titan { # test_start_aai_microservices() - Verify that AAI Resources and Traversal images works function test_start_aai_microservices { - clone_all_aai_repos + clone_repos "aai" start_aai_microservices # TODO(electrocucaracha): Investigate how to run AAI microservices in background @@ -95,7 +95,7 @@ function test_install_hbase { # test_install_ajsc_aai() - Verify that AJSC AAI service is up and running properly function test_install_ajsc_aai { - clone_all_aai_repos + clone_repos "aai" install_ajsc_aai asserts_image_running openecomp/ajsc-aai @@ -103,7 +103,7 @@ function test_install_ajsc_aai { # test_install_model_loader() - Verify that Model AAI service is up and running properly function test_install_model_loader { - clone_all_aai_repos + clone_repos "aai" install_model_loader asserts_image openecomp/model-loader |