Fix audio analysis test after change to XML.
[dcpomatic.git] / test / audio_analysis_test.cc
1 /*
2     Copyright (C) 2012-2014 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 /** @file  test/audio_analysis_test.cc
21  *  @brief Check audio analysis code.
22  */
23
24 #include <boost/test/unit_test.hpp>
25 #include "lib/audio_analysis.h"
26 #include "lib/film.h"
27 #include "lib/sndfile_content.h"
28 #include "lib/dcp_content_type.h"
29 #include "lib/ratio.h"
30 #include "test.h"
31
32 using boost::shared_ptr;
33
34 static float
35 random_float ()
36 {
37         return (float (rand ()) / RAND_MAX) * 2 - 1;
38 }
39
40 BOOST_AUTO_TEST_CASE (audio_analysis_serialisation_test)
41 {
42         int const channels = 3;
43         int const points = 4096;
44         
45         srand (1);
46         
47         AudioAnalysis a (3);
48         for (int i = 0; i < channels; ++i) {
49                 for (int j = 0; j < points; ++j) {
50                         AudioPoint p;
51                         p[AudioPoint::PEAK] = random_float ();
52                         p[AudioPoint::RMS] = random_float ();
53                         a.add_point (i, p);
54                 }
55         }
56
57         float const peak = random_float ();
58         DCPTime const peak_time = DCPTime (rand ());
59         a.set_peak (peak, peak_time);
60
61         a.write ("build/test/audio_analysis_serialisation_test");
62
63         srand (1);
64
65         AudioAnalysis b ("build/test/audio_analysis_serialisation_test");
66         for (int i = 0; i < channels; ++i) {
67                 BOOST_CHECK_EQUAL (b.points(i), points);
68                 for (int j = 0; j < points; ++j) {
69                         AudioPoint p = b.get_point (i, j);
70                         BOOST_CHECK_CLOSE (p[AudioPoint::PEAK], random_float (), 1);
71                         BOOST_CHECK_CLOSE (p[AudioPoint::RMS],  random_float (), 1);
72                 }
73         }
74         
75         BOOST_CHECK (b.peak ());
76         BOOST_CHECK_CLOSE (b.peak().get(), peak, 1);
77         BOOST_CHECK (b.peak_time ());
78         BOOST_CHECK_EQUAL (b.peak_time().get(), peak_time);
79 }
80
81 void
82 finished ()
83 {
84
85 }
86
87 BOOST_AUTO_TEST_CASE (audio_analysis_test)
88 {
89         shared_ptr<Film> film = new_test_film ("audio_analysis_test");
90         film->set_dcp_content_type (DCPContentType::from_isdcf_name ("FTR"));
91         film->set_container (Ratio::from_id ("185"));
92         film->set_name ("audio_analysis_test");
93         boost::filesystem::path p = private_data / "betty_L.wav";
94
95         shared_ptr<SndfileContent> c (new SndfileContent (film, p));
96         film->examine_and_add_content (c);
97         wait_for_jobs ();
98
99         c->analyse_audio (boost::bind (&finished));
100         wait_for_jobs ();
101 }