mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Rename unittests to ceftests (issue #1632)
This commit is contained in:
215
tests/ceftests/run_all_unittests.cc
Normal file
215
tests/ceftests/run_all_unittests.cc
Normal file
@@ -0,0 +1,215 @@
|
||||
// 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.
|
||||
|
||||
#include "include/base/cef_build.h"
|
||||
|
||||
#if defined(OS_LINUX)
|
||||
#include <X11/Xlib.h>
|
||||
// Definitions conflict with gtest.
|
||||
#undef None
|
||||
#undef Bool
|
||||
#endif
|
||||
|
||||
#if defined(OS_POSIX)
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
#include "include/base/cef_bind.h"
|
||||
#include "include/cef_app.h"
|
||||
#include "include/cef_task.h"
|
||||
#include "include/cef_thread.h"
|
||||
#include "include/wrapper/cef_helpers.h"
|
||||
#include "include/wrapper/cef_closure_task.h"
|
||||
#include "tests/ceftests/test_handler.h"
|
||||
#include "tests/ceftests/test_suite.h"
|
||||
#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"
|
||||
|
||||
#if defined(OS_WIN)
|
||||
#include "include/cef_sandbox_win.h"
|
||||
#endif
|
||||
|
||||
namespace {
|
||||
|
||||
void QuitMessageLoop() {
|
||||
client::MainMessageLoop* message_loop = client::MainMessageLoop::Get();
|
||||
if (message_loop)
|
||||
message_loop->Quit();
|
||||
else
|
||||
CefQuitMessageLoop();
|
||||
}
|
||||
|
||||
void sleep(int64 ms) {
|
||||
#if defined(OS_WIN)
|
||||
Sleep(ms);
|
||||
#elif defined(OS_POSIX)
|
||||
usleep(ms * 1000);
|
||||
#else
|
||||
#error Unsupported platform
|
||||
#endif
|
||||
}
|
||||
|
||||
// Called on the test thread.
|
||||
void RunTestsOnTestThread() {
|
||||
// Run the test suite.
|
||||
CefTestSuite::GetInstance()->Run();
|
||||
|
||||
// Wait for all browsers to exit.
|
||||
while (TestHandler::HasBrowser())
|
||||
sleep(100);
|
||||
|
||||
// Quit the CEF message loop.
|
||||
CefPostTask(TID_UI, base::Bind(&QuitMessageLoop));
|
||||
}
|
||||
|
||||
// Called on the UI thread.
|
||||
void ContinueOnUIThread(CefRefPtr<CefTaskRunner> test_task_runner) {
|
||||
// Run the test suite on the test thread.
|
||||
test_task_runner->PostTask(
|
||||
CefCreateClosureTask(base::Bind(&RunTestsOnTestThread)));
|
||||
}
|
||||
|
||||
#if defined(OS_LINUX)
|
||||
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);
|
||||
return 0;
|
||||
}
|
||||
|
||||
int XIOErrorHandlerImpl(Display *display) {
|
||||
return 0;
|
||||
}
|
||||
#endif // defined(OS_LINUX)
|
||||
|
||||
} // namespace
|
||||
|
||||
|
||||
int main(int argc, char* argv[]) {
|
||||
// Create the singleton test suite object.
|
||||
CefTestSuite test_suite(argc, argv);
|
||||
|
||||
#if defined(OS_WIN)
|
||||
if (test_suite.command_line()->HasSwitch("enable-high-dpi-support")) {
|
||||
// Enable High-DPI support on Windows 7 and newer.
|
||||
CefEnableHighDPISupport();
|
||||
}
|
||||
|
||||
CefMainArgs main_args(::GetModuleHandle(NULL));
|
||||
#else
|
||||
CefMainArgs main_args(argc, argv);
|
||||
#endif
|
||||
|
||||
void* windows_sandbox_info = NULL;
|
||||
|
||||
#if defined(OS_WIN)
|
||||
// Manages the life span of the sandbox information object.
|
||||
CefScopedSandboxInfo scoped_sandbox;
|
||||
windows_sandbox_info = scoped_sandbox.sandbox_info();
|
||||
#endif
|
||||
|
||||
// Create a ClientApp of the correct type.
|
||||
CefRefPtr<CefApp> app;
|
||||
client::ClientApp::ProcessType process_type =
|
||||
client::ClientApp::GetProcessType(test_suite.command_line());
|
||||
if (process_type == client::ClientApp::BrowserProcess) {
|
||||
app = new client::ClientAppBrowser();
|
||||
#if !defined(OS_MACOSX)
|
||||
} 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();
|
||||
}
|
||||
|
||||
// Execute the secondary process, if any.
|
||||
int exit_code = CefExecuteProcess(main_args, app, windows_sandbox_info);
|
||||
if (exit_code >= 0)
|
||||
return exit_code;
|
||||
#else
|
||||
} else {
|
||||
// On OS X this executable is only used for the main process.
|
||||
NOTREACHED();
|
||||
}
|
||||
#endif
|
||||
|
||||
CefSettings settings;
|
||||
test_suite.GetSettings(settings);
|
||||
|
||||
#if defined(OS_MACOSX)
|
||||
// Platform-specific initialization.
|
||||
extern void PlatformInit();
|
||||
PlatformInit();
|
||||
#endif
|
||||
|
||||
#if defined(OS_LINUX)
|
||||
// Install xlib error handlers so that the application won't be terminated
|
||||
// on non-fatal errors.
|
||||
XSetErrorHandler(XErrorHandlerImpl);
|
||||
XSetIOErrorHandler(XIOErrorHandlerImpl);
|
||||
#endif
|
||||
|
||||
// Create the MessageLoop.
|
||||
scoped_ptr<client::MainMessageLoop> message_loop;
|
||||
if (!settings.multi_threaded_message_loop) {
|
||||
if (settings.external_message_pump)
|
||||
message_loop = client::MainMessageLoopExternalPump::Create();
|
||||
else
|
||||
message_loop.reset(new client::MainMessageLoopStd);
|
||||
}
|
||||
|
||||
// Initialize CEF.
|
||||
CefInitialize(main_args, settings, app, windows_sandbox_info);
|
||||
|
||||
// Initialize the testing framework.
|
||||
test_suite.InitMainProcess();
|
||||
|
||||
int retval;
|
||||
|
||||
if (settings.multi_threaded_message_loop) {
|
||||
// Run the test suite on the main thread.
|
||||
retval = test_suite.Run();
|
||||
} else {
|
||||
// Create and start the test thread.
|
||||
CefRefPtr<CefThread> thread = CefThread::CreateThread("test_thread");
|
||||
if (!thread)
|
||||
return 1;
|
||||
|
||||
// Start the tests from the UI thread so that any pending UI tasks get a
|
||||
// chance to execute first.
|
||||
CefPostTask(TID_UI,
|
||||
base::Bind(&ContinueOnUIThread, thread->GetTaskRunner()));
|
||||
|
||||
// Run the CEF message loop.
|
||||
message_loop->Run();
|
||||
|
||||
// The test suite has completed.
|
||||
retval = test_suite.retval();
|
||||
|
||||
// Terminate the test thread.
|
||||
thread->Stop();
|
||||
thread = nullptr;
|
||||
}
|
||||
|
||||
// Shut down CEF.
|
||||
CefShutdown();
|
||||
|
||||
// Destroy the MessageLoop.
|
||||
message_loop.reset(nullptr);
|
||||
|
||||
#if defined(OS_MACOSX)
|
||||
// Platform-specific cleanup.
|
||||
extern void PlatformCleanup();
|
||||
PlatformCleanup();
|
||||
#endif
|
||||
|
||||
return retval;
|
||||
}
|
Reference in New Issue
Block a user