X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=test%2Fsubtitle_charset_test.cc;h=9247aec4a828150410694c0f1d57ecdd55861b67;hb=61dfa6671f042eda2267d7c179ad0468d9bdb5d0;hp=9b2de21327578b0ffdde57b29f5407360a6a7790;hpb=c1f98c84cdf3829b31929453b8a89fdcbdcd0c42;p=dcpomatic.git diff --git a/test/subtitle_charset_test.cc b/test/subtitle_charset_test.cc index 9b2de2132..9247aec4a 100644 --- a/test/subtitle_charset_test.cc +++ b/test/subtitle_charset_test.cc @@ -22,8 +22,8 @@ #include "lib/content.h" #include "lib/film.h" #include "lib/content_factory.h" -#include "lib/text_subtitle.h" -#include "lib/plain_text_content.h" +#include "lib/string_text_file.h" +#include "lib/string_text_file_content.h" #include using boost::shared_ptr; @@ -33,7 +33,7 @@ using boost::dynamic_pointer_cast; BOOST_AUTO_TEST_CASE (subtitle_charset_test1) { shared_ptr film = new_test_film2 ("subtitle_charset_test1"); - shared_ptr content = content_factory (film, private_data / "PADDINGTON soustitresVFdef.srt").front (); + shared_ptr content = content_factory (TestPaths::private_data / "PADDINGTON soustitresVFdef.srt").front(); film->examine_and_add_content (content); BOOST_REQUIRE (!wait_for_jobs ()); } @@ -42,11 +42,11 @@ BOOST_AUTO_TEST_CASE (subtitle_charset_test1) BOOST_AUTO_TEST_CASE (subtitle_charset_test2) { shared_ptr film = new_test_film2 ("subtitle_charset_test2"); - shared_ptr content = content_factory (film, "test/data/osx.srt").front (); + shared_ptr content = content_factory ("test/data/osx.srt").front(); film->examine_and_add_content (content); BOOST_REQUIRE (!wait_for_jobs ()); - shared_ptr ts = dynamic_pointer_cast<PlainText> (content); + shared_ptr<StringTextFileContent> ts = dynamic_pointer_cast<StringTextFileContent> (content); BOOST_REQUIRE (ts); /* Make sure we got the subtitle data from the file */ - BOOST_REQUIRE_EQUAL (content->full_length().get(), 6052032); + BOOST_REQUIRE_EQUAL (content->full_length(film).get(), 6052032); }