Mercurial > hg > sonic-annotator
diff tests/test-csv-writer/test-csv-writer.sh @ 156:0fd5c3c28814 labfile
Add CSV writer tests (passing!)
author | Chris Cannam |
---|---|
date | Tue, 14 Oct 2014 18:50:01 +0100 |
parents | tests/test-lab-writer/test-lab-writer.sh@6dc824c3f5e1 |
children | a2310369b2cc |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/test-csv-writer/test-csv-writer.sh Tue Oct 14 18:50:01 2014 +0100 @@ -0,0 +1,47 @@ +#!/bin/bash + +. ../include.sh + +infile=$audiopath/20sec-silence.wav +tmpcsv=$mypath/tmp_1_$$.csv + +trap "rm -f $tmpcsv" 0 + +for output in notes-regions curve-vsr; do + + flag="" + + $r -d "$testplug:$output" -w csv --csv-stdout "$infile" 2>/dev/null > "$tmpcsv" || \ + fail "Failed to run for plugin $testplug with output $output and no additional flags" + + csvcompare "$tmpcsv" "$mypath/expected/$output-no-flags.csv" || \ + faildiff "Output differs from expected for output $output and no additional flags" "$tmpcsv" "$mypath/expected/$output-no-flags.csv" + + flag=sample-timing + + $r -d "$testplug:$output" -w csv --csv-$flag --csv-stdout "$infile" 2>/dev/null > "$tmpcsv" || \ + fail "Failed to run for plugin $testplug with output $output and $flag flag" + + csvcompare "$tmpcsv" "$mypath/expected/$output-$flag.csv" || \ + faildiff "Output differs from expected for output $output and $flag flag" "$tmpcsv" "$mypath/expected/$output-$flag.csv" + + flag=end-times + + $r -d "$testplug:$output" -w csv --csv-$flag --csv-stdout "$infile" 2>/dev/null > "$tmpcsv" || \ + fail "Failed to run for plugin $testplug with output $output and $flag flag" + + csvcompare "$tmpcsv" "$mypath/expected/$output-$flag.csv" || \ + faildiff "Output differs from expected for output $output and $flag flag" "$tmpcsv" "$mypath/expected/$output-$flag.csv" + + flag=separator + + $r -d "$testplug:$output" -w csv --csv-$flag '@' --csv-stdout "$infile" 2>/dev/null > "$tmpcsv" || \ + fail "Failed to run for plugin $testplug with output $output and $flag flag" + + csvcompare "$tmpcsv" "$mypath/expected/$output-$flag.csv" || \ + faildiff "Output differs from expected for output $output and $flag flag" "$tmpcsv" "$mypath/expected/$output-$flag.csv" + +done + +exit 0 +