#include "content/public/test/content_browser_test.h"
#include "base/check_op.h"
#include "base/command_line.h"
#include "base/path_service.h"
#include "base/run_loop.h"
#include "base/task/current_thread.h"
#include "build/build_config.h"
#include "build/chromecast_buildflags.h"
#include "build/chromeos_buildflags.h"
#include "content/browser/renderer_host/render_frame_host_impl.h"
#include "content/public/browser/render_process_host.h"
#include "content/public/common/content_paths.h"
#include "content/public/common/content_switches.h"
#include "content/public/common/url_constants.h"
#include "content/public/test/content_browser_test_content_browser_client.h"
#include "content/shell/browser/shell.h"
#include "content/shell/browser/shell_browser_context.h"
#include "content/shell/common/shell_switches.h"
#include "content/test/test_content_client.h"
#include "ui/events/platform/platform_event_source.h"
#if BUILDFLAG(IS_MAC)
#include "base/mac/foundation_util.h"
#endif
#if BUILDFLAG(IS_CHROMEOS_LACROS) || BUILDFLAG(IS_LINUX)
#include "ui/base/ime/init/input_method_initializer.h"
#endif
#if BUILDFLAG(IS_CHROMEOS)
#include "content/public/test/network_connection_change_simulator.h"
#endif
#if defined(USE_AURA) && defined(TOOLKIT_VIEWS)
#include "ui/views/test/widget_test_api.h"
#endif
namespace content {
ContentBrowserTest::ContentBrowserTest() {
ContentClient::SetCanChangeContentBrowserClientForTesting(false);
#if BUILDFLAG(IS_MAC)
base::mac::SetOverrideAmIBundled(true);
base::FilePath content_shell_path;
CHECK(base::PathService::Get(base::FILE_EXE, &content_shell_path));
content_shell_path = content_shell_path.DirName();
content_shell_path = content_shell_path.Append(
FILE_PATH_LITERAL("Content Shell.app/Contents/MacOS/Content Shell"));
CHECK(base::PathService::Override(base::FILE_EXE, content_shell_path));
#endif
CreateTestServer(GetTestDataFilePath());
RenderFrameHostImpl::max_accessibility_resets_ = 0;
}
ContentBrowserTest::~ContentBrowserTest() {
}
void ContentBrowserTest::SetUp() {
base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
SetUpCommandLine(command_line);
#if BUILDFLAG(IS_MAC)
base::FilePath subprocess_path;
base::PathService::Get(base::FILE_EXE, &subprocess_path);
subprocess_path = subprocess_path.DirName().DirName();
DCHECK_EQ(subprocess_path.BaseName().value(), "Contents");
subprocess_path = subprocess_path.Append(
"Frameworks/Content Shell Framework.framework/Helpers/Content Shell "
"Helper.app/Contents/MacOS/Content Shell Helper");
command_line->AppendSwitchPath(switches::kBrowserSubprocessPath,
subprocess_path);
#endif
#if defined(USE_AURA) && defined(TOOLKIT_VIEWS) && !BUILDFLAG(IS_CASTOS)
views::DisableActivationChangeHandlingForTests();
#endif
#if BUILDFLAG(IS_CHROMEOS_LACROS) || BUILDFLAG(IS_LINUX)
ui::InitializeInputMethodForTesting();
#endif
ui::PlatformEventSource::SetIgnoreNativePlatformEvents(true);
BrowserTestBase::SetUp();
}
void ContentBrowserTest::TearDown() {
BrowserTestBase::TearDown();
#if BUILDFLAG(IS_CHROMEOS_LACROS) || BUILDFLAG(IS_LINUX)
ui::ShutdownInputMethodForTesting();
#endif
}
void ContentBrowserTest::PreRunTestOnMainThread() {
#if BUILDFLAG(IS_CHROMEOS)
NetworkConnectionChangeSimulator network_change_simulator;
network_change_simulator.InitializeChromeosConnectionType();
#endif
CHECK_EQ(Shell::windows().size(), 1u);
shell_ = Shell::windows()[0];
SetInitialWebContents(shell_->web_contents());
#if BUILDFLAG(IS_MAC)
pool_ = new base::mac::ScopedNSAutoreleasePool;
#endif
DCHECK(base::CurrentUIThread::IsSet());
base::RunLoop().RunUntilIdle();
#if BUILDFLAG(IS_MAC)
pool_->Recycle();
#endif
pre_run_test_executed_ = true;
}
void ContentBrowserTest::PostRunTestOnMainThread() {
DCHECK(pre_run_test_executed_);
#if BUILDFLAG(IS_MAC)
pool_->Recycle();
#endif
for (RenderProcessHost::iterator i(RenderProcessHost::AllHostsIterator());
!i.IsAtEnd(); i.Advance()) {
i.GetCurrentValue()->FastShutdownIfPossible();
}
Shell::Shutdown();
}
Shell* ContentBrowserTest::CreateBrowser() {
return Shell::CreateNewWindow(
ShellContentBrowserClient::Get()->browser_context(),
GURL(url::kAboutBlankURL), nullptr, gfx::Size());
}
Shell* ContentBrowserTest::CreateOffTheRecordBrowser() {
return Shell::CreateNewWindow(
ShellContentBrowserClient::Get()->off_the_record_browser_context(),
GURL(url::kAboutBlankURL), nullptr, gfx::Size());
}
base::FilePath ContentBrowserTest::GetTestDataFilePath() {
return base::FilePath(FILE_PATH_LITERAL("content/test/data"));
}
}