1 /* Unit tests for GPermission
2 * Copyright (C) 2012 Red Hat, Inc
3 * Author: Matthias Clasen
5 * This work is provided "as is"; redistribution and modification
6 * in whole or in part, in any medium, physical or electronic is
7 * permitted without restriction.
9 * This work is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 * In no event shall the authors or contributors be liable for any
14 * direct, indirect, incidental, special, exemplary, or consequential
15 * damages (including, but not limited to, procurement of substitute
16 * goods or services; loss of use, data, or profits; or business
17 * interruption) however caused and on any theory of liability, whether
18 * in contract, strict liability, or tort (including negligence or
19 * otherwise) arising in any way out of the use of this software, even
20 * if advised of the possibility of such damage.
26 acquired (GObject
*source
,
30 GPermission
*p
= G_PERMISSION (source
);
31 GMainLoop
*loop
= user_data
;
35 ret
= g_permission_acquire_finish (p
, res
, &error
);
37 g_assert_error (error
, G_IO_ERROR
, G_IO_ERROR_NOT_SUPPORTED
);
38 g_clear_error (&error
);
40 g_main_loop_quit (loop
);
44 released (GObject
*source
,
48 GPermission
*p
= G_PERMISSION (source
);
49 GMainLoop
*loop
= user_data
;
53 ret
= g_permission_release_finish (p
, res
, &error
);
55 g_assert_error (error
, G_IO_ERROR
, G_IO_ERROR_NOT_SUPPORTED
);
56 g_clear_error (&error
);
58 g_main_loop_quit (loop
);
72 p
= g_simple_permission_new (TRUE
);
74 g_assert (g_permission_get_allowed (p
));
75 g_assert (!g_permission_get_can_acquire (p
));
76 g_assert (!g_permission_get_can_release (p
));
80 "can-acquire", &can_acquire
,
81 "can-release", &can_release
,
85 g_assert (!can_acquire
);
86 g_assert (!can_release
);
88 ret
= g_permission_acquire (p
, NULL
, &error
);
90 g_assert_error (error
, G_IO_ERROR
, G_IO_ERROR_NOT_SUPPORTED
);
91 g_clear_error (&error
);
93 ret
= g_permission_release (p
, NULL
, &error
);
95 g_assert_error (error
, G_IO_ERROR
, G_IO_ERROR_NOT_SUPPORTED
);
96 g_clear_error (&error
);
98 loop
= g_main_loop_new (NULL
, FALSE
);
99 g_permission_acquire_async (p
, NULL
, acquired
, loop
);
100 g_main_loop_run (loop
);
101 g_permission_release_async (p
, NULL
, released
, loop
);
102 g_main_loop_run (loop
);
104 g_main_loop_unref (loop
);
110 main (int argc
, char *argv
[])
112 g_test_init (&argc
, &argv
, NULL
);
114 g_test_add_func ("/permission/simple", test_simple
);
116 return g_test_run ();