d0adfa1759d9e2ffca559b0c14cd858e49eb94e8
[maevies] / test / mvs-info-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-movie-info.h"
24
25 static GMainLoop *loop = NULL;
26
27 static void
28 response_received_callback (MvsMInfoProvider minfo_provider,
29                             gpointer user_data)
30 {
31         g_main_loop_quit (loop);
32 }
33
34 int
35 main (int argc, char **argv)
36 {
37         MvsMInfoProvider *minfo_provider = NULL;
38         MvsMovieInfo *movie_info = NULL;
39
40         g_type_init ();
41
42         g_thread_init (NULL);
43
44         minfo_provider = mvs_minfo_provider_new ();
45         movie_info = mvs_movie_info_new ();
46         loop = g_main_loop_new (NULL, FALSE);
47
48         mvs_minfo_provider_query (minfo_provider, "Zombieland");
49
50         g_main_loop_run (loop);
51
52         g_object_unref (minfo_provider);
53         g_object_unref (movie_info);
54         g_main_loop_unref (loop);
55
56         return 0;
57 }