diff options
author | Bastien Nocera <hadess@hadess.net> | 2019-02-17 01:44:20 +0100 |
---|---|---|
committer | Bastien Nocera <hadess@hadess.net> | 2019-02-17 01:44:52 +0100 |
commit | c67489d685cd44c76188d1c58935af1bea080f51 (patch) | |
tree | 5671d04bc3e63ff590829c1c8193bd43fad7e59a /plparse/tests | |
parent | 4c166c32026ea3b023d79cc91c4a8ad567a78f2e (diff) | |
download | totem-pl-parser-c67489d685cd44c76188d1c58935af1bea080f51.tar.gz |
tests: Add tests for starttime using videosite
Which don't work using the default quvi parser.
Diffstat (limited to 'plparse/tests')
-rw-r--r-- | plparse/tests/parser.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/plparse/tests/parser.c b/plparse/tests/parser.c index 1bc3c09..f880faa 100644 --- a/plparse/tests/parser.c +++ b/plparse/tests/parser.c @@ -525,6 +525,27 @@ test_no_url_podcast (void) } static void +test_youtube_starttime (void) +{ +/* Those do not work with quvi */ +#if 0 + const char *uri; + + /* old type of direct link */ + uri = "http://www.youtube.com/watch?v=Fk2bUvrv-Uc#t=2m30s"; + g_assert_cmpstr (parser_test_get_entry_field (uri, TOTEM_PL_PARSER_FIELD_STARTTIME), ==, "150"); + + /* new type of embed */ + uri = "http://www.youtube.com/embed/Nc9xq-TVyHI?start=110"; + g_assert_cmpstr (parser_test_get_entry_field (uri, TOTEM_PL_PARSER_FIELD_STARTTIME), ==, "110"); + + /* new type of direct link */ + uri = "http://www.youtube.com/watch?v=Fk2bUvrv-Uc&t=2m30s"; + g_assert_cmpstr (parser_test_get_entry_field (uri, TOTEM_PL_PARSER_FIELD_STARTTIME), ==, "150"); +#endif +} + +static void test_itms_parsing (void) { if (http_supported == FALSE) { @@ -1316,6 +1337,7 @@ main (int argc, char *argv[]) g_test_add_func ("/parser/videosite", test_videosite); g_test_add_func ("/parser/parsing/rss_id", test_parsing_rss_id); g_test_add_func ("/parser/parsing/rss_link", test_parsing_rss_link); + g_test_add_func ("/parser/parsing/youtube_starttime", test_youtube_starttime); #endif /* HAVE_QUVI */ g_test_add_func ("/parser/parsing/not_asx_playlist", test_parsing_not_asx_playlist); g_test_add_func ("/parser/parsing/not_really_php", test_parsing_not_really_php); |