Fix strange Windows build error introduced in 6c37cc1979b2a01205a888c4c98f3334685ee8dd
[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 (boost::filesystem::path path, std::string suffix, int frames = 24);
47 extern std::shared_ptr<dcp::SoundAsset> simple_sound (boost::filesystem::path path, std::string suffix, dcp::MXFMetadata mxf_meta, std::string language, int frames = 24, int sample_rate = 48000);
48 extern std::shared_ptr<dcp::Subtitle> simple_subtitle ();
49 extern std::shared_ptr<dcp::ReelMarkersAsset> simple_markers (int frames = 24);
50 extern std::shared_ptr<dcp::DCP> make_simple (boost::filesystem::path path, int reels = 1, int frames = 24);
51 extern std::shared_ptr<dcp::DCP> make_simple_with_interop_subs (boost::filesystem::path path);
52 extern std::shared_ptr<dcp::DCP> make_simple_with_smpte_subs (boost::filesystem::path path);
53 extern std::shared_ptr<dcp::DCP> make_simple_with_interop_ccaps (boost::filesystem::path path);
54 extern std::shared_ptr<dcp::DCP> make_simple_with_smpte_ccaps (boost::filesystem::path path);
55 extern std::shared_ptr<dcp::OpenJPEGImage> black_image (dcp::Size size = dcp::Size(1998, 1080));
56 extern std::shared_ptr<dcp::ReelAsset> black_picture_asset (boost::filesystem::path dir, int frames = 24);
57
58 /** Creating an object of this class will make asdcplib's random number generation
59  *  (more) predictable.
60  */
61 class RNGFixer
62 {
63 public:
64         RNGFixer ();
65         ~RNGFixer ();
66 };