summaryrefslogtreecommitdiff
path: root/tests/test_synthesis.h
blob: 28c9adda911ae0ea65be34c9674e3103b9ffca4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
#ifndef TEST_SYNTHESIS_H
#define TEST_SYNTHESIS_H

#include <cppunit/extensions/HelperMacros.h>

#include "../src/simpl/base.h"
#include "../src/simpl/peak_detection.h"
#include "../src/simpl/partial_tracking.h"
#include "../src/simpl/synthesis.h"
#include "test_common.h"

namespace simpl
{

// ---------------------------------------------------------------------------
//	TestMQSynthesis
// ---------------------------------------------------------------------------
class TestMQSynthesis : public CPPUNIT_NS::TestCase {
    CPPUNIT_TEST_SUITE(TestMQSynthesis);
    CPPUNIT_TEST(test_basic);
    CPPUNIT_TEST(test_changing_frame_size);
    CPPUNIT_TEST_SUITE_END();

public:
    void setUp();

protected:
    MQPeakDetection _pd;
    MQPartialTracking _pt;
    MQSynthesis _synth;
    SndfileHandle _sf;

    void test_basic();
    void test_changing_frame_size();
};

// ---------------------------------------------------------------------------
//	TestLorisSynthesis
// ---------------------------------------------------------------------------
class TestLorisSynthesis : public CPPUNIT_NS::TestCase {
    CPPUNIT_TEST_SUITE(TestLorisSynthesis);
    CPPUNIT_TEST(test_basic);
    CPPUNIT_TEST(test_changing_frame_size);
    CPPUNIT_TEST_SUITE_END();

public:
    void setUp();

protected:
    LorisPeakDetection _pd;
    LorisPartialTracking _pt;
    LorisSynthesis _synth;
    SndfileHandle _sf;

    void test_basic();
    void test_changing_frame_size();
};

// ---------------------------------------------------------------------------
//	TestSMSSynthesis
// ---------------------------------------------------------------------------
class TestSMSSynthesis : public CPPUNIT_NS::TestCase {
    CPPUNIT_TEST_SUITE(TestSMSSynthesis);
    CPPUNIT_TEST(test_basic);
    CPPUNIT_TEST(test_changing_frame_size);
    CPPUNIT_TEST_SUITE_END();

public:
    void setUp();
    void tearDown();

protected:
    SMSPeakDetection _pd;
    SMSPartialTracking _pt;
    SMSSynthesis _synth;
    SndfileHandle _sf;
    Frames _frames;

    void test_basic();
    void test_changing_frame_size();
};


// ---------------------------------------------------------------------------
//	TestSndObjSynthesis
// ---------------------------------------------------------------------------
class TestSndObjSynthesis : public CPPUNIT_NS::TestCase {
    CPPUNIT_TEST_SUITE(TestSndObjSynthesis);
    CPPUNIT_TEST(test_basic);
    CPPUNIT_TEST(test_changing_frame_size);
    CPPUNIT_TEST_SUITE_END();

public:
    void setUp();

protected:
    SndObjPeakDetection _pd;
    SndObjPartialTracking _pt;
    SndObjSynthesis _synth;
    SndfileHandle _sf;
    Frames _frames;

    void test_basic();
    void test_changing_frame_size();
};

} // end of namespace simpl

#endif