1// Copyright (c) 2012 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "chrome/browser/ui/cocoa/cocoa_profile_test.h"
6
7#include "base/run_loop.h"
8#include "chrome/browser/autocomplete/autocomplete_classifier_factory.h"
9#include "chrome/browser/bookmarks/bookmark_model_factory.h"
10#include "chrome/browser/browser_process.h"
11#include "chrome/browser/search_engines/template_url_service_factory.h"
12#include "chrome/browser/ui/browser.h"
13#include "chrome/browser/ui/browser_commands.h"
14#include "chrome/browser/ui/browser_tabstrip.h"
15#include "chrome/browser/ui/host_desktop.h"
16#include "chrome/browser/ui/tabs/tab_strip_model.h"
17#include "chrome/test/base/testing_browser_process.h"
18#include "chrome/test/base/testing_profile.h"
19#include "components/bookmarks/test/bookmark_test_helpers.h"
20#include "content/public/test/test_browser_thread_bundle.h"
21
22CocoaProfileTest::CocoaProfileTest()
23    : profile_manager_(TestingBrowserProcess::GetGlobal()),
24      profile_(NULL),
25      thread_bundle_(new content::TestBrowserThreadBundle) {}
26
27CocoaProfileTest::~CocoaProfileTest() {
28  // Delete the testing profile on the UI thread. But first release the
29  // browser, since it may trigger accesses to the profile upon destruction.
30  browser_.reset();
31
32  base::RunLoop().RunUntilIdle();
33
34  // Some services created on the TestingProfile require deletion on the UI
35  // thread. If the scoper in TestingBrowserProcess, owned by ChromeTestSuite,
36  // were to delete the ProfileManager, the UI thread would at that point no
37  // longer exist.
38  TestingBrowserProcess::GetGlobal()->SetProfileManager(NULL);
39
40  // Make sure any pending tasks run before we destroy other threads.
41  base::RunLoop().RunUntilIdle();
42}
43
44void CocoaProfileTest::SetUp() {
45  CocoaTest::SetUp();
46
47  ASSERT_TRUE(profile_manager_.SetUp());
48
49  profile_ = profile_manager_.CreateTestingProfile("Person 1");
50  ASSERT_TRUE(profile_);
51
52  // TODO(shess): These are needed in case someone creates a browser
53  // window off of browser_.  pkasting indicates that other
54  // platforms use a stub |BrowserWindow| and thus don't need to do
55  // this.
56  // http://crbug.com/39725
57  TemplateURLServiceFactory::GetInstance()->SetTestingFactoryAndUse(
58      profile_, &TemplateURLServiceFactory::BuildInstanceFor);
59  AutocompleteClassifierFactory::GetInstance()->SetTestingFactoryAndUse(
60      profile_, &AutocompleteClassifierFactory::BuildInstanceFor);
61
62  profile_->CreateBookmarkModel(true);
63  test::WaitForBookmarkModelToLoad(
64      BookmarkModelFactory::GetForProfile(profile_));
65
66  browser_.reset(CreateBrowser());
67  ASSERT_TRUE(browser_.get());
68}
69
70void CocoaProfileTest::TearDown() {
71  if (browser_.get() && browser_->window())
72    CloseBrowserWindow();
73
74  CocoaTest::TearDown();
75}
76
77void CocoaProfileTest::CloseBrowserWindow() {
78  // Check to make sure a window was actually created.
79  DCHECK(browser_->window());
80  browser_->tab_strip_model()->CloseAllTabs();
81  chrome::CloseWindow(browser_.get());
82  // |browser_| will be deleted by its BrowserWindowController.
83  ignore_result(browser_.release());
84}
85
86Browser* CocoaProfileTest::CreateBrowser() {
87  return new Browser(Browser::CreateParams(profile(),
88                                           chrome::GetActiveDesktop()));
89}
90