blob: 515bc6ecd1b94ddce9911d9faf32d59588e3316b (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
#!/bin/bash
# SPDX-license-identifier: Apache-2.0
##############################################################################
# Copyright (c) 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
##############################################################################
set -o errexit
set -o nounset
set -o pipefail
function _checks_args {
if [[ -z $1 ]]; then
echo "Missing CSAR ID argument"
exit 1
fi
if [[ -z $CSAR_DIR ]]; then
echo "CSAR_DIR global environment value is empty"
exit 1
fi
mkdir -p ${CSAR_DIR}/${1}
}
# destroy_deployment() - This function ensures that a specific deployment is
# destroyed in Kubernetes
function destroy_deployment {
local deployment_name=$1
echo "$(date +%H:%M:%S) - $deployment_name : Destroying deployment"
kubectl delete deployment $deployment_name --ignore-not-found=true --now
while kubectl get deployment $deployment_name &>/dev/null; do
echo "$(date +%H:%M:%S) - $deployment_name : Destroying deployment"
done
}
# recreate_deployment() - This function destroys an existing deployment and
# creates an new one based on its yaml file
function recreate_deployment {
local deployment_name=$1
destroy_deployment $deployment_name
kubectl create -f $deployment_name.yaml
}
# wait_deployment() - Wait process to Running status on the Deployment's pods
function wait_deployment {
local deployment_name=$1
status_phase=""
while [[ $status_phase != "Running" ]]; do
new_phase=$(kubectl get pods | grep $deployment_name | awk '{print $3}')
if [[ $new_phase != $status_phase ]]; then
echo "$(date +%H:%M:%S) - $deployment_name : $new_phase"
status_phase=$new_phase
fi
if [[ $new_phase == "Err"* ]]; then
exit 1
fi
done
}
# setup() - Base testing setup shared among functional tests
function setup {
for deployment_name in $@; do
recreate_deployment $deployment_name
done
for deployment_name in $@; do
wait_deployment $deployment_name
done
}
# teardown() - Base testing teardown function
function teardown {
for deployment_name in $@; do
destroy_deployment $deployment_name
done
}
if ! $(kubectl version &>/dev/null); then
echo "This funtional test requires kubectl client"
exit 1
fi
|