Movie Info Provider test: Check WATC movie
[maevies] / test / mvs-minfo-provider-test.c
1 /*
2  * mvs-minfo-provider-test.c
3  *
4  * This file is part of maevies
5  * Copyright (C) 2010 Simón Pena <spenap@gmail.com>
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License as
9  * published by the Free Software Foundation; either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License for more details.
16  *
17  */
18
19 #include <stdio.h>
20 #include <glib.h>
21
22 #include "mvs-minfo-provider.h"
23 #include "mvs-tmdb-movie.h"
24 #include "mvs-watc-movie.h"
25
26 static GMainLoop *loop = NULL;
27 static gchar *query = "Zombieland";
28
29 static GOptionEntry entries[] = {
30         { "query", 'q', 0, G_OPTION_ARG_STRING, &query, "query", "query term" },
31         { NULL }
32 };
33
34 static void
35 response_received_callback (MvsMInfoProvider *minfo_provider, GList *list,
36                             gpointer user_data)
37 {
38         GList *tmp = NULL;
39
40         for (tmp = list; tmp; tmp = tmp->next) {
41
42                 g_return_if_fail (MVS_IS_TMDB_MOVIE (tmp->data));
43
44                 MvsTmdbMovie *movie_info = MVS_TMDB_MOVIE (tmp->data);
45
46                 mvs_tmdb_movie_print (movie_info);
47                 g_print ("\n");
48
49                 g_object_unref (movie_info);
50         }
51
52         g_list_free (list);
53         g_main_loop_quit (loop);
54 }
55
56 int
57 main (int argc, char **argv)
58 {
59         MvsMInfoProvider *minfo_provider = NULL;
60         MvsWatcMovie *watc_movie = NULL;
61         GOptionContext *context = NULL;
62         GOptionGroup *gst_option_group = NULL;
63         GError *error = NULL;
64
65         g_type_init ();
66
67         g_thread_init (NULL);
68
69         context = g_option_context_new (" - Tests data provider behavior");
70         g_option_context_add_main_entries (context, entries, NULL);
71         if (!g_option_context_parse (context, &argc, &argv, &error)) {
72                 g_critical ("option parsing failed: %s", error->message);
73                 return -1;
74         }
75
76         watc_movie = mvs_watc_movie_new ();
77         minfo_provider = mvs_minfo_provider_new ();
78         g_signal_connect (minfo_provider, "response-received",
79                           G_CALLBACK (response_received_callback), NULL);
80
81         loop = g_main_loop_new (NULL, FALSE);
82
83         mvs_minfo_provider_query (minfo_provider, query);
84
85         g_main_loop_run (loop);
86         g_object_unref (watc_movie);
87         g_object_unref (minfo_provider);
88         g_main_loop_unref (loop);
89
90         return 0;
91 }