FIX: tests: Use quvi_errcode instead of qerr
[libquvi-scripts.git] / tests / lib / qs_test.c
blob4f332b9d4c3c7456f9f4e1e8b401436a6db49011
1 /* libquvi-scripts
2 * Copyright (C) 2012,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 void qs_test(const gchar *func, const qs_test_exact_t qste)
31 const gchar *s;
32 quvi_scan_t qs;
33 quvi_t q;
34 gint c;
36 if (chk_skip(func) == TRUE)
37 return;
39 q = quvi_new();
40 g_assert(q != NULL);
41 g_assert_cmpint(quvi_errcode(q), ==, QUVI_OK);
43 chk_verbose(q);
45 g_test_message("url=%s", qste->url);
47 qs = quvi_scan_new(q, qste->url);
48 g_test_message("errmsg=%s", quvi_errmsg(q));
49 g_assert_cmpint(quvi_errcode(q), ==, QUVI_OK);
50 g_assert(qs != NULL);
52 for (c=0; (s = quvi_scan_next_media_url(qs)) != NULL; ++c)
54 g_test_message("media URL=%s", s);
55 g_assert_cmpint(strlen(s), >, 0);
57 g_assert_cmpint(c, ==, qste->n);
59 quvi_scan_free(qs);
60 quvi_free(q);
63 /* vim: set ts=2 sw=2 tw=72 expandtab: */