Mercurial > hg > audiodb
changeset 90:52db1622dffe
Status tests for WS.
Note that at present, without SO_REUSEADDR on the soap server port,
these tests can fail if run quickly in succession. SO_REUSEADDR isn't
the whole answer -- what if there's some other process that wants that
port? -- but it's at least a partial one.
author | mas01cr |
---|---|
date | Tue, 02 Oct 2007 16:18:49 +0000 |
parents | 28211402b9c6 |
children | e128f58b0f08 |
files | tests/0015/run-test.sh tests/0015/short-description |
diffstat | 2 files changed, 41 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/0015/run-test.sh Tue Oct 02 16:18:49 2007 +0000 @@ -0,0 +1,40 @@ +#! /bin/bash + +. ../test-utils.sh + +if [ -f testdb ]; then rm -f testdb; fi + +start_server ${AUDIODB} 10015 + +${AUDIODB} -d testdb -N + +${AUDIODB} -c localhost:10015 -d testdb -S > test1 +${AUDIODB} -S -c localhost:10015 -d testdb > test2 +${AUDIODB} -S -d testdb -c localhost:10015 > test3 + +cat > testoutput <<EOF +numFiles = 0 +dim = 0 +length = 0 +dudCount = 0 +nullCount = 0 +flags = 0 +EOF + +cmp test1 test2 +cmp test2 test3 +cmp test3 testoutput + +check_server $! + +# FIXME: maybe at some point these will start exiting with a non-zero +# exit code. That's still OK; what's important is that the server +# doesn't stop running. +${AUDIODB} -c localhost:10015 -S -d /dev/null +${AUDIODB} -c localhost:10015 -S -d /tmp/foo-does-not-exist + +check_server $! + +stop_server $! + +exit 104