Correct scroll on idle to avoid corrupting text view validations
[modest] / tests / check_update-account.c
1 /* Copyright (c) 2006, Nokia Corporation
2  * All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met:
7  *
8  * * Redistributions of source code must retain the above copyright
9  *   notice, this list of conditions and the following disclaimer.
10  * * Redistributions in binary form must reproduce the above copyright
11  *   notice, this list of conditions and the following disclaimer in the
12  *   documentation and/or other materials provided with the distribution.
13  * * Neither the name of the Nokia Corporation nor the names of its
14  *   contributors may be used to endorse or promote products derived from
15  *   this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
18  * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
20  * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
21  * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
24  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
25  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
26  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29
30 #include <glib.h>
31 #include <string.h>
32 #include <unistd.h>
33
34 #include <tny-list.h>
35 #include <tny-iterator.h>
36 #include <tny-simple-list.h>
37 #include <tny-account-store.h>
38 #include <tny-store-account.h>
39 #include <tny-folder.h>
40 #include <tny-folder-store.h>
41
42 #include <modest-runtime.h>
43 #include "modest-account-mgr.h"
44 #include "modest-mail-operation.h"
45 #include "modest-mail-operation-queue.h"
46
47 GMainLoop *main_loop;
48
49 static void
50 on_progress_changed (ModestMailOperation *mail_op, gpointer user_data)
51 {
52         ModestMailOperationQueue *queue = NULL;
53
54         g_print ("Refreshed %d of %d\n", 
55                  modest_mail_operation_get_task_done  (mail_op), 
56                  modest_mail_operation_get_task_total (mail_op));
57
58         if (modest_mail_operation_is_finished (mail_op)) {
59                 queue = MODEST_MAIL_OPERATION_QUEUE (user_data);
60                 modest_mail_operation_queue_remove (queue, mail_op);
61                 g_main_loop_quit (main_loop);
62         }
63 }
64
65 static gboolean
66 func (gpointer_data) 
67 {
68         TnyStoreAccount *account;
69         TnyIterator *iter;
70         ModestAccountMgr *acc_mgr = NULL;
71         ModestMailOperation *mail_op = NULL;
72         ModestMailOperationQueue *queue = NULL;
73         ModestTnyAccountStore *account_store = NULL;
74         TnyList *accounts;
75
76         acc_mgr       = modest_runtime_get_account_mgr();
77         account_store = modest_runtime_get_account_store();
78
79         /* Get accounts */
80         accounts = tny_simple_list_new ();
81         tny_account_store_get_accounts (TNY_ACCOUNT_STORE(account_store), accounts,
82                                         TNY_ACCOUNT_STORE_STORE_ACCOUNTS);
83     
84         iter = tny_list_create_iterator (accounts);
85         account = TNY_STORE_ACCOUNT (tny_iterator_get_current (iter));
86
87         g_object_unref (G_OBJECT (iter));
88         g_object_unref (G_OBJECT (accounts));
89
90         queue   = modest_runtime_get_mail_operation_queue ();
91         mail_op = modest_mail_operation_new ();
92         
93         g_signal_connect (G_OBJECT (mail_op), "progress_changed", 
94                           G_CALLBACK (on_progress_changed), queue);
95
96         if (modest_mail_operation_update_account (mail_op, account))
97                 modest_mail_operation_queue_add (queue, mail_op);
98
99         g_object_unref (G_OBJECT (mail_op));
100         
101         if (account)
102                 g_object_unref (account);
103
104         return FALSE;
105 }
106
107 int
108 main (int argc, char **argv)
109 {   
110         guint id;
111
112         g_type_init ();
113         g_thread_init(NULL);
114
115         main_loop = g_main_loop_new (NULL, FALSE);
116         id = g_timeout_add(10, func, main_loop);
117
118         g_main_loop_run(main_loop);
119
120         return 0;
121 }