aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap/vagrant-onap/tests/test_functions
diff options
context:
space:
mode:
authorGary Wu <gary.i.wu@huawei.com>2018-01-20 03:04:40 +0000
committerGerrit Code Review <gerrit@onap.org>2018-01-20 03:04:40 +0000
commit8fa101a3dd2edf8e432b9447a886cfb583100fb0 (patch)
tree914ca872a6337fcbaff07ca1d2d437ffda0aa012 /bootstrap/vagrant-onap/tests/test_functions
parent16038805de5da569592d3c951b3ca64973b0108a (diff)
parentfdf88f32579d606cd82deadd3c89fac77b6aa472 (diff)
Merge "Add kolla internal vip to no_proxy"
Diffstat (limited to 'bootstrap/vagrant-onap/tests/test_functions')
-rwxr-xr-xbootstrap/vagrant-onap/tests/test_functions10
1 files changed, 9 insertions, 1 deletions
diff --git a/bootstrap/vagrant-onap/tests/test_functions b/bootstrap/vagrant-onap/tests/test_functions
index 9411b46f4..dd482151f 100755
--- a/bootstrap/vagrant-onap/tests/test_functions
+++ b/bootstrap/vagrant-onap/tests/test_functions
@@ -8,7 +8,7 @@ covered_functions=(
"configure_bind" "install_java" "install_maven" "install_nodejs" "install_python"
"install_docker" "pull_docker_image" "install_docker_compose" "configure_service"
"start_ODL" "compile_src" "build_docker_image" "docker_openecomp_login"
-"pull_openecomp_image" "pull_onap_image" "coverity_repos"
+"pull_openecomp_image" "pull_onap_image" "coverity_repos" "add_no_proxy_value"
)
# test_create_configuration_files() - Verify the creation of a configuration files
@@ -176,6 +176,14 @@ function test_coverity_repos {
popd
}
+# test_add_no_proxy_value - Verify that the no_proxy value is correctly set
+function test_add_no_proxy_value {
+ local ip="172.16.0.3"
+ add_no_proxy_value $ip
+
+ asserts_env_set no_proxy
+}
+
if [ "$1" != '*' ]; then
unset covered_functions
covered_functions=$1