5 * Copyright (C) 2011 BWM CarIT GmbH. All rights reserved.
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.
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.
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
28 #include "gdbus/gdbus.h"
30 #include "test-connman.h"
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,
39 static enum test_session_state get_session_state(struct test_session *session)
41 return GPOINTER_TO_UINT(session->fix->user_data);
44 static void set_session_state(struct test_session *session,
45 enum test_session_state state)
47 session->fix->user_data = GUINT_TO_POINTER(state);
50 static struct test_session *get_session(struct test_session *session,
53 return &session->fix->session[index];
56 static gboolean test_session_create_no_notify(gpointer data)
58 struct test_fix *fix = data;
61 util_session_create(fix, 1);
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);
68 dbus_message_unref(msg);
70 util_idle_call(fix, util_quit_loop, util_session_destroy);
75 static gboolean test_session_destroy_no_notify(gpointer data)
77 struct test_fix *fix = data;
80 util_session_create(fix, 1);
82 msg = manager_destroy_session(fix->session->connection, "/foo");
83 g_assert(msg == NULL);
85 util_idle_call(fix, util_quit_loop, util_session_destroy);
90 static void test_session_create_notify(struct test_session *session)
92 LOG("session %p", session);
94 util_idle_call(session->fix, util_quit_loop, util_session_destroy);
97 static gboolean test_session_create(gpointer data)
99 struct test_fix *fix = data;
100 struct test_session *session;
104 util_session_create(fix, 1);
105 session = fix->session;
107 session->notify_path = "/foo";
108 session->notify = test_session_create_notify;
110 err = session_notify_register(session, session->notify_path);
113 msg = manager_create_session(session->connection,
115 session->notify_path);
116 g_assert(msg != NULL);
117 g_assert(dbus_message_get_type(msg) != DBUS_MESSAGE_TYPE_ERROR);
119 dbus_message_unref(msg);
124 static gboolean test_session_create_destroy(gpointer data)
126 struct test_fix *fix = data;
127 struct test_session *session;
129 util_session_create(fix, 1);
130 session = fix->session;
132 session->notify_path = g_strdup("/foo");
134 util_session_init(fix->session);
135 util_session_cleanup(fix->session);
137 util_idle_call(fix, util_quit_loop, util_session_destroy);
142 static gboolean test_session_create_already_exists(gpointer data)
144 struct test_fix *fix = data;
145 struct test_session *session0, *session1;
148 util_session_create(fix, 2);
149 session0 = &fix->session[0];
150 session1 = &fix->session[1];
152 session0->notify_path = g_strdup("/foo");
153 session1->notify_path = session0->notify_path;
155 util_session_init(session0);
157 msg = manager_create_session(session1->connection,
159 session1->notify_path);
160 g_assert(msg == NULL);
162 util_session_cleanup(session0);
164 util_idle_call(fix, util_quit_loop, util_session_destroy);
169 static void test_session_create_many_notify(struct test_session *session)
173 LOG("session %p", session);
175 nr = GPOINTER_TO_UINT(session->fix->user_data);
177 session->fix->user_data = GUINT_TO_POINTER(nr);
182 util_idle_call(session->fix, util_quit_loop, util_session_destroy);
185 static gboolean test_session_create_many(gpointer data)
187 struct test_fix *fix = data;
188 struct test_session *session;
193 fix->user_data = GUINT_TO_POINTER(max);
195 util_session_create(fix, max);
197 for (i = 0; i < max; i++) {
198 session = &fix->session[i];
200 session->notify_path = g_strdup_printf("/foo/%d", i);
201 session->notify = test_session_create_many_notify;
203 util_session_init(session);
209 static void set_session_mode(struct test_fix *fix,
210 connman_bool_t enable)
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);
218 dbus_message_unref(msg);
220 util_idle_call(fix, util_quit_loop, NULL);
223 static void test_session_connect_notify(struct test_session *session)
225 LOG("session %p online %d", session, session->info->online);
227 if (session->info->online != TRUE)
230 util_session_cleanup(session);
232 util_idle_call(session->fix, util_quit_loop, util_session_destroy);
235 static gboolean test_session_connect(gpointer data)
237 struct test_fix *fix = data;
238 struct test_session *session;
241 util_session_create(fix, 1);
242 session = fix->session;
244 session->notify_path = g_strdup("/foo");
245 session->notify = test_session_connect_notify;
246 util_session_init(session);
248 msg = session_connect(session->connection, session);
249 g_assert(msg != NULL);
250 g_assert(dbus_message_get_type(msg) != DBUS_MESSAGE_TYPE_ERROR);
252 dbus_message_unref(msg);
257 static void test_session_disconnect_notify(struct test_session *session)
259 LOG("session %p online %d", session, session->info->online);
261 if (session->info->online != FALSE)
264 util_session_cleanup(session);
266 util_idle_call(session->fix, util_quit_loop, util_session_destroy);
269 static gboolean test_session_disconnect(gpointer data)
271 struct test_fix *fix = data;
272 struct test_session *session;
275 util_session_create(fix, 1);
276 session = fix->session;
278 session->notify_path = g_strdup("/foo");
279 session->notify = test_session_disconnect_notify;
280 util_session_init(session);
282 msg = session_disconnect(session->connection, session);
283 g_assert(msg != NULL);
284 dbus_message_unref(msg);
289 static void test_session_connect_disconnect_notify(struct test_session *session)
293 LOG("session %p online %d", session, session->info->online);
295 if (session->info->online != TRUE)
298 msg = session_disconnect(session->connection, session);
299 g_assert(msg != NULL);
300 dbus_message_unref(msg);
302 util_session_cleanup(session);
304 util_idle_call(session->fix, util_quit_loop, util_session_destroy);
307 static gboolean test_session_connect_disconnect(gpointer data)
309 struct test_fix *fix = data;
310 struct test_session *session;
313 util_session_create(fix, 1);
314 session = fix->session;
316 session->notify_path = g_strdup("/foo");
317 session->notify = test_session_connect_disconnect_notify;
318 util_session_init(session);
320 msg = session_connect(session->connection, session);
321 g_assert(msg != NULL);
322 g_assert(dbus_message_get_type(msg) != DBUS_MESSAGE_TYPE_ERROR);
324 dbus_message_unref(msg);
329 static void test_session_connect_free_ride_notify(struct test_session *session)
331 struct test_session *session0 = get_session(session, 0);
332 struct test_session *session1 = get_session(session, 1);
333 enum test_session_state state = get_session_state(session);
334 enum test_session_state next_state = state;
337 LOG("state %d session %p %s online %d", state, session,
338 session->notify_path, session->info->online);
341 case TEST_SESSION_STATE_0:
342 if (session0->info->online == FALSE &&
343 session1->info->online == FALSE) {
344 next_state = TEST_SESSION_STATE_1;
348 case TEST_SESSION_STATE_1:
349 if (session0->info->online == TRUE &&
350 session1->info->online == TRUE) {
351 next_state = TEST_SESSION_STATE_2;
355 case TEST_SESSION_STATE_2:
356 if (session0->info->online == FALSE &&
357 session1->info->online == FALSE) {
358 next_state = TEST_SESSION_STATE_3;
362 case TEST_SESSION_STATE_3:
367 if (state == next_state)
370 set_session_state(session, next_state);
372 LOG("next_state %d", next_state);
374 switch (next_state) {
375 case TEST_SESSION_STATE_0:
378 case TEST_SESSION_STATE_1:
379 msg = session_connect(session0->connection, session0);
380 g_assert(msg != NULL);
381 dbus_message_unref(msg);
385 case TEST_SESSION_STATE_2:
386 msg = session_disconnect(session0->connection, session0);
387 g_assert(msg != NULL);
388 dbus_message_unref(msg);
391 case TEST_SESSION_STATE_3:
392 util_session_cleanup(session0);
393 util_session_cleanup(session1);
395 util_idle_call(session0->fix, util_quit_loop,
396 util_session_destroy);
402 static gboolean test_session_connect_free_ride(gpointer data)
404 struct test_fix *fix = data;
405 struct test_session *session0, *session1;
408 * +-------------------+
410 * +-------------------+
414 * +-------------------+
416 * +-------------------+
420 * +-------------------+
421 * | FOO-BAR-CONNECTED |
422 * +-------------------+
426 * +-------------------+
428 * +-------------------+
431 util_session_create(fix, 2);
432 session0 = &fix->session[0];
433 session1 = &fix->session[1];
435 session0->notify_path = g_strdup("/foo");
436 session1->notify_path = g_strdup("/bar");
437 session0->notify = test_session_connect_free_ride_notify;
438 session1->notify = test_session_connect_free_ride_notify;
440 util_session_init(session0);
441 util_session_init(session1);
443 set_session_state(session0, TEST_SESSION_STATE_0);
448 static gboolean enable_session_mode(gpointer data)
450 struct test_fix *fix = data;
452 set_session_mode(fix, TRUE);
457 static gboolean disable_session_mode(gpointer data)
459 struct test_fix *fix = data;
461 set_session_mode(fix, FALSE);
466 static void setup_cb(struct test_fix *fix, gconstpointer data)
468 util_setup(fix, data);
470 util_call(fix, enable_session_mode, NULL);
471 g_main_loop_run(fix->main_loop);
474 static void teardown_cb(struct test_fix *fix, gconstpointer data)
476 util_call(fix, disable_session_mode, NULL);
477 g_main_loop_run(fix->main_loop);
479 util_teardown(fix, data);
482 int main(int argc, char *argv[])
484 g_test_init(&argc, &argv, NULL);
486 util_test_add("/manager/session create no notify",
487 test_session_create_no_notify, setup_cb, teardown_cb);
488 util_test_add("/manager/session destroy no notify",
489 test_session_destroy_no_notify, setup_cb, teardown_cb);
490 util_test_add("/manager/session create",
491 test_session_create, setup_cb, teardown_cb);
492 util_test_add("/manager/session create destroy",
493 test_session_create_destroy, setup_cb, teardown_cb);
494 util_test_add("/manager/session create already exists",
495 test_session_create_already_exists, setup_cb, teardown_cb);
496 util_test_add("/manager/session create many",
497 test_session_create_many, setup_cb, teardown_cb);
499 util_test_add("/session/connect",
500 test_session_connect, setup_cb, teardown_cb);
501 util_test_add("/session/disconnect",
502 test_session_disconnect, setup_cb, teardown_cb);
503 util_test_add("/session/connect disconnect",
504 test_session_connect_disconnect, setup_cb, teardown_cb);
505 util_test_add("/session/connect free-ride",
506 test_session_connect_free_ride, setup_cb, teardown_cb);