More renaming.
[dcpomatic.git] / test / srt_subtitle_test.cc
1 /*
2     Copyright (C) 2015 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic 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     DCP-o-matic 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 DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 /** @file  test/srt_subtitle_test.cc
22  *  @brief Test writing DCPs with subtitles from .srt.
23  *  @ingroup specific
24  */
25
26 #include "lib/film.h"
27 #include "lib/plain_text_content.h"
28 #include "lib/dcp_content_type.h"
29 #include "lib/font.h"
30 #include "lib/ratio.h"
31 #include "lib/text_content.h"
32 #include "test.h"
33 #include <boost/test/unit_test.hpp>
34 #include <boost/algorithm/string.hpp>
35 #include <list>
36
37 using std::string;
38 using std::list;
39 using boost::shared_ptr;
40
41 /** Make a very short DCP with a single subtitle from .srt with no specified fonts */
42 BOOST_AUTO_TEST_CASE (srt_subtitle_test)
43 {
44         shared_ptr<Film> film = new_test_film ("srt_subtitle_test");
45         film->set_container (Ratio::from_id ("185"));
46         film->set_dcp_content_type (DCPContentType::from_isdcf_name ("TLR"));
47         film->set_name ("frobozz");
48         film->set_audio_channels (6);
49         film->set_interop (false);
50         shared_ptr<PlainTextContent> content (new PlainTextContent (film, "test/data/subrip2.srt"));
51         film->examine_and_add_content (content);
52         wait_for_jobs ();
53
54         content->subtitle->set_use (true);
55         content->subtitle->set_burn (false);
56         film->make_dcp ();
57         wait_for_jobs ();
58
59         /* Should be blank video with a subtitle MXF */
60         check_dcp ("test/data/srt_subtitle_test", film->dir (film->dcp_name ()));
61 }
62
63 /** Same again but with a `font' specified */
64 BOOST_AUTO_TEST_CASE (srt_subtitle_test2)
65 {
66         shared_ptr<Film> film = new_test_film ("srt_subtitle_test2");
67         film->set_container (Ratio::from_id ("185"));
68         film->set_dcp_content_type (DCPContentType::from_isdcf_name ("TLR"));
69         film->set_name ("frobozz");
70         film->set_audio_channels (6);
71         film->set_interop (false);
72         shared_ptr<PlainTextContent> content (new PlainTextContent (film, "test/data/subrip2.srt"));
73         film->examine_and_add_content (content);
74         wait_for_jobs ();
75
76         content->subtitle->set_use (true);
77         content->subtitle->set_burn (false);
78         /* Use test/data/subrip2.srt as if it were a font file  */
79         content->subtitle->fonts().front()->set_file (FontFiles::NORMAL, "test/data/subrip2.srt");
80
81         film->make_dcp ();
82         wait_for_jobs ();
83
84         /* Should be blank video with a subtitle MXF */
85         check_dcp ("test/data/srt_subtitle_test2", film->dir (film->dcp_name ()));
86 }
87
88 static void
89 check_subtitle_file (shared_ptr<Film> film, boost::filesystem::path ref)
90 {
91         /* Find the subtitle file and check it */
92         list<string> ignore;
93         ignore.push_back ("SubtitleID");
94         check_xml (subtitle_file(film), ref, ignore);
95 }
96
97 /** Make another DCP with a longer .srt file */
98 BOOST_AUTO_TEST_CASE (srt_subtitle_test3)
99 {
100         shared_ptr<Film> film = new_test_film ("srt_subtitle_test3");
101
102         film->set_container (Ratio::from_id ("185"));
103         film->set_dcp_content_type (DCPContentType::from_isdcf_name ("TLR"));
104         film->set_name ("frobozz");
105         film->set_interop (true);
106         film->set_audio_channels (6);
107         shared_ptr<PlainTextContent> content (new PlainTextContent (film, private_data / "Ankoemmling_short.srt"));
108         film->examine_and_add_content (content);
109         wait_for_jobs ();
110
111         content->subtitle->set_use (true);
112         content->subtitle->set_burn (false);
113
114         film->make_dcp ();
115         wait_for_jobs ();
116
117         check_subtitle_file (film, private_data / "Ankoemmling_short.xml");
118 }
119
120 /** Build a small DCP with no picture and a single subtitle overlaid onto it */
121 BOOST_AUTO_TEST_CASE (srt_subtitle_test4)
122 {
123         shared_ptr<Film> film = new_test_film ("srt_subtitle_test4");
124         film->set_container (Ratio::from_id ("185"));
125         film->set_dcp_content_type (DCPContentType::from_isdcf_name ("TLR"));
126         film->set_name ("frobozz");
127         film->set_interop (false);
128         shared_ptr<PlainTextContent> content (new PlainTextContent (film, "test/data/subrip2.srt"));
129         content->subtitle->set_use (true);
130         content->subtitle->set_burn (false);
131         film->examine_and_add_content (content);
132         wait_for_jobs ();
133         film->make_dcp ();
134         wait_for_jobs ();
135
136         /* Should be blank video with MXF subtitles */
137         check_dcp ("test/data/xml_subtitle_test", film->dir (film->dcp_name ()));
138 }
139
140 /** Check the subtitle XML when there are two subtitle files in the project */
141 BOOST_AUTO_TEST_CASE (srt_subtitle_test5)
142 {
143         shared_ptr<Film> film = new_test_film ("srt_subtitle_test5");
144         film->set_container (Ratio::from_id ("185"));
145         film->set_dcp_content_type (DCPContentType::from_isdcf_name ("TLR"));
146         film->set_name ("frobozz");
147         film->set_interop (true);
148         film->set_sequence (false);
149         shared_ptr<PlainTextContent> content (new PlainTextContent (film, "test/data/subrip2.srt"));
150         content->subtitle->set_use (true);
151         content->subtitle->set_burn (false);
152         film->examine_and_add_content (content);
153         film->examine_and_add_content (content);
154         wait_for_jobs ();
155         content->set_position (DCPTime (0));
156         film->make_dcp ();
157         wait_for_jobs ();
158         film->write_metadata ();
159
160         check_dcp ("test/data/xml_subtitle_test2", film->dir (film->dcp_name ()));
161 }
162
163 BOOST_AUTO_TEST_CASE (srt_subtitle_test6)
164 {
165         shared_ptr<Film> film = new_test_film2 ("srt_subtitle_test6");
166         film->set_interop (false);
167         shared_ptr<PlainTextContent> content (new PlainTextContent (film, "test/data/frames.srt"));
168         content->subtitle->set_use (true);
169         content->subtitle->set_burn (false);
170         film->examine_and_add_content (content);
171         BOOST_REQUIRE (!wait_for_jobs ());
172         film->make_dcp ();
173         BOOST_REQUIRE (!wait_for_jobs ());
174         film->write_metadata ();
175
176         check_dcp ("test/data/srt_subtitle_test6", film->dir(film->dcp_name()));
177 }
178
179 #if 0
180 /* XXX: this is disabled; there is some difference in font rendering
181    between the test machine and others.
182 */
183
184 /** Test rendering of a SubRip subtitle */
185 BOOST_AUTO_TEST_CASE (srt_subtitle_test4)
186 {
187         shared_ptr<Film> film = new_test_film ("subrip_render_test");
188         shared_ptr<PlainText> content (new PlainText (film, "test/data/subrip.srt"));
189         content->examine (shared_ptr<Job> (), true);
190         BOOST_CHECK_EQUAL (content->full_length(), DCPTime::from_seconds ((3 * 60) + 56.471));
191
192         shared_ptr<SubRipDecoder> decoder (new SubRipDecoder (content));
193         list<ContentTextSubtitle> cts = decoder->get_plain_texts (
194                 ContentTimePeriod (
195                         ContentTime::from_seconds (109), ContentTime::from_seconds (110)
196                         ), false
197                 );
198         BOOST_CHECK_EQUAL (cts.size(), 1);
199
200         PositionImage image = render_text (cts.front().subs, dcp::Size (1998, 1080));
201         write_image (image.image, "build/test/subrip_render_test.png");
202         check_file ("build/test/subrip_render_test.png", "test/data/subrip_render_test.png");
203 }
204 #endif