summaryrefslogtreecommitdiff
path: root/tests/test_base.cpp
blob: 44b353c26365c2bef7c5774e610ac1ad426870e9 (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
#include "test_base.h"

using namespace simpl;

// ---------------------------------------------------------------------------
//	TestPeak
// ---------------------------------------------------------------------------
void TestPeak::setUp() {
    peak = new Peak();
}

void TestPeak::tearDown() {
    delete peak;
}


// ---------------------------------------------------------------------------
//	TestFrame
// ---------------------------------------------------------------------------

void TestFrame::setUp() {
    frame = new Frame(512, true);
}

void TestFrame::tearDown() {
    delete frame;
}

void TestFrame::test_size() {
    frame->size(1024);
    CPPUNIT_ASSERT(frame->size() == 1024);
    frame->size(512);
}

void TestFrame::test_max_peaks() {
    frame->max_peaks(200);
    CPPUNIT_ASSERT(frame->max_peaks() == 200);
    CPPUNIT_ASSERT(frame->num_peaks() == 0);
    frame->max_peaks(100);
}

void TestFrame::test_max_partials() {
    frame->max_partials(200);
    CPPUNIT_ASSERT(frame->max_partials() == 200);
    CPPUNIT_ASSERT(frame->num_partials() == 0);
    frame->max_partials(100);
}

void TestFrame::test_add_peak() {
    frame->add_peak(1.5, 220, 0, 0);
    CPPUNIT_ASSERT(frame->max_peaks() == 100);
    CPPUNIT_ASSERT(frame->num_peaks() == 1);
    CPPUNIT_ASSERT_DOUBLES_EQUAL(1.5, frame->peak(0)->amplitude, PRECISION);

    frame->add_peak(2.0, 440, 0, 0);
    CPPUNIT_ASSERT(frame->max_peaks() == 100);
    CPPUNIT_ASSERT(frame->num_peaks() == 2);
    CPPUNIT_ASSERT_DOUBLES_EQUAL(2.0, frame->peak(1)->amplitude, PRECISION);

    frame->clear();
}

void TestFrame::test_clear() {
    frame->add_peak(1.5, 220, 0, 0);
    CPPUNIT_ASSERT(frame->num_peaks() == 1);
    frame->clear();
    CPPUNIT_ASSERT(frame->num_peaks() == 0);
}

void TestFrame::test_audio() {
    sample samples[8] = {0, 1, 2, 3, 4, 5, 6, 7};
    frame->size(8);
    frame->audio(&samples[0], 8);

    CPPUNIT_ASSERT(frame->size() == 8);

    for(int i = 0; i < 8; i++) {
        CPPUNIT_ASSERT(frame->audio()[i] == samples[i]);
    }

    sample new_samples[2] = {8, 9};
    sample rotated_samples[8] = {2, 3, 4, 5, 6, 7, 8, 9};

    frame->audio(&new_samples[0], 2);

    CPPUNIT_ASSERT(frame->size() == 8);

    for(int i = 0; i < 8; i++) {
        CPPUNIT_ASSERT(frame->audio()[i] == rotated_samples[i]);
    }
}