source: python.old/tests_examples/aubioonset.py @ bea5389

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since bea5389 was bea5389, checked in by Paul Brossier <piem@piem.org>, 11 years ago

moved old python stuff out of tests/

  • Property mode set to 100644
File size: 1.4 KB
Line 
1from template import program_test_case
2
3class 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_with_inf_silence(self):
10    """ test aubioonset with -s 0  """
11    self.command += " -s 0" 
12    self.getOutput()
13    assert len(self.output) == 0, self.output
14
15class aubioonset_unit_finds_onset(aubioonset_unit):
16
17  def test_aubioonset(self):
18    """ test aubioonset with default parameters """
19    self.getOutput()
20    assert len(str(self.output)) != 0, "no output produced with command:\n" \
21      + self.command
22
23  def test_aubioonset_with_no_silence(self):
24    """ test aubioonset with -s -100 """ 
25    self.command += " -s -100 " 
26    self.getOutput()
27    # only one onset in woodblock.aiff
28    self.assertNotEqual(0, len(str(self.output)), \
29      "no output produced with command:\n" + self.command)
30    self.assertEqual(1, len(self.output.split('\n')) )
31    # onset should be at 0.00000
32    self.assertEqual(0, float(self.output.strip()))
33
34list_of_onset_modes = ["energy", "specdiff", "hfc", "complex", "phase", \
35                      "kl", "mkl", "specflux"]
36
37for name in list_of_onset_modes:
38  exec("class aubioonset_"+name+"_unit(aubioonset_unit):\n\
39  options = \" -O "+name+" \"")
40
41if __name__ == '__main__': unittest.main()
Note: See TracBrowser for help on using the repository browser.