To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / TestDefaults.cpp @ 28:b1bc4d045a4b

History | View | Annotate | Download (6.05 KB)

1
/* -*- c-basic-offset: 4 indent-tabs-mode: nil -*-  vi:set ts=8 sts=4 sw=4: */
2

    
3
/*
4
    Vamp Plugin Tester
5
    Chris Cannam, cannam@all-day-breakfast.com
6
    Centre for Digital Music, Queen Mary, University of London.
7
    Copyright 2009 QMUL.
8

9
    This program loads a Vamp plugin and tests its susceptibility to a
10
    number of common pitfalls, including handling of extremes of input
11
    data.  If you can think of any additional useful tests that are
12
    easily added, please send them to me.
13
  
14
    Permission is hereby granted, free of charge, to any person
15
    obtaining a copy of this software and associated documentation
16
    files (the "Software"), to deal in the Software without
17
    restriction, including without limitation the rights to use, copy,
18
    modify, merge, publish, distribute, sublicense, and/or sell copies
19
    of the Software, and to permit persons to whom the Software is
20
    furnished to do so, subject to the following conditions:
21

22
    The above copyright notice and this permission notice shall be
23
    included in all copies or substantial portions of the Software.
24

25
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26
    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27
    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28
    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
29
    ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
30
    CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
31
    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
32

33
    Except as contained in this notice, the names of the Centre for
34
    Digital Music; Queen Mary, University of London; and Chris Cannam
35
    shall not be used in advertising or otherwise to promote the sale,
36
    use or other dealings in this Software without prior written
37
    authorization.
38
*/
39

    
40
#include "TestDefaults.h"
41

    
42
#include <vamp-hostsdk/Plugin.h>
43
using namespace Vamp;
44

    
45
#include <memory>
46
using namespace std;
47

    
48
#include <cmath>
49
#include <time.h>
50

    
51
#ifndef __GNUC__
52
#include <alloca.h>
53
#endif
54

    
55
Tester::TestRegistrar<TestDefaultProgram>
56
TestDefaultProgram::m_registrar("E1 Inconsistent default program");
57

    
58
Tester::TestRegistrar<TestDefaultParameters>
59
TestDefaultParameters::m_registrar("E2 Inconsistent default parameters");
60

    
61
static const size_t _step = 1000;
62

    
63
Test::Results
64
TestDefaultProgram::test(string key, Options options)
65
{
66
    Plugin::FeatureSet f[2];
67
    int rate = 44100;
68
    Results r;
69
    float **data = 0;
70
    size_t channels = 0;
71
    size_t count = 100;
72

    
73
    for (int run = 0; run < 2; ++run) {
74
        auto_ptr<Plugin> p(load(key, rate));
75
        if (p->getPrograms().empty()) return r;
76
        if (run == 1) {
77
            p->selectProgram(p->getCurrentProgram());
78
        }
79
        if (!initAdapted(p.get(), channels, _step, _step, r)) return r;
80
        if (!data) data = createTestAudio(channels, _step, count);
81
        for (size_t i = 0; i < count; ++i) {
82
#ifdef __GNUC__
83
            float *ptr[channels];
84
#else
85
            float **ptr = (float **)alloca(channels * sizeof(float));
86
#endif
87
            size_t idx = i * _step;
88
            for (size_t c = 0; c < channels; ++c) ptr[c] = data[c] + idx;
89
            RealTime timestamp = RealTime::frame2RealTime(idx, rate);
90
            Plugin::FeatureSet fs = p->process(ptr, timestamp);
91
            appendFeatures(f[run], fs);
92
        }
93
        Plugin::FeatureSet fs = p->getRemainingFeatures();
94
        appendFeatures(f[run], fs);
95
    }
96
    if (data) destroyTestAudio(data, channels);
97

    
98
    if (!(f[0] == f[1])) {
99
        string message = "Explicitly setting current program to its supposed current value changes the results";
100
        Result res;
101
        if (options & NonDeterministic) res = note(message);
102
        else res = error(message);
103
        if (options & Verbose) dump(res, f[0], f[1]);
104
        r.push_back(res);
105
    } else {
106
        r.push_back(success());
107
    }
108

    
109
    return r;
110
}
111

    
112
Test::Results
113
TestDefaultParameters::test(string key, Options options)
114
{
115
    Plugin::FeatureSet f[2];
116
    int rate = 44100;
117
    Results r;
118
    float **data = 0;
119
    size_t channels = 0;
120
    size_t count = 100;
121

    
122
    for (int run = 0; run < 2; ++run) {
123
        auto_ptr<Plugin> p(load(key, rate));
124
        if (p->getParameterDescriptors().empty()) return r;
125
        if (run == 1) {
126
            Plugin::ParameterList pl = p->getParameterDescriptors();
127
            for (int i = 0; i < (int)pl.size(); ++i) {
128
                if (p->getParameter(pl[i].identifier) != pl[i].defaultValue) {
129
                    if (options & Verbose) {
130
                        cout << "Parameter: " << pl[i].identifier << endl;
131
                        cout << "Expected: " << pl[i].defaultValue << endl;
132
                        cout << "Actual: " << p->getParameter(pl[i].identifier) << endl;
133
                    }
134
                    r.push_back(error("Not all parameters have their default values when queried directly after construction"));
135
                }
136
                p->setParameter(pl[i].identifier, pl[i].defaultValue);
137
            }
138
        }
139
        if (!initAdapted(p.get(), channels, _step, _step, r)) return r;
140
        if (!data) data = createTestAudio(channels, _step, count);
141
        for (size_t i = 0; i < count; ++i) {
142
#ifdef __GNUC__
143
            float *ptr[channels];
144
#else
145
            float **ptr = (float **)alloca(channels * sizeof(float));
146
#endif
147
            size_t idx = i * _step;
148
            for (size_t c = 0; c < channels; ++c) ptr[c] = data[c] + idx;
149
            RealTime timestamp = RealTime::frame2RealTime(idx, rate);
150
            Plugin::FeatureSet fs = p->process(ptr, timestamp);
151
            appendFeatures(f[run], fs);
152
        }
153
        Plugin::FeatureSet fs = p->getRemainingFeatures();
154
        appendFeatures(f[run], fs);
155
    }
156
    if (data) destroyTestAudio(data, channels);
157

    
158
    if (!(f[0] == f[1])) {
159
        string message = "Explicitly setting parameters to their supposed default values changes the results";
160
        Result res;
161
        if (options & NonDeterministic) res = note(message);
162
        else res = error(message);
163
        if (options & Verbose) dump(res, f[0], f[1]);
164
        r.push_back(res);
165
    } else {
166
        r.push_back(success());
167
    }
168

    
169
    return r;
170
}