[e1bfde5] | 1 | #! /usr/bin/env python |
---|
| 2 | |
---|
[0b6d23d] | 3 | from nose2 import main |
---|
[2fe24df] | 4 | from nose2.tools import params |
---|
[0b6d23d] | 5 | from numpy.testing import TestCase |
---|
[e1bfde5] | 6 | from aubio import fvec, source, sink |
---|
[a1bf01d] | 7 | from .utils import list_all_sounds, get_tmp_sink_path, del_tmp_sink_path |
---|
[e1bfde5] | 8 | |
---|
[fa6373c] | 9 | import warnings |
---|
| 10 | warnings.filterwarnings('ignore', category=UserWarning, append=True) |
---|
| 11 | |
---|
[e1bfde5] | 12 | list_of_sounds = list_all_sounds('sounds') |
---|
[2fe24df] | 13 | samplerates = [0, 44100, 8000, 32000] |
---|
| 14 | hop_sizes = [512, 1024, 64] |
---|
| 15 | |
---|
[e1bfde5] | 16 | path = None |
---|
| 17 | |
---|
[ab35262] | 18 | many_files = 300 # 256 opened files is too much |
---|
| 19 | |
---|
[2fe24df] | 20 | all_params = [] |
---|
| 21 | for soundfile in list_of_sounds: |
---|
| 22 | for hop_size in hop_sizes: |
---|
| 23 | for samplerate in samplerates: |
---|
| 24 | all_params.append((hop_size, samplerate, soundfile)) |
---|
| 25 | |
---|
[e1bfde5] | 26 | class aubio_sink_test_case(TestCase): |
---|
| 27 | |
---|
[2fe24df] | 28 | def setUp(self): |
---|
| 29 | if not len(list_of_sounds): |
---|
| 30 | self.skipTest('add some sound files in \'python/tests/sounds\'') |
---|
| 31 | |
---|
[fa6373c] | 32 | def test_wrong_filename(self): |
---|
| 33 | with self.assertRaises(RuntimeError): |
---|
| 34 | sink('') |
---|
| 35 | |
---|
| 36 | def test_wrong_samplerate(self): |
---|
| 37 | with self.assertRaises(RuntimeError): |
---|
| 38 | sink(get_tmp_sink_path(), -1) |
---|
| 39 | |
---|
| 40 | def test_wrong_samplerate_too_large(self): |
---|
| 41 | with self.assertRaises(RuntimeError): |
---|
| 42 | sink(get_tmp_sink_path(), 1536001, 2) |
---|
| 43 | |
---|
| 44 | def test_wrong_channels(self): |
---|
| 45 | with self.assertRaises(RuntimeError): |
---|
| 46 | sink(get_tmp_sink_path(), 44100, -1) |
---|
| 47 | |
---|
| 48 | def test_wrong_channels_too_large(self): |
---|
| 49 | with self.assertRaises(RuntimeError): |
---|
| 50 | sink(get_tmp_sink_path(), 44100, 202020) |
---|
| 51 | |
---|
[9e6695d] | 52 | def test_many_sinks(self): |
---|
[ab35262] | 53 | from tempfile import mkdtemp |
---|
| 54 | import os.path |
---|
| 55 | import shutil |
---|
| 56 | tmpdir = mkdtemp() |
---|
| 57 | sink_list = [] |
---|
| 58 | for i in range(many_files): |
---|
| 59 | path = os.path.join(tmpdir, 'f-' + str(i) + '.wav') |
---|
| 60 | g = sink(path, 0) |
---|
| 61 | sink_list.append(g) |
---|
| 62 | write = 32 |
---|
[0b6d23d] | 63 | for _ in range(200): |
---|
[9e6695d] | 64 | vec = fvec(write) |
---|
| 65 | g(vec, write) |
---|
[ab35262] | 66 | g.close() |
---|
| 67 | shutil.rmtree(tmpdir) |
---|
| 68 | |
---|
[2fe24df] | 69 | @params(*all_params) |
---|
| 70 | def test_read_and_write(self, hop_size, samplerate, path): |
---|
[e1bfde5] | 71 | |
---|
[2fe24df] | 72 | try: |
---|
| 73 | f = source(path, samplerate, hop_size) |
---|
| 74 | except RuntimeError as e: |
---|
[5de7f98] | 75 | self.skipTest('failed opening with hop_s = {:d}, samplerate = {:d} ({:s})'.format(hop_size, samplerate, str(e))) |
---|
[2fe24df] | 76 | if samplerate == 0: samplerate = f.samplerate |
---|
| 77 | sink_path = get_tmp_sink_path() |
---|
| 78 | g = sink(sink_path, samplerate) |
---|
| 79 | total_frames = 0 |
---|
| 80 | while True: |
---|
| 81 | vec, read = f() |
---|
| 82 | g(vec, read) |
---|
| 83 | total_frames += read |
---|
| 84 | if read < f.hop_size: break |
---|
| 85 | del_tmp_sink_path(sink_path) |
---|
[060a3135] | 86 | |
---|
[2fe24df] | 87 | @params(*all_params) |
---|
| 88 | def test_read_and_write_multi(self, hop_size, samplerate, path): |
---|
| 89 | try: |
---|
| 90 | f = source(path, samplerate, hop_size) |
---|
| 91 | except RuntimeError as e: |
---|
[5de7f98] | 92 | self.skipTest('failed opening with hop_s = {:d}, samplerate = {:d} ({:s})'.format(hop_size, samplerate, str(e))) |
---|
[2fe24df] | 93 | if samplerate == 0: samplerate = f.samplerate |
---|
| 94 | sink_path = get_tmp_sink_path() |
---|
| 95 | g = sink(sink_path, samplerate, channels = f.channels) |
---|
| 96 | total_frames = 0 |
---|
| 97 | while True: |
---|
| 98 | vec, read = f.do_multi() |
---|
| 99 | g.do_multi(vec, read) |
---|
| 100 | total_frames += read |
---|
| 101 | if read < f.hop_size: break |
---|
| 102 | del_tmp_sink_path(sink_path) |
---|
[060a3135] | 103 | |
---|
[4949182] | 104 | def test_close_file(self): |
---|
| 105 | samplerate = 44100 |
---|
[ab35262] | 106 | sink_path = get_tmp_sink_path() |
---|
| 107 | g = sink(sink_path, samplerate) |
---|
[4949182] | 108 | g.close() |
---|
[ab35262] | 109 | del_tmp_sink_path(sink_path) |
---|
[4949182] | 110 | |
---|
| 111 | def test_close_file_twice(self): |
---|
| 112 | samplerate = 44100 |
---|
[ab35262] | 113 | sink_path = get_tmp_sink_path() |
---|
| 114 | g = sink(sink_path, samplerate) |
---|
[4949182] | 115 | g.close() |
---|
| 116 | g.close() |
---|
[ab35262] | 117 | del_tmp_sink_path(sink_path) |
---|
[4949182] | 118 | |
---|
[e1bfde5] | 119 | if __name__ == '__main__': |
---|
[9e6695d] | 120 | main() |
---|