Changeset 5f5f843 for python/tests
- Timestamp:
- Apr 30, 2016, 4:17:31 PM (9 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
- Children:
- 355c761
- Parents:
- 2fe24df
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/tests/test_source.py
r2fe24df r5f5f843 5 5 from numpy import array 6 6 from utils import list_all_sounds 7 from nose2.tools import params 7 8 8 9 list_of_sounds = list_all_sounds('sounds') 10 samplerates = [0, 44100, 8000, 32000] 11 hop_sizes = [512, 1024, 64] 12 9 13 path = None 14 15 all_params = [] 16 for soundfile in list_of_sounds: 17 for hop_size in hop_sizes: 18 for samplerate in samplerates: 19 all_params.append((hop_size, samplerate, soundfile)) 20 10 21 11 22 class aubio_source_test_case_base(TestCase): … … 40 51 if read < f.hop_size: break 41 52 result_str = "read {:.2f}s ({:d} frames in {:d} blocks at {:d}Hz) from {:s}" 42 params = total_frames / float(f.samplerate), total_frames, int(total_frames/f.hop_size), f.samplerate, f.uri43 print (result_str.format(* params))53 result_params = total_frames / float(f.samplerate), total_frames, int(total_frames/f.hop_size), f.samplerate, f.uri 54 print (result_str.format(*result_params)) 44 55 return total_frames 45 56 46 def test_samplerate_hopsize(self): 47 for p in list_of_sounds: 48 for samplerate, hop_size in zip([0, 44100, 8000, 32000], [ 512, 512, 64, 256]): 49 f = source(p, samplerate, hop_size) 50 assert f.samplerate != 0 51 self.read_from_source(f) 57 @params(*all_params) 58 def test_samplerate_hopsize(self, hop_size, samplerate, soundfile): 59 try: 60 f = source(soundfile, samplerate, hop_size) 61 except RuntimeError as e: 62 self.skipTest('failed opening with hop_s = {:d}, samplerate = {:d} ({:s})'.format(hop_size, samplerate, e)) 63 assert f.samplerate != 0 64 self.read_from_source(f) 52 65 53 def test_samplerate_none(self):54 for p in list_of_sounds:55 56 57 66 @params(*list_of_sounds) 67 def test_samplerate_none(self, p): 68 f = source(p) 69 assert f.samplerate != 0 70 self.read_from_source(f) 58 71 59 def test_samplerate_0(self):60 for p in list_of_sounds:61 62 63 72 @params(*list_of_sounds) 73 def test_samplerate_0(self, p): 74 f = source(p, 0) 75 assert f.samplerate != 0 76 self.read_from_source(f) 64 77 65 def test_wrong_samplerate(self):66 for p in list_of_sounds:67 68 69 70 71 72 78 @params(*list_of_sounds) 79 def test_wrong_samplerate(self, p): 80 try: 81 f = source(p, -1) 82 except ValueError as e: 83 pass 84 else: 85 self.fail('negative samplerate does not raise ValueError') 73 86 74 def test_wrong_hop_size(self):75 for p in list_of_sounds:76 77 78 79 80 81 87 @params(*list_of_sounds) 88 def test_wrong_hop_size(self, p): 89 try: 90 f = source(p, 0, -1) 91 except ValueError as e: 92 pass 93 else: 94 self.fail('negative hop_size does not raise ValueError') 82 95 83 def test_zero_hop_size(self):84 for p in list_of_sounds:85 86 87 88 96 @params(*list_of_sounds) 97 def test_zero_hop_size(self, p): 98 f = source(p, 0, 0) 99 assert f.samplerate != 0 100 assert f.hop_size != 0 101 self.read_from_source(f) 89 102 90 def test_seek_to_half(self): 103 @params(*list_of_sounds) 104 def test_seek_to_half(self, p): 91 105 from random import randint 92 for p in list_of_sounds: 93 f = source(p, 0, 0) 94 assert f.samplerate != 0 95 assert f.hop_size != 0 96 a = self.read_from_source(f) 97 c = randint(0, a) 98 f.seek(c) 99 b = self.read_from_source(f) 100 assert a == b + c 106 f = source(p, 0, 0) 107 assert f.samplerate != 0 108 assert f.hop_size != 0 109 a = self.read_from_source(f) 110 c = randint(0, a) 111 f.seek(c) 112 b = self.read_from_source(f) 113 assert a == b + c 101 114 102 def test_duration(self):103 for p in list_of_sounds:104 105 106 107 108 109 110 111 115 @params(*list_of_sounds) 116 def test_duration(self, p): 117 total_frames = 0 118 f = source(p) 119 duration = f.duration 120 while True: 121 vec, read = f() 122 total_frames += read 123 if read < f.hop_size: break 124 self.assertEqual(duration, total_frames) 112 125 113 126 class aubio_source_readmulti_test_case(aubio_source_read_test_case): … … 120 133 if read < f.hop_size: break 121 134 result_str = "read {:.2f}s ({:d} frames in {:d} channels and {:d} blocks at {:d}Hz) from {:s}" 122 params = total_frames / float(f.samplerate), total_frames, f.channels, int(total_frames/f.hop_size), f.samplerate, f.uri123 print (result_str.format(* params))135 result_params = total_frames / float(f.samplerate), total_frames, f.channels, int(total_frames/f.hop_size), f.samplerate, f.uri 136 print (result_str.format(*result_params)) 124 137 return total_frames 125 138 126 139 if __name__ == '__main__': 127 from unittestimport main140 from nose2 import main 128 141 main()
Note: See TracChangeset
for help on using the changeset viewer.