1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
|
/*
* Copyright (C) 2011 Igalia S.L.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "config.h"
#include "TestMain.h"
#include <glib/gstdio.h>
#include <wtf/FileSystem.h>
#if PLATFORM(GTK)
#include <gtk/gtk.h>
#endif
GRefPtr<GDBusServer> Test::s_dbusServer;
Vector<GRefPtr<GDBusConnection>> Test::s_dbusConnections;
HashMap<uint64_t, GDBusConnection*> Test::s_dbusConnectionPageMap;
WebKitMemoryPressureSettings* Test::s_memoryPressureSettings = nullptr;
void beforeAll();
void afterAll();
static GUniquePtr<char> testDataDirectory(g_dir_make_tmp("WebKitGLibTests-XXXXXX", nullptr));
const char* Test::dataDirectory()
{
return testDataDirectory.get();
}
static void registerGResource(void)
{
GUniquePtr<char> resourcesPath(g_build_filename(WEBKIT_TEST_RESOURCES_DIR, "webkitglib-tests-resources.gresource", nullptr));
GResource* resource = g_resource_load(resourcesPath.get(), nullptr);
g_assert_nonnull(resource);
g_resources_register(resource);
g_resource_unref(resource);
}
static void removeNonEmptyDirectory(const char* directoryPath)
{
GDir* directory = g_dir_open(directoryPath, 0, 0);
g_assert_nonnull(directory);
const char* fileName;
while ((fileName = g_dir_read_name(directory))) {
GUniquePtr<char> filePath(g_build_filename(directoryPath, fileName, nullptr));
if (g_file_test(filePath.get(), G_FILE_TEST_IS_DIR))
removeNonEmptyDirectory(filePath.get());
else
g_unlink(filePath.get());
}
g_dir_close(directory);
g_rmdir(directoryPath);
}
static void dbusConnectionClosed(GDBusConnection* connection)
{
auto it = Test::s_dbusConnections.find(connection);
g_assert(it != notFound);
for (auto it : Test::s_dbusConnectionPageMap) {
if (it.value == connection)
it.value = nullptr;
}
Test::s_dbusConnections.remove(it);
}
static gboolean dbusServerConnection(GDBusServer* server, GDBusConnection* connection)
{
g_signal_connect(connection, "closed", G_CALLBACK(dbusConnectionClosed), nullptr);
g_assert(!Test::s_dbusConnections.contains(connection));
Test::s_dbusConnections.append(connection);
g_dbus_connection_signal_subscribe(connection, nullptr, "org.webkit.gtk.WebExtensionTest", "PageCreated", "/org/webkit/gtk/WebExtensionTest",
nullptr, G_DBUS_SIGNAL_FLAGS_NONE, [](GDBusConnection* connection, const char*, const char*, const char*, const char*, GVariant* parameters, gpointer) {
guint64 pageID;
g_variant_get(parameters, "(t)", &pageID);
g_assert(Test::s_dbusConnections.contains(connection));
Test::s_dbusConnectionPageMap.set(pageID, connection);
}, nullptr, nullptr);
return TRUE;
}
static void startDBusServer()
{
GUniqueOutPtr<GError> error;
GUniquePtr<char> address(g_strdup_printf("unix:tmpdir=%s", testDataDirectory.get()));
GUniquePtr<char> guid(g_dbus_generate_guid());
Test::s_dbusServer = adoptGRef(g_dbus_server_new_sync(address.get(), G_DBUS_SERVER_FLAGS_NONE, guid.get(), nullptr, nullptr, &error.outPtr()));
if (!Test::s_dbusServer)
g_error("Failed to start DBus server: %s", error->message);
g_signal_connect(Test::s_dbusServer.get(), "new-connection", G_CALLBACK(dbusServerConnection), nullptr);
g_dbus_server_start(Test::s_dbusServer.get());
}
static void stopDBusServer()
{
g_dbus_server_stop(Test::s_dbusServer.get());
Test::s_dbusServer = nullptr;
}
int main(int argc, char** argv)
{
g_unsetenv("DBUS_SESSION_BUS_ADDRESS");
#if PLATFORM(GTK)
gtk_test_init(&argc, &argv, nullptr);
#else
g_test_init(&argc, &argv, nullptr);
#endif
g_set_prgname(FileSystem::currentExecutableName().data());
g_setenv("WEBKIT_EXEC_PATH", WEBKIT_EXEC_PATH, FALSE);
g_setenv("WEBKIT_INJECTED_BUNDLE_PATH", WEBKIT_INJECTED_BUNDLE_PATH, FALSE);
g_setenv("LC_ALL", "C", TRUE);
g_setenv("GIO_USE_VFS", "local", TRUE);
g_setenv("GSETTINGS_BACKEND", "memory", TRUE);
// Get rid of runtime warnings about deprecated properties and signals, since they break the tests.
g_setenv("G_ENABLE_DIAGNOSTIC", "0", TRUE);
g_setenv("TZ", "America/Los_Angeles", TRUE);
g_test_bug_base("https://bugs.webkit.org/");
registerGResource();
startDBusServer();
beforeAll();
int returnValue = g_test_run();
afterAll();
stopDBusServer();
removeNonEmptyDirectory(testDataDirectory.get());
return returnValue;
}
|