1 /* libquvi-scripts
2  * Copyright (C) 2012  Toni Gundogdu <legatvs@gmail.com>
3  *
4  * This file is part of libquvi-scripts <http://quvi.sourceforge.net>.
5  *
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.
10  *
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.
15  *
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/>.
19  */
20 
21 #include "config.h"
22 
23 #include <string.h>
24 #include <glib.h>
25 #include <quvi.h>
26 
27 #include "tests.h"
28 
29 static const gchar URL[] =
30   "http://soundcloud.com/volt-icarus2-otherupload/sets/bgm/";
31 
32 static const gchar ID[] =
33   "volt-icarus2-otherupload_bgm";
34 
test_playlist_soundcloud()35 static void test_playlist_soundcloud()
36 {
37   struct qp_test_exact_s e;
38   struct qp_test_opts_s o;
39 
40   memset(&e, 0, sizeof(e));
41   memset(&o, 0, sizeof(o));
42 
43   e.id = ID;
44 
45   /* String values. */
46 
47   o.s_len_gt0.thumbnail_url = TRUE;
48   o.s_len_gt0.title = TRUE;
49 
50   o.s_len_gt0.media.title = TRUE;
51 
52   /* Numerical values. */
53 
54   o.gt0.media.duration_ms = TRUE;
55 
56   qp_test(__func__, URL, &e, &o);
57 }
58 
main(gint argc,gchar ** argv)59 gint main(gint argc, gchar **argv)
60 {
61   g_test_init(&argc, &argv, NULL);
62   g_test_add_func("/playlist/soundcloud", test_playlist_soundcloud);
63   return (g_test_run());
64 }
65 
66 /* vim: set ts=2 sw=2 tw=72 expandtab: */
67