diff options
author | John Glover <j@johnglover.net> | 2012-08-23 17:57:56 +0100 |
---|---|---|
committer | John Glover <j@johnglover.net> | 2012-08-23 17:57:56 +0100 |
commit | 18ccab0e26a692073c2cd7d3c13d0c289b8f748f (patch) | |
tree | f3751dcd5b017f07a12f916a9d6cda8f9d7d19c6 /tests | |
parent | e160337c4e45c53772f2c311aef1a7429e73ab51 (diff) | |
download | simpl-18ccab0e26a692073c2cd7d3c13d0c289b8f748f.tar.gz simpl-18ccab0e26a692073c2cd7d3c13d0c289b8f748f.tar.bz2 simpl-18ccab0e26a692073c2cd7d3c13d0c289b8f748f.zip |
[loris] Add C++ implementation of LorisSynthesis.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_synthesis.cpp | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/tests/test_synthesis.cpp b/tests/test_synthesis.cpp new file mode 100644 index 0000000..f4d215d --- /dev/null +++ b/tests/test_synthesis.cpp @@ -0,0 +1,77 @@ +#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 +{ + +// --------------------------------------------------------------------------- +// 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++) { + 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); + } + } + +public: + void setUp() { + pd = new LorisPeakDetection(); + pt = new LorisPartialTracking(); + synth = new LorisSynthesis(); + sf = SndfileHandle("../tests/audio/flute.wav"); + num_samples = 4096; + } + + void tearDown() { + delete pd; + delete pt; + delete synth; + } +}; + +} // end of namespace simpl + +CPPUNIT_TEST_SUITE_REGISTRATION(simpl::TestLorisSynthesis); + +int main(int arg, char **argv) { + CppUnit::TextTestRunner runner; + runner.addTest(CppUnit::TestFactoryRegistry::getRegistry().makeTest()); + return runner.run("", false); +} |