Bump libdcp.
[libsub.git] / test / stl_binary_reader_test.cc
1 /*
2     Copyright (C) 2014-2020 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include "stl_binary_reader.h"
21 #include "subtitle.h"
22 #include "test.h"
23 #include "util.h"
24 #include <boost/test/unit_test.hpp>
25 #include <fstream>
26
27 using std::ifstream;
28 using std::ofstream;
29 using std::shared_ptr;
30
31 /* Test reading of a binary STL file */
32 BOOST_AUTO_TEST_CASE (stl_binary_reader_test1)
33 {
34         if (private_test.empty ()) {
35                 return;
36         }
37
38         using boost::filesystem::path;
39
40         path stl = private_test / "VA_24fps_Reel_6_DE_FR.stl";
41         ifstream in (stl.string().c_str());
42         shared_ptr<sub::STLBinaryReader> r (new sub::STLBinaryReader(in));
43         path dump = path("build") / path("test") / path("VA_24fps_Reel_6_DE_FR.dump");
44         ofstream dump_stream (dump.string().c_str());
45         sub::dump (r, dump_stream);
46         dump_stream.close ();
47
48         check_file (private_test / "VA_24fps_Reel_6_DE_FR.dump", dump);
49 }
50
51 /* Test reading the same file but with the FILE* interface */
52 BOOST_AUTO_TEST_CASE (stl_binary_reader_test2)
53 {
54         if (private_test.empty ()) {
55                 return;
56         }
57
58         using boost::filesystem::path;
59
60         path stl = private_test / "VA_24fps_Reel_6_DE_FR.stl";
61         FILE* in = fopen (stl.string().c_str(), "rb");
62         BOOST_REQUIRE (in);
63         shared_ptr<sub::STLBinaryReader> r (new sub::STLBinaryReader(in));
64         fclose (in);
65         path dump = path("build") / path("test") / path("VA_24fps_Reel_6_DE_FR.dump");
66         ofstream dump_stream (dump.string().c_str());
67         sub::dump (r, dump_stream);
68         dump_stream.close ();
69 }