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
|
#!/bin/bash
# Buzztrax
# Copyright (C) 2007 Buzztrax team <buzztrax-devel@buzztrax.org>
#
# run buzztrax-cmd commandline options
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Library General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Library General Public License for more details.
#
# You should have received a copy of the GNU Library General Public
# License along with this library; if not, see <http://www.gnu.org/licenses/>.
# test the output a little
testHelpOutput()
{
$LIBTOOL $BUZZTRAX_CMD --help | grep >/dev/null -- "--help-bt-core"
assertEquals $? 0
}
testVersionOutput()
{
$LIBTOOL $BUZZTRAX_CMD --version | grep >/dev/null -- "buzztrax-cmd from buzztrax"
assertEquals $? 0
}
# here we test that these don't crash
testOptions()
{
$LIBTOOL $BUZZTRAX_CMD >/dev/null 2>&1 --quiet
$LIBTOOL $BUZZTRAX_CMD >/dev/null 2>&1 --command
$LIBTOOL $BUZZTRAX_CMD >/dev/null 2>&1 --command=info
$LIBTOOL $BUZZTRAX_CMD >/dev/null 2>&1 --command=play
$LIBTOOL $BUZZTRAX_CMD >/dev/null 2>&1 --command=convert
$LIBTOOL $BUZZTRAX_CMD >/dev/null 2>&1 --command=encode
$LIBTOOL $BUZZTRAX_CMD >/dev/null 2>&1 --command=does_not_exist
$LIBTOOL $BUZZTRAX_CMD >/dev/null 2>&1 --input-file
$LIBTOOL $BUZZTRAX_CMD >/dev/null 2>&1 --input-file=$TESTSONGDIR
$LIBTOOL $BUZZTRAX_CMD >/dev/null 2>&1 --output-file
$LIBTOOL $BUZZTRAX_CMD >/dev/null 2>&1 --output-file=$TESTRESULTDIR
}
# do something real
testPlayCommand()
{
$LIBTOOL $BUZZTRAX_CMD >/dev/null 2>&1 --command=play --input-file=$TESTSONGDIR/test-simple1.xml
}
testPlayCommandWithQuietOption()
{
$LIBTOOL $BUZZTRAX_CMD >/dev/null 2>&1 --command=play -q --input-file=$TESTSONGDIR/simple2.xml
}
testConvertCommand() {
tmpfile=$SHUNIT_TMPDIR/simple2.out.xml
$LIBTOOL $BUZZTRAX_CMD >/dev/null 2>&1 --command=convert -q --input-file=$TESTSONGDIR/simple2.xml --output-file=$tmpfile
if [ ! -r $tmpfile ]; then
fail "output $tmpfile file missing, have: $(ls -al $SHUNIT_TMPDIR/simple2*)"
fi
rm -f $tmpfile
}
testEncodeCommand() {
tmpfile=$SHUNIT_TMPDIR/simple2.wav
$LIBTOOL $BUZZTRAX_CMD >/dev/null 2>&1 --command=encode -q --input-file=$TESTSONGDIR/simple2.xml --output-file=$tmpfile
if [ ! -r $tmpfile ]; then
fail "output $tmpfile file missing, have: $(ls -al $SHUNIT_TMPDIR/simple2*)"
fi
rm -f $tmpfile
}
testEncodeCommandGuessFormat() {
tmpfile=$SHUNIT_TMPDIR/simple2.vorbis.ogg
$LIBTOOL $BUZZTRAX_CMD >/dev/null 2>&1 --command=encode -q --input-file=$TESTSONGDIR/simple2.xml --output-file=$SHUNIT_TMPDIR/simple2
if [ ! -r $tmpfile ]; then
fail "output $tmpfile file missing, have: $(ls -al $SHUNIT_TMPDIR/simple2*)"
fi
rm -f $tmpfile
}
# check what happens when we face a broken setup
#GST_PLUGIN_SYSTEM_PATH=/tmp GST_PLUGIN_PATH=/tmp $BUZZTRAX_CMD --command=play --input-file=$TESTSONGDIR/melo3.xml
# load configuration
. ./tests/bt-cfg.sh
# load shunit2
. $TESTSRCDIR/shunit2
|