-
Notifications
You must be signed in to change notification settings - Fork 0
/
ftest.sh
executable file
·169 lines (147 loc) · 5.27 KB
/
ftest.sh
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
#!/bin/bash
# Copyright (C) Copyright 2019-2020 Intel Corporation
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted for any purpose (including commercial purposes)
# provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice,
# this list of conditions, and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions, and the following disclaimer in the
# documentation and/or materials provided with the distribution.
#
# 3. In addition, redistributions of modified forms of the source or binary
# code must carry prominent notices stating that the original code was
# changed and the date of the change.
#
# 4. All publications or advertising materials mentioning features or use of
# this software are asked, but not required, to acknowledge that it was
# developed by Intel Corporation and credit the contributors.
#
# 5. Neither the name of Intel Corporation, nor the name of any Contributor
# may be used to endorse or promote products derived from this software
# without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY
# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
set -ex -o pipefail
# shellcheck disable=SC1091
if [ -f .localenv ]; then
# read (i.e. environment, etc.) overrides
. .localenv
fi
TEST_TAG_ARG="${1:-quick}"
TEST_TAG_DIR="$(mktemp -du)"
NFS_SERVER=${NFS_SERVER:-${HOSTNAME%%.*}}
trap 'echo "encountered an unchecked return code, exiting with error"' ERR
IFS=" " read -r -a nodes <<< "${2//,/ }"
TEST_NODES=$(IFS=","; echo "${nodes[*]:1:8}")
# Optional arguments for launch.py
LAUNCH_OPT_ARGS="${3:-}"
# Add the missing '--nvme' argument identifier for backwards compatibility with
# the 'auto:Optane' optional argument specified without the identifier.
if [[ "${LAUNCH_OPT_ARGS}" == "auto:Optane" ]]; then
LAUNCH_OPT_ARGS="--nvme=${LAUNCH_OPT_ARGS}"
fi
# Log size threshold
LOGS_THRESHOLD="1G"
# For nodes that are only rebooted between CI nodes left over mounts
# need to be cleaned up.
pre_clean () {
i=5
while [ $i -gt 0 ]; do
if clush "${CLUSH_ARGS[@]}" -B -l "${REMOTE_ACCT:-jenkins}" -R ssh \
-S -w "$(IFS=','; echo "${nodes[*]}")" \
"$(sed -e '1,/^$/d' "$SCRIPT_LOC"/pre_clean_nodes.sh)"; then
break
fi
((i-=1)) || true
done
}
cleanup() {
i=5
while [ $i -gt 0 ]; do
if clush "${CLUSH_ARGS[@]}" -B -l "${REMOTE_ACCT:-jenkins}" -R ssh \
-S -w "$(IFS=','; echo "${nodes[*]}")" \
"DAOS_BASE=$DAOS_BASE
$(sed -e '1,/^$/d' "$SCRIPT_LOC"/cleanup_nodes.sh)"; then
break
fi
((i-=1)) || true
done
}
# shellcheck disable=SC1091
if ${TEST_RPMS:-false}; then
PREFIX=/usr
SL_PREFIX=$PWD
else
TEST_RPMS=false
PREFIX=install
. .build_vars.sh
fi
SCRIPT_LOC="$PREFIX"/lib/daos/TESTING/ftest/scripts
pre_clean
if ${TEARDOWN_ONLY:-false}; then
cleanup
exit 0
fi
trap 'set +e; cleanup' EXIT
# doesn't work: mapfile -t CLUSH_ARGS <<< "$CLUSH_ARGS"
# shellcheck disable=SC2206
CLUSH_ARGS=($CLUSH_ARGS)
DAOS_BASE=${SL_PREFIX%/install}
if ! clush "${CLUSH_ARGS[@]}" -B -l "${REMOTE_ACCT:-jenkins}" -R ssh -S \
-w "$(IFS=','; echo "${nodes[*]}")" \
"FIRST_NODE=${nodes[0]}
TEST_RPMS=$TEST_RPMS
DAOS_BASE=$DAOS_BASE
SL_PREFIX=$SL_PREFIX
TEST_TAG_DIR=$TEST_TAG_DIR
JENKINS_URL=$JENKINS_URL
NFS_SERVER=$NFS_SERVER
$(sed -e '1,/^$/d' "$SCRIPT_LOC"/setup_nodes.sh)"; then
echo "Cluster setup (i.e. provisioning) failed"
exit 1
fi
args="${1:-quick}"
shift || true
args+=" $*"
# shellcheck disable=SC2029
# shellcheck disable=SC2086
if ! ssh -A $SSH_KEY_ARGS ${REMOTE_ACCT:-jenkins}@"${nodes[0]}" \
"FIRST_NODE=\"${nodes[0]}\"
TEST_RPMS=\"$TEST_RPMS\"
DAOS_TEST_SHARED_DIR=\"${DAOS_TEST_SHARED_DIR:-$PWD/install/tmp}\"
DAOS_BASE=\"$DAOS_BASE\"
TEST_TAG_DIR=\"$TEST_TAG_DIR\"
PREFIX=\"$PREFIX\"
SETUP_ONLY=\"${SETUP_ONLY:-false}\"
TEST_TAG_ARG=\"$TEST_TAG_ARG\"
TEST_NODES=\"$TEST_NODES\"
LAUNCH_OPT_ARGS=\"$LAUNCH_OPT_ARGS\"
LOGS_THRESHOLD=\"$LOGS_THRESHOLD\"
WITH_VALGRIND=\"$WITH_VALGRIND\"
$(sed -e '1,/^$/d' "$SCRIPT_LOC"/main.sh)"; then
rc=${PIPESTATUS[0]}
if ${SETUP_ONLY:-false}; then
exit "$rc"
fi
else
if ${SETUP_ONLY:-false}; then
trap '' EXIT
exit 0
fi
rc=0
fi
exit "$rc"