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 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445
|
#!/usr/bin/env bash
# Copyright 2013-2018 Fabian Groffen
#
# 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.
EXEC=../relay
SMEXEC=../sendmetric
EFLAGS="-Htest.hostname -t"
DIFF="diff -Nu"
POST="cat"
CNFCLN=( sed -e '/^configuration:/,/^parsed configuration follows:/d'
-e '/starting carbon-c-relay v/d'
-e 's/^\[[0-9][0-9\-]* [0-9][0-9:]*\] //'
-e 's/_stub_[0-9a-fx][0-9a-fx]*__/_stub_0xc0d3__/')
export DYLD_FORCE_FLAT_NAMESPACE=1
export DYLD_INSERT_LIBRARIES=../.libs/libfaketime.dylib
export LD_PRELOAD=../.libs/libfaketime.so
buftest_generate() {
i=1
end=2000
rm -f buftest.payload buftest.payloadout
while [ $i -le $end ]; do
echo "foo.bar.${i} 1 349830001" >> buftest.payload
i=$(($i+1))
done
ln -sf buftest.payload buftest.payloadout
ln -sf buftest.payload bundletest.payload
ln -sf buftest.payload bundletest.payloadout
}
large_generate() {
i=1
end=10000
rm -f large.payload large.payloadout
while [ $i -le $end ]; do
echo "foo.bar.${i} 1 349830001" >> large.payload
i=$(($i+1))
done
ln -sf large.payload large.payloadout
}
large_ssl_generate() {
i=1
end=10000
rm -f large-ssl.payload large-ssl.payloadout
while [ $i -le $end ]; do
echo "ssl.foo.bar.${i} 1 349830001" >> large-ssl.payload
echo "through-ssl.foo.bar.${i} 1 349830001" >> large-ssl.payloadout
i=$(($i+1))
done
}
large_compress_generate() {
i=1
end=10000
rm -f large-compress.payload large-compress.payloadout
rm -f large-gzip.payload large-gzip.payloadout
rm -f large-lz4.payload large-lz4.payloadout
while [ $i -le $end ]; do
echo "compress.foo.bar.${i} 1 349830001" >> large-compress.payload
echo "through-compress.foo.bar.${i} 1 349830001" >> large-compress.payloadout
i=$(($i+1))
done
ln -sf large-compress.payload large-gzip.payload
ln -sf large-compress.payloadout large-gzip.payloadout
ln -sf large-compress.payload large-lz4.payload
ln -sf large-compress.payloadout large-lz4.payloadout
}
dual_large_compress_generate() {
i=1
end=10000
rm -f dual-large-compress.payload dual-large-compress.payloadout
rm -f dual-large-gzip.payload dual-large-gzip.payloadout
rm -f dual-large-lz4.payload dual-large-lz4.payloadout
echo "foo.bar 1 2" > dual-large-compress.payload
while [ $i -le $end ]; do
echo "large.foo.bar.${i} 1 2" >> dual-large-compress.payload
echo "through-large.foo.bar.${i} 1 2" >> dual-large-compress.payloadout
i=$(($i+1))
done
ln -sf dual-large-compress.payload dual-large-gzip.payload
ln -sf dual-large-compress.payloadout dual-large-gzip.payloadout
ln -sf dual-large-compress.payload dual-large-lz4.payload
ln -sf dual-large-compress.payloadout dual-large-lz4.payloadout
ln -sf dual-large-compress.payload dual-large-ssl.payload
ln -sf dual-large-compress.payloadout dual-large-ssl.payloadout
}
run_configtest() {
local eflags="$1"
local test=${2%.*}
local conf="${test}.conf"
local tdiff
[[ -e ${conf} ]] || conf="../issues/${conf}"
echo -n "${test}: "
tdiff=$(cat ${2} \
| ( ${EXEC} ${eflags} -f "${conf}" ; trigger_bash_segv_print=$?) 2>&1 \
| "${CNFCLN[@]}" \
| ${DIFF} "${test}.out" - --label "${test}.out" --label "${test}.out" \
| ${POST} \
; exit ${PIPESTATUS[3]})
if [[ $? == 0 ]] ; then
echo "PASS"
return 0
else
echo "FAIL"
echo "${tdiff}"
return 1
fi
}
run_servertest() {
local confarg=$1
local payload=$2
local transport=$3
local mode=SINGLE
local tmpdir=$(mktemp -d)
local output=
local pidfile=
local unixsock=
local port=
local output2=
local pidfile2=
local port2=
local dataout="${tmpdir}"/data.out
local confarg=$1
local payload=$2
local transport=$3
local payloadexpect="${payload}out"
local test=${confarg%.*}
local confarg2=${test}-2.${confarg##*.}
if [ "${transport}" == "gzip" ]; then
SMARG="-c gzip"
elif [ "${transport}" == "lz4" ]; then
SMARG="-c lz4"
elif [ "${transport}" == "snappy" ]; then
SMARG="-c snappy"
elif [ "${transport}" == "ssl" ]; then
SMARG="-s"
elif [ "${transport}" == "" ]; then
SMARG=""
else
echo "unsupported transport ${transport}"
return 1
fi
[[ -e ${confarg2} ]] && mode=DUAL
local start_server_result
local start_server_lastport=$((RANDOM % 1024 + 3200)) # TODO
start_server() {
local id=$1
local remoteport=$2
local confarg=$3
local transport="$4"
local port
# determine a free port to use
for i in $(seq ${start_server_lastport} 60000); do
local usagecount=$(ss -Htl "( dport = :${i} or sport = :${i} )" | wc -l)
if [ ${usagecount} -eq 0 ]; then
port=${i}
break
fi
done
: $((start_server_lastport++)) # TODO
local unixsock="${tmpdir}/sock.${port}"
local cert="${test}.cert"
local ca="${test}.cert"
local conf="${tmpdir}"/conf-${id}
local output="${tmpdir}"/relay-${id}.out
local pidfile="${tmpdir}"/pidfile-${id}
local relayargs=
[[ -e ${test}.args ]] && relayargs=$(< ${test}.args)
[[ -e ${test}-${id}.args ]] && relayargs=$(< ${test}-${id}.args)
[[ -e ${ca} ]] && relayargs+=" -C ${ca}"
if [ "${transport}" == "ssl" ]; then
transport="transport plain ${transport} ${cert}"
elif [ "${transport}" != "" ]; then
transport="transport ${transport}"
fi
# write config file with known listener
{
echo "# relay ${id}, mode ${mode}"
echo "listen type linemode ${transport}"
echo " ${unixsock} proto unix"
echo " ;"
echo
echo "cluster default"
echo " file ${dataout}"
echo " ;"
echo
if [[ -n ${relayargs} ]] ; then
echo "# extra arguments given to ${EXEC}:"
echo "# ${relayargs}"
echo
fi
echo "# contents from ${confarg} below this line"
sed \
-e "s/@port@/${port}/g" \
-e "s/@remoteport@/${remoteport}/g" \
-e "s/@cert@/${cert}/g" \
"${confarg}"
} > "${conf}"
${EXEC} -d -w 1 -f "${conf}" -Htest.hostname -s -D \
-l "${output}" -P "${pidfile}" ${relayargs}
if [[ $? != 0 ]] ; then
# hmmm
echo "failed to start relay ${id} in ${PWD}:"
echo ${EXEC} -d -f "${conf}" -Htest.hostname -s -D -l \
"${output}" -P "${pidfile}" ${relayargs}
echo "=== ${conf} ==="
cat "${conf}"
echo "=== ${output} ==="
cat "${output}"
return 1
fi
echo -n "relay ${id} "
start_server_result=( ${port} ${unixsock} ${pidfile} ${output} )
}
echo -n "${test}: "
[[ "${transport}" != "" ]] && echo -n "${transport} "
if [ "${HAVE_GZIP}" == "0" ]; then
if egrep '^listen type linemode transport gzip ' ${confarg} >/dev/null; then
echo "SKIP"
return 0
fi
fi
if [ "${HAVE_LZ4}" == "0" ]; then
if egrep '^listen type linemode transport lz4 ' ${confarg} >/dev/null; then
echo "SKIP"
return 0
fi
fi
if [ "${HAVE_SNAPPY}" == "0" ]; then
if egrep '^listen type linemode transport snappy ' ${confarg} >/dev/null; then
echo "SKIP"
return 0
fi
fi
if [ "${HAVE_SSL}" == "0" ]; then
if egrep '^listen type linemode transport .* ssl ' ${confarg} >/dev/null; then
echo "SKIP"
return 0
fi
fi
start_server 1 "" ${confarg} "${transport}" || return 1
port=${start_server_result[0]}
unixsock=${start_server_result[1]}
pidfile=${start_server_result[2]}
output=${start_server_result[3]}
if [[ ${mode} == DUAL ]] ; then
if ! start_server 2 ${port} ${confarg2} "" ; then
kill -KILL $(< ${pidfile})
return 1
fi
port2=${start_server_result[0]}
unixsock=${start_server_result[1]}
pidfile2=${start_server_result[2]}
output2=${start_server_result[3]}
fi
local smargs=
[[ -e ${test}.sargs ]] && smargs=$(< ${test}.sargs)
${SMEXEC} ${SMARG} ${smargs} "${unixsock}" < "${payload}"
if [[ $? != 0 ]] ; then
# hmmm
echo "failed to send payload"
exit 1
return 1
fi
# allow everything to be processed
sleep 2
# kill and wait for relay to come down
local pids=$(< "${pidfile}")
[[ ${mode} == DUAL ]] && pids+=" $(< "${pidfile2}")"
kill ${pids}
local i=10
while [[ ${i} -gt 0 ]] ; do
ps -p ${pids} >& /dev/null || break
echo -n "."
sleep 1
: $((i--))
done
# if it didn't yet die, make it so
[[ ${i} == 0 ]] && kill -KILL ${pids}
# add errors to the mix
sed -n 's/^.*(ERR)/relay 1:/p' ${output} >> "${dataout}"
[[ -n ${output2} ]] && \
sed -n 's/^.*(ERR)/relay 2:/p' ${output2} >> "${dataout}"
# compare some notes
local ret
${DIFF} "${payloadexpect}" "${dataout}" \
--label "${payloadexpect}" --label "${payloadexpect}" > "${dataout}.diff"
if [[ $? == 0 ]] ; then
echo "PASS"
ret=0
else
echo "FAIL"
lines=$( wc -l "${dataout}.diff" | awk '{ print $1; }' )
if [ "${lines}" == "" -o "${lines}" -lt "400" ]; then
${POST} < "${dataout}.diff"
else
head -40 "${dataout}.diff" | ${POST}
echo ... | ${POST}
tail -40 "${dataout}.diff" | ${POST}
fi
ret=1
fi
if [[ -n ${RUN_TEST_DROP_IN_SHELL} ]] ; then
echo "dropping shell in ${tmpdir}"
( unset DYLD_FORCE_FLAT_NAMESPACE DYLD_INSERT_LIBRARIES LD_PRELOAD;
cd ${tmpdir} && ${SHELL} )
fi
# cleanup
rm -Rf "${tmpdir}"
return ${ret}
}
while [[ -n $1 ]] ; do
case "$1" in
--approve|-a)
POST="patch"
;;
--)
shift
break
;;
*)
break
;;
esac
shift
done
echo -n "generating datasets ..."
buftest_generate
large_generate
large_ssl_generate
large_compress_generate
dual_large_compress_generate
${EXEC} -v | grep -w gzip >/dev/null && HAVE_GZIP=1 || HAVE_GZIP=0
${EXEC} -v | grep -w lz4 >/dev/null && HAVE_LZ4=1 || HAVE_LZ4=0
${EXEC} -v | grep -w snappy >/dev/null && HAVE_SNAPPY=1 || HAVE_SNAPPY=0
${EXEC} -v | grep -w ssl >/dev/null && HAVE_SSL=1 || HAVE_SSL=0
echo " done"
tstcnt=0
tstfail=0
tstfailed=""
for t in $* ; do
if [[ -e ${t}.tst ]] ; then
: $((tstcnt++))
run_configtest "${EFLAGS}" "${t}.tst" || {
: $((tstfail++))
tstfailed="${tstfailed} ${t}.tst"
}
elif [[ -e ${t}.dbg ]] ; then
: $((tstcnt++))
run_configtest "${EFLAGS} -d" "${t}.dbg" || {
: $((tstfail++))
tstfailed="${tstfailed} ${t}.tst"
}
else
if [[ -e ${t}.stst ]] ; then
: $((tstcnt++))
run_servertest "${t}.stst" "${t}.payload" || {
: $((tstfail++))
tstfailed="${tstfailed} ${t}.stst"
}
fi
if [ -e ${t}.gz.stst -a "${HAVE_GZIP}" == "1" ]; then
: $((tstcnt++))
run_servertest "${t}.gz.stst" "${t}.payload" "gzip" || {
: $((tstfail++))
tstfailed="${tstfailed} ${t}.gz.stst"
}
fi
if [ -e ${t}.lz4.stst -a "${HAVE_LZ4}" == "1" ]; then
: $((tstcnt++))
run_servertest "${t}.lz4.stst" "${t}.payload" "lz4" || {
: $((tstfail++))
tstfailed="${tstfailed} ${t}.lz4.stst"
}
fi
if [ -e ${t}.snappy.stst -a "${HAVE_LZ4}" == "1" ]; then
: $((tstcnt++))
run_servertest "${t}.snappy.stst" "${t}.payload" "snappy" || {
: $((tstfail++))
tstfailed="${tstfailed} ${t}.snappy.stst"
}
fi
if [ -e ${t}.ssl.stst -a "${HAVE_SSL}" == "1" ]; then
: $((tstcnt++))
run_servertest "${t}.ssl.stst" "${t}.payload" "ssl" || {
: $((tstfail++))
tstfailed="${tstfailed} ${t}.ssl.stst"
}
fi
fi
done
rm -f buftest.payload buftest.payloadout \
parttest.payload parttest.payloadout \
bundletest.payload bundletest.payloadout \
large.payload large.payloadout large-ssl.payload large-ssl.payloadout \
large-compress.payload large-compress.payloadout \
large-gzip.payload large-gzip.payloadout large-lz4.payload large-lz4.payloadout \
dual-large-gzip.payload dual-large-gzip.payloadout dual-large-lz4.payload dual-large-lz4.payloadout \
dual-large-ssl.payload dual-large-ssl.payloadout dual-large-compress.payload dual-large-compress.payloadout
echo "Ran ${tstcnt} tests with ${tstfail} failing"
[ "${tstfailed}" == "" ] || echo "failed: ${tstfailed}"
exit ${tstfail}
|