Update NEWS for v0.9.4
[libquvi.git] / tests / lib / env.c
blob66b62c6f33ade4ab0a7209b0eb5ec14d4830d682
1 /* libquvi
2 * Copyright (C) 2012 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/>.
21 #include "config.h"
23 #include <string.h>
24 #include <glib.h>
25 #include <quvi.h>
26 #include <curl/curl.h>
28 #include "tests.h"
30 static gboolean chk(const gchar *w, const gchar *m)
32 const gchar *s = g_getenv(w);
33 if (s == NULL || strlen(s) == 0)
35 if (m != NULL)
36 g_test_message("%s", m);
37 return (FALSE);
39 return (TRUE);
42 gboolean chk_internet()
44 return (chk("TEST_INTERNET", "SKIP: Set TEST_INTERNET to enable"));
47 void chk_verbose(quvi_t q)
49 g_assert(q != NULL);
50 if (chk("TEST_VERBOSE", NULL) == TRUE)
52 CURL *c = NULL;
53 g_setenv("LIBQUVI_VERBOSE_SCRIPTS", "1", TRUE);
54 quvi_get(q, QUVI_INFO_CURL_HANDLE, &c);
55 curl_easy_setopt(c, CURLOPT_VERBOSE, 1L);
59 /* Check if test was set to be skipped.
60 * Example:
61 * env TEST_SKIP=test_supports_online,test_quvi make test
63 gboolean chk_skip(const gchar *test)
65 const gchar *e = g_getenv("TEST_SKIP");
66 gboolean r = FALSE;
68 if (e == NULL || strlen(e) == 0)
69 return (FALSE);
71 gchar **s = g_strsplit(e, ",", 0);
72 gint i = -1;
74 while (s != NULL && s[++i] != NULL)
76 if (match(test, s[i]) == TRUE)
78 g_test_message("SKIP: Remove '%s' from TEST_SKIP to enable", test);
79 r = TRUE;
80 break;
83 g_strfreev(s);
84 s = NULL;
86 return (r);
89 /* vim: set ts=2 sw=2 tw=72 expandtab: */