test-compose: rewrite to new subdir form

...in which we use all-local tests

Signed-off-by: Ed Santiago <santiago@redhat.com>
This commit is contained in:
Ed Santiago
2020-12-10 14:34:21 -07:00
committed by baude
parent 82d7b9f2e2
commit f3e69d7300
10 changed files with 159 additions and 196 deletions

47
test/compose/README.md Normal file
View File

@ -0,0 +1,47 @@
Tests for docker-compose
========================
This directory contains tests for docker-compose under podman.
Each subdirectory must contain one docker-compose.yml file along with
all necessary infrastructure for it (e.g. Containerfile, any files
to be copied into the container, and so on.
The `test-compose` script will, for each test subdirectory:
* set up a fresh podman root under an empty working directory;
* run a podman server rooted therein;
* cd to the test subdirectory, and run `docker-compose up -d`;
* source `tests.sh`;
* run `docker-compose down`.
As a special case, `setup.sh` and `teardown.sh` in the test directory
will contain commands to be executed prior to `docker-compose up` and
after `docker-compose down` respectively.
tests.sh will probably contain commands of the form
test_port 12345 = 'hello there'
Where 12345 is the port to curl to; '=' checks equality, '~' uses `expr`
to check substrings; and 'hello there' is a string to look for in
the curl results.
Usage:
$ sudo test/compose/test-compose [pattern]
By default, all subdirs will be run. If given a pattern, only those
subdirectories matching 'pattern' will be run.
If `$COMPOSE_WAIT` is set, `test-compose` will pause before running
`docker-compose down`. This can be helpful for you to debug failing tests:
$ env COMPOSE_WAIT=1 sudo --preserve-env=COMPOSE_WAIT test/compose/test-compose
Then, in another window,
# ls -lt /var/tmp/
# X=/var/tmp/test-compose.tmp.XXXXXX <--- most recent results of above
# podman --root $X/root --runroot $X/runroot ps -a
# podman --root $X/root --runroot $X/runroot logs -l

View File

@ -1,3 +0,0 @@
9200 You Know, for Search
9600 "status":"green"
5601 Kibana

View File

@ -1 +0,0 @@
5000 Hello World!

View File

@ -1 +0,0 @@
3000 .* Gitea: Git with a cup of tea

View File

@ -1 +0,0 @@
broken

View File

@ -1,9 +1,15 @@
from flask import Flask from flask import Flask
import os
app = Flask(__name__) app = Flask(__name__)
@app.route('/') @app.route('/')
def hello(): def hello():
return "Podman rulez!" passthru = "ERROR: Could not get $ENV_PASSTHRU envariable"
try:
passthru = os.getenv("ENV_PASSTHRU")
except Exception as e:
passthru = passthru + ": " + str(e)
return "Podman rulez!--" + passthru + "--!"
if __name__ == '__main__': if __name__ == '__main__':
app.run(host='0.0.0.0') app.run(host='0.0.0.0')

View File

@ -0,0 +1,3 @@
# -*- bash -*-
export ENV_PASSTHRU=$(random_string 20)

View File

@ -0,0 +1,4 @@
# -*- bash -*-
# FIXME: this is completely unnecessary; it's just an example of a teardown
unset ENV_PASSTHRU

View File

@ -0,0 +1,3 @@
# -*- bash -*-
test_port 5000 = "Podman rulez!--$ENV_PASSTHRU--!"

View File

@ -1,32 +1,26 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# #
# Usage: test-docker-compose [testname] # Usage: test-compose [testname]
#
# DEVELOPER NOTE: you almost certainly don't need to play in here. See README.
# #
ME=$(basename $0) ME=$(basename $0)
############################################################################### ###############################################################################
# BEGIN stuff you can but probably shouldn't customize # BEGIN stuff you can but probably shouldn't customize
# Directory where this script (and extra test configs) live # Directory where this script and all subtests live
TEST_ROOTDIR=$(realpath $(dirname $0)) TEST_ROOTDIR=$(realpath $(dirname $0))
# Podman executable # Podman executable
PODMAN_BIN=$(realpath bin)/podman PODMAN_BIN=$(realpath $TEST_ROOTDIR/../../bin)/podman
# Github repo containing sample docker-compose setups # Local path to docker socket (we will add the unix:/ prefix when we need it)
# FIXME: we should probably version this
AWESOME_COMPOSE=https://github.com/docker/awesome-compose
# Local path to docker socket
DOCKER_SOCK=/var/run/docker.sock DOCKER_SOCK=/var/run/docker.sock
# END stuff you can but probably shouldn't customize # END stuff you can but probably shouldn't customize
############################################################################### ###############################################################################
# BEGIN setup # BEGIN setup
TMPDIR=${TMPDIR:-/var/tmp} export TMPDIR=${TMPDIR:-/var/tmp}
WORKDIR=$(mktemp --tmpdir -d $ME.tmp.XXXXXX) WORKDIR=$(mktemp --tmpdir -d $ME.tmp.XXXXXX)
# Log of all HTTP requests and responses; always make '.log' point to latest # Log of all HTTP requests and responses; always make '.log' point to latest
@ -153,144 +147,29 @@ function _bump() {
echo $(( $count + 1 )) >| $file echo $(( $count + 1 )) >| $file
} }
############# ###############
# jsonify # convert 'foo=bar,x=y' to json {"foo":"bar","x":"y"} # test_port # Run curl against a port, check results against expectation
############# ###############
function jsonify() { function test_port() {
# split by comma local port="$1" # e.g. 5000
local -a settings_in local op="$2" # '=' or '~'
read -ra settings_in <<<"$1" local expect="$3" # what to expect from curl output
# convert each to double-quoted form local actual=$(curl --retry 5 --retry-connrefused -s http://127.0.0.1:$port/)
local -a settings_out local curl_rc=$?
for i in ${settings_in[*]}; do if [ $curl_rc -ne 0 ]; then
settings_out+=$(sed -e 's/\(.*\)=\(.*\)/"\1":"\2"/' <<<$i) _show_ok 0 "$testname - curl failed with status $curl_rc"
done ### docker-compose down >>$logfile 2>&1
### exit 1
fi
# ...and wrap inside braces. case "$op" in
# FIXME: handle commas '=') is "$actual" "$expect" "$testname : port $port" ;;
echo "{${settings_out[*]}}" '~') like "$actual" "$expect" "$testname : port $port" ;;
*) die "Invalid operator '$op'" ;;
esac
} }
#######
# t # Main test helper
#######
function t() {
local method=$1; shift
local path=$1; shift
local curl_args
local testname="$method $path"
# POST requests require an extra params arg
if [[ $method = "POST" ]]; then
curl_args="-d $(jsonify $1)"
testname="$testname [$curl_args]"
shift
fi
# entrypoint path can include a descriptive comment; strip it off
path=${path%% *}
# curl -X HEAD but without --head seems to wait for output anyway
if [[ $method == "HEAD" ]]; then
curl_args="--head"
fi
local expected_code=$1; shift
# If given path begins with /, use it as-is; otherwise prepend /version/
local url=http://$HOST:$PORT
if expr "$path" : "/" >/dev/null; then
url="$url$path"
else
url="$url/v1.40/$path"
fi
# Log every action we do
echo "-------------------------------------------------------------" >>$LOG
echo "\$ $testname" >>$LOG
rm -f $WORKDIR/curl.*
# -s = silent, but --write-out 'format' gives us important response data
response=$(curl -s -X $method ${curl_args} \
-H 'Content-type: application/json' \
--dump-header $WORKDIR/curl.headers.out \
--write-out '%{http_code}^%{content_type}^%{time_total}' \
-o $WORKDIR/curl.result.out "$url")
# Any error from curl is instant bad news, from which we can't recover
rc=$?
if [[ $rc -ne 0 ]]; then
echo "FATAL: curl failure ($rc) on $url - cannot continue" >&2
exit 1
fi
# Show returned headers (without trailing ^M or empty lines) in log file.
# Sometimes -- I can't remember why! -- we don't get headers.
if [[ -e $WORKDIR/curl.headers.out ]]; then
tr -d '\015' < $WORKDIR/curl.headers.out | egrep '.' >>$LOG
fi
IFS='^' read actual_code content_type time_total <<<"$response"
printf "X-Response-Time: ${time_total}s\n\n" >>$LOG
# Log results, if text. If JSON, filter through jq for readability.
if [[ $content_type =~ /octet ]]; then
output="[$(file --brief $WORKDIR/curl.result.out)]"
echo "$output" >>$LOG
else
output=$(< $WORKDIR/curl.result.out)
if [[ $content_type =~ application/json ]]; then
jq . <<<"$output" >>$LOG
else
echo "$output" >>$LOG
fi
fi
# Test return code
is "$actual_code" "$expected_code" "$testname : status"
# Special case: 204/304, by definition, MUST NOT return content (rfc2616)
if [[ $expected_code = 204 || $expected_code = 304 ]]; then
if [ -n "$*" ]; then
die "Internal error: ${expected_code} status returns no output; fix your test."
fi
if [ -n "$output" ]; then
_show_ok 0 "$testname: ${expected_code} status returns no output" "''" "$output"
fi
return
fi
local i
# Special case: if response code does not match, dump the response body
# and skip all further subtests.
if [[ $actual_code != $expected_code ]]; then
echo -e "# response: $output"
for i; do
_show_ok skip "$testname: $i # skip - wrong return code"
done
return
fi
for i; do
if expr "$i" : "[^=~]\+=.*" >/dev/null; then
# Exact match on json field
json_field=$(expr "$i" : "\([^=]*\)=")
expect=$(expr "$i" : '[^=]*=\(.*\)')
actual=$(jq -r "$json_field" <<<"$output")
is "$actual" "$expect" "$testname : $json_field"
elif expr "$i" : "[^=~]\+~.*" >/dev/null; then
# regex match on json field
json_field=$(expr "$i" : "\([^~]*\)~")
expect=$(expr "$i" : '[^~]*~\(.*\)')
actual=$(jq -r "$json_field" <<<"$output")
like "$actual" "$expect" "$testname : $json_field"
else
# Direct string comparison
is "$output" "$i" "$testname : output"
fi
done
}
################### ###################
# start_service # Run the socket listener # start_service # Run the socket listener
@ -299,8 +178,10 @@ service_pid=
function start_service() { function start_service() {
test -x $PODMAN_BIN || die "Not found: $PODMAN_BIN" test -x $PODMAN_BIN || die "Not found: $PODMAN_BIN"
rm -rf $WORKDIR/{root,runroot,cni} # FIXME: use ${testname} subdir but we can't: 50-char limit in runroot
mkdir $WORKDIR/cni rm -rf $WORKDIR/{root,runroot,cni}
mkdir --mode 0755 $WORKDIR/{root,runroot,cni}
chcon --reference=/var/lib/containers $WORKDIR/root
cp /etc/cni/net.d/*podman*conflist $WORKDIR/cni/ cp /etc/cni/net.d/*podman*conflist $WORKDIR/cni/
$PODMAN_BIN \ $PODMAN_BIN \
@ -329,8 +210,21 @@ function start_service() {
# podman # Needed by some test scripts to invoke the actual podman binary # podman # Needed by some test scripts to invoke the actual podman binary
############ ############
function podman() { function podman() {
echo "\$ $PODMAN_BIN $*" >>$WORKDIR/output.log echo "\$ podman $*" >>$WORKDIR/output.log
$PODMAN_BIN --root $WORKDIR "$@" >>$WORKDIR/output.log 2>&1 $PODMAN_BIN \
--root $WORKDIR/root \
--runroot $WORKDIR/runroot \
"$@" >>$WORKDIR/output.log 2>&1
}
###################
# random_string # Returns a pseudorandom human-readable string
###################
function random_string() {
# Numeric argument, if present, is desired length of string
local length=${1:-10}
head /dev/urandom | tr -dc a-zA-Z0-9 | head -c$length
} }
# END infrastructure code # END infrastructure code
@ -345,17 +239,12 @@ done
############################################################################### ###############################################################################
# BEGIN entry handler (subtest invoker) # BEGIN entry handler (subtest invoker)
TESTS_DIR=$WORKDIR/awesome-compose
git clone $AWESOME_COMPOSE $TESTS_DIR
git -C $TESTS_DIR checkout -q a3c38822277bcca04abbadf34120dcff808db3ec
# Identify the tests to run. If called with args, use those as globs. # Identify the tests to run. If called with args, use those as globs.
tests_to_run=() tests_to_run=()
if [ -n "$*" ]; then if [ -n "$*" ]; then
shopt -s nullglob shopt -s nullglob
for i; do for i; do
match=(${TEST_ROOTDIR}/*${i}*.curl) match=(${TEST_ROOTDIR}/*${i}*/docker-compose.yml)
if [ ${#match} -eq 0 ]; then if [ ${#match} -eq 0 ]; then
die "No match for $TEST_ROOTDIR/*$i*.curl" die "No match for $TEST_ROOTDIR/*$i*.curl"
fi fi
@ -363,56 +252,68 @@ if [ -n "$*" ]; then
done done
shopt -u nullglob shopt -u nullglob
else else
tests_to_run=(${TEST_ROOTDIR}/*.curl) tests_to_run=(${TEST_ROOTDIR}/*/docker-compose.yml)
fi fi
# Test count: each of those tests might have a local set of subtests # Too hard to precompute the number of tests; just spit it out at the end.
n_tests=$((2 * ${#tests_to_run[*]})) n_tests=0
for t in ${tests_to_run[@]}; do for t in ${tests_to_run[@]}; do
n_curls=$(wc -l $t | awk '{print $1}') testdir="$(dirname $t)"
n_tests=$(( n_tests + n_curls )) testname="$(basename $testdir)"
done
if [ -e $test_dir/SKIP ]; then
echo "1..$n_tests" local reason="$(<$test_dir/SKIP)"
if [ -n "$reason" ]; then
for t in ${tests_to_run[@]}; do reason=" - $reason"
testname="$(basename $t .curl)" fi
_show_ok skip "$testname # skip$reason"
continue
fi
start_service start_service
logfile=$WORKDIR/$testname.log logfile=$WORKDIR/$testname.log
( (
cd $TESTS_DIR/$testname || die "Cannot cd $TESTS_DIR/$testname" cd $testdir || die "Cannot cd $testdir"
# setup file may be used for creating temporary directories/files.
# We source it so that envariables defined in it will get back to us.
if [ -e setup.sh ]; then
. setup.sh
fi
if [ -e teardown.sh ]; then
trap '. teardown.sh' 0
fi
docker-compose up -d &> $logfile docker-compose up -d &> $logfile
if [[ $? -ne 0 ]]; then docker_compose_rc=$?
_show_ok 0 "$testname - up" "[ok]" "$(< $logfile)" if [[ $docker_compose_rc -ne 0 ]]; then
# FIXME: cat log _show_ok 0 "$testname - up" "[ok]" "status=$docker_compose_rc"
sed -e 's/^/# /' <$logfile
docker-compose down >>$logfile 2>&1 # No status check here docker-compose down >>$logfile 2>&1 # No status check here
exit 1 exit 1
fi fi
_show_ok 1 "$testname - up" _show_ok 1 "$testname - up"
# FIXME: run tests, e.g. curl # Run tests. This is likely to be a series of 'test_port' checks
curls=$TEST_ROOTDIR/$testname.curl # but may also include podman commands to inspect labels, state
if [[ -e $curls ]]; then if [ -e tests.sh ]; then
while read port expect; do . tests.sh
actual=$(curl --retry 5 --retry-connrefused -s http://127.0.0.1:$port/) fi
curl_rc=$? # FIXME: if any tests fail, try 'podman logs' on container?
if [ $curl_rc -ne 0 ]; then
_show_ok 0 "$testname - curl failed with status $curl_rc" if [ -n "$COMPOSE_WAIT" ]; then
docker-compose down >>$logfile 2>&1 echo -n "Pausing due to \$COMPOSE_WAIT. Press ENTER to continue: "
exit 1 read keepgoing
fi
like "$actual" "$expect" "$testname : port $port"
done < $curls
fi fi
# Done. Clean up.
docker-compose down &> $logfile docker-compose down &> $logfile
if [[ $? -eq 0 ]]; then rc=$?
if [[ $rc -eq 0 ]]; then
_show_ok 1 "$testname - down" _show_ok 1 "$testname - down"
else else
_show_ok 0 "$testname - down" "[ok]" "$(< $logfile)" _show_ok 0 "$testname - down" "[ok]" "rc=$rc"
# FIXME: show error # FIXME: show error
fi fi
) )
@ -422,6 +323,9 @@ for t in ${tests_to_run[@]}; do
# FIXME: otherwise we get EBUSY # FIXME: otherwise we get EBUSY
umount $WORKDIR/root/overlay &>/dev/null umount $WORKDIR/root/overlay &>/dev/null
# FIXME: run 'podman ps'?
# rm -rf $WORKDIR/${testname}
done done
# END entry handler # END entry handler
@ -432,8 +336,10 @@ done
test_count=$(<$testcounter_file) test_count=$(<$testcounter_file)
failure_count=$(<$failures_file) failure_count=$(<$failures_file)
if [ -z "$PODMAN_TESTS_KEEP_WORKDIR" ]; then #if [ -z "$PODMAN_TESTS_KEEP_WORKDIR" ]; then
rm -rf $WORKDIR # rm -rf $WORKDIR
fi #fi
echo "1..${test_count}"
exit $failure_count exit $failure_count