blob: 338280948644c2203646653db8bd5eb27654c038 (
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
|
#!/bin/bash
source /var/onap_tests/_test_base
source /var/onap/vfc
covered_functions=(
"clone_all_vfc_repos" "compile_all_vfc_repos" "install_vfc"
)
# test_clone_all_vfc_repos() - Verify cloning and pulling source code from repositories
function test_clone_all_vfc_repos {
# TODO(sshank)
echo ""
}
# test_compile_all_vfc_repos() - Verify that all the VFC modules are compiled properly
function test_compile_all_vfc_repos {
clone_all_vfc_repos
compile_all_vfc_repos
# TODO(electrocucaracha): Add asserts_file_exist
}
# test_install_vfc() - Verify that the VFC are up and running
function test_install_vfc {
install_vfc
# TODO(electrocucaracha): Add whatever asserts are needed
}
if [ "$1" != '*' ]; then
unset covered_functions
covered_functions=$1
fi
main "${covered_functions[@]}"
|