summaryrefslogtreecommitdiff
path: root/test/srt_subtitle_test.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-01-12 15:29:12 +0100
committerCarl Hetherington <cth@carlh.net>2024-01-15 12:44:53 +0100
commitde1b4a967e6854782e88e83d48af74289977c8c3 (patch)
tree97b75a9d24e8f047f17f05a919a80c806b6544f0 /test/srt_subtitle_test.cc
parenta4a7d9ef34f2f083b0ba9e32e933ea5c64d2352d (diff)
Inspect most DCPs made during tests with ClairMeta (#76).
Diffstat (limited to 'test/srt_subtitle_test.cc')
-rw-r--r--test/srt_subtitle_test.cc8
1 files changed, 7 insertions, 1 deletions
diff --git a/test/srt_subtitle_test.cc b/test/srt_subtitle_test.cc
index 0ee9cb197..bac0bedec 100644
--- a/test/srt_subtitle_test.cc
+++ b/test/srt_subtitle_test.cc
@@ -100,7 +100,11 @@ BOOST_AUTO_TEST_CASE (srt_subtitle_test2)
dcp::VerificationNote::Code::MISSING_SUBTITLE_LANGUAGE,
dcp::VerificationNote::Code::INVALID_SUBTITLE_FIRST_TEXT_TIME,
dcp::VerificationNote::Code::MISSING_CPL_METADATA
- });
+ },
+ true,
+ /* ClairMeta tries to inspect the font file and fails because it isn't one */
+ false
+ );
/* Should be blank video with a subtitle MXF; sound is irrelevant */
check_dcp("test/data/srt_subtitle_test2", film->dir(film->dcp_name()), true);
@@ -129,6 +133,7 @@ BOOST_AUTO_TEST_CASE (srt_subtitle_test3)
content->only_text()->set_use (true);
content->only_text()->set_burn (false);
+ content->only_text()->set_language(dcp::LanguageTag("de"));
make_and_verify_dcp (film, {dcp::VerificationNote::Code::INVALID_STANDARD});
@@ -178,6 +183,7 @@ BOOST_AUTO_TEST_CASE (srt_subtitle_test5)
auto content = make_shared<StringTextFileContent>("test/data/subrip2.srt");
content->only_text()->set_use (true);
content->only_text()->set_burn (false);
+ content->only_text()->set_language(dcp::LanguageTag("de"));
film->examine_and_add_content (content);
BOOST_REQUIRE (!wait_for_jobs());
content->set_position (film, DCPTime());