From 01d72c927c98efc597a802d4e2fd9d55e79fda05 Mon Sep 17 00:00:00 2001 From: Toni Gundogdu Date: Wed, 8 May 2013 20:04:42 +0300 Subject: [PATCH] tests: Add a test for media/101greatgoals.lua Signed-off-by: Toni Gundogdu --- tests/media/101greatgoals.mk | 6 ++++ tests/media/media_101greatgoals.c | 59 +++++++++++++++++++++++++++++++++++++++ tests/media/tests.mk | 1 + 3 files changed, 66 insertions(+) create mode 100644 tests/media/101greatgoals.mk create mode 100644 tests/media/media_101greatgoals.c diff --git a/tests/media/101greatgoals.mk b/tests/media/101greatgoals.mk new file mode 100644 index 0000000..fd03356 --- /dev/null +++ b/tests/media/101greatgoals.mk @@ -0,0 +1,6 @@ +TEST_PROGS+=media_101greatgoals +media_101greatgoals_SOURCES=media/media_101greatgoals.c +media_101greatgoals_CPPFLAGS=$(testsuite_cppflags) +media_101greatgoals_LDFLAGS=$(testsuite_ldflags) +media_101greatgoals_LDADD=$(testsuite_ldadd) +media_101greatgoals_CFLAGS=$(AM_CFLAGS) diff --git a/tests/media/media_101greatgoals.c b/tests/media/media_101greatgoals.c new file mode 100644 index 0000000..c36eb3b --- /dev/null +++ b/tests/media/media_101greatgoals.c @@ -0,0 +1,59 @@ +/* libquvi-scripts + * Copyright (C) 2013 Toni Gundogdu + * + * This file is part of libquvi-scripts . + * + * This program is free software: you can redistribute it and/or + * modify it under the terms of the GNU Affero General Public + * License as published by the Free Software Foundation, either + * version 3 of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General + * Public License along with this program. If not, see + * . + */ + +#include "config.h" + +#include +#include +#include + +#include "tests.h" + +static const gchar URL[] = + "http://www.101greatgoals.com/gvideos/incredible-miss-diego-jardel-avai-misses-an-empty-goal-v-america-mg/"; + +static const gchar TITLE[] = + "INCREDIBLE MISS: Diego Jardel (Avaí) misses the empty goal v América-MG"; + +static const gchar ID[] = + "SPxNXXR7RBc"; + +static void test_media_101greatgoals() +{ + struct qm_test_exact_s e; + struct qm_test_opts_s o; + + memset(&e, 0, sizeof(e)); + memset(&o, 0, sizeof(o)); + + e.title = TITLE; + e.id = ID; + + qm_test(__func__, URL, &e, &o); +} + +gint main(gint argc, gchar **argv) +{ + g_test_init(&argc, &argv, NULL); + g_test_add_func("/media/101greatgoals", test_media_101greatgoals); + return (g_test_run()); +} + +/* vim: set ts=2 sw=2 tw=72 expandtab: */ diff --git a/tests/media/tests.mk b/tests/media/tests.mk index 1126ab6..7feb241 100644 --- a/tests/media/tests.mk +++ b/tests/media/tests.mk @@ -1,3 +1,4 @@ +include $(top_srcdir)/tests/media/101greatgoals.mk include $(top_srcdir)/tests/media/academicearth.mk include $(top_srcdir)/tests/media/ardmediathek.mk include $(top_srcdir)/tests/media/arte.mk -- 2.11.4.GIT