Check that credentials pass through D-Bus on supported platforms

Bug: https://bugzilla.gnome.org/show_bug.cgi?id=687920
This commit is contained in:
Simon McVittie 2012-11-08 14:09:23 +00:00 committed by Matthias Clasen
parent 32bfd46c7b
commit 2fe36a2238

View File

@ -45,6 +45,13 @@
#include <errno.h>
#endif
#if (defined(__linux__) || \
defined(__FreeBSD__) || \
defined(__FreeBSD_kernel__) || \
defined(__OpenBSD__))
#define SHOULD_HAVE_CREDENTIALS_PASSING
#endif
#include "gdbus-tests.h"
#include "gdbus-example-objectmanager-generated.h"
@ -303,6 +310,20 @@ on_new_connection (GDBusServer *server,
g_ptr_array_add (data->current_connections, g_object_ref (connection));
#ifdef SHOULD_HAVE_CREDENTIALS_PASSING
{
GCredentials *credentials;
credentials = g_dbus_connection_get_peer_credentials (connection);
g_assert (credentials != NULL);
g_assert_cmpuint (g_credentials_get_unix_user (credentials, NULL), ==,
getuid ());
g_assert_cmpuint (g_credentials_get_unix_pid (credentials, NULL), ==,
getpid ());
}
#endif
/* export object on the newly established connection */
error = NULL;
reg_id = g_dbus_connection_register_object (connection,