summaryrefslogtreecommitdiff
path: root/tests/test_base.py
diff options
context:
space:
mode:
authorJohn Glover <j@johnglover.net>2012-06-30 10:49:36 +0100
committerJohn Glover <j@johnglover.net>2012-06-30 10:49:36 +0100
commit3e690c70064d884d0e750db3ae6fcf47f1807ab4 (patch)
tree46d7a1156afc043bc452aaddb358aefe4b642049 /tests/test_base.py
parent08c52adafddabeb6c7f89bebd84f0ca830d9e7a5 (diff)
downloadsimpl-3e690c70064d884d0e750db3ae6fcf47f1807ab4.tar.gz
simpl-3e690c70064d884d0e750db3ae6fcf47f1807ab4.tar.bz2
simpl-3e690c70064d884d0e750db3ae6fcf47f1807ab4.zip
Restructure class files.
Group classes by type (peak detection, partial tracking, etc) rather than by algorithm name. This is because Cython needs the full inheritance hierarchy to be in the same file.
Diffstat (limited to 'tests/test_base.py')
-rw-r--r--tests/test_base.py68
1 files changed, 0 insertions, 68 deletions
diff --git a/tests/test_base.py b/tests/test_base.py
index 1fe5881..9d3173a 100644
--- a/tests/test_base.py
+++ b/tests/test_base.py
@@ -1,7 +1,6 @@
import os
import numpy as np
from nose.tools import assert_almost_equals
-import simpl
import simpl.base as base
float_precision = 5
@@ -69,70 +68,3 @@ class TestFrame(object):
float_precision)
assert_almost_equals(f.partial(0).frequency, p.frequency,
float_precision)
-
-
-class TestPeakDetection(object):
- @classmethod
- def setup_class(cls):
- cls.audio = simpl.read_wav(audio_path)[0]
-
- def test_peak_detection(self):
- pd = base.PeakDetection()
- pd.find_peaks(self.audio)
-
- assert len(pd.frames) == len(self.audio) / hop_size
- assert len(pd.frames[0].peaks) == 0
-
-
-class TestPartialTracking(object):
- @classmethod
- def setup_class(cls):
- cls.audio = simpl.read_wav(audio_path)[0]
-
- def test_partial_tracking(self):
- pd = base.PeakDetection()
- frames = pd.find_peaks(self.audio)
-
- pt = base.PartialTracking()
- frames = pt.find_partials(frames)
-
- assert len(frames) == len(self.audio) / hop_size
- assert len(frames[0].partials) == 100
-
-
-class TestSynthesis(object):
- @classmethod
- def setup_class(cls):
- cls.audio = simpl.read_wav(audio_path)[0]
-
- def test_synthesis(self):
- pd = base.PeakDetection()
- frames = pd.find_peaks(self.audio)
-
- pt = base.PartialTracking()
- frames = pt.find_partials(frames)
-
- s = base.Synthesis()
- synth_audio = s.synth(frames)
-
- assert len(synth_audio)
-
-
-class TestResidual(object):
- @classmethod
- def setup_class(cls):
- cls.audio = simpl.read_wav(audio_path)[0]
-
- def test_synthesis(self):
- pd = base.PeakDetection()
- frames = pd.find_peaks(self.audio)
-
- pt = base.PartialTracking()
- frames = pt.find_partials(frames)
-
- s = base.Synthesis()
- synth_audio = s.synth(frames)
-
- r = base.Residual()
- residual_audio = r.find_residual(synth_audio, self.audio)
- assert len(residual_audio)