From 60e87090eb1f91e298f4e1005a6f6953b592709f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Thu, 21 Nov 2013 16:34:25 +0000 Subject: [PATCH] tests: add unit test for samiparser issue https://bugzilla.gnome.org/show_bug.cgi?id=712805 --- tests/check/elements/subparse.c | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/tests/check/elements/subparse.c b/tests/check/elements/subparse.c index 0651eabd50..3bc56d5c56 100644 --- a/tests/check/elements/subparse.c +++ b/tests/check/elements/subparse.c @@ -771,6 +771,32 @@ GST_START_TEST (test_sami_bad_entities) GST_END_TEST; +GST_START_TEST (test_sami_comment) +{ + SubParseInputChunk sami_input[] = { + {"\n" + "\n" + "\n" + " \n" + "

\n" "   &\n", + 1000 * GST_MSECOND, 2000 * GST_MSECOND, + "\xc2\xa0 &"}, + {" \n" + "

\n" + "   ± ´\n" "\n" "\n", + 2000 * GST_MSECOND, GST_CLOCK_TIME_NONE, + "\xc2\xa0 \xc2\xb1 \xc2\xb4"} + }; + + do_test (sami_input, G_N_ELEMENTS (sami_input), "pango-markup"); +} + +GST_END_TEST; + /* TODO: * - add/modify tests so that lines aren't dogfed to the parsers in complete * lines or sets of complete lines, but rather in random chunks @@ -803,6 +829,7 @@ subparse_suite (void) tcase_add_test (tc_chain, test_sami_xml_entities); tcase_add_test (tc_chain, test_sami_html_entities); tcase_add_test (tc_chain, test_sami_bad_entities); + tcase_add_test (tc_chain, test_sami_comment); return s; }