283ce6b9370a1c2774f633e01e908da996f9a201
[dcpomatic.git] / test / closed_caption_test.cc
1 /*
2     Copyright (C) 2018 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 #include "lib/film.h"
22 #include "lib/text_content.h"
23 #include "lib/string_text_file_content.h"
24 #include "test.h"
25 #include <dcp/dcp.h>
26 #include <dcp/cpl.h>
27 #include <dcp/reel.h>
28 #include <dcp/reel_closed_caption_asset.h>
29 #include <boost/test/unit_test.hpp>
30
31 using std::list;
32 using boost::shared_ptr;
33
34 /** Basic test that Interop closed captions are written */
35 BOOST_AUTO_TEST_CASE (closed_caption_test1)
36 {
37         shared_ptr<Film> film = new_test_film2 ("closed_caption_test1");
38         shared_ptr<StringTextFileContent> content (new StringTextFileContent("test/data/subrip.srt"));
39         film->examine_and_add_content (content);
40         BOOST_REQUIRE (!wait_for_jobs ());
41
42         content->only_text()->set_type (TEXT_CLOSED_CAPTION);
43
44         film->make_dcp ();
45         BOOST_REQUIRE (!wait_for_jobs ());
46
47         /* Just check to see that there's a CCAP in the CPL: this
48            check could be better!
49         */
50
51         dcp::DCP check (film->dir(film->dcp_name()));
52         check.read ();
53
54         BOOST_REQUIRE_EQUAL (check.cpls().size(), 1U);
55         BOOST_REQUIRE_EQUAL (check.cpls().front()->reels().size(), 1U);
56         BOOST_REQUIRE (!check.cpls().front()->reels().front()->closed_captions().empty());
57 }
58
59 /** Test multiple closed captions */
60 BOOST_AUTO_TEST_CASE (closed_caption_test2)
61 {
62         shared_ptr<Film> film = new_test_film2 ("closed_caption_test2");
63         shared_ptr<StringTextFileContent> content1 (new StringTextFileContent("test/data/subrip.srt"));
64         film->examine_and_add_content (content1);
65         shared_ptr<StringTextFileContent> content2 (new StringTextFileContent("test/data/subrip2.srt"));
66         film->examine_and_add_content (content2);
67         shared_ptr<StringTextFileContent> content3 (new StringTextFileContent("test/data/subrip3.srt"));
68         film->examine_and_add_content (content3);
69         BOOST_REQUIRE (!wait_for_jobs ());
70
71         content1->only_text()->set_type (TEXT_CLOSED_CAPTION);
72         content1->only_text()->set_dcp_track (DCPTextTrack("First track", "French"));
73         content2->only_text()->set_type (TEXT_CLOSED_CAPTION);
74         content2->only_text()->set_dcp_track (DCPTextTrack("Second track", "German"));
75         content3->only_text()->set_type (TEXT_CLOSED_CAPTION);
76         content3->only_text()->set_dcp_track (DCPTextTrack("Third track", "Italian"));
77
78         film->make_dcp ();
79         BOOST_REQUIRE (!wait_for_jobs ());
80
81         dcp::DCP check (film->dir(film->dcp_name()));
82         check.read ();
83
84         BOOST_REQUIRE_EQUAL (check.cpls().size(), 1U);
85         BOOST_REQUIRE_EQUAL (check.cpls().front()->reels().size(), 1U);
86         list<shared_ptr<dcp::ReelClosedCaptionAsset> > ccaps = check.cpls().front()->reels().front()->closed_captions();
87         BOOST_REQUIRE_EQUAL (ccaps.size(), 3U);
88
89         list<shared_ptr<dcp::ReelClosedCaptionAsset> >::const_iterator i = ccaps.begin ();
90         BOOST_CHECK_EQUAL ((*i)->annotation_text(), "First track");
91         BOOST_REQUIRE (static_cast<bool>((*i)->language()));
92         BOOST_CHECK_EQUAL ((*i)->language().get(), "French");
93         ++i;
94         BOOST_CHECK_EQUAL ((*i)->annotation_text(), "Second track");
95         BOOST_REQUIRE (static_cast<bool>((*i)->language()));
96         BOOST_CHECK_EQUAL ((*i)->language().get(), "German");
97         ++i;
98         BOOST_CHECK_EQUAL ((*i)->annotation_text(), "Third track");
99         BOOST_REQUIRE (static_cast<bool>((*i)->language()));
100         BOOST_CHECK_EQUAL ((*i)->language().get(), "Italian");
101 }