X-Git-Url: https://code.grnet.gr/git/ganeti-local/blobdiff_plain/53dbf14cbc72aea2914624f1e1afe5a824343227..4a78c361a6de3bcbf98f02abfe41ae3b11de2b00:/test/import-export_unittest.bash diff --git a/test/import-export_unittest.bash b/test/import-export_unittest.bash index ea3b888..318ce5c 100755 --- a/test/import-export_unittest.bash +++ b/test/import-export_unittest.bash @@ -33,6 +33,11 @@ err() { } show_output() { + if [[ -s "$gencert_output" ]]; then + echo + echo 'Generating certificates:' + cat $gencert_output + fi if [[ -s "$dst_output" ]]; then echo echo 'Import output:' @@ -74,6 +79,8 @@ upto() { statusdir=$(mktemp -d) trap "rm -rf $statusdir" EXIT +gencert_output=$statusdir/gencert.output + src_statusfile=$statusdir/src.status src_output=$statusdir/src.output src_x509=$statusdir/src.pem @@ -81,19 +88,12 @@ src_x509=$statusdir/src.pem dst_statusfile=$statusdir/dst.status dst_output=$statusdir/dst.output dst_x509=$statusdir/dst.pem -dst_portfile=$statusdir/dst.port other_x509=$statusdir/other.pem testdata=$statusdir/data1 largetestdata=$statusdir/data2 -cmd_prefix= -cmd_suffix= -connect_timeout=10 -connect_retries=1 -compress=gzip - upto 'Command line parameter tests' $impexpd >/dev/null 2>&1 && @@ -108,9 +108,28 @@ $impexpd $src_statusfile >/dev/null 2>&1 && $impexpd $src_statusfile invalidmode >/dev/null 2>&1 && err "daemon-util succeeded with invalid mode" -$impexpd $src_statusfile import --compression=rot13 >/dev/null 2>&1 && - err "daemon-util succeeded with invalid compression" +for mode in import export; do + $impexpd $src_statusfile $mode --compression=rot13 >/dev/null 2>&1 && + err "daemon-util succeeded with invalid compression" + for host in '' ' ' ' s p a c e' ... , foo.example.net... \ + 'some"evil"name' 'x\ny\tmoo'; do + $impexpd $src_statusfile $mode --host="$host" >/dev/null 2>&1 && + err "daemon-util succeeded with invalid host '$host'" + done + + for port in '' ' ' -1234 'some ` port " here'; do + $impexpd $src_statusfile $mode --port="$port" >/dev/null 2>&1 && + err "daemon-util succeeded with invalid port '$port'" + done + + for magic in '' ' ' 'this`is' 'invalid!magic' 'he"re'; do + $impexpd $src_statusfile $mode --magic="$magic" >/dev/null 2>&1 && + err "daemon-util succeeded with invalid magic '$magic'" + done +done + +upto 'Generate test data' cat $(get_testfile proc_drbd8.txt) $(get_testfile cert1.pem) > $testdata # Generate about 7.5 MB of test data @@ -128,35 +147,29 @@ impexpd_helper() { $PYTHON $(get_testpath)/import-export_unittest-helper "$@" } -reset_status() { - rm -f $src_statusfile $dst_output $dst_statusfile $dst_output $dst_portfile -} - -write_data() { - local fname=${1:-$testdata} +start_test() { + upto "$@" - # Wait for connection to be established - impexpd_helper $src_statusfile connected + rm -f $src_statusfile $dst_output $dst_statusfile $dst_output + rm -f $gencert_output - # And just to be sure, also wait for destination to report as connected - impexpd_helper $dst_statusfile connected + imppid= + exppid= - cat $fname + cmd_prefix= + cmd_suffix= + connect_timeout=30 + connect_retries=1 + compress=gzip + magic= } -do_export() { +wait_import_ready() { # Wait for listening port - impexpd_helper $dst_statusfile listen-port > $dst_portfile - - local port=$(< $dst_portfile) - - test -n "$port" || err 'Empty port file' - test "$port" != None || err 'Missing port' - - do_export_to_port $port + impexpd_helper $dst_statusfile listen-port } -do_export_to_port() { +do_export() { local port=$1 $impexpd $src_statusfile export --bind=127.0.0.1 \ @@ -165,7 +178,7 @@ do_export_to_port() { --cmd-prefix="$cmd_prefix" --cmd-suffix="$cmd_suffix" \ --connect-timeout=$connect_timeout \ --connect-retries=$connect_retries \ - --compress=$compress + --compress=$compress ${magic:+--magic="$magic"} } do_import() { @@ -175,118 +188,168 @@ do_import() { --cmd-prefix="$cmd_prefix" --cmd-suffix="$cmd_suffix" \ --connect-timeout=$connect_timeout \ --connect-retries=$connect_retries \ - --compress=$compress + --compress=$compress ${magic:+--magic="$magic"} } upto 'Generate X509 certificates and keys' -impexpd_helper $src_x509 gencert -impexpd_helper $dst_x509 gencert -impexpd_helper $other_x509 gencert +impexpd_helper $src_x509 gencert 2>$gencert_output & srccertpid=$! +impexpd_helper $dst_x509 gencert 2>$gencert_output & dstcertpid=$! +impexpd_helper $other_x509 gencert 2>$gencert_output & othercertpid=$! +checkpids $srccertpid $dstcertpid $othercertpid || \ + err 'Failed to generate certificates' -upto 'Normal case' -reset_status +start_test 'Normal case' do_import > $statusdir/recv1 2>$dst_output & imppid=$! -{ write_data | do_export; } &>$src_output & exppid=$! +if port=$(wait_import_ready 2>$src_output); then + do_export $port < $testdata >>$src_output 2>&1 & exppid=$! +fi checkpids $exppid $imppid || err 'An error occurred' cmp $testdata $statusdir/recv1 || err 'Received data does not match input' -upto 'Export using wrong CA' -reset_status +start_test 'Export using wrong CA' # Setting lower timeout to not wait for too long connect_timeout=1 do_import &>$dst_output & imppid=$! -: | dst_x509=$other_x509 do_export &>$src_output & exppid=$! +if port=$(wait_import_ready 2>$src_output); then + : | dst_x509=$other_x509 do_export $port >>$src_output 2>&1 & exppid=$! +fi checkpids $exppid $imppid && err 'Export did not fail when using wrong CA' -upto 'Import using wrong CA' -reset_status +start_test 'Import using wrong CA' # Setting lower timeout to not wait for too long src_x509=$other_x509 connect_timeout=1 do_import &>$dst_output & imppid=$! -: | do_export &>$src_output & exppid=$! +if port=$(wait_import_ready 2>$src_output); then + : | do_export $port >>$src_output 2>&1 & exppid=$! +fi checkpids $exppid $imppid && err 'Import did not fail when using wrong CA' -upto 'Suffix command on import' -reset_status +start_test 'Suffix command on import' cmd_suffix="| cksum > $statusdir/recv2" do_import &>$dst_output & imppid=$! -{ write_data | do_export; } &>$src_output & exppid=$! +if port=$(wait_import_ready 2>$src_output); then + do_export $port < $testdata >>$src_output 2>&1 & exppid=$! +fi checkpids $exppid $imppid || err 'Testing additional commands failed' cmp $statusdir/recv2 <(cksum < $testdata) || \ err 'Checksum of received data does not match' -upto 'Prefix command on export' -reset_status +start_test 'Prefix command on export' do_import > $statusdir/recv3 2>$dst_output & imppid=$! -{ write_data | cmd_prefix="cksum |" do_export; } &>$src_output & exppid=$! +if port=$(wait_import_ready 2>$src_output); then + cmd_prefix='cksum |' do_export $port <$testdata >>$src_output 2>&1 & exppid=$! +fi checkpids $exppid $imppid || err 'Testing additional commands failed' cmp $statusdir/recv3 <(cksum < $testdata) || \ err 'Received checksum does not match' -upto 'Failing prefix command on export' -reset_status -: | cmd_prefix='exit 1;' do_export_to_port 0 &>$src_output & exppid=$! +start_test 'Failing prefix command on export' +: | cmd_prefix='exit 1;' do_export 0 &>$src_output & exppid=$! checkpids $exppid && err 'Prefix command on export did not fail when it should' -upto 'Failing suffix command on export' -reset_status -do_import >&$src_output & imppid=$! -: | cmd_suffix='| exit 1' do_export &>$dst_output & exppid=$! +start_test 'Failing suffix command on export' +do_import >&$dst_output & imppid=$! +if port=$(wait_import_ready 2>$src_output); then + : | cmd_suffix='| exit 1' do_export $port >>$src_output 2>&1 & exppid=$! +fi checkpids $imppid $exppid && \ err 'Suffix command on export did not fail when it should' -upto 'Failing prefix command on import' -reset_status +start_test 'Failing prefix command on import' cmd_prefix='exit 1;' do_import &>$dst_output & imppid=$! checkpids $imppid && err 'Prefix command on import did not fail when it should' -upto 'Failing suffix command on import' -reset_status +start_test 'Failing suffix command on import' cmd_suffix='| exit 1' do_import &>$dst_output & imppid=$! -: | do_export &>$src_output & exppid=$! +if port=$(wait_import_ready 2>$src_output); then + : | do_export $port >>$src_output 2>&1 & exppid=$! +fi checkpids $imppid $exppid && \ err 'Suffix command on import did not fail when it should' -upto 'Listen timeout A' -reset_status +start_test 'Listen timeout A' # Setting lower timeout to not wait too long (there won't be anything trying to # connect) connect_timeout=1 do_import &>$dst_output & imppid=$! checkpids $imppid && \ err 'Listening with timeout did not fail when it should' -upto 'Listen timeout B' -reset_status +start_test 'Listen timeout B' do_import &>$dst_output & imppid=$! -{ sleep 1; : | do_export; } &>$src_output & exppid=$! +if port=$(wait_import_ready 2>$src_output); then + { sleep 1; : | do_export $port; } >>$src_output 2>&1 & exppid=$! +fi checkpids $exppid $imppid || \ err 'Listening with timeout failed when it should not' -upto 'No compression' -reset_status +start_test 'Connect timeout' +# Setting lower timeout as nothing will be listening on port 0 +: | connect_timeout=1 do_export 0 &>$src_output & exppid=$! +checkpids $exppid && err 'Connection did not time out when it should' + +start_test 'No compression' compress=none do_import > $statusdir/recv-nocompr 2>$dst_output & imppid=$! -{ write_data | compress=none do_export; } &>$src_output & exppid=$! +if port=$(wait_import_ready 2>$src_output); then + compress=none do_export $port < $testdata >>$src_output 2>&1 & exppid=$! +fi checkpids $exppid $imppid || err 'An error occurred' cmp $testdata $statusdir/recv-nocompr || \ err 'Received data does not match input' -upto 'Compression mismatch A' -reset_status +start_test 'Compression mismatch A' compress=none do_import > $statusdir/recv-miscompr 2>$dst_output & imppid=$! -{ write_data | compress=gzip do_export; } &>$src_output & exppid=$! +if port=$(wait_import_ready 2>$src_output); then + compress=gzip do_export $port < $testdata >>$src_output 2>&1 & exppid=$! +fi checkpids $exppid $imppid || err 'An error occurred' cmp -s $testdata $statusdir/recv-miscompr && \ err 'Received data matches input when it should not' -upto 'Compression mismatch B' -reset_status +start_test 'Compression mismatch B' compress=gzip do_import > $statusdir/recv-miscompr2 2>$dst_output & imppid=$! -{ write_data | compress=none do_export; } &>$src_output & exppid=$! +if port=$(wait_import_ready 2>$src_output); then + compress=none do_export $port < $testdata >>$src_output 2>&1 & exppid=$! +fi checkpids $exppid $imppid && err 'Did not fail when it should' cmp -s $testdata $statusdir/recv-miscompr2 && \ err 'Received data matches input when it should not' -upto 'Large transfer' -reset_status +start_test 'Magic without compression' +compress=none magic=MagicValue13582 \ +do_import > $statusdir/recv-magic1 2>$dst_output & imppid=$! +if port=$(wait_import_ready 2>$src_output); then + compress=none magic=MagicValue13582 \ + do_export $port < $testdata >>$src_output 2>&1 & exppid=$! +fi +checkpids $exppid $imppid || err 'An error occurred' +cmp $testdata $statusdir/recv-magic1 || err 'Received data does not match input' + +start_test 'Magic with compression' +compress=gzip magic=yzD1FBH7Iw \ +do_import > $statusdir/recv-magic2 2>$dst_output & imppid=$! +if port=$(wait_import_ready 2>$src_output); then + compress=gzip magic=yzD1FBH7Iw \ + do_export $port < $testdata >>$src_output 2>&1 & exppid=$! +fi +checkpids $exppid $imppid || err 'An error occurred' +cmp $testdata $statusdir/recv-magic2 || err 'Received data does not match input' + +start_test 'Magic mismatch A (same length)' +magic=h0tmIKXK do_import > $statusdir/recv-magic3 2>$dst_output & imppid=$! +if port=$(wait_import_ready 2>$src_output); then + magic=bo6m9uAw do_export $port < $testdata >>$src_output 2>&1 & exppid=$! +fi +checkpids $exppid $imppid && err 'Did not fail when it should' + +start_test 'Magic mismatch B' +magic=AUxVEWXVr5GK do_import > $statusdir/recv-magic4 2>$dst_output & imppid=$! +if port=$(wait_import_ready 2>$src_output); then + magic=74RiP9KP do_export $port < $testdata >>$src_output 2>&1 & exppid=$! +fi +checkpids $exppid $imppid && err 'Did not fail when it should' + +start_test 'Large transfer' do_import > $statusdir/recv-large 2>$dst_output & imppid=$! -{ write_data $largetestdata | do_export; } &>$src_output & exppid=$! +if port=$(wait_import_ready 2>$src_output); then + do_export $port < $largetestdata >>$src_output 2>&1 & exppid=$! +fi checkpids $exppid $imppid || err 'An error occurred' cmp $largetestdata $statusdir/recv-large || \ err 'Received data does not match input'