summaryrefslogtreecommitdiffstats
path: root/bootstrap/vagrant-onap/tests/test_robot
diff options
context:
space:
mode:
authorVictor Morales <victor.morales@intel.com>2018-03-13 12:36:55 -0700
committerGary Wu <gary.i.wu@huawei.com>2018-03-15 16:58:22 +0000
commitdf17a7ff9ba569227e8a2b5b1863800bbb8e1806 (patch)
tree749011aaf1b514e17c31edd9c12252a95f0aec18 /bootstrap/vagrant-onap/tests/test_robot
parent1393fc2533cae1271126498f1661dec893922dae (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_robot')
-rwxr-xr-xbootstrap/vagrant-onap/tests/test_robot48
1 files changed, 0 insertions, 48 deletions
diff --git a/bootstrap/vagrant-onap/tests/test_robot b/bootstrap/vagrant-onap/tests/test_robot
deleted file mode 100755
index b96a08848..000000000
--- a/bootstrap/vagrant-onap/tests/test_robot
+++ /dev/null
@@ -1,48 +0,0 @@
-#!/bin/bash
-
-source /var/onap_tests/_test_base
-source /var/onap/robot
-
-covered_functions=(
-"clone_robot_repos" "compile_robot_repos" "get_robot_images" "install_robot"
-)
-
-# test_clone_robot_repos() - Verify that Robot repositories are cloned properly
-function test_clone_robot_repos {
- clone_repos "robot" "testsuite"
-
- asserts_file_exist ${src_folders[robot]}/LICENSE.TXT
- asserts_file_exist ${src_folders[robot]}/heatbridge/pom.xml
- asserts_file_exist ${src_folders[robot]}/properties/LICENSE.TXT
- asserts_file_exist ${src_folders[robot]}/python-testing-utils/LICENSE.TXT
-}
-
-# test_compile_robot_repos() - Verify that Robot source code can be compiled properly
-function test_compile_robot_repos {
- clone_repos "robot" "testsuite"
- compile_repos "robot"
-
- #asserts_file_exist $testsuite_src_folder/heatbridge/target/maven-python/dist/heatbridge-0.3.0.dev0-py2-none-any.whl
-}
-
-# test_get_robot_images() - Verify that Robot Docker images are retrieved
-function test_get_robot_images {
- get_robot_images
-
- asserts_image $nexus_docker_repo/openecomp/testsuite
-}
-
-# test_install_robot() - Verify the built and start of Robot services
-function test_install_robot {
- clone_repos "robot" "testsuite"
- get_robot_images
- install_robot
-
- asserts_image_running $nexus_docker_repo/openecomp/testsuite
-}
-
-if [ "$1" != '*' ]; then
- unset covered_functions
- covered_functions=$1
-fi
-main "${covered_functions[@]}"