Add -x32/-x64 suffix to boost libraries when building for Windows.
[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         );
61 extern std::shared_ptr<dcp::Subtitle> simple_subtitle ();
62 extern std::shared_ptr<dcp::ReelMarkersAsset> simple_markers (int frames = 24);
63 extern std::shared_ptr<dcp::DCP> make_simple (
64         boost::filesystem::path path,
65         int reels = 1,
66         int frames = 24,
67         dcp::Standard = dcp::Standard::SMPTE,
68         boost::optional<dcp::Key> key = boost::optional<dcp::Key>()
69         );
70 extern std::shared_ptr<dcp::DCP> make_simple_with_interop_subs (boost::filesystem::path path);
71 extern std::shared_ptr<dcp::DCP> make_simple_with_smpte_subs (boost::filesystem::path path);
72 extern std::shared_ptr<dcp::DCP> make_simple_with_interop_ccaps (boost::filesystem::path path);
73 extern std::shared_ptr<dcp::DCP> make_simple_with_smpte_ccaps (boost::filesystem::path path);
74 extern std::shared_ptr<dcp::OpenJPEGImage> black_image (dcp::Size size = dcp::Size(1998, 1080));
75 extern std::shared_ptr<dcp::ReelAsset> black_picture_asset (boost::filesystem::path dir, int frames = 24);
76 extern boost::filesystem::path find_file (boost::filesystem::path dir, std::string filename_part);
77
78 /** Creating an object of this class will make asdcplib's random number generation
79  *  (more) predictable.
80  */
81 class RNGFixer
82 {
83 public:
84         RNGFixer ();
85         ~RNGFixer ();
86 };