unit: Add manager state callback
[framework/connectivity/connman.git] / unit / test-session.c
1 /*
2  *
3  *  Connection Manager
4  *
5  *  Copyright (C) 2011  BWM CarIT GmbH. All rights reserved.
6  *
7  *  This program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License version 2 as
9  *  published by the Free Software Foundation.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  */
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <stdio.h>
27
28 #include "gdbus/gdbus.h"
29
30 #include "test-connman.h"
31
32 enum test_session_state {
33         TEST_SESSION_STATE_0 = 0,
34         TEST_SESSION_STATE_1 = 1,
35         TEST_SESSION_STATE_2 = 2,
36         TEST_SESSION_STATE_3 = 3,
37 };
38
39 static enum test_session_state get_session_state(struct test_session *session)
40 {
41         return GPOINTER_TO_UINT(session->fix->user_data);
42 }
43
44 static void set_session_state(struct test_session *session,
45                                 enum test_session_state state)
46 {
47         session->fix->user_data = GUINT_TO_POINTER(state);
48 }
49
50 static struct test_session *get_session(struct test_session *session,
51                                         unsigned int index)
52 {
53         return &session->fix->session[index];
54 }
55
56 static gboolean test_session_create_no_notify(gpointer data)
57 {
58         struct test_fix *fix = data;
59         DBusMessage *msg;
60
61         util_session_create(fix, 1);
62
63         msg = manager_create_session(fix->session->connection,
64                                         fix->session->info, "/foo");
65         g_assert(msg != NULL);
66         g_assert(dbus_message_get_type(msg) != DBUS_MESSAGE_TYPE_ERROR);
67
68         dbus_message_unref(msg);
69
70         util_idle_call(fix, util_quit_loop, util_session_destroy);
71
72         return FALSE;
73 }
74
75 static gboolean test_session_destroy_no_notify(gpointer data)
76 {
77         struct test_fix *fix = data;
78         DBusMessage *msg;
79
80         util_session_create(fix, 1);
81
82         msg = manager_destroy_session(fix->session->connection, "/foo");
83         g_assert(msg == NULL);
84
85         util_idle_call(fix, util_quit_loop, util_session_destroy);
86
87         return FALSE;
88 }
89
90 static void test_session_create_notify(struct test_session *session)
91 {
92         LOG("session %p", session);
93
94         util_idle_call(session->fix, util_quit_loop, util_session_destroy);
95 }
96
97 static gboolean test_session_create(gpointer data)
98 {
99         struct test_fix *fix = data;
100         struct test_session *session;
101         DBusMessage *msg;
102         int err;
103
104         util_session_create(fix, 1);
105         session = fix->session;
106
107         session->notify_path = "/foo";
108         session->notify = test_session_create_notify;
109
110         err = session_notify_register(session, session->notify_path);
111         g_assert(err == 0);
112
113         msg = manager_create_session(session->connection,
114                                         session->info,
115                                         session->notify_path);
116         g_assert(msg != NULL);
117         g_assert(dbus_message_get_type(msg) != DBUS_MESSAGE_TYPE_ERROR);
118
119         dbus_message_unref(msg);
120
121         return FALSE;
122 }
123
124 static gboolean test_session_create_destroy(gpointer data)
125 {
126         struct test_fix *fix = data;
127         struct test_session *session;
128
129         util_session_create(fix, 1);
130         session = fix->session;
131
132         session->notify_path = g_strdup("/foo");
133
134         util_session_init(fix->session);
135         util_session_cleanup(fix->session);
136
137         util_idle_call(fix, util_quit_loop, util_session_destroy);
138
139         return FALSE;
140 }
141
142 static gboolean test_session_create_already_exists(gpointer data)
143 {
144         struct test_fix *fix = data;
145         struct test_session *session0, *session1;
146         DBusMessage *msg;
147
148         util_session_create(fix, 2);
149         session0 = &fix->session[0];
150         session1 = &fix->session[1];
151
152         session0->notify_path = g_strdup("/foo");
153         session1->notify_path = session0->notify_path;
154
155         util_session_init(session0);
156
157         msg = manager_create_session(session1->connection,
158                                         session1->info,
159                                         session1->notify_path);
160         g_assert(msg == NULL);
161
162         util_session_cleanup(session0);
163
164         util_idle_call(fix, util_quit_loop, util_session_destroy);
165
166         return FALSE;
167 }
168
169 static void test_session_create_many_notify(struct test_session *session)
170 {
171         unsigned int nr;
172
173         LOG("session %p", session);
174
175         nr = GPOINTER_TO_UINT(session->fix->user_data);
176         nr--;
177         session->fix->user_data = GUINT_TO_POINTER(nr);
178
179         if (nr > 0)
180                 return;
181
182         util_idle_call(session->fix, util_quit_loop, util_session_destroy);
183 }
184
185 static gboolean test_session_create_many(gpointer data)
186 {
187         struct test_fix *fix = data;
188         struct test_session *session;
189         unsigned int i, max;
190
191         max = 100;
192
193         fix->user_data = GUINT_TO_POINTER(max);
194
195         util_session_create(fix, max);
196
197         for (i = 0; i < max; i++) {
198                 session = &fix->session[i];
199
200                 session->notify_path = g_strdup_printf("/foo/%d", i);
201                 session->notify = test_session_create_many_notify;
202
203                 util_session_init(session);
204         }
205
206         return FALSE;
207 }
208
209 static void set_session_mode(struct test_fix *fix,
210                                         connman_bool_t enable)
211 {
212         DBusMessage *msg;
213
214         msg = manager_set_session_mode(fix->main_connection, enable);
215         g_assert(msg != NULL);
216         g_assert(dbus_message_get_type(msg) != DBUS_MESSAGE_TYPE_ERROR);
217
218         dbus_message_unref(msg);
219 }
220
221 static void test_session_connect_notify(struct test_session *session)
222 {
223         LOG("session %p online %d", session, session->info->online);
224
225         if (session->info->online != TRUE)
226                 return;
227
228         util_session_cleanup(session);
229
230         util_idle_call(session->fix, util_quit_loop, util_session_destroy);
231 }
232
233 static gboolean test_session_connect(gpointer data)
234 {
235         struct test_fix *fix = data;
236         struct test_session *session;
237         DBusMessage *msg;
238
239         util_session_create(fix, 1);
240         session = fix->session;
241
242         session->notify_path = g_strdup("/foo");
243         session->notify =  test_session_connect_notify;
244         util_session_init(session);
245
246         msg = session_connect(session->connection, session);
247         g_assert(msg != NULL);
248         g_assert(dbus_message_get_type(msg) != DBUS_MESSAGE_TYPE_ERROR);
249
250         dbus_message_unref(msg);
251
252         return FALSE;
253 }
254
255 static void test_session_disconnect_notify(struct test_session *session)
256 {
257         LOG("session %p online %d", session, session->info->online);
258
259         if (session->info->online != FALSE)
260                 return;
261
262         util_session_cleanup(session);
263
264         util_idle_call(session->fix, util_quit_loop, util_session_destroy);
265 }
266
267 static gboolean test_session_disconnect(gpointer data)
268 {
269         struct test_fix *fix = data;
270         struct test_session *session;
271         DBusMessage *msg;
272
273         util_session_create(fix, 1);
274         session = fix->session;
275
276         session->notify_path = g_strdup("/foo");
277         session->notify =  test_session_disconnect_notify;
278         util_session_init(session);
279
280         msg = session_disconnect(session->connection, session);
281         g_assert(msg != NULL);
282         dbus_message_unref(msg);
283
284         return FALSE;
285 }
286
287 static void test_session_connect_disconnect_notify(struct test_session *session)
288 {
289         DBusMessage *msg;
290
291         LOG("session %p online %d", session, session->info->online);
292
293         if (session->info->online != TRUE)
294                 return;
295
296         msg = session_disconnect(session->connection, session);
297         g_assert(msg != NULL);
298         dbus_message_unref(msg);
299
300         util_session_cleanup(session);
301
302         util_idle_call(session->fix, util_quit_loop, util_session_destroy);
303 }
304
305 static gboolean test_session_connect_disconnect(gpointer data)
306 {
307         struct test_fix *fix = data;
308         struct test_session *session;
309         DBusMessage *msg;
310
311         util_session_create(fix, 1);
312         session = fix->session;
313
314         session->notify_path = g_strdup("/foo");
315         session->notify =  test_session_connect_disconnect_notify;
316         util_session_init(session);
317
318         msg = session_connect(session->connection, session);
319         g_assert(msg != NULL);
320         g_assert(dbus_message_get_type(msg) != DBUS_MESSAGE_TYPE_ERROR);
321
322         dbus_message_unref(msg);
323
324         return FALSE;
325 }
326
327 static void test_session_connect_free_ride_notify(struct test_session *session)
328 {
329         struct test_session *session0 = get_session(session, 0);
330         struct test_session *session1 = get_session(session, 1);
331         enum test_session_state state = get_session_state(session);
332         enum test_session_state next_state = state;
333         DBusMessage *msg;
334
335         LOG("state %d session %p %s online %d", state, session,
336                 session->notify_path, session->info->online);
337
338         switch (state) {
339         case TEST_SESSION_STATE_0:
340                 if (session0->info->online == FALSE &&
341                                 session1->info->online == FALSE) {
342                         next_state = TEST_SESSION_STATE_1;
343                 }
344
345                 break;
346         case TEST_SESSION_STATE_1:
347                 if (session0->info->online == TRUE &&
348                                 session1->info->online == TRUE) {
349                         next_state = TEST_SESSION_STATE_2;
350                 }
351
352                 break;
353         case TEST_SESSION_STATE_2:
354                 if (session0->info->online == FALSE &&
355                                 session1->info->online == FALSE) {
356                         next_state = TEST_SESSION_STATE_3;
357                 }
358
359                 break;
360         case TEST_SESSION_STATE_3:
361
362                 return;
363         }
364
365         if (state == next_state)
366                 return;
367
368         set_session_state(session, next_state);
369
370         LOG("next_state %d", next_state);
371
372         switch (next_state) {
373         case TEST_SESSION_STATE_0:
374
375                 return;
376         case TEST_SESSION_STATE_1:
377                 msg = session_connect(session0->connection, session0);
378                 g_assert(msg != NULL);
379                 dbus_message_unref(msg);
380
381                 return;
382
383         case TEST_SESSION_STATE_2:
384                 msg = session_disconnect(session0->connection, session0);
385                 g_assert(msg != NULL);
386                 dbus_message_unref(msg);
387
388                 return;
389         case TEST_SESSION_STATE_3:
390                 util_session_cleanup(session0);
391                 util_session_cleanup(session1);
392
393                 util_idle_call(session0->fix, util_quit_loop,
394                                 util_session_destroy);
395
396                 return;
397         }
398 }
399
400 static gboolean test_session_connect_free_ride(gpointer data)
401 {
402         struct test_fix *fix = data;
403         struct test_session *session0, *session1;
404
405         /*
406          * +-------------------+
407          * |       START       |
408          * +-------------------+
409          *   |
410          *   | connect foo
411          *   v
412          * +-------------------+
413          * |   FOO-CONNECTED   |
414          * +-------------------+
415          *   |
416          *   | free-ride bar
417          *   v
418          * +-------------------+
419          * | FOO-BAR-CONNECTED |
420          * +-------------------+
421          *  |
422          *  | disconnect foo
423          *  v
424          * +-------------------+
425          * |        END        |
426          * +-------------------+
427          */
428
429         util_session_create(fix, 2);
430         session0 = &fix->session[0];
431         session1 = &fix->session[1];
432
433         session0->notify_path = g_strdup("/foo");
434         session1->notify_path = g_strdup("/bar");
435         session0->notify = test_session_connect_free_ride_notify;
436         session1->notify = test_session_connect_free_ride_notify;
437
438         util_session_init(session0);
439         util_session_init(session1);
440
441         set_session_state(session0, TEST_SESSION_STATE_0);
442
443         return FALSE;
444 }
445
446 static connman_bool_t is_online(struct test_fix *fix)
447 {
448         if (g_strcmp0(fix->manager.state, "online") == 0)
449                 return TRUE;
450
451         return FALSE;
452 }
453
454 static gboolean enable_session_mode(gpointer data)
455 {
456         struct test_fix *fix = data;
457
458         set_session_mode(fix, TRUE);
459
460         if (is_online(fix) == FALSE)
461                 util_idle_call(fix, util_quit_loop, NULL);
462
463         return FALSE;
464 }
465
466 static gboolean manager_state_changed(gpointer data)
467 {
468         struct test_fix *fix = data;
469
470         if (is_online(fix) == FALSE) {
471                 fix->manager_changed = NULL;
472                 util_idle_call(fix, util_quit_loop, NULL);
473         }
474
475         return FALSE;
476 }
477
478 static gboolean disable_session_mode(gpointer data)
479 {
480         struct test_fix *fix = data;
481
482         set_session_mode(fix, FALSE);
483
484         return FALSE;
485 }
486
487 static void setup_cb(struct test_fix *fix, gconstpointer data)
488 {
489         fix->manager_changed = manager_state_changed;
490
491         util_setup(fix, data);
492         util_call(fix, enable_session_mode, NULL);
493
494         g_main_loop_run(fix->main_loop);
495
496         fix->manager_changed = NULL;
497 }
498
499 static void teardown_cb(struct test_fix *fix, gconstpointer data)
500 {
501         util_call(fix, disable_session_mode, NULL);
502         util_idle_call(fix, util_quit_loop, NULL);
503
504         g_main_loop_run(fix->main_loop);
505
506         util_teardown(fix, data);
507 }
508
509 int main(int argc, char *argv[])
510 {
511         g_test_init(&argc, &argv, NULL);
512
513         util_test_add("/manager/session create no notify",
514                 test_session_create_no_notify, setup_cb, teardown_cb);
515         util_test_add("/manager/session destroy no notify",
516                 test_session_destroy_no_notify, setup_cb, teardown_cb);
517         util_test_add("/manager/session create",
518                 test_session_create, setup_cb, teardown_cb);
519         util_test_add("/manager/session create destroy",
520                 test_session_create_destroy, setup_cb, teardown_cb);
521         util_test_add("/manager/session create already exists",
522                 test_session_create_already_exists, setup_cb, teardown_cb);
523         util_test_add("/manager/session create many",
524                 test_session_create_many, setup_cb, teardown_cb);
525
526         util_test_add("/session/connect",
527                 test_session_connect, setup_cb, teardown_cb);
528         util_test_add("/session/disconnect",
529                 test_session_disconnect, setup_cb, teardown_cb);
530         util_test_add("/session/connect disconnect",
531                 test_session_connect_disconnect, setup_cb, teardown_cb);
532         util_test_add("/session/connect free-ride",
533                 test_session_connect_free_ride, setup_cb, teardown_cb);
534
535         return g_test_run();
536 }