mirror of
https://github.com/kubevirt/containerized-data-importer.git
synced 2025-06-03 06:30:22 +00:00
63 lines
2.2 KiB
Bash
Executable File
63 lines
2.2 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
#Copyright 2018 The CDI Authors.
|
|
#
|
|
#Licensed under the Apache License, Version 2.0 (the "License");
|
|
#you may not use this file except in compliance with the License.
|
|
#You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
#Unless required by applicable law or agreed to in writing, software
|
|
#distributed under the License is distributed on an "AS IS" BASIS,
|
|
#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
#See the License for the specific language governing permissions and
|
|
#limitations under the License.
|
|
|
|
set -euo pipefail
|
|
|
|
readonly MAX_CDI_WAIT_RETRY=30
|
|
readonly CDI_WAIT_TIME=10
|
|
|
|
script_dir="$(readlink -f $(dirname $0))"
|
|
source hack/build/config.sh
|
|
source hack/build/common.sh
|
|
|
|
# functional testing
|
|
KUBECTL=${KUBECTL:-${CDI_DIR}/cluster/.kubectl}
|
|
KUBECONFIG=${KUBECONFIG:-${CDI_DIR}/cluster/.kubeconfig}
|
|
GOCLI=${GOCLI:-${CDI_DIR}/cluster/cli.sh}
|
|
KUBE_MASTER_URL=${KUBE_MASTER_URL:-""}
|
|
CDI_NAMESPACE=${CDI_NAMESPACE:-cdi}
|
|
|
|
# parsetTestOpts sets 'pkgs' and test_args
|
|
parseTestOpts "${@}"
|
|
|
|
arg_master="${KUBE_MASTER_URL:+-master=$KUBE_MASTER_URL}"
|
|
arg_namespace="${CDI_NAMESPACE:+-cdi-namespace=$CDI_NAMESPACE}"
|
|
arg_kubeconfig="${KUBECONFIG:+-kubeconfig=$KUBECONFIG}"
|
|
arg_kubectl="${KUBECTL:+-kubectl-path=$KUBECTL}"
|
|
arg_oc="${KUBECTL:+-oc-path=$KUBECTL}"
|
|
arg_gocli="${GOCLI:+-gocli-path=$GOCLI}"
|
|
|
|
test_args="${test_args} -ginkgo.v ${arg_master} ${arg_namespace} ${arg_kubeconfig} ${arg_kubectl} ${arg_oc} ${arg_gocli}"
|
|
|
|
echo 'Wait until all CDI Pods are ready'
|
|
retry_counter=0
|
|
while [ $retry_counter -lt $MAX_CDI_WAIT_RETRY ] && [ -n "$(./cluster/kubectl.sh get pods -n $CDI_NAMESPACE -o'custom-columns=status:status.containerStatuses[*].ready' --no-headers | grep false)" ]; do
|
|
retry_counter=$((retry_counter + 1))
|
|
sleep $CDI_WAIT_TIME
|
|
echo "Checking CDI pods again, count $retry_counter"
|
|
if [ $retry_counter -gt 1 ] && [ "$((retry_counter % 6))" -eq 0 ]; then
|
|
./cluster/kubectl.sh get pods -n $CDI_NAMESPACE
|
|
fi
|
|
done
|
|
|
|
if [ $retry_counter -eq $MAX_CDI_WAIT_RETRY ]; then
|
|
echo "Not all CDI pods became ready"
|
|
./cluster/kubectl.sh get pods -n $CDI_NAMESPACE
|
|
exit 1
|
|
fi
|
|
|
|
${script_dir}/run-tests.sh ${pkgs} --test-args="${test_args}"
|