Movie Info Provider test: Received list
[maevies] / test / mvs-minfo-provider-test.c
1 /*
2  * mvs-info-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
25 static GMainLoop *loop = NULL;
26
27 static void
28 response_received_callback (MvsMInfoProvider *minfo_provider, GList *list,
29                             gpointer user_data)
30 {
31         GList *tmp = NULL;
32
33         for (tmp = list; tmp; tmp = tmp->next) {
34
35                 g_return_if_fail (MVS_IS_TMDB_MOVIE (tmp->data));
36
37                 MvsTmdbMovie *movie_info = MVS_TMDB_MOVIE (tmp->data);
38
39                 mvs_tmdb_movie_print (movie_info);
40
41                 g_object_unref (movie_info);
42         }
43
44         g_list_free (list);
45         g_main_loop_quit (loop);
46 }
47
48 int
49 main (int argc, char **argv)
50 {
51         MvsMInfoProvider *minfo_provider = NULL;
52         MvsTmdbMovie *movie_info = NULL;
53
54         g_type_init ();
55
56         g_thread_init (NULL);
57
58         minfo_provider = mvs_minfo_provider_new ();
59         g_signal_connect (minfo_provider, "response-received",
60                           G_CALLBACK (response_received_callback), NULL);
61
62         movie_info = mvs_tmdb_movie_new ();
63         loop = g_main_loop_new (NULL, FALSE);
64
65         mvs_minfo_provider_query (minfo_provider, "Zombieland");
66
67         g_main_loop_run (loop);
68
69         g_object_unref (minfo_provider);
70         g_object_unref (movie_info);
71         g_main_loop_unref (loop);
72
73         return 0;
74 }