2015-01-26 19:02:59 +00:00
|
|
|
/* Utility functions for tests that rely on GLib
|
|
|
|
|
*
|
|
|
|
|
* Copyright © 2010-2011 Nokia Corporation
|
|
|
|
|
* Copyright © 2013-2015 Collabora Ltd.
|
|
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person
|
|
|
|
|
* obtaining a copy of this software and associated documentation files
|
|
|
|
|
* (the "Software"), to deal in the Software without restriction,
|
|
|
|
|
* including without limitation the rights to use, copy, modify, merge,
|
|
|
|
|
* publish, distribute, sublicense, and/or sell copies of the Software,
|
|
|
|
|
* and to permit persons to whom the Software is furnished to do so,
|
|
|
|
|
* subject to the following conditions:
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice shall be
|
|
|
|
|
* included in all copies or substantial portions of the Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
|
|
|
|
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
|
|
|
|
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
|
* SOFTWARE.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef TEST_UTILS_GLIB_H
|
|
|
|
|
#define TEST_UTILS_GLIB_H
|
|
|
|
|
|
|
|
|
|
#include <dbus/dbus.h>
|
|
|
|
|
|
2017-07-06 15:58:48 +01:00
|
|
|
#include <gio/gio.h>
|
2015-01-26 19:02:59 +00:00
|
|
|
#include <glib.h>
|
|
|
|
|
|
|
|
|
|
#include "test-utils.h"
|
|
|
|
|
|
2015-01-26 15:47:59 +00:00
|
|
|
/*
|
|
|
|
|
* Multi-user support for regression tests run with root privileges in
|
|
|
|
|
* a continuous integration system.
|
|
|
|
|
*
|
|
|
|
|
* A developer would normally run the tests as their own uid. Tests run
|
|
|
|
|
* as TEST_USER_ME are run, and the others are skipped.
|
|
|
|
|
*
|
|
|
|
|
* In a CI system that has access to root privileges, most tests should still
|
|
|
|
|
* be run as an arbitrary non-root user, as above.
|
|
|
|
|
*
|
|
|
|
|
* Certain tests can usefully be run again, as root. When this is done,
|
2019-07-02 20:42:54 +01:00
|
|
|
* tests using a TestUser other than TEST_USER_ME can exercise situations
|
|
|
|
|
* that only arise when there's more than one uid.
|
2015-01-26 15:47:59 +00:00
|
|
|
*/
|
|
|
|
|
typedef enum {
|
2015-02-03 19:35:39 +00:00
|
|
|
/* Whatever user happens to be running the regression test;
|
2015-01-26 15:47:59 +00:00
|
|
|
* such tests also work on Windows */
|
|
|
|
|
TEST_USER_ME,
|
|
|
|
|
/* Must be uid 0 on Unix; the test is skipped on Windows */
|
|
|
|
|
TEST_USER_ROOT,
|
|
|
|
|
/* The user who would normally run the system bus. This is the DBUS_USER
|
|
|
|
|
* from configure.ac, usually 'messagebus' but perhaps 'dbus' or
|
|
|
|
|
* '_dbus'. */
|
|
|
|
|
TEST_USER_MESSAGEBUS,
|
2019-07-02 20:42:54 +01:00
|
|
|
/* Run as uid 0, expecting to drop privileges to the user who would
|
|
|
|
|
* normally run the system bus (so we must skip the test if that user
|
|
|
|
|
* doesn't exist). Only valid for test_get_dbus_daemon(), not for
|
|
|
|
|
* test_connect_to_bus_as_user(). */
|
|
|
|
|
TEST_USER_ROOT_DROP_TO_MESSAGEBUS,
|
2015-01-26 15:47:59 +00:00
|
|
|
/* An unprivileged user who is neither root nor DBUS_USER.
|
|
|
|
|
* This is DBUS_TEST_USER from configure.ac, usually 'nobody'. */
|
|
|
|
|
TEST_USER_OTHER
|
|
|
|
|
} TestUser;
|
|
|
|
|
|
2015-01-26 19:02:59 +00:00
|
|
|
#define test_assert_no_error(e) _test_assert_no_error (e, __FILE__, __LINE__)
|
|
|
|
|
void _test_assert_no_error (const DBusError *e,
|
|
|
|
|
const char *file,
|
|
|
|
|
int line);
|
|
|
|
|
|
|
|
|
|
gchar *test_get_dbus_daemon (const gchar *config_file,
|
2015-01-26 15:47:59 +00:00
|
|
|
TestUser user,
|
2017-02-13 17:31:41 +00:00
|
|
|
const gchar *runtime_dir,
|
2015-01-26 19:02:59 +00:00
|
|
|
GPid *daemon_pid);
|
|
|
|
|
|
|
|
|
|
DBusConnection *test_connect_to_bus (TestMainContext *ctx,
|
|
|
|
|
const gchar *address);
|
2017-07-06 15:57:18 +01:00
|
|
|
DBusConnection *test_try_connect_to_bus (TestMainContext *ctx,
|
|
|
|
|
const gchar *address,
|
|
|
|
|
GError **error);
|
|
|
|
|
DBusConnection *test_try_connect_to_bus_as_user (TestMainContext *ctx,
|
2015-01-26 19:10:11 +00:00
|
|
|
const char *address,
|
2017-07-06 15:57:18 +01:00
|
|
|
TestUser user,
|
|
|
|
|
GError **error);
|
2017-07-06 15:58:48 +01:00
|
|
|
GDBusConnection *test_try_connect_gdbus_as_user (const char *address,
|
|
|
|
|
TestUser user,
|
|
|
|
|
GError **error);
|
2015-01-26 19:02:59 +00:00
|
|
|
|
|
|
|
|
void test_kill_pid (GPid pid);
|
|
|
|
|
|
2015-02-03 14:45:35 +00:00
|
|
|
void test_init (int *argcp, char ***argvp);
|
|
|
|
|
|
2015-02-26 17:12:22 +00:00
|
|
|
void test_progress (char symbol);
|
|
|
|
|
|
2017-02-14 19:49:46 +00:00
|
|
|
void test_remove_if_exists (const gchar *path);
|
|
|
|
|
void test_rmdir_must_exist (const gchar *path);
|
2017-02-14 19:03:44 +00:00
|
|
|
void test_rmdir_if_exists (const gchar *path);
|
2017-02-14 15:10:20 +00:00
|
|
|
void test_mkdir (const gchar *path, gint mode);
|
2017-02-14 19:49:46 +00:00
|
|
|
|
2017-11-27 19:14:23 +00:00
|
|
|
void test_timeout_reset (guint factor);
|
2017-09-27 13:14:39 +01:00
|
|
|
|
2017-11-21 12:15:04 +00:00
|
|
|
void test_oom (void) _DBUS_GNUC_NORETURN;
|
|
|
|
|
|
|
|
|
|
DBusMessage *test_main_context_call_and_wait (TestMainContext *ctx,
|
|
|
|
|
DBusConnection *connection,
|
|
|
|
|
DBusMessage *call,
|
|
|
|
|
int timeout);
|
|
|
|
|
|
2017-07-24 12:30:57 +01:00
|
|
|
#if !GLIB_CHECK_VERSION(2, 44, 0)
|
|
|
|
|
#define g_steal_pointer(x) backported_g_steal_pointer (x)
|
|
|
|
|
/* A simplified version of g_steal_pointer without type-safety. */
|
|
|
|
|
static inline gpointer
|
|
|
|
|
backported_g_steal_pointer (gpointer pointer_to_pointer)
|
|
|
|
|
{
|
|
|
|
|
gpointer *pp = pointer_to_pointer;
|
|
|
|
|
gpointer ret;
|
|
|
|
|
|
|
|
|
|
ret = *pp;
|
|
|
|
|
*pp = NULL;
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2019-01-03 23:54:56 +01:00
|
|
|
#ifndef g_assert_nonnull
|
2022-03-02 13:03:52 +00:00
|
|
|
#define g_assert_nonnull(a) g_assert ((a) != NULL)
|
2019-01-03 23:54:56 +01:00
|
|
|
#endif
|
|
|
|
|
|
test: Skip TCP tests if getaddrinfo doesn't work
For example, this can be the case in bubblewrap or Debian pbuilder after
unsharing the network namespace:
bwrap \
--bind / / \
--dev-bind /dev /dev \
--bind /dev/shm /dev/shm \
--bind /dev/pts /dev/pts \
--unshare-net \
${builddir}/test/test-loopback --tap
...
ok 1 /connect/tcp # SKIP Name resolution does not work here:
getaddrinfo("127.0.0.1", "0", {flags=ADDRCONFIG, family=INET,
socktype=STREAM, protocol=TCP}): Name or service not known
On some systems this can be circumvented by using nss_wrapper from
<https://cwrap.org/nss_wrapper.html>:
cat > hosts <<EOF
127.0.0.1 localhost
EOF
bwrap \
... \
env \
LD_PRELOAD=libnss_wrapper.so \
NSS_WRAPPER_HOSTS=$(pwd)/hosts \
${builddir}/test/test-loopback --tap
...
# listening at tcp:host=127.0.0.1,port=39219,family=ipv4,guid=...
but for systems where that does't work, we should be prepared to skip
the affected tests.
Signed-off-by: Simon McVittie <smcv@collabora.com>
Reviewed-by: Philip Withnall <withnall@endlessm.com>
Bug: https://bugs.freedesktop.org/show_bug.cgi?id=106812
2018-06-04 16:27:50 +01:00
|
|
|
gboolean test_check_tcp_works (void);
|
|
|
|
|
|
2018-04-16 19:39:04 +01:00
|
|
|
void test_store_result_cb (GObject *source_object,
|
|
|
|
|
GAsyncResult *result,
|
|
|
|
|
gpointer user_data);
|
|
|
|
|
|
2018-10-31 15:19:19 +00:00
|
|
|
void test_incomplete (const gchar *message);
|
|
|
|
|
|
2018-10-31 15:22:26 +00:00
|
|
|
gchar *test_get_helper_executable (const gchar *exe);
|
|
|
|
|
|
2015-01-26 19:02:59 +00:00
|
|
|
#endif
|