tests: uncomment playlist/soundcloud
[libquvi-scripts.git] / tests / media / media_arte.c
blob75f15299063d6809cbb5dd093317e4ff2f3e1c9f
1 /* libquvi-scripts
2 * Copyright (C) 2012 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/>.
22 * NOTE: Media hosted at videos.arte.tv expire after some time. For this
23 * test, we need to fetch the front page and parse a test media URL from
24 * it.
27 #include "config.h"
29 #include <string.h>
30 #include <glib.h>
31 #include <quvi.h>
33 #include "tests.h"
35 static const gchar FIRST[] = "\\<h2\\>\\<a href=\"(.*)\"";
36 static const gchar WWW[] = "http://videos.arte.tv";
38 static void test_media_arte()
40 struct qm_test_opts_s o;
41 gchar *c, *p, *url;
43 memset(&o, 0, sizeof(o));
45 if (chk_geoblocked() == FALSE)
46 return;
48 /* Normally done in qm_test but due to the fetch-parse circumstances,
49 * do it here. */
50 if (chk_skip(__func__) == TRUE)
51 return;
53 c = fetch(WWW);
54 g_assert(c != NULL);
56 p = capture(c, FIRST);
57 g_assert(p != NULL);
59 g_free(c);
60 c = NULL;
62 url = g_strdup_printf("%s%s", WWW, p);
63 g_test_message("media URL=%s", url);
65 g_free(p);
66 p = NULL;
68 qm_test(__func__, url, NULL, &o);
70 g_free(url);
71 url = NULL;
74 gint main(gint argc, gchar **argv)
76 g_test_init(&argc, &argv, NULL);
77 g_test_add_func("/media/arte", test_media_arte);
78 return (g_test_run());
81 /* vim: set ts=2 sw=2 tw=72 expandtab: */