test_media_select: Replace URL, update patterns
[libquvi.git] / tests / media.c
blobf126d20ed828d9afcd22e942bd9657be1a7fd5ca
1 /* libquvi
2 * Copyright (C) 2012,2013 Toni Gundogdu <legatvs@gmail.com>
4 * This file is part of libquvi <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 * TODO: When a suitable test URL is found
23 * - Add check for QUVI_MEDIA_STREAM_PROPERTY_VIDEO_BITRATE_KBIT_S
24 * - Add check for QUVI_MEDIA_STREAM_PROPERTY_AUDIO_BITRATE_KBIT_S
27 #include "config.h"
29 #include <string.h>
30 #include <glib.h>
31 #include <quvi.h>
33 #include "tests.h"
35 static gchar *URLs[] =
37 "http://www.gaskrank.tv/tv/motorrad-oldtimer/1928-henderson-deluxe-alt-und--19115.htm",
38 "http://www.gaskrank.tv/tv/motorrad-oldtimer/1912-harley-davidson-superscho-9481.htm",
39 NULL
42 static gchar *TITLEs[] =
44 "1928 Henderson Deluxe - alt und mit der Patina des Alters aber läuft",
45 "1912 Harley Davidson - superschön restauriert",
46 NULL
49 #define chk_len(p) \
50 do {\
51 gchar *s = NULL; \
52 quvi_media_get(qm, p, &s); \
53 g_assert(s != NULL); \
54 g_test_message("%s=%s", #p, s); \
55 g_assert_cmpint(strlen(s), >, 1); \
56 } while (0)
58 #define chk_val(p) \
59 do {\
60 gdouble n = -1; \
61 quvi_media_get(qm, p, &n); \
62 g_test_message("%s=%f", #p, n); \
63 g_assert_cmpfloat(n, >, -1);\
64 } while (0)
66 static void test_media_core()
68 quvi_media_t qm;
69 quvi_t q;
70 gchar *s;
72 if (chk_internet() == FALSE || chk_skip(__func__) == TRUE)
73 return;
75 q = quvi_new();
76 g_assert(q != NULL);
77 g_assert_cmpint(quvi_errcode(q), ==, QUVI_OK);
79 chk_verbose(q);
81 qm = quvi_media_new(q, URLs[0]);
82 g_assert_cmpint(qerr_m(q, URLs[0]), ==, QUVI_OK);
83 g_assert(qm != NULL);
85 /* Boundary check: the first -1 */
86 quvi_media_get(qm, QUVI_MEDIA_PROPERTY_THUMBNAIL_URL-1, &s);
87 g_assert_cmpint(quvi_errcode(q), ==, QUVI_ERROR_INVALID_ARG);
89 /* Boundary check: the last +1 */
90 quvi_media_get(qm, QUVI_MEDIA_STREAM_PROPERTY_VIDEO_WIDTH+1, &s);
91 g_assert_cmpint(quvi_errcode(q), ==, QUVI_ERROR_INVALID_ARG);
93 /* string */
94 chk_len(QUVI_MEDIA_PROPERTY_THUMBNAIL_URL);
95 chk_len(QUVI_MEDIA_PROPERTY_TITLE);
96 chk_len(QUVI_MEDIA_PROPERTY_ID);
98 chk_len(QUVI_MEDIA_STREAM_PROPERTY_URL);
100 /* double */
101 chk_val(QUVI_MEDIA_PROPERTY_START_TIME_MS);
102 chk_val(QUVI_MEDIA_PROPERTY_DURATION_MS);
104 quvi_media_free(qm);
105 quvi_free(q);
108 static void test_media_multi()
110 static const gchar URL[] = "http://www.youtube.com/watch?v=G4evlxq34og";
112 quvi_media_t qm;
113 GString *b;
114 gchar *s;
115 quvi_t q;
116 gint i;
118 if (chk_internet() == FALSE || chk_skip(__func__) == TRUE)
119 return;
121 q = quvi_new();
122 g_assert(q != NULL);
123 g_assert_cmpint(quvi_errcode(q), ==, QUVI_OK);
125 chk_verbose(q);
127 qm = quvi_media_new(q, URL);
128 g_assert_cmpint(qerr_m(q, URL), ==, QUVI_OK);
129 g_assert(qm != NULL);
131 /* string */
132 chk_len(QUVI_MEDIA_PROPERTY_THUMBNAIL_URL);
133 chk_len(QUVI_MEDIA_PROPERTY_TITLE);
134 chk_len(QUVI_MEDIA_PROPERTY_ID);
136 /* double */
137 chk_val(QUVI_MEDIA_PROPERTY_START_TIME_MS);
138 chk_val(QUVI_MEDIA_PROPERTY_DURATION_MS);
140 b = g_string_new(NULL);
141 i = 0;
143 while (quvi_media_stream_next(qm) == QUVI_TRUE)
145 chk_len(QUVI_MEDIA_STREAM_PROPERTY_URL);
146 chk_len(QUVI_MEDIA_STREAM_PROPERTY_ID);
148 quvi_media_get(qm, QUVI_MEDIA_STREAM_PROPERTY_URL, &s);
149 g_assert_cmpint(quvi_errcode(q), ==, QUVI_OK);
151 if (b->len >0) /* Make sure each media stream URL is unique */
152 g_assert_cmpstr(b->str, !=, s);
153 g_string_assign(b, s);
155 chk_len(QUVI_MEDIA_STREAM_PROPERTY_CONTAINER);
156 quvi_media_get(qm, QUVI_MEDIA_STREAM_PROPERTY_CONTAINER, &s);
157 g_assert_cmpint(quvi_errcode(q), ==, QUVI_OK);
159 if (strstr(s, "flv") ==NULL) /* FLVs do not come with these */
161 chk_len(QUVI_MEDIA_STREAM_PROPERTY_VIDEO_ENCODING);
162 chk_len(QUVI_MEDIA_STREAM_PROPERTY_AUDIO_ENCODING);
164 ++i;
166 g_assert_cmpint(i, >, 1);
168 g_string_free(b, TRUE);
169 b = NULL;
171 quvi_media_free(qm);
172 quvi_free(q);
175 static void test_media_select()
177 static const gchar URL[] = "http://www.youtube.com/watch?v=G4evlxq34og";
179 quvi_media_t qm;
180 gchar *s, *best;
181 GSList *curr;
182 GSList *ids;
183 quvi_t q;
185 if (chk_internet() == FALSE || chk_skip(__func__) == TRUE)
186 return;
188 q = quvi_new();
189 g_assert(q != NULL);
190 g_assert_cmpint(quvi_errcode(q), ==, QUVI_OK);
192 chk_verbose(q);
194 qm = quvi_media_new(q, URL);
195 g_assert_cmpint(qerr_m(q, URL), ==, QUVI_OK);
196 g_assert(qm != NULL);
198 ids = NULL;
199 while (quvi_media_stream_next(qm) == QUVI_TRUE)
201 quvi_media_get(qm, QUVI_MEDIA_STREAM_PROPERTY_ID, &s);
202 ids = g_slist_prepend(ids, g_strdup(s));
204 ids = g_slist_reverse(ids);
207 * Default stream. This should also advance the current list pointer,
208 * so that when quvi_media_stream_next is called the next time, it
209 * should return the 2nd stream in the list, not the first one.
212 quvi_media_get(qm, QUVI_MEDIA_STREAM_PROPERTY_ID, &s);
213 curr = g_slist_nth(ids, 0);
214 g_assert_cmpstr(curr->data, ==, s);
216 quvi_media_stream_next(qm);
217 quvi_media_get(qm, QUVI_MEDIA_STREAM_PROPERTY_ID, &s);
218 curr = g_slist_nth(ids, 1);
219 g_assert_cmpstr(curr->data, ==, s);
221 /* Reset. */
223 quvi_media_stream_reset(qm);
224 quvi_media_get(qm, QUVI_MEDIA_STREAM_PROPERTY_ID, &s);
225 curr = g_slist_nth(ids, 0);
226 g_assert_cmpstr(curr->data, ==, s);
228 /* The best stream, same as the first stream. */
230 quvi_media_stream_choose_best(qm);
231 quvi_media_get(qm, QUVI_MEDIA_STREAM_PROPERTY_ID, &s);
232 curr = g_slist_nth(ids, 0);
233 g_assert_cmpstr(curr->data, ==, s);
234 best = g_strdup(s);
236 /* Select. */
238 quvi_media_stream_select(qm, "foo,bar,baz,best,croak");
239 g_assert_cmpint(quvi_errcode(q), ==, QUVI_OK);
240 quvi_media_get(qm, QUVI_MEDIA_STREAM_PROPERTY_ID, &s);
241 g_assert_cmpstr(s, ==, best);
242 g_free(best);
244 quvi_media_stream_select(qm, "foo,bar,baz,croak");
245 g_assert_cmpint(quvi_errcode(q), ==, QUVI_ERROR_KEYWORD_CROAK);
246 quvi_media_get(qm, QUVI_MEDIA_STREAM_PROPERTY_ID, &s);
247 curr = g_slist_nth(ids, 0);
248 g_assert_cmpstr(curr->data, ==, s);
250 quvi_media_stream_select(qm, "foo,bar,baz");
251 g_assert_cmpint(quvi_errcode(q), ==, QUVI_OK);
252 quvi_media_get(qm, QUVI_MEDIA_STREAM_PROPERTY_ID, &s);
253 curr = g_slist_nth(ids, 0); /* Should be the default stream (first) */
254 g_assert_cmpstr(curr->data, ==, s);
256 quvi_media_stream_select(qm, "^\\w+_\\w+_i\\d+_\\d40p$,bar,baz,croak");
257 g_assert_cmpint(quvi_errcode(q), ==, QUVI_OK);
258 quvi_media_get(qm, QUVI_MEDIA_STREAM_PROPERTY_ID, &s);
259 g_assert_cmpstr(s, ==, "medium_webm_i43_240p");
261 quvi_media_stream_select(qm, "foo,144p$,baz,croak");
262 g_assert_cmpint(quvi_errcode(q), ==, QUVI_OK);
263 quvi_media_get(qm, QUVI_MEDIA_STREAM_PROPERTY_ID, &s);
264 g_assert_cmpstr(s, ==, "small_3gpp_i17_144p");
266 quvi_media_free(qm);
267 quvi_free(q);
270 static void test_media_short()
272 static const gchar URL[] = "http://tinyurl.com/d8s3y54";
274 quvi_media_t qm;
275 quvi_t q;
276 gchar *s;
278 if (chk_internet() == FALSE || chk_skip(__func__) == TRUE)
279 return;
281 q = quvi_new();
282 g_assert(q != NULL);
283 g_assert_cmpint(quvi_errcode(q), ==, QUVI_OK);
285 chk_verbose(q);
287 qm = quvi_media_new(q, URL);
288 g_assert_cmpint(qerr_m(q, URL), ==, QUVI_OK);
289 g_assert(qm != NULL);
291 quvi_media_get(qm, QUVI_MEDIA_PROPERTY_TITLE, &s);
292 g_assert_cmpint(quvi_errcode(q), ==, QUVI_OK);
293 g_assert_cmpstr(s, ==, TITLEs[1]);
295 quvi_media_free(qm);
296 quvi_free(q);
299 static void test_media_starttime()
301 static const gchar *URL =
302 "http://www.youtube.com/watch?v=LWxTGJ3TK1U#t=2m22s";
304 quvi_media_t qm;
305 gdouble st = 0;
306 quvi_t q;
308 if (chk_internet() == FALSE || chk_skip(__func__) == TRUE)
309 return;
311 q = quvi_new();
312 g_assert(q != NULL);
313 g_assert_cmpint(quvi_errcode(q), ==, QUVI_OK);
315 chk_verbose(q);
317 qm = quvi_media_new(q, URL);
318 g_assert_cmpint(qerr_m(q, URL), ==, QUVI_OK);
319 g_assert(qm != NULL);
321 quvi_media_get(qm, QUVI_MEDIA_PROPERTY_START_TIME_MS, &st);
322 g_assert_cmpint(quvi_errcode(q), ==, QUVI_OK);
323 g_assert_cmpint(st, ==, 142000);
325 /* YouTube videos should give us this data. */
326 chk_len(QUVI_MEDIA_STREAM_PROPERTY_AUDIO_ENCODING);
328 quvi_media_free(qm);
329 quvi_free(q);
332 static void test_media_escaped_url()
334 static gchar URL[] =
335 "http%3A//www.liveleak.com/view%3Fi%3D77f_1378178228";
337 quvi_media_t qm;
338 quvi_t q;
340 if (chk_internet() == FALSE || chk_skip(__func__) == TRUE)
341 return;
343 q = quvi_new();
344 g_assert(q != NULL);
345 g_assert_cmpint(quvi_errcode(q), ==, QUVI_OK);
347 chk_verbose(q);
349 qm = quvi_media_new(q, URL);
350 g_assert_cmpint(qerr_m(q, URL), ==, QUVI_OK);
351 g_assert(qm != NULL);
353 quvi_media_free(qm);
354 quvi_free(q);
357 static void test_media_nosupport()
359 static const gchar URL[] = "http://example.com";
361 quvi_media_t qm;
362 quvi_t q;
363 gchar *s;
365 if (chk_internet() == FALSE || chk_skip(__func__) == TRUE)
366 return;
368 q = quvi_new();
369 g_assert(q != NULL);
370 g_assert_cmpint(quvi_errcode(q), ==, QUVI_OK);
372 chk_verbose(q);
374 qm = quvi_media_new(q, URL);
375 g_assert_cmpint(qerr_m(q, URL), ==, QUVI_ERROR_NO_SUPPORT);
376 g_assert(qm != NULL);
378 quvi_media_get(qm, QUVI_MEDIA_PROPERTY_TITLE, &s);
379 g_assert_cmpint(quvi_errcode(q), ==, QUVI_OK);
380 g_assert_cmpstr(s, ==, "");
382 quvi_media_free(qm);
383 quvi_free(q);
386 static void test_media_same_q()
388 quvi_media_t qm;
389 gint i = 0;
390 quvi_t q;
392 if (chk_internet() == FALSE || chk_skip(__func__) == TRUE)
393 return;
395 q = quvi_new();
396 g_assert(q != NULL);
397 g_assert_cmpint(quvi_errcode(q), ==, QUVI_OK);
399 chk_verbose(q);
401 for (; URLs[i] != NULL; ++i)
403 gchar *s = NULL;
405 qm = quvi_media_new(q, URLs[i]);
406 g_assert_cmpint(qerr_m(q, URLs[i]), ==, QUVI_OK);
407 g_assert(qm != NULL);
409 quvi_media_get(qm, QUVI_MEDIA_PROPERTY_TITLE, &s);
410 g_assert_cmpint(quvi_errcode(q), ==, QUVI_OK);
411 g_assert_cmpstr(s, ==, TITLEs[i]);
413 quvi_media_free(qm);
415 quvi_free(q);
418 gint main(gint argc, gchar **argv)
420 g_test_init(&argc, &argv, NULL);
421 g_test_add_func("/quvi/media (core)", test_media_core);
422 g_test_add_func("/quvi/media (>1 streams)", test_media_multi);
423 g_test_add_func("/quvi/media (select)", test_media_select);
424 g_test_add_func("/quvi/media (short)", test_media_short);
425 g_test_add_func("/quvi/media (escaped URL)", test_media_escaped_url);
426 g_test_add_func("/quvi/media (nosupport)", test_media_nosupport);
427 g_test_add_func("/quvi/media (start_time)", test_media_starttime);
428 g_test_add_func("/quvi/media (same handle)", test_media_same_q);
429 return (g_test_run());
432 /* vim: set ts=2 sw=2 tw=72 expandtab: */