tests: Add lib/qs_test.c
[libquvi-scripts.git] / tests / lib / qs_test.c
blob6c6b6a0ca084e6324e52c043884be8a7c52a9129
1 /* libquvi-scripts
2 * Copyright (C) 2012 Toni Gundogdu <legatvs@gmail.com>
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 * 02110-1301, USA.
20 #include "config.h"
22 #include <string.h>
23 #include <glib.h>
24 #include <quvi.h>
26 #include "tests.h"
28 void qs_test(const gchar *func, const qs_test_exact_t qste)
30 const gchar *s;
31 quvi_scan_t qs;
32 quvi_t q;
33 gint c;
35 if (chk_skip(func) == TRUE)
36 return;
38 q = quvi_new();
39 g_assert(q != NULL);
40 g_assert_cmpint(qerr(q), ==, QUVI_OK);
42 chk_verbose(q);
44 g_test_message("url=%s", qste->url);
46 qs = quvi_scan_new(q, qste->url);
47 g_test_message("errmsg=%s", quvi_errmsg(q));
48 g_assert_cmpint(qerr(q), ==, QUVI_OK);
49 g_assert(qs != NULL);
51 for (c=0; (s = quvi_scan_next_media_url(qs)) != NULL; ++c)
53 g_test_message("media URL=%s", s);
54 g_assert_cmpint(strlen(s), >, 0);
56 g_assert_cmpint(c, ==, qste->n);
58 quvi_scan_free(qs);
59 quvi_free(q);
62 /* vim: set ts=2 sw=2 tw=72 expandtab: */