These tests need a valid Film.
authorCarl Hetherington <cth@carlh.net>
Fri, 2 May 2014 09:41:50 +0000 (10:41 +0100)
committerCarl Hetherington <cth@carlh.net>
Fri, 2 May 2014 09:41:50 +0000 (10:41 +0100)
test/subrip_test.cc

index 3ea68737fdd892c23e1db0d4747d61bf2b2b7450..de102369f28bf5c76ee573fbc22b61291fd88752 100644 (file)
@@ -125,7 +125,7 @@ BOOST_AUTO_TEST_CASE (subrip_content_test)
 /** Test parsing of full SubRip file content */
 BOOST_AUTO_TEST_CASE (subrip_parse_test)
 {
-       shared_ptr<Film> film = new_test_film ("subrip_test");
+       shared_ptr<Film> film = new_test_film ("subrip_parse_test");
        shared_ptr<SubRipContent> content (new SubRipContent (film, "test/data/subrip.srt"));
        content->examine (shared_ptr<Job> ());
        BOOST_CHECK_EQUAL (content->full_length(), DCPTime::from_seconds ((3 * 60) + 56.471));
@@ -184,12 +184,11 @@ BOOST_AUTO_TEST_CASE (subrip_parse_test)
 /** Test rendering of a SubRip subtitle */
 BOOST_AUTO_TEST_CASE (subrip_render_test)
 {
-       shared_ptr<SubRipContent> content (new SubRipContent (shared_ptr<Film> (), "test/data/subrip.srt"));
+       shared_ptr<Film> film = new_test_film ("subrip_render_test");
+       shared_ptr<SubRipContent> content (new SubRipContent (film, "test/data/subrip.srt"));
        content->examine (shared_ptr<Job> ());
        BOOST_CHECK_EQUAL (content->full_length(), DCPTime::from_seconds ((3 * 60) + 56.471));
 
-       shared_ptr<Film> film = new_test_film ("subrip_render_test");
-
        shared_ptr<SubRipDecoder> decoder (new SubRipDecoder (content));
        list<shared_ptr<ContentTextSubtitle> > cts = decoder->get_text_subtitles (ContentTime::from_seconds (109), ContentTime::from_seconds (110));
        BOOST_CHECK_EQUAL (cts.size(), 1);