aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_robot
blob: f05523ea66c36498e54cd58d534e5269567ec66f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/bin/bash
# SPDX-license-identifier: Apache-2.0
##############################################################################
# Copyright (c) 2017-2018
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
#############################################################################

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/onap/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/onap/testsuite
}

if [ "$1" != '*' ]; then
    unset covered_functions
    covered_functions=$1
fi
main "${covered_functions[@]}"