Remove now-presumed-wrong 2.0 MCA sound field.
[libdcp.git] / test / test.h
1 /*
2     Copyright (C) 2012-2020 Carl Hetherington <cth@carlh.net>
3
4     This file is part of libdcp.
5
6     libdcp 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     libdcp 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 libdcp.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20
21 #include "cpl.h"
22 #include "dcp.h"
23 #include "reel.h"
24 #include "reel_subtitle_asset.h"
25 #include "subtitle.h"
26 #include "reel_asset.h"
27 #include <boost/filesystem.hpp>
28 #include <boost/optional.hpp>
29
30 namespace xmlpp {
31         class Element;
32 }
33
34 namespace dcp {
35         class DCP;
36         class MonoPictureAsset;
37         class SoundAsset;
38 }
39
40 extern boost::filesystem::path private_test;
41 extern boost::filesystem::path xsd_test;
42
43 extern void check_xml (xmlpp::Element* ref, xmlpp::Element* test, std::vector<std::string> ignore_tags, bool ignore_whitespace = false);
44 extern void check_xml (std::string ref, std::string test, std::vector<std::string> ignore, bool ignore_whitespace = false);
45 extern void check_file (boost::filesystem::path ref, boost::filesystem::path check);
46 extern std::shared_ptr<dcp::MonoPictureAsset> simple_picture (
47         boost::filesystem::path path,
48         std::string suffix,
49         int frames = 24,
50         boost::optional<dcp::Key> key = boost::optional<dcp::Key>()
51         );
52 extern std::shared_ptr<dcp::SoundAsset> simple_sound (
53         boost::filesystem::path path,
54         std::string suffix,
55         dcp::MXFMetadata mxf_meta,
56         std::string language,
57         int frames = 24,
58         int sample_rate = 48000,
59         boost::optional<dcp::Key> key = boost::optional<dcp::Key>(),
60         int channels = 6
61         );
62 extern std::shared_ptr<dcp::Subtitle> simple_subtitle ();
63 extern std::shared_ptr<dcp::ReelMarkersAsset> simple_markers (int frames = 24);
64 extern std::shared_ptr<dcp::DCP> make_simple (
65         boost::filesystem::path path,
66         int reels = 1,
67         int frames = 24,
68         dcp::Standard = dcp::Standard::SMPTE,
69         boost::optional<dcp::Key> key = boost::optional<dcp::Key>()
70         );
71 extern std::shared_ptr<dcp::DCP> make_simple_with_interop_subs (boost::filesystem::path path);
72 extern std::shared_ptr<dcp::DCP> make_simple_with_smpte_subs (boost::filesystem::path path);
73 extern std::shared_ptr<dcp::DCP> make_simple_with_interop_ccaps (boost::filesystem::path path);
74 extern std::shared_ptr<dcp::DCP> make_simple_with_smpte_ccaps (boost::filesystem::path path);
75 extern std::shared_ptr<dcp::OpenJPEGImage> black_image (dcp::Size size = dcp::Size(1998, 1080));
76 extern std::shared_ptr<dcp::ReelAsset> black_picture_asset (boost::filesystem::path dir, int frames = 24);
77 extern boost::filesystem::path find_file (boost::filesystem::path dir, std::string filename_part);
78
79 /** Creating an object of this class will make asdcplib's random number generation
80  *  (more) predictable.
81  */
82 class RNGFixer
83 {
84 public:
85         RNGFixer ();
86         ~RNGFixer ();
87 };