Blame tests/supports.c

Packit 3ff1e7
/* libquvi
Packit 3ff1e7
 * Copyright (C) 2012  Toni Gundogdu <legatvs@gmail.com>
Packit 3ff1e7
 *
Packit 3ff1e7
 * This file is part of libquvi <http://quvi.sourceforge.net/>.
Packit 3ff1e7
 *
Packit 3ff1e7
 * This program is free software: you can redistribute it and/or
Packit 3ff1e7
 * modify it under the terms of the GNU Affero General Public
Packit 3ff1e7
 * License as published by the Free Software Foundation, either
Packit 3ff1e7
 * version 3 of the License, or (at your option) any later version.
Packit 3ff1e7
 *
Packit 3ff1e7
 * This program is distributed in the hope that it will be useful,
Packit 3ff1e7
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 3ff1e7
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit 3ff1e7
 * GNU Affero General Public License for more details.
Packit 3ff1e7
 *
Packit 3ff1e7
 * You should have received a copy of the GNU Affero General
Packit 3ff1e7
 * Public License along with this program.  If not, see
Packit 3ff1e7
 * <http://www.gnu.org/licenses/>.
Packit 3ff1e7
 */
Packit 3ff1e7
Packit 3ff1e7
#include "config.h"
Packit 3ff1e7
Packit 3ff1e7
#include <glib.h>
Packit 3ff1e7
#include <quvi.h>
Packit 3ff1e7
#include <curl/curl.h>
Packit 3ff1e7
Packit 3ff1e7
#include "tests.h"
Packit 3ff1e7
Packit 3ff1e7
static const gchar URL[] =
Packit 3ff1e7
  "http://www.gaskrank.tv/tv/motorrad-oldtimer/1928-henderson-deluxe-alt-und--19115.htm";
Packit 3ff1e7
Packit 3ff1e7
static const gchar URL_SHORT[] = "http://is.gd/jg9P5c";
Packit 3ff1e7
static const gchar URL_NOSUP[] = "http://example.com/";
Packit 3ff1e7
static const gchar URL_INV[] = "foobar";
Packit 3ff1e7
Packit 3ff1e7
static void test_supports_online()
Packit 3ff1e7
{
Packit 3ff1e7
  QuviBoolean r;
Packit 3ff1e7
  quvi_t q;
Packit 3ff1e7
Packit 3ff1e7
  if (chk_internet() == FALSE || chk_skip(__func__) == TRUE)
Packit 3ff1e7
    return;
Packit 3ff1e7
Packit 3ff1e7
  q = quvi_new();
Packit 3ff1e7
  g_assert(q != NULL);
Packit 3ff1e7
  g_assert_cmpint(quvi_errcode(q), ==, QUVI_OK);
Packit 3ff1e7
Packit 3ff1e7
  chk_verbose(q);
Packit 3ff1e7
Packit 3ff1e7
  r = quvi_supports(q, URL,
Packit 3ff1e7
                    QUVI_SUPPORTS_MODE_OFFLINE-1, /* Defaults to online. */
Packit 3ff1e7
                    QUVI_SUPPORTS_TYPE_MEDIA);
Packit 3ff1e7
  g_assert_cmpint(quvi_errcode(q), ==, QUVI_OK);
Packit 3ff1e7
  g_assert_cmpint(r, ==, QUVI_TRUE);
Packit 3ff1e7
Packit 3ff1e7
  r = quvi_supports(q, URL,
Packit 3ff1e7
                    QUVI_SUPPORTS_MODE_ONLINE+1, /* Defaults to online */
Packit 3ff1e7
                    QUVI_SUPPORTS_TYPE_MEDIA);
Packit 3ff1e7
  g_assert_cmpint(qerr_m(q, URL), ==, QUVI_OK);
Packit 3ff1e7
  g_assert_cmpint(r, ==, QUVI_TRUE);
Packit 3ff1e7
Packit 3ff1e7
  r = quvi_supports(q, URL,
Packit 3ff1e7
                    QUVI_SUPPORTS_MODE_ONLINE,
Packit 3ff1e7
                    0xffff /* any */);
Packit 3ff1e7
  g_assert_cmpint(qerr_m(q, URL), ==, QUVI_OK);
Packit 3ff1e7
  g_assert_cmpint(r, ==, QUVI_TRUE);
Packit 3ff1e7
Packit 3ff1e7
  r = quvi_supports(q, URL,
Packit 3ff1e7
                    QUVI_SUPPORTS_MODE_ONLINE,
Packit 3ff1e7
                    QUVI_SUPPORTS_TYPE_MEDIA);
Packit 3ff1e7
  g_assert_cmpint(qerr_m(q, URL), ==, QUVI_OK);
Packit 3ff1e7
  g_assert_cmpint(r, ==, QUVI_TRUE);
Packit 3ff1e7
Packit 3ff1e7
  r = quvi_supports(q, URL_SHORT,
Packit 3ff1e7
                    QUVI_SUPPORTS_MODE_ONLINE,
Packit 3ff1e7
                    QUVI_SUPPORTS_TYPE_MEDIA);
Packit 3ff1e7
  g_assert_cmpint(qerr_m(q, URL_SHORT), ==, QUVI_OK);
Packit 3ff1e7
  g_assert_cmpint(r, ==, QUVI_TRUE);
Packit 3ff1e7
Packit 3ff1e7
  r = quvi_supports(q, URL /* Media URL */,
Packit 3ff1e7
                    QUVI_SUPPORTS_MODE_ONLINE,
Packit 3ff1e7
                    QUVI_SUPPORTS_TYPE_PLAYLIST /*!*/);
Packit 3ff1e7
  g_assert_cmpint(r, ==, QUVI_FALSE);
Packit 3ff1e7
  g_assert_cmpint(qerr_m(q, URL), ==, QUVI_ERROR_NO_SUPPORT);
Packit 3ff1e7
Packit 3ff1e7
  r = quvi_supports(q, URL_NOSUP,
Packit 3ff1e7
                    QUVI_SUPPORTS_MODE_ONLINE,
Packit 3ff1e7
                    QUVI_SUPPORTS_TYPE_ANY);
Packit 3ff1e7
  g_assert_cmpint(r, ==, QUVI_FALSE);
Packit 3ff1e7
  g_assert_cmpint(qerr_m(q, URL_NOSUP), ==, QUVI_ERROR_NO_SUPPORT);
Packit 3ff1e7
Packit 3ff1e7
  r = quvi_supports(q, URL_INV,
Packit 3ff1e7
                    QUVI_SUPPORTS_MODE_ONLINE,
Packit 3ff1e7
                    QUVI_SUPPORTS_TYPE_ANY);
Packit 3ff1e7
  g_assert_cmpint(r, ==, QUVI_FALSE);
Packit 3ff1e7
  g_assert_cmpint(qerr_m(q, URL_INV), ==, QUVI_ERROR_CALLBACK);
Packit 3ff1e7
Packit 3ff1e7
  quvi_free(q);
Packit 3ff1e7
}
Packit 3ff1e7
Packit 3ff1e7
static void test_supports_offline()
Packit 3ff1e7
{
Packit 3ff1e7
  QuviBoolean r;
Packit 3ff1e7
  quvi_t q;
Packit 3ff1e7
Packit 3ff1e7
  if (chk_skip(__func__) == TRUE)
Packit 3ff1e7
    return;
Packit 3ff1e7
Packit 3ff1e7
  q = quvi_new();
Packit 3ff1e7
  g_assert(q != NULL);
Packit 3ff1e7
  g_assert_cmpint(quvi_errcode(q), ==, QUVI_OK);
Packit 3ff1e7
Packit 3ff1e7
  r = quvi_supports(q, URL,
Packit 3ff1e7
                    QUVI_SUPPORTS_MODE_OFFLINE,
Packit 3ff1e7
                    QUVI_SUPPORTS_TYPE_ANY);
Packit 3ff1e7
  g_assert_cmpint(quvi_errcode(q), ==, QUVI_OK);
Packit 3ff1e7
  g_assert_cmpint(r, ==, QUVI_TRUE);
Packit 3ff1e7
Packit 3ff1e7
  r = quvi_supports(q, URL /* Media URL */,
Packit 3ff1e7
                    QUVI_SUPPORTS_MODE_OFFLINE,
Packit 3ff1e7
                    QUVI_SUPPORTS_TYPE_PLAYLIST /*!*/);
Packit 3ff1e7
  g_assert_cmpint(r, ==, QUVI_FALSE);
Packit 3ff1e7
  g_assert_cmpint(quvi_errcode(q), ==, QUVI_ERROR_NO_SUPPORT);
Packit 3ff1e7
Packit 3ff1e7
  r = quvi_supports(q, URL_SHORT,
Packit 3ff1e7
                    QUVI_SUPPORTS_MODE_OFFLINE,
Packit 3ff1e7
                    QUVI_SUPPORTS_TYPE_ANY);
Packit 3ff1e7
  g_assert_cmpint(r, ==, QUVI_FALSE);
Packit 3ff1e7
  g_assert_cmpint(quvi_errcode(q), ==, QUVI_ERROR_NO_SUPPORT);
Packit 3ff1e7
Packit 3ff1e7
  r = quvi_supports(q, URL_NOSUP,
Packit 3ff1e7
                    QUVI_SUPPORTS_MODE_OFFLINE,
Packit 3ff1e7
                    QUVI_SUPPORTS_TYPE_ANY);
Packit 3ff1e7
  g_assert_cmpint(r, ==, QUVI_FALSE);
Packit 3ff1e7
  g_assert_cmpint(quvi_errcode(q), ==, QUVI_ERROR_NO_SUPPORT);
Packit 3ff1e7
Packit 3ff1e7
  r = quvi_supports(q, URL_INV,
Packit 3ff1e7
                    QUVI_SUPPORTS_MODE_OFFLINE,
Packit 3ff1e7
                    QUVI_SUPPORTS_TYPE_ANY);
Packit 3ff1e7
  g_assert_cmpint(r, ==, QUVI_FALSE);
Packit 3ff1e7
  g_assert_cmpint(quvi_errcode(q), ==, QUVI_ERROR_NO_SUPPORT);
Packit 3ff1e7
Packit 3ff1e7
  quvi_free(q);
Packit 3ff1e7
}
Packit 3ff1e7
Packit 3ff1e7
static void test_supports_net_err()
Packit 3ff1e7
{
Packit 3ff1e7
  QuviBoolean r;
Packit 3ff1e7
  quvi_t q;
Packit 3ff1e7
  CURL *c;
Packit 3ff1e7
Packit 3ff1e7
  if (chk_internet() == FALSE || chk_skip(__func__) == TRUE)
Packit 3ff1e7
    return;
Packit 3ff1e7
Packit 3ff1e7
  q = quvi_new();
Packit 3ff1e7
  g_assert(q != NULL);
Packit 3ff1e7
  g_assert_cmpint(quvi_errcode(q), ==, QUVI_OK);
Packit 3ff1e7
Packit 3ff1e7
  chk_verbose(q);
Packit 3ff1e7
Packit 3ff1e7
  /* Simulate a network error. See also quvi_supports C API
Packit 3ff1e7
   * documentation. */
Packit 3ff1e7
Packit 3ff1e7
  quvi_get(q, QUVI_INFO_CURL_HANDLE, &c);
Packit 3ff1e7
  g_assert(c != NULL);
Packit 3ff1e7
  curl_easy_setopt(c, CURLOPT_PROXY, "http://localhost:12345");
Packit 3ff1e7
Packit 3ff1e7
  r = quvi_supports(q, URL, QUVI_SUPPORTS_MODE_ONLINE,
Packit 3ff1e7
                    QUVI_SUPPORTS_TYPE_ANY);
Packit 3ff1e7
  g_assert_cmpint(r, ==, QUVI_FALSE);
Packit 3ff1e7
  g_assert_cmpint(qerr_m(q, URL), !=, QUVI_ERROR_NO_SUPPORT);
Packit 3ff1e7
  g_assert_cmpint(qerr_m(q, URL), ==, QUVI_ERROR_CALLBACK);
Packit 3ff1e7
Packit 3ff1e7
  quvi_free(q);
Packit 3ff1e7
}
Packit 3ff1e7
Packit 3ff1e7
gint main(gint argc, gchar **argv)
Packit 3ff1e7
{
Packit 3ff1e7
  g_test_init(&argc, &argv, NULL);
Packit 3ff1e7
  g_test_add_func("/quvi/supports (online)", test_supports_online);
Packit 3ff1e7
  g_test_add_func("/quvi/supports (offline)", test_supports_offline);
Packit 3ff1e7
  g_test_add_func("/quvi/supports (network error)", test_supports_net_err);
Packit 3ff1e7
  return (g_test_run());
Packit 3ff1e7
}
Packit 3ff1e7
Packit 3ff1e7
/* vim: set ts=2 sw=2 tw=72 expandtab: */