diff options
author | John Glover <j@johnglover.net> | 2013-01-11 17:44:05 +0100 |
---|---|---|
committer | John Glover <j@johnglover.net> | 2013-01-11 17:44:05 +0100 |
commit | ad704b5e9c985765e14eb38a0922e702b8bfc25a (patch) | |
tree | a1aa9e55e4df46c1f30ec33d301370ae44b7f1af /tests/test_synthesis.cpp | |
parent | 971a93d0676914837cdef22afa26f020b7be9041 (diff) | |
download | simpl-ad704b5e9c985765e14eb38a0922e702b8bfc25a.tar.gz simpl-ad704b5e9c985765e14eb38a0922e702b8bfc25a.tar.bz2 simpl-ad704b5e9c985765e14eb38a0922e702b8bfc25a.zip |
[tests] Tidy up test C++ tests.
All tests can now be run from a single executable
called 'tests' (created in the build directory).
Diffstat (limited to 'tests/test_synthesis.cpp')
-rw-r--r-- | tests/test_synthesis.cpp | 177 |
1 files changed, 63 insertions, 114 deletions
diff --git a/tests/test_synthesis.cpp b/tests/test_synthesis.cpp index fa49016..e0d5142 100644 --- a/tests/test_synthesis.cpp +++ b/tests/test_synthesis.cpp @@ -1,133 +1,82 @@ -#include <iostream> -#include <cppunit/ui/text/TextTestRunner.h> -#include <cppunit/TestResult.h> -#include <cppunit/TestResultCollector.h> -#include <cppunit/extensions/HelperMacros.h> -#include <cppunit/BriefTestProgressListener.h> -#include <cppunit/extensions/TestFactoryRegistry.h> -#include <sndfile.hh> - -#include "../src/simpl/base.h" -#include "../src/simpl/peak_detection.h" -#include "../src/simpl/partial_tracking.h" -#include "../src/simpl/synthesis.h" - -namespace simpl -{ +#include "test_synthesis.h" + +using namespace simpl; // --------------------------------------------------------------------------- // TestMQSynthesis // --------------------------------------------------------------------------- -class TestMQSynthesis : public CPPUNIT_NS::TestCase { - CPPUNIT_TEST_SUITE(TestMQSynthesis); - CPPUNIT_TEST(test_basic); - CPPUNIT_TEST_SUITE_END(); - -protected: - static const double PRECISION = 0.001; - MQPeakDetection* pd; - MQPartialTracking* pt; - MQSynthesis* synth; - SndfileHandle sf; - int num_samples; - - void test_basic() { - sample* audio = new sample[(int)sf.frames()]; - sf.read(audio, (int)sf.frames()); - Frames frames = pd->find_peaks(num_samples, &(audio[(int)sf.frames() / 2])); - frames = pt->find_partials(frames); - frames = synth->synth(frames); - - for(int i = 0; i < frames.size(); i++) { - CPPUNIT_ASSERT(frames[i]->num_peaks() > 0); - CPPUNIT_ASSERT(frames[i]->num_partials() > 0); - - double energy = 0.f; - for(int j = 0; j < synth->hop_size(); j++) { - energy += frames[i]->synth()[j] * frames[i]->synth()[j]; - } - CPPUNIT_ASSERT(energy > 0.f); - } - } +void TestMQSynthesis::setUp() { + _sf = SndfileHandle(TEST_AUDIO_FILE); -public: - void setUp() { - pd = new MQPeakDetection(); - pt = new MQPartialTracking(); - synth = new MQSynthesis(); - sf = SndfileHandle("../tests/audio/flute.wav"); - num_samples = 4096; + if(_sf.error() > 0) { + throw Exception(std::string("Could not open audio file: ") + + std::string(TEST_AUDIO_FILE)); } +} + +void TestMQSynthesis::test_basic() { + int num_samples = 4096; - void tearDown() { - delete pd; - delete pt; - delete synth; + std::vector<sample> audio(_sf.frames(), 0.0); + _sf.read(&audio[0], (int)_sf.frames()); + + _pd.clear(); + _pt.reset(); + _synth.reset(); + + Frames frames = _pd.find_peaks(num_samples, + &(audio[(int)_sf.frames() / 2])); + frames = _pt.find_partials(frames); + frames = _synth.synth(frames); + + for(int i = 0; i < frames.size(); i++) { + CPPUNIT_ASSERT(frames[i]->num_peaks() > 0); + CPPUNIT_ASSERT(frames[i]->num_partials() > 0); + + double energy = 0.f; + for(int j = 0; j < _synth.hop_size(); j++) { + energy += frames[i]->synth()[j] * frames[i]->synth()[j]; + } + CPPUNIT_ASSERT(energy > 0.f); } -}; +} + // --------------------------------------------------------------------------- // TestLorisSynthesis // --------------------------------------------------------------------------- -class TestLorisSynthesis : public CPPUNIT_NS::TestCase { - CPPUNIT_TEST_SUITE(TestLorisSynthesis); - CPPUNIT_TEST(test_basic); - CPPUNIT_TEST_SUITE_END(); - -protected: - static const double PRECISION = 0.001; - LorisPeakDetection* pd; - LorisPartialTracking* pt; - LorisSynthesis* synth; - SndfileHandle sf; - int num_samples; - - void test_basic() { - sample* audio = new sample[(int)sf.frames()]; - sf.read(audio, (int)sf.frames()); - Frames frames = pd->find_peaks(num_samples, &(audio[(int)sf.frames() / 2])); - frames = pt->find_partials(frames); - frames = synth->synth(frames); - - for(int i = 0; i < frames.size(); i++) { - // if Loris thinPeaks is used, final frame will have no peaks - // so don't check it - if(i < frames.size() - 1) { - CPPUNIT_ASSERT(frames[i]->num_peaks() > 0); - CPPUNIT_ASSERT(frames[i]->num_partials() > 0); - } - - double energy = 0.f; - for(int j = 0; j < synth->hop_size(); j++) { - energy += frames[i]->synth()[j] * frames[i]->synth()[j]; - } - CPPUNIT_ASSERT(energy > 0.f); - } - } +void TestLorisSynthesis::setUp() { + _sf = SndfileHandle(TEST_AUDIO_FILE); -public: - void setUp() { - pd = new LorisPeakDetection(); - pt = new LorisPartialTracking(); - synth = new LorisSynthesis(); - sf = SndfileHandle("../tests/audio/flute.wav"); - num_samples = 4096; + if(_sf.error() > 0) { + throw Exception(std::string("Could not open audio file: ") + + std::string(TEST_AUDIO_FILE)); } +} - void tearDown() { - delete pd; - delete pt; - delete synth; - } -}; +void TestLorisSynthesis::test_basic() { + int num_samples = 4096; + + std::vector<sample> audio(_sf.frames(), 0.0); + _sf.read(&audio[0], (int)_sf.frames()); + + _pd.clear(); + _pt.reset(); + _synth.reset(); -} // end of namespace simpl + Frames frames = _pd.find_peaks(num_samples, + &(audio[(int)_sf.frames() / 2])); + frames = _pt.find_partials(frames); + frames = _synth.synth(frames); -CPPUNIT_TEST_SUITE_REGISTRATION(simpl::TestMQSynthesis); -CPPUNIT_TEST_SUITE_REGISTRATION(simpl::TestLorisSynthesis); + for(int i = 0; i < frames.size(); i++) { + CPPUNIT_ASSERT(frames[i]->num_peaks() > 0); + CPPUNIT_ASSERT(frames[i]->num_partials() > 0); -int main(int arg, char **argv) { - CppUnit::TextTestRunner runner; - runner.addTest(CppUnit::TestFactoryRegistry::getRegistry().makeTest()); - return runner.run("", false); + double energy = 0.f; + for(int j = 0; j < _synth.hop_size(); j++) { + energy += frames[i]->synth()[j] * frames[i]->synth()[j]; + } + CPPUNIT_ASSERT(energy > 0.f); + } } |