tests: media_guardian: Additional test URL, update media IDs
[libquvi-scripts.git] / tests / media / media_guardian.c
blob86f29ef1986ab24df0e684fc3dd85e1c40a42fec
1 /* libquvi-scripts
2 * Copyright (C) 2013 Toni Gundogdu <legatvs@gmail.com>
4 * This file is part of libquvi-scripts <http://quvi.sourceforge.net>.
6 * This program is free software: you can redistribute it and/or
7 * modify it under the terms of the GNU Affero General Public
8 * License as published by the Free Software Foundation, either
9 * version 3 of the License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Affero General Public License for more details.
16 * You should have received a copy of the GNU Affero General
17 * Public License along with this program. If not, see
18 * <http://www.gnu.org/licenses/>.
21 #include "config.h"
23 #include <string.h>
24 #include <glib.h>
25 #include <quvi.h>
27 #include "tests.h"
29 static const gchar *URLs[] =
31 "http://www.theguardian.com/film/video/2013/aug/01/alan-partridge-alpha-papa-video",
32 "http://www.guardian.co.uk/football/blog/audio/2013/feb/18/football-weekly-blackburn-arsenal-wenger",
33 "http://www.guardian.co.uk/technology/video/2013/may/01/google-glass-user-guide-released-video",
34 "http://www.guardian.co.uk/science/audio/2013/apr/29/podcast-science-weekly-burning-question",
35 "http://www.guardian.co.uk/football/blog/audio/2013/apr/29/football-weekly-podcast-qpr-reading-relegated-newcastle",
36 NULL
39 static const gchar *TITLEs[] =
41 "Alan Partridge: Alpha Papa: watch an exclusive clip",
42 "Football Weekly: Blackburn dump Arsenal out of the FA Cup",
43 "Google Glass: video user guide released – video",
44 "Science Weekly podcast: The Burning Question – can we quit fossil fuels?",
45 "Football Weekly: QPR and Reading relegated - will Newcastle join them?",
46 NULL
49 static const gchar *IDs[] =
51 "1945044",
52 "1869215",
53 "1902069",
54 "1899845",
55 "1900820",
56 NULL
59 static void test_media_guardian()
61 struct qm_test_exact_s e;
62 struct qm_test_opts_s o;
63 gint i;
65 for (i=0; URLs[i] != NULL; ++i)
67 memset(&e, 0, sizeof(e));
68 memset(&o, 0, sizeof(o));
70 e.title = TITLEs[i];
71 e.id = IDs[i];
73 #ifdef _1 /* Skip: audio streams don't obviously have these */
74 o.gt0.stream.video.height = TRUE;
75 o.gt0.stream.video.width = TRUE;
76 #endif
77 o.gt0.duration_ms = TRUE;
79 qm_test(__func__, URLs[i], &e, &o);
83 gint main(gint argc, gchar **argv)
85 g_test_init(&argc, &argv, NULL);
86 g_test_add_func("/media/guardian", test_media_guardian);
87 return (g_test_run());
90 /* vim: set ts=2 sw=2 tw=72 expandtab: */