From 6cb93c1811e66e51dbed18be6a2a76064b9f0899 Mon Sep 17 00:00:00 2001 From: Guido Günther Date: Fri, 10 Oct 2014 20:34:49 +0200 Subject: Add simple test for querying trips now that we have the test provider --- .gitignore | 1 + libplanfahr/tests/Makefile.am | 19 ++++++- libplanfahr/tests/lpf-trip.c | 113 ++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 132 insertions(+), 1 deletion(-) create mode 100644 libplanfahr/tests/lpf-trip.c diff --git a/.gitignore b/.gitignore index d3a9091..3a0bc8f 100644 --- a/.gitignore +++ b/.gitignore @@ -47,6 +47,7 @@ docs/reference/tmpl docs/reference/xml m4/ libplanfahr/tests/lpf-loc +libplanfahr/tests/lpf-trip libplanfahr/tests/lpf-manager libplanfahr/tests/*.trs libplanfahr/providers/tests/hafas-bin6 diff --git a/libplanfahr/tests/Makefile.am b/libplanfahr/tests/Makefile.am index 9b1f55d..77d07d9 100644 --- a/libplanfahr/tests/Makefile.am +++ b/libplanfahr/tests/Makefile.am @@ -2,8 +2,9 @@ include $(top_srcdir)/flymake.mk include $(top_srcdir)/glib-tap.mk test_programs = \ - lpf-loc \ lpf-manager \ + lpf-loc \ + lpf-trip \ $(NULL) AM_CPPFLAGS = \ @@ -59,6 +60,22 @@ lpf_loc_LDADD = \ $(LIBXML2_LIBS) \ $(NULL) +lpf_trip_SOURCES = \ + lpf-trip.c \ + $(NULL) + +lpf_trip_CFLAGS = \ + $(AM_CPPFLAGS) \ + $(LIBSOUP_CFLAGS) \ + $(LIBXML2_CFLAGS) \ + $(NULL) +lpf_trip_LDADD = \ + ../providers/libplanfahr-provider-test-test.la \ + $(LDADD) \ + $(LIBSOUP_LIBS) \ + $(LIBXML2_LIBS) \ + $(NULL) + dist_test_data = \ $(NULL) diff --git a/libplanfahr/tests/lpf-trip.c b/libplanfahr/tests/lpf-trip.c new file mode 100644 index 0000000..563bdd1 --- /dev/null +++ b/libplanfahr/tests/lpf-trip.c @@ -0,0 +1,113 @@ +/* + * db.c: Deutsche Bahn provider for libplanfahr + * + * Copyright (C) 2014 Guido Günther + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2, 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * + * Author: Guido Günther + */ + +#include "../libplanfahr.h" + +#define LPF_TEST_PROVIDER "test-test" + + +typedef struct { + LpfManager *manager; + LpfProvider *provider; + GMainLoop *loop; + gboolean got_trips_reached; +} TestFixture; + + +static void +fixture_setup(TestFixture *fixture, gconstpointer user_data) +{ + fixture->manager = lpf_manager_new(); + g_assert_nonnull (fixture->manager); + fixture->provider = lpf_manager_activate_provider(fixture->manager, LPF_TEST_PROVIDER, NULL); + g_assert_nonnull (fixture->provider); +} + + +static void +fixture_teardown(TestFixture *fixture, gconstpointer user_data) +{ + g_assert_nonnull (fixture->manager); + g_assert_nonnull (fixture->provider); + lpf_manager_deactivate_provider(fixture->manager, fixture->provider); + fixture->manager = NULL; + fixture->provider = NULL; +} + + +static void +test_got_trips (GSList *trips, gpointer user_data, GError *err) +{ + TestFixture *fixture = user_data; + GSList *parts; + LpfTrip *trip; + LpfTripPart *part; + gchar *line; + + g_assert_false (fixture->got_trips_reached); + fixture->got_trips_reached = TRUE; + g_main_loop_quit (fixture->loop); + g_assert_no_error (err); + g_assert_cmpint (g_slist_length (trips), ==, 1); + trip = g_slist_nth(trips, 0)->data; + parts = g_slist_nth(lpf_trip_get_parts (trip), 0); + part = g_slist_nth(parts, 0)->data; + g_object_get (part, "line", &line, NULL); + g_assert_nonnull (part); + g_assert_cmpstr ("at the end of the longest", ==, line); +} + + +static void +test_lpf_trip(TestFixture *fixture, gconstpointer user_data) +{ + GDateTime *when = g_date_time_new_now_local (); + LpfLoc *start, *end; + + fixture->loop = g_main_loop_new (NULL, FALSE); + g_assert_nonnull (fixture->manager); + g_assert_nonnull (fixture->provider); + + start = g_object_new(LPF_TYPE_LOC, "name", "testloc1", NULL); + end = g_object_new(LPF_TYPE_LOC, "name", "testloc2", NULL); + + lpf_provider_get_trips(fixture->provider, start, end, when, 0, test_got_trips, fixture); + g_main_loop_run (fixture->loop); + /* Make sure the async functon was called */ + g_assert_true (fixture->got_trips_reached); + g_date_time_unref (when); +} + + +int main(int argc, char **argv) +{ + gboolean ret; + + g_test_init (&argc, &argv, NULL); + g_setenv(LPF_PROVIDERS_ENV, LPF_TEST_SRCDIR "/../providers/.libs/", TRUE); + + g_test_add ("/libplanfahr/lpf-trip", TestFixture, NULL, + fixture_setup, test_lpf_trip, fixture_teardown); + + ret = g_test_run (); + return ret; +} -- cgit v1.2.3