Support MCA sound channel tags in MXF/CPL.
[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 "data.h"
23 #include "dcp.h"
24 #include "reel.h"
25 #include "reel_subtitle_asset.h"
26 #include "subtitle.h"
27 #include "reel_asset.h"
28 #include <boost/filesystem.hpp>
29 #include <boost/optional.hpp>
30
31 namespace xmlpp {
32         class Element;
33 }
34
35 namespace dcp {
36         class DCP;
37         class MonoPictureAsset;
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::list<std::string> ignore_tags, bool ignore_whitespace = false);
44 extern void check_xml (std::string ref, std::string test, std::list<std::string> ignore);
45 extern void check_file (boost::filesystem::path ref, boost::filesystem::path check);
46 extern boost::shared_ptr<dcp::MonoPictureAsset> simple_picture (boost::filesystem::path path, std::string suffix);
47 extern boost::shared_ptr<dcp::DCP> make_simple (boost::filesystem::path path, int reels = 1);
48 extern boost::shared_ptr<dcp::DCP> make_simple_with_interop_subs (boost::filesystem::path path);
49 extern boost::shared_ptr<dcp::DCP> make_simple_with_smpte_subs (boost::filesystem::path path);
50 extern boost::shared_ptr<dcp::DCP> make_simple_with_interop_ccaps (boost::filesystem::path path);
51 extern boost::shared_ptr<dcp::DCP> make_simple_with_smpte_ccaps (boost::filesystem::path path);
52 extern boost::shared_ptr<dcp::OpenJPEGImage> black_image ();
53 extern boost::shared_ptr<dcp::ReelAsset> black_picture_asset (boost::filesystem::path dir, int frames = 24);
54
55 /** Creating an object of this class will make asdcplib's random number generation
56  *  (more) predictable.
57  */
58 class RNGFixer
59 {
60 public:
61         RNGFixer ();
62         ~RNGFixer ();
63 };