2012-04-03 03:34:16 +02:00
|
|
|
// Copyright (c) 2012 The Chromium Embedded Framework Authors. All rights
|
|
|
|
// reserved. Use of this source code is governed by a BSD-style license that
|
|
|
|
// can be found in the LICENSE file.
|
|
|
|
|
2016-03-16 03:55:59 +01:00
|
|
|
#include "include/base/cef_build.h"
|
2019-04-23 19:00:14 +02:00
|
|
|
#include "include/cef_config.h"
|
2014-07-11 22:10:05 +02:00
|
|
|
|
2019-04-23 19:00:14 +02:00
|
|
|
#if defined(OS_LINUX) && defined(CEF_X11)
|
2014-09-24 19:22:27 +02:00
|
|
|
#include <X11/Xlib.h>
|
|
|
|
// Definitions conflict with gtest.
|
|
|
|
#undef None
|
|
|
|
#undef Bool
|
|
|
|
#endif
|
|
|
|
|
2016-11-16 21:24:13 +01:00
|
|
|
#if defined(OS_POSIX)
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
|
2014-07-15 00:18:51 +02:00
|
|
|
#include "include/base/cef_bind.h"
|
2012-04-03 03:34:16 +02:00
|
|
|
#include "include/cef_app.h"
|
|
|
|
#include "include/cef_task.h"
|
2016-11-12 00:22:53 +01:00
|
|
|
#include "include/cef_thread.h"
|
2014-07-15 20:10:40 +02:00
|
|
|
#include "include/wrapper/cef_closure_task.h"
|
2017-05-17 11:29:28 +02:00
|
|
|
#include "include/wrapper/cef_helpers.h"
|
2016-11-18 18:31:21 +01:00
|
|
|
#include "tests/ceftests/test_handler.h"
|
|
|
|
#include "tests/ceftests/test_suite.h"
|
2016-11-18 00:52:42 +01:00
|
|
|
#include "tests/shared/browser/client_app_browser.h"
|
|
|
|
#include "tests/shared/browser/main_message_loop_external_pump.h"
|
|
|
|
#include "tests/shared/browser/main_message_loop_std.h"
|
|
|
|
#include "tests/shared/common/client_app_other.h"
|
|
|
|
#include "tests/shared/renderer/client_app_renderer.h"
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2018-07-27 17:39:53 +02:00
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
#include "include/wrapper/cef_library_loader.h"
|
|
|
|
#endif
|
|
|
|
|
2018-07-27 23:28:12 +02:00
|
|
|
// When generating projects with CMake the CEF_USE_SANDBOX value will be defined
|
|
|
|
// automatically if using the required compiler version. Pass -DUSE_SANDBOX=OFF
|
|
|
|
// to the CMake command-line to disable use of the sandbox.
|
|
|
|
#if defined(OS_WIN) && defined(CEF_USE_SANDBOX)
|
2013-11-15 19:47:02 +01:00
|
|
|
#include "include/cef_sandbox_win.h"
|
2018-07-27 23:28:12 +02:00
|
|
|
|
|
|
|
// The cef_sandbox.lib static library may not link successfully with all VS
|
|
|
|
// versions.
|
|
|
|
#pragma comment(lib, "cef_sandbox.lib")
|
2013-11-15 19:47:02 +01:00
|
|
|
#endif
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
namespace {
|
|
|
|
|
2016-05-04 20:00:03 +02:00
|
|
|
void QuitMessageLoop() {
|
|
|
|
client::MainMessageLoop* message_loop = client::MainMessageLoop::Get();
|
|
|
|
if (message_loop)
|
|
|
|
message_loop->Quit();
|
|
|
|
else
|
|
|
|
CefQuitMessageLoop();
|
|
|
|
}
|
|
|
|
|
2016-11-16 21:24:13 +01:00
|
|
|
void sleep(int64 ms) {
|
|
|
|
#if defined(OS_WIN)
|
|
|
|
Sleep(ms);
|
|
|
|
#elif defined(OS_POSIX)
|
|
|
|
usleep(ms * 1000);
|
|
|
|
#else
|
|
|
|
#error Unsupported platform
|
|
|
|
#endif
|
|
|
|
}
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2016-11-16 21:24:13 +01:00
|
|
|
// Called on the test thread.
|
|
|
|
void RunTestsOnTestThread() {
|
2016-11-12 00:22:53 +01:00
|
|
|
// Run the test suite.
|
2016-11-16 21:24:13 +01:00
|
|
|
CefTestSuite::GetInstance()->Run();
|
2013-03-19 23:59:33 +01:00
|
|
|
|
2016-11-12 00:22:53 +01:00
|
|
|
// Wait for all browsers to exit.
|
|
|
|
while (TestHandler::HasBrowser())
|
2016-11-16 21:24:13 +01:00
|
|
|
sleep(100);
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2016-11-12 00:22:53 +01:00
|
|
|
// Quit the CEF message loop.
|
|
|
|
CefPostTask(TID_UI, base::Bind(&QuitMessageLoop));
|
|
|
|
}
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2012-06-19 18:29:49 +02:00
|
|
|
// Called on the UI thread.
|
2016-11-16 21:24:13 +01:00
|
|
|
void ContinueOnUIThread(CefRefPtr<CefTaskRunner> test_task_runner) {
|
2012-06-19 18:29:49 +02:00
|
|
|
// Run the test suite on the test thread.
|
2016-11-12 00:22:53 +01:00
|
|
|
test_task_runner->PostTask(
|
2016-11-16 21:24:13 +01:00
|
|
|
CefCreateClosureTask(base::Bind(&RunTestsOnTestThread)));
|
2012-06-19 18:29:49 +02:00
|
|
|
}
|
|
|
|
|
2019-04-23 19:00:14 +02:00
|
|
|
#if defined(OS_LINUX) && defined(CEF_X11)
|
2017-05-17 11:29:28 +02:00
|
|
|
int XErrorHandlerImpl(Display* display, XErrorEvent* event) {
|
|
|
|
LOG(WARNING) << "X error received: "
|
|
|
|
<< "type " << event->type << ", "
|
|
|
|
<< "serial " << event->serial << ", "
|
|
|
|
<< "error_code " << static_cast<int>(event->error_code) << ", "
|
|
|
|
<< "request_code " << static_cast<int>(event->request_code)
|
|
|
|
<< ", "
|
|
|
|
<< "minor_code " << static_cast<int>(event->minor_code);
|
2014-09-24 19:22:27 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
int XIOErrorHandlerImpl(Display* display) {
|
2014-09-24 19:22:27 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2019-04-23 19:00:14 +02:00
|
|
|
#endif // defined(OS_LINUX) && defined(CEF_X11)
|
2014-09-24 19:22:27 +02:00
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
} // namespace
|
|
|
|
|
|
|
|
int main(int argc, char* argv[]) {
|
2018-07-27 17:39:53 +02:00
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
// Load the CEF framework library at runtime instead of linking directly
|
|
|
|
// as required by the macOS sandbox implementation.
|
|
|
|
CefScopedLibraryLoader library_loader;
|
|
|
|
if (!library_loader.LoadInMain())
|
|
|
|
return 1;
|
|
|
|
#endif
|
|
|
|
|
2016-11-16 21:24:13 +01:00
|
|
|
// Create the singleton test suite object.
|
|
|
|
CefTestSuite test_suite(argc, argv);
|
2014-06-25 21:47:06 +02:00
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
#if defined(OS_WIN)
|
2016-11-16 21:24:13 +01:00
|
|
|
if (test_suite.command_line()->HasSwitch("enable-high-dpi-support")) {
|
2016-01-19 21:09:01 +01:00
|
|
|
// Enable High-DPI support on Windows 7 and newer.
|
|
|
|
CefEnableHighDPISupport();
|
|
|
|
}
|
|
|
|
|
2020-01-15 14:34:01 +01:00
|
|
|
CefMainArgs main_args(::GetModuleHandle(nullptr));
|
2012-04-03 03:34:16 +02:00
|
|
|
#else
|
|
|
|
CefMainArgs main_args(argc, argv);
|
|
|
|
#endif
|
|
|
|
|
2020-01-15 14:34:01 +01:00
|
|
|
void* windows_sandbox_info = nullptr;
|
2013-11-15 19:47:02 +01:00
|
|
|
|
2018-07-27 23:28:12 +02:00
|
|
|
#if defined(OS_WIN) && defined(CEF_USE_SANDBOX)
|
2013-11-15 19:47:02 +01:00
|
|
|
// Manages the life span of the sandbox information object.
|
|
|
|
CefScopedSandboxInfo scoped_sandbox;
|
|
|
|
windows_sandbox_info = scoped_sandbox.sandbox_info();
|
|
|
|
#endif
|
|
|
|
|
2015-01-31 05:41:36 +01:00
|
|
|
// Create a ClientApp of the correct type.
|
|
|
|
CefRefPtr<CefApp> app;
|
|
|
|
client::ClientApp::ProcessType process_type =
|
2016-11-16 21:24:13 +01:00
|
|
|
client::ClientApp::GetProcessType(test_suite.command_line());
|
2015-01-31 05:41:36 +01:00
|
|
|
if (process_type == client::ClientApp::BrowserProcess) {
|
|
|
|
app = new client::ClientAppBrowser();
|
2016-11-18 00:52:42 +01:00
|
|
|
#if !defined(OS_MACOSX)
|
2015-01-31 05:41:36 +01:00
|
|
|
} else if (process_type == client::ClientApp::RendererProcess ||
|
|
|
|
process_type == client::ClientApp::ZygoteProcess) {
|
|
|
|
app = new client::ClientAppRenderer();
|
|
|
|
} else if (process_type == client::ClientApp::OtherProcess) {
|
|
|
|
app = new client::ClientAppOther();
|
|
|
|
}
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
// Execute the secondary process, if any.
|
2013-11-15 19:47:02 +01:00
|
|
|
int exit_code = CefExecuteProcess(main_args, app, windows_sandbox_info);
|
2012-04-03 03:34:16 +02:00
|
|
|
if (exit_code >= 0)
|
|
|
|
return exit_code;
|
2016-11-18 00:52:42 +01:00
|
|
|
#else
|
|
|
|
} else {
|
|
|
|
// On OS X this executable is only used for the main process.
|
|
|
|
NOTREACHED();
|
|
|
|
}
|
|
|
|
#endif
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
CefSettings settings;
|
2018-07-27 23:28:12 +02:00
|
|
|
|
|
|
|
#if !defined(CEF_USE_SANDBOX)
|
|
|
|
settings.no_sandbox = true;
|
|
|
|
#endif
|
|
|
|
|
2016-11-16 21:24:13 +01:00
|
|
|
test_suite.GetSettings(settings);
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
// Platform-specific initialization.
|
|
|
|
extern void PlatformInit();
|
|
|
|
PlatformInit();
|
|
|
|
#endif
|
|
|
|
|
2019-04-23 19:00:14 +02:00
|
|
|
#if defined(OS_LINUX) && defined(CEF_X11)
|
2014-09-24 19:22:27 +02:00
|
|
|
// Install xlib error handlers so that the application won't be terminated
|
|
|
|
// on non-fatal errors.
|
|
|
|
XSetErrorHandler(XErrorHandlerImpl);
|
|
|
|
XSetIOErrorHandler(XIOErrorHandlerImpl);
|
|
|
|
#endif
|
|
|
|
|
2016-05-04 20:00:03 +02:00
|
|
|
// Create the MessageLoop.
|
2016-11-16 21:24:13 +01:00
|
|
|
scoped_ptr<client::MainMessageLoop> message_loop;
|
2016-05-04 20:00:03 +02:00
|
|
|
if (!settings.multi_threaded_message_loop) {
|
|
|
|
if (settings.external_message_pump)
|
|
|
|
message_loop = client::MainMessageLoopExternalPump::Create();
|
|
|
|
else
|
|
|
|
message_loop.reset(new client::MainMessageLoopStd);
|
|
|
|
}
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
// Initialize CEF.
|
2013-11-15 19:47:02 +01:00
|
|
|
CefInitialize(main_args, settings, app, windows_sandbox_info);
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2016-11-16 21:24:13 +01:00
|
|
|
// Initialize the testing framework.
|
|
|
|
test_suite.InitMainProcess();
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
int retval;
|
|
|
|
|
|
|
|
if (settings.multi_threaded_message_loop) {
|
|
|
|
// Run the test suite on the main thread.
|
|
|
|
retval = test_suite.Run();
|
|
|
|
} else {
|
2016-11-12 00:22:53 +01:00
|
|
|
// Create and start the test thread.
|
|
|
|
CefRefPtr<CefThread> thread = CefThread::CreateThread("test_thread");
|
|
|
|
if (!thread)
|
2012-04-03 03:34:16 +02:00
|
|
|
return 1;
|
|
|
|
|
2012-06-19 18:29:49 +02:00
|
|
|
// Start the tests from the UI thread so that any pending UI tasks get a
|
|
|
|
// chance to execute first.
|
2016-11-12 00:22:53 +01:00
|
|
|
CefPostTask(TID_UI,
|
2017-05-17 11:29:28 +02:00
|
|
|
base::Bind(&ContinueOnUIThread, thread->GetTaskRunner()));
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
// Run the CEF message loop.
|
2016-05-04 20:00:03 +02:00
|
|
|
message_loop->Run();
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
// The test suite has completed.
|
2016-11-16 21:24:13 +01:00
|
|
|
retval = test_suite.retval();
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
// Terminate the test thread.
|
2016-11-12 00:22:53 +01:00
|
|
|
thread->Stop();
|
|
|
|
thread = nullptr;
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Shut down CEF.
|
|
|
|
CefShutdown();
|
|
|
|
|
2017-08-04 00:55:19 +02:00
|
|
|
test_suite.DeleteTempDirectories();
|
|
|
|
|
2016-05-04 20:00:03 +02:00
|
|
|
// Destroy the MessageLoop.
|
|
|
|
message_loop.reset(nullptr);
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
// Platform-specific cleanup.
|
|
|
|
extern void PlatformCleanup();
|
|
|
|
PlatformCleanup();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return retval;
|
2014-07-01 00:54:35 +02:00
|
|
|
}
|