summaryrefslogtreecommitdiffstats
path: root/bootstrap/vagrant-onap/tests
diff options
context:
space:
mode:
authorVictor Morales <victor.morales@intel.com>2018-01-22 10:07:28 -0800
committerVictor Morales <victor.morales@intel.com>2018-01-22 10:07:28 -0800
commitbe84471233b3067e57cf3d9dbbb0154b60eb21f2 (patch)
treeca86f933f6ef2ece02dc042cfdcc6edf586ed33e /bootstrap/vagrant-onap/tests
parent8fa101a3dd2edf8e432b9447a886cfb583100fb0 (diff)
Update AAI instructions
The AAI instructions were using old variables resulting in some execution errors. This change removes that old variables and updates the methods required for the service. Change-Id: I14f8e598eb8a5fd915b63135c1145ea25f6bcad0 Signed-off-by: Victor Morales <victor.morales@intel.com> Issue-ID: INT-18
Diffstat (limited to 'bootstrap/vagrant-onap/tests')
-rwxr-xr-xbootstrap/vagrant-onap/tests/test_aai18
1 files changed, 1 insertions, 17 deletions
diff --git a/bootstrap/vagrant-onap/tests/test_aai b/bootstrap/vagrant-onap/tests/test_aai
index 65917e092..dd027d2bc 100755
--- a/bootstrap/vagrant-onap/tests/test_aai
+++ b/bootstrap/vagrant-onap/tests/test_aai
@@ -5,7 +5,7 @@ source /var/onap/aai
covered_functions=(
#"install_hadoop" "install_haproxy" "clone_all_aai_repos" "compile_aai_repos" "setup_titan" "start_aai_microservices" "install_hbase" "install_ajsc_aai" "install_model_loader"
-"install_hadoop" "install_haproxy" "clone_all_aai_repos" "compile_aai_repos" "setup_titan" "install_hbase" "install_ajsc_aai" "install_model_loader"
+"install_hadoop" "install_haproxy" "clone_all_aai_repos" "compile_aai_repos" "setup_titan" "install_hbase"
)
# test_install_hadoop() - Verify that Hadoop is downloaded and started properly
@@ -93,22 +93,6 @@ function test_install_hbase {
asserts_image_running aai-hbase-${hbase_version}
}
-# test_install_ajsc_aai() - Verify that AJSC AAI service is up and running properly
-function test_install_ajsc_aai {
- clone_repos "aai"
- install_ajsc_aai
-
- asserts_image_running openecomp/ajsc-aai
-}
-
-# test_install_model_loader() - Verify that Model AAI service is up and running properly
-function test_install_model_loader {
- clone_repos "aai"
- install_model_loader
-
- asserts_image openecomp/model-loader
-}
-
if [ "$1" != '*' ]; then
unset covered_functions
covered_functions=$1