|
1 |
/* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
|
|
2 |
/*
|
|
3 |
This file is Copyright (c) 2012 Chris Cannam
|
|
4 |
|
|
5 |
Permission is hereby granted, free of charge, to any person
|
|
6 |
obtaining a copy of this software and associated documentation
|
|
7 |
files (the "Software"), to deal in the Software without
|
|
8 |
restriction, including without limitation the rights to use, copy,
|
|
9 |
modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
10 |
of the Software, and to permit persons to whom the Software is
|
|
11 |
furnished to do so, subject to the following conditions:
|
|
12 |
|
|
13 |
The above copyright notice and this permission notice shall be
|
|
14 |
included in all copies or substantial portions of the Software.
|
|
15 |
|
|
16 |
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
17 |
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
18 |
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
19 |
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
|
|
20 |
ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
|
|
21 |
CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
22 |
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
23 |
*/
|
|
24 |
|
|
25 |
#include "PeakInterpolator.h"
|
|
26 |
|
|
27 |
#define BOOST_TEST_DYN_LINK
|
|
28 |
#define BOOST_TEST_MAIN
|
|
29 |
|
|
30 |
#include <boost/test/unit_test.hpp>
|
|
31 |
|
|
32 |
BOOST_AUTO_TEST_SUITE(TestPeakInterpolator)
|
|
33 |
|
|
34 |
BOOST_AUTO_TEST_CASE(peakAtSample_N3)
|
|
35 |
{
|
|
36 |
double data[] = { 0.0, 1.0, 0.0 };
|
|
37 |
PeakInterpolator p;
|
|
38 |
double result = p.findPeakLocation(data, 3, 1);
|
|
39 |
BOOST_CHECK_EQUAL(result, 1.0);
|
|
40 |
}
|
|
41 |
|
|
42 |
BOOST_AUTO_TEST_CASE(peakAtSample_N4)
|
|
43 |
{
|
|
44 |
double data[] = { 0.0, 1.0, 2.0, 0.0 };
|
|
45 |
PeakInterpolator p;
|
|
46 |
double result = p.findPeakLocation(data, 4, 2);
|
|
47 |
//!!! Actually, this isn't certain at all I think? It could quite
|
|
48 |
//!!! reasonably be smaller than 2.0
|
|
49 |
BOOST_CHECK_EQUAL(result, 2.0);
|
|
50 |
}
|
|
51 |
|
|
52 |
BOOST_AUTO_TEST_CASE(peakAtSample_N5)
|
|
53 |
{
|
|
54 |
double data[] = { 0.0, 1.0, 2.0, 1.0, 0.0 };
|
|
55 |
PeakInterpolator p;
|
|
56 |
double result = p.findPeakLocation(data, 5, 2);
|
|
57 |
BOOST_CHECK_EQUAL(result, 2.0);
|
|
58 |
}
|
|
59 |
|
|
60 |
BOOST_AUTO_TEST_CASE(flat)
|
|
61 |
{
|
|
62 |
double data[] = { 1.0, 1.0, 1.0, 1.0, 1.0 };
|
|
63 |
PeakInterpolator p;
|
|
64 |
double result = p.findPeakLocation(data, 5, 2);
|
|
65 |
BOOST_CHECK_EQUAL(result, 2.0);
|
|
66 |
}
|
|
67 |
|
|
68 |
BOOST_AUTO_TEST_CASE(multiPeak)
|
|
69 |
{
|
|
70 |
double data[] = { 1.0, 2.0, 1.0, 2.0, 1.0 };
|
|
71 |
PeakInterpolator p;
|
|
72 |
double result = p.findPeakLocation(data, 5, 3);
|
|
73 |
BOOST_CHECK_EQUAL(result, 3.0);
|
|
74 |
}
|
|
75 |
|
|
76 |
BOOST_AUTO_TEST_SUITE_END()
|
|
77 |
|