// Copyright (c) 2012 The Chromium 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 "chrome/test/base/browser_with_test_window_test.h" #include "base/location.h" #include "base/run_loop.h" #include "base/single_thread_task_runner.h" #include "base/thread_task_runner_handle.h" #include "chrome/browser/profiles/profile_destroyer.h" #include "chrome/browser/ui/browser.h" #include "chrome/browser/ui/browser_navigator.h" #include "chrome/browser/ui/tabs/tab_strip_model.h" #include "chrome/test/base/testing_profile.h" #include "content/public/browser/navigation_controller.h" #include "content/public/browser/navigation_entry.h" #include "content/public/browser/web_contents.h" #include "content/public/test/test_renderer_host.h" #include "ui/base/page_transition_types.h" #if defined(USE_AURA) #include "ui/aura/test/aura_test_helper.h" #include "ui/compositor/compositor.h" #include "ui/compositor/test/context_factories_for_test.h" #include "ui/wm/core/default_activation_client.h" #endif #if defined(USE_ASH) #include "ash/test/ash_test_helper.h" #include "ash/test/ash_test_views_delegate.h" #endif #if defined(TOOLKIT_VIEWS) #include "chrome/browser/ui/views/chrome_constrained_window_views_client.h" #include "components/constrained_window/constrained_window_views.h" #include "ui/views/test/test_views_delegate.h" #endif using content::NavigationController; using content::RenderFrameHost; using content::RenderFrameHostTester; using content::WebContents; BrowserWithTestWindowTest::BrowserWithTestWindowTest() : browser_type_(Browser::TYPE_TABBED), host_desktop_type_(chrome::HOST_DESKTOP_TYPE_NATIVE), hosted_app_(false) { } BrowserWithTestWindowTest::BrowserWithTestWindowTest( Browser::Type browser_type, chrome::HostDesktopType host_desktop_type, bool hosted_app) : browser_type_(browser_type), host_desktop_type_(host_desktop_type), hosted_app_(hosted_app) { } BrowserWithTestWindowTest::~BrowserWithTestWindowTest() { } void BrowserWithTestWindowTest::SetUp() { testing::Test::SetUp(); #if defined(OS_CHROMEOS) // TODO(jamescook): Windows Ash support. This will require refactoring // AshTestHelper and AuraTestHelper so they can be used at the same time, // perhaps by AshTestHelper owning an AuraTestHelper. Also, need to cleanup // CreateViewsDelegate() below when cleanup done. ash_test_helper_.reset(new ash::test::AshTestHelper( base::MessageLoopForUI::current())); ash_test_helper_->SetUp(true); #elif defined(USE_AURA) // The ContextFactory must exist before any Compositors are created. bool enable_pixel_output = false; ui::ContextFactory* context_factory = ui::InitializeContextFactoryForTests(enable_pixel_output); aura_test_helper_.reset(new aura::test::AuraTestHelper( base::MessageLoopForUI::current())); aura_test_helper_->SetUp(context_factory); new wm::DefaultActivationClient(aura_test_helper_->root_window()); #endif // USE_AURA #if defined(TOOLKIT_VIEWS) #if !defined(OS_CHROMEOS) views_delegate_.reset(CreateViewsDelegate()); #endif // !OS_CHROMEOS SetConstrainedWindowViewsClient(CreateChromeConstrainedWindowViewsClient()); #endif // TOOLKIT_VIEWS // Subclasses can provide their own Profile. profile_ = CreateProfile(); // Subclasses can provide their own test BrowserWindow. If they return NULL // then Browser will create the a production BrowserWindow and the subclass // is responsible for cleaning it up (usually by NativeWidget destruction). window_.reset(CreateBrowserWindow()); browser_.reset(CreateBrowser(profile(), browser_type_, hosted_app_, host_desktop_type_, window_.get())); } void BrowserWithTestWindowTest::TearDown() { // Some tests end up posting tasks to the DB thread that must be completed // before the profile can be destroyed and the test safely shut down. base::RunLoop().RunUntilIdle(); // Reset the profile here because some profile keyed services (like the // audio service) depend on test stubs that the helpers below will remove. DestroyBrowserAndProfile(); #if defined(OS_CHROMEOS) ash_test_helper_->TearDown(); #elif defined(USE_AURA) aura_test_helper_->TearDown(); ui::TerminateContextFactoryForTests(); #endif testing::Test::TearDown(); // A Task is leaked if we don't destroy everything, then run the message // loop. base::ThreadTaskRunnerHandle::Get()->PostTask( FROM_HERE, base::MessageLoop::QuitClosure()); base::MessageLoop::current()->Run(); #if defined(TOOLKIT_VIEWS) constrained_window::SetConstrainedWindowViewsClient(nullptr); views_delegate_.reset(NULL); #endif } void BrowserWithTestWindowTest::AddTab(Browser* browser, const GURL& url) { chrome::NavigateParams params(browser, url, ui::PAGE_TRANSITION_TYPED); params.tabstrip_index = 0; params.disposition = NEW_FOREGROUND_TAB; chrome::Navigate(¶ms); CommitPendingLoad(¶ms.target_contents->GetController()); } void BrowserWithTestWindowTest::CommitPendingLoad( NavigationController* controller) { if (!controller->GetPendingEntry()) return; // Nothing to commit. RenderFrameHost* old_rfh = controller->GetWebContents()->GetMainFrame(); RenderFrameHost* pending_rfh = RenderFrameHostTester::GetPendingForController( controller); if (pending_rfh) { // Simulate the BeforeUnload_ACK that is received from the current renderer // for a cross-site navigation. DCHECK_NE(old_rfh, pending_rfh); RenderFrameHostTester::For(old_rfh)->SendBeforeUnloadACK(true); } // Commit on the pending_rfh, if one exists. RenderFrameHost* test_rfh = pending_rfh ? pending_rfh : old_rfh; RenderFrameHostTester* test_rfh_tester = RenderFrameHostTester::For(test_rfh); // Simulate a SwapOut_ACK before the navigation commits. if (pending_rfh) RenderFrameHostTester::For(old_rfh)->SimulateSwapOutACK(); // For new navigations, we need to send a larger page ID. For renavigations, // we need to send the preexisting page ID. We can tell these apart because // renavigations will have a pending_entry_index while new ones won't (they'll // just have a standalong pending_entry that isn't in the list already). if (controller->GetPendingEntryIndex() >= 0) { test_rfh_tester->SendNavigateWithTransition( controller->GetPendingEntry()->GetPageID(), controller->GetPendingEntry()->GetUniqueID(), false, controller->GetPendingEntry()->GetURL(), controller->GetPendingEntry()->GetTransitionType()); } else { test_rfh_tester->SendNavigateWithTransition( controller->GetWebContents()->GetMaxPageIDForSiteInstance( test_rfh->GetSiteInstance()) + 1, controller->GetPendingEntry()->GetUniqueID(), true, controller->GetPendingEntry()->GetURL(), controller->GetPendingEntry()->GetTransitionType()); } } void BrowserWithTestWindowTest::NavigateAndCommit( NavigationController* controller, const GURL& url) { controller->LoadURL( url, content::Referrer(), ui::PAGE_TRANSITION_LINK, std::string()); CommitPendingLoad(controller); } void BrowserWithTestWindowTest::NavigateAndCommitActiveTab(const GURL& url) { NavigateAndCommit(&browser()->tab_strip_model()->GetActiveWebContents()-> GetController(), url); } void BrowserWithTestWindowTest::NavigateAndCommitActiveTabWithTitle( Browser* navigating_browser, const GURL& url, const base::string16& title) { NavigationController* controller = &navigating_browser->tab_strip_model()-> GetActiveWebContents()->GetController(); NavigateAndCommit(controller, url); controller->GetActiveEntry()->SetTitle(title); } void BrowserWithTestWindowTest::DestroyBrowserAndProfile() { if (browser_.get()) { // Make sure we close all tabs, otherwise Browser isn't happy in its // destructor. browser()->tab_strip_model()->CloseAllTabs(); browser_.reset(NULL); } window_.reset(NULL); // Destroy the profile here - otherwise, if the profile is freed in the // destructor, and a test subclass owns a resource that the profile depends // on (such as g_browser_process()->local_state()) there's no way for the // subclass to free it after the profile. if (profile_) DestroyProfile(profile_); profile_ = NULL; } TestingProfile* BrowserWithTestWindowTest::CreateProfile() { return new TestingProfile(); } void BrowserWithTestWindowTest::DestroyProfile(TestingProfile* profile) { delete profile; } BrowserWindow* BrowserWithTestWindowTest::CreateBrowserWindow() { return new TestBrowserWindow(); } Browser* BrowserWithTestWindowTest::CreateBrowser( Profile* profile, Browser::Type browser_type, bool hosted_app, chrome::HostDesktopType host_desktop_type, BrowserWindow* browser_window) { Browser::CreateParams params(profile, host_desktop_type); if (hosted_app) { params = Browser::CreateParams::CreateForApp("Test", true /* trusted_source */, gfx::Rect(), profile, host_desktop_type); } else { params.type = browser_type; } params.window = browser_window; return new Browser(params); } #if !defined(OS_CHROMEOS) && defined(TOOLKIT_VIEWS) views::ViewsDelegate* BrowserWithTestWindowTest::CreateViewsDelegate() { #if defined(USE_ASH) return new ash::test::AshTestViewsDelegate; #else return new views::TestViewsDelegate; #endif } #endif