1 | from template import * |
---|
2 | |
---|
3 | class aubioonset_unit(program_test_case): |
---|
4 | |
---|
5 | import os.path |
---|
6 | filename = os.path.join('..','..','sounds','woodblock.aiff') |
---|
7 | progname = os.path.join('..','..','examples','aubioonset') |
---|
8 | |
---|
9 | def test_aubioonset(self): |
---|
10 | """ test aubioonset with default parameters """ |
---|
11 | self.getOutput() |
---|
12 | assert len(str(self.output)) != 0, "no output produced with command:\n" \ |
---|
13 | + self.command |
---|
14 | |
---|
15 | def test_aubioonset_with_inf_silence(self): |
---|
16 | """ test aubioonset with -s 0 """ |
---|
17 | self.command += " -s 0" |
---|
18 | self.getOutput() |
---|
19 | assert len(self.output) == 0, self.output |
---|
20 | |
---|
21 | def test_aubioonset_with_no_silence(self): |
---|
22 | """ test aubioonset with -s -100 """ |
---|
23 | self.command += " -s -100 " |
---|
24 | self.getOutput() |
---|
25 | # only one onset in woodblock.aiff |
---|
26 | self.assertNotEqual(0, len(str(self.output)), \ |
---|
27 | "no output produced with command:\n" + self.command) |
---|
28 | self.assertEqual(1, len(self.output.split('\n')) ) |
---|
29 | # onset should be at 0.00000 |
---|
30 | self.assertEqual(0, float(self.output.strip())) |
---|
31 | |
---|
32 | list_of_onset_modes = ["energy", "specdiff", "hfc", "complex", "phase", \ |
---|
33 | "kl", "mkl", "specflux"] |
---|
34 | |
---|
35 | for name in list_of_onset_modes: |
---|
36 | exec("class aubioonset_"+name+"_unit(aubioonset_unit):\n\ |
---|
37 | options = \" -O "+name+" \"") |
---|
38 | |
---|
39 | if __name__ == '__main__': unittest.main() |
---|