Allow repeat-frame to work with 3D.
[dcpomatic.git] / test / content_test.cc
1 /*
2     Copyright (C) 2017 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 /** @file  test/content_test.cc
22  *  @brief Tests which expose problems with certain pieces of content.
23  *  @ingroup completedcp
24  */
25
26 #include "lib/film.h"
27 #include "lib/dcp_content_type.h"
28 #include "lib/content_factory.h"
29 #include "lib/ratio.h"
30 #include "test.h"
31 #include <boost/test/unit_test.hpp>
32
33 using boost::shared_ptr;
34
35 /** There has been garbled audio with this piece of content */
36 BOOST_AUTO_TEST_CASE (content_test1)
37 {
38         shared_ptr<Film> film = new_test_film ("content_test1");
39         film->set_dcp_content_type (DCPContentType::from_isdcf_name ("FTR"));
40         film->set_name ("content_test1");
41         film->set_container (Ratio::from_id ("185"));
42
43         shared_ptr<Content> content = content_factory(film, private_data / "demo_sound_bug.mkv").front ();
44         film->examine_and_add_content (content);
45         BOOST_REQUIRE (!wait_for_jobs ());
46         film->make_dcp ();
47         BOOST_REQUIRE (!wait_for_jobs ());
48
49         boost::filesystem::path check;
50
51         for (
52                 boost::filesystem::directory_iterator i = boost::filesystem::directory_iterator("build/test/content_test1/" + film->dcp_name());
53                 i != boost::filesystem::directory_iterator();
54                 ++i) {
55
56                 if (i->path().leaf().string().substr(0, 4) == "pcm_") {
57                         check = *i;
58                 }
59         }
60
61         check_mxf_audio_file ("test/data/content_test1.mxf", check);
62 }