#include "base/basictypes.h"
#if defined(OS_WIN)
#include <windows.h>
#include <commctrl.h>
#endif
#include "base/command_line.h"
#include "base/message_loop.h"
#include "base/process_util.h"
#include "base/test/test_suite.h"
#include "webkit/glue/webkit_glue.h"
#include "webkit/tools/test_shell/simple_resource_loader_bridge.h"
#include "webkit/tools/test_shell/test_shell.h"
#include "webkit/tools/test_shell/test_shell_platform_delegate.h"
#include "webkit/tools/test_shell/test_shell_switches.h"
#include "webkit/tools/test_shell/test_shell_test.h"
#include "webkit/tools/test_shell/test_shell_webkit_init.h"
#include "testing/gtest/include/gtest/gtest.h"
#if defined(OS_MACOSX)
#include "base/mac/bundle_locations.h"
#include "base/mac/mac_util.h"
#include "base/mac/scoped_nsautorelease_pool.h"
#include "base/path_service.h"
#endif
class TestShellTestSuite : public base::TestSuite {
public:
TestShellTestSuite(int argc, char** argv)
: base::TestSuite(argc, argv),
platform_delegate_(*CommandLine::ForCurrentProcess()),
test_shell_webkit_init_(true) {
}
virtual void Initialize() {
#if defined(OS_MACOSX)
FilePath path;
PathService::Get(base::DIR_EXE, &path);
path = path.AppendASCII("TestShell.app");
base::mac::SetOverrideFrameworkBundlePath(path);
#endif
base::TestSuite::Initialize();
const CommandLine& parsed_command_line = *CommandLine::ForCurrentProcess();
std::string js_flags =
parsed_command_line.GetSwitchValueASCII(test_shell::kJavaScriptFlags);
js_flags += " --expose_gc";
webkit_glue::SetJavaScriptFlags(js_flags);
TestShell::InitLogging(true, false, false);
TestShell::SetFileTestTimeout(10 * 60 * 60 * 1000);
TestShell::InitializeTestShell(true, false);
platform_delegate_.InitializeGUI();
platform_delegate_.SelectUnifiedTheme();
}
virtual void Shutdown() {
TestShell::ShutdownTestShell();
TestShell::CleanupLogging();
base::TestSuite::Shutdown();
}
private:
TestShellPlatformDelegate platform_delegate_;
MessageLoopForUI main_message_loop_;
TestShellWebKitInit test_shell_webkit_init_;
DISALLOW_COPY_AND_ASSIGN(TestShellTestSuite);
};
int main(int argc, char** argv) {
#if defined(OS_MACOSX)
base::mac::ScopedNSAutoreleasePool scoped_pool;
#endif
TestShellPlatformDelegate::PreflightArgs(&argc, &argv);
return TestShellTestSuite(argc, argv).Run();
}