Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / ui / views / bookmarks / bookmark_bar_view_unittest.cc
index cb184ae..cce07b9 100644 (file)
 #include "chrome/browser/ui/views/bookmarks/bookmark_bar_view.h"
 
 #include "base/prefs/pref_service.h"
+#include "base/strings/utf_string_conversions.h"
 #include "base/values.h"
 #include "chrome/browser/bookmarks/bookmark_model_factory.h"
 #include "chrome/browser/profiles/profile.h"
 #include "chrome/browser/search_engines/template_url_service_factory.h"
 #include "chrome/browser/ui/app_list/app_list_util.h"
+#include "chrome/browser/ui/views/bookmarks/bookmark_bar_view_test_helper.h"
 #include "chrome/common/pref_names.h"
 #include "chrome/common/url_constants.h"
 #include "chrome/test/base/browser_with_test_window_test.h"
 #include "chrome/test/base/scoped_testing_local_state.h"
 #include "chrome/test/base/testing_browser_process.h"
 #include "chrome/test/base/testing_pref_service_syncable.h"
+#include "components/bookmarks/browser/bookmark_model.h"
 #include "components/bookmarks/test/bookmark_test_helpers.h"
 #include "components/search_engines/search_terms_data.h"
 #include "components/search_engines/template_url_service.h"
 #include "components/search_engines/template_url_service_client.h"
 #include "ui/views/controls/button/label_button.h"
+#include "ui/views/controls/button/menu_button.h"
 
-class BookmarkBarViewInstantExtendedTest : public BrowserWithTestWindowTest {
+class BookmarkBarViewTest : public BrowserWithTestWindowTest {
  public:
-  BookmarkBarViewInstantExtendedTest() {
+  BookmarkBarViewTest() {}
+
+  void SetUp() override {
+    BrowserWithTestWindowTest::SetUp();
+    local_state_.reset(
+        new ScopedTestingLocalState(TestingBrowserProcess::GetGlobal()));
+  }
+
+  void TearDown() override {
+    test_helper_.reset();
+    bookmark_bar_view_.reset();
+    local_state_.reset();
+    BrowserWithTestWindowTest::TearDown();
   }
 
  protected:
-  virtual TestingProfile* CreateProfile() OVERRIDE {
+  // Returns a string containing the label of each of the *visible* buttons on
+  // the bookmark bar. Each label is separated by a space.
+  std::string GetStringForVisibleButtons() {
+    std::string result;
+    for (int i = 0; i < test_helper_->GetBookmarkButtonCount() &&
+                        test_helper_->GetBookmarkButton(i)->visible();
+         ++i) {
+      if (i != 0)
+        result += " ";
+      result +=
+          base::UTF16ToASCII(test_helper_->GetBookmarkButton(i)->GetText());
+    }
+    return result;
+  }
+
+  // Continues sizing the bookmark bar until it has |count| buttons that are
+  // visible.
+  // NOTE: if the model has more than |count| buttons this results in
+  // |count| + 1 buttons.
+  void SizeUntilButtonsVisible(int count) {
+    const int start_width = bookmark_bar_view_->width();
+    const int height = bookmark_bar_view_->GetPreferredSize().height();
+    for (int i = 0;
+         i < 100 && (test_helper_->GetBookmarkButtonCount() < count ||
+                     !test_helper_->GetBookmarkButton(count - 1)->visible());
+         ++i) {
+      bookmark_bar_view_->SetBounds(0, 0, start_width + i * 10, height);
+      bookmark_bar_view_->Layout();
+    }
+  }
+
+  const BookmarkNode* GetBookmarkBarNode() {
+    return BookmarkModelFactory::GetForProfile(profile())->bookmark_bar_node();
+  }
+
+  void WaitForBookmarkModelToLoad() {
+    bookmarks::test::WaitForBookmarkModelToLoad(
+        BookmarkModelFactory::GetForProfile(profile()));
+  }
+
+  // Adds nodes to the bookmark bar node from |string|. See
+  // bookmarks::test::AddNodesFromModelString() for details on |string|.
+  void AddNodesToBookmarkBarFromModelString(const std::string& string) {
+    bookmarks::test::AddNodesFromModelString(
+        BookmarkModelFactory::GetForProfile(profile()),
+        GetBookmarkBarNode(),
+        string);
+  }
+  // Creates the BookmarkBarView and BookmarkBarViewTestHelper. Generally you'll
+  // want to use CreateBookmarkModelAndBookmarkBarView(), but use this if
+  // need to create the BookmarkBarView after the model has populated.
+  void CreateBookmarkBarView() {
+    bookmark_bar_view_.reset(new BookmarkBarView(browser(), nullptr));
+    test_helper_.reset(new BookmarkBarViewTestHelper(bookmark_bar_view_.get()));
+  }
+
+  // Creates the model, blocking until it loads, then creates the
+  // BookmarkBarView.
+  void CreateBookmarkModelAndBookmarkBarView() {
+    profile()->CreateBookmarkModel(true);
+    WaitForBookmarkModelToLoad();
+    CreateBookmarkBarView();
+  }
+
+  // BrowserWithTestWindowTest:
+  TestingProfile* CreateProfile() override {
     TestingProfile* profile = BrowserWithTestWindowTest::CreateProfile();
     // TemplateURLService is normally NULL during testing. Instant extended
     // needs this service so set a custom factory function.
     TemplateURLServiceFactory::GetInstance()->SetTestingFactory(
-        profile, &BookmarkBarViewInstantExtendedTest::CreateTemplateURLService);
+        profile, &BookmarkBarViewTest::CreateTemplateURLService);
     return profile;
   }
 
+  scoped_ptr<BookmarkBarViewTestHelper> test_helper_;
+  scoped_ptr<BookmarkBarView> bookmark_bar_view_;
+
  private:
   static KeyedService* CreateTemplateURLService(
       content::BrowserContext* profile) {
@@ -46,65 +130,232 @@ class BookmarkBarViewInstantExtendedTest : public BrowserWithTestWindowTest {
         scoped_ptr<TemplateURLServiceClient>(), NULL, NULL, base::Closure());
   }
 
-  DISALLOW_COPY_AND_ASSIGN(BookmarkBarViewInstantExtendedTest);
+  scoped_ptr<ScopedTestingLocalState> local_state_;
+
+  DISALLOW_COPY_AND_ASSIGN(BookmarkBarViewTest);
 };
 
 // Verify that in instant extended mode the visibility of the apps shortcut
 // button properly follows the pref value.
-TEST_F(BookmarkBarViewInstantExtendedTest, AppsShortcutVisibility) {
-  ScopedTestingLocalState local_state(TestingBrowserProcess::GetGlobal());
-  profile()->CreateBookmarkModel(true);
-  test::WaitForBookmarkModelToLoad(
-      BookmarkModelFactory::GetForProfile(profile()));
-  BookmarkBarView bookmark_bar_view(browser(), NULL);
-  bookmark_bar_view.set_owned_by_client();
+TEST_F(BookmarkBarViewTest, AppsShortcutVisibility) {
+  CreateBookmarkModelAndBookmarkBarView();
   browser()->profile()->GetPrefs()->SetBoolean(
       bookmarks::prefs::kShowAppsShortcutInBookmarkBar, false);
-  EXPECT_FALSE(bookmark_bar_view.apps_page_shortcut_->visible());
+  EXPECT_FALSE(test_helper_->apps_page_shortcut()->visible());
 
   // Try to make the Apps shortcut visible. Its visibility depends on whether
   // the app launcher is enabled.
   browser()->profile()->GetPrefs()->SetBoolean(
       bookmarks::prefs::kShowAppsShortcutInBookmarkBar, true);
   if (IsAppLauncherEnabled()) {
-    EXPECT_FALSE(bookmark_bar_view.apps_page_shortcut_->visible());
+    EXPECT_FALSE(test_helper_->apps_page_shortcut()->visible());
   } else {
-    EXPECT_TRUE(bookmark_bar_view.apps_page_shortcut_->visible());
+    EXPECT_TRUE(test_helper_->apps_page_shortcut()->visible());
   }
 
   // Make sure we can also properly transition from true to false.
   browser()->profile()->GetPrefs()->SetBoolean(
       bookmarks::prefs::kShowAppsShortcutInBookmarkBar, false);
-  EXPECT_FALSE(bookmark_bar_view.apps_page_shortcut_->visible());
+  EXPECT_FALSE(test_helper_->apps_page_shortcut()->visible());
 }
 
-#if !defined(OS_CHROMEOS)
-typedef BrowserWithTestWindowTest BookmarkBarViewTest;
+// Various assertions around visibilty of the overflow_button.
+TEST_F(BookmarkBarViewTest, OverflowVisibility) {
+  profile()->CreateBookmarkModel(true);
+  CreateBookmarkBarView();
+  EXPECT_FALSE(test_helper_->overflow_button()->visible());
+
+  WaitForBookmarkModelToLoad();
+  AddNodesToBookmarkBarFromModelString("a b c d e f ");
+  EXPECT_TRUE(test_helper_->overflow_button()->visible());
+
+  SizeUntilButtonsVisible(1);
+  EXPECT_EQ(2, test_helper_->GetBookmarkButtonCount());
+  const int width_for_one = bookmark_bar_view_->bounds().width();
+  EXPECT_TRUE(test_helper_->overflow_button()->visible());
+
+  // Go really big, which should force all buttons to be added.
+  bookmark_bar_view_->SetBounds(
+      0, 0, 5000, bookmark_bar_view_->bounds().height());
+  bookmark_bar_view_->Layout();
+  EXPECT_EQ(6, test_helper_->GetBookmarkButtonCount());
+  EXPECT_FALSE(test_helper_->overflow_button()->visible());
+
+  bookmark_bar_view_->SetBounds(
+      0, 0, width_for_one, bookmark_bar_view_->bounds().height());
+  bookmark_bar_view_->Layout();
+  EXPECT_TRUE(test_helper_->overflow_button()->visible());
+}
+
+// Verifies buttons get added correctly when BookmarkBarView is created after
+// the model and the model has nodes.
+TEST_F(BookmarkBarViewTest, ButtonsDynamicallyAddedAfterModelHasNodes) {
+  profile()->CreateBookmarkModel(true);
+  WaitForBookmarkModelToLoad();
+  EXPECT_TRUE(BookmarkModelFactory::GetForProfile(profile())->loaded());
+  AddNodesToBookmarkBarFromModelString("a b c d e f ");
+  CreateBookmarkBarView();
+  EXPECT_EQ(0, test_helper_->GetBookmarkButtonCount());
+
+  SizeUntilButtonsVisible(1);
+  EXPECT_EQ(2, test_helper_->GetBookmarkButtonCount());
+
+  // Go really big, which should force all buttons to be added.
+  bookmark_bar_view_->SetBounds(
+      0, 0, 5000, bookmark_bar_view_->bounds().height());
+  bookmark_bar_view_->Layout();
+  EXPECT_EQ(6, test_helper_->GetBookmarkButtonCount());
+}
+
+// Verifies buttons are added as the model and size change.
+TEST_F(BookmarkBarViewTest, ButtonsDynamicallyAdded) {
+  CreateBookmarkModelAndBookmarkBarView();
+  EXPECT_TRUE(BookmarkModelFactory::GetForProfile(profile())->loaded());
+  AddNodesToBookmarkBarFromModelString("a b c d e f ");
+  EXPECT_EQ(0, test_helper_->GetBookmarkButtonCount());
+  SizeUntilButtonsVisible(1);
+  EXPECT_EQ(2, test_helper_->GetBookmarkButtonCount());
+
+  // Go really big, which should force all buttons to be added.
+  bookmark_bar_view_->SetBounds(
+      0, 0, 5000, bookmark_bar_view_->bounds().height());
+  bookmark_bar_view_->Layout();
+  EXPECT_EQ(6, test_helper_->GetBookmarkButtonCount());
+}
+
+TEST_F(BookmarkBarViewTest, AddNodesWhenBarAlreadySized) {
+  CreateBookmarkModelAndBookmarkBarView();
+  bookmark_bar_view_->SetBounds(
+      0, 0, 5000, bookmark_bar_view_->bounds().height());
+  AddNodesToBookmarkBarFromModelString("a b c d e f ");
+  bookmark_bar_view_->Layout();
+  EXPECT_EQ("a b c d e f", GetStringForVisibleButtons());
+}
+
+// Various assertions for removing nodes.
+TEST_F(BookmarkBarViewTest, RemoveNode) {
+  CreateBookmarkModelAndBookmarkBarView();
+  const BookmarkNode* bookmark_bar_node =
+      BookmarkModelFactory::GetForProfile(profile())->bookmark_bar_node();
+  AddNodesToBookmarkBarFromModelString("a b c d e f ");
+  EXPECT_EQ(0, test_helper_->GetBookmarkButtonCount());
+  SizeUntilButtonsVisible(1);
+  EXPECT_EQ(2, test_helper_->GetBookmarkButtonCount());
+
+  // Remove the 2nd node, should still only have 1 visible.
+  BookmarkModelFactory::GetForProfile(profile())->Remove(bookmark_bar_node, 1);
+  EXPECT_EQ("a", GetStringForVisibleButtons());
+
+  // Remove the first node, should force a new button (for the 'c' node).
+  BookmarkModelFactory::GetForProfile(profile())->Remove(bookmark_bar_node, 0);
+  ASSERT_EQ("c", GetStringForVisibleButtons());
+}
+
+// Assertions for moving a node on the bookmark bar.
+TEST_F(BookmarkBarViewTest, MoveNode) {
+  CreateBookmarkModelAndBookmarkBarView();
+  const BookmarkNode* bookmark_bar_node =
+      BookmarkModelFactory::GetForProfile(profile())->bookmark_bar_node();
+  AddNodesToBookmarkBarFromModelString("a b c d e f ");
+  EXPECT_EQ(0, test_helper_->GetBookmarkButtonCount());
+
+  // Move 'c' first resulting in 'c a b d e f'.
+  BookmarkModelFactory::GetForProfile(profile())
+      ->Move(bookmark_bar_node->GetChild(2), bookmark_bar_node, 0);
+  EXPECT_EQ(0, test_helper_->GetBookmarkButtonCount());
+
+  // Make enough room for 1 node.
+  SizeUntilButtonsVisible(1);
+  EXPECT_EQ("c", GetStringForVisibleButtons());
+
+  // Move 'f' first, resulting in 'f c a b d e'.
+  BookmarkModelFactory::GetForProfile(profile())
+      ->Move(bookmark_bar_node->GetChild(5), bookmark_bar_node, 0);
+  SizeUntilButtonsVisible(2);
+  EXPECT_EQ("f c", GetStringForVisibleButtons());
+
+  // Move 'f' to the end, resulting in 'c a b d e f'.
+  BookmarkModelFactory::GetForProfile(profile())
+      ->Move(bookmark_bar_node->GetChild(0), bookmark_bar_node, 6);
+  SizeUntilButtonsVisible(2);
+  EXPECT_EQ("c a", GetStringForVisibleButtons());
 
+  // Move 'c' after 'a', resulting in 'a c b d e f'.
+  BookmarkModelFactory::GetForProfile(profile())
+      ->Move(bookmark_bar_node->GetChild(0), bookmark_bar_node, 2);
+  SizeUntilButtonsVisible(2);
+  EXPECT_EQ("a c", GetStringForVisibleButtons());
+}
+
+// Assertions for changing the title of a node.
+TEST_F(BookmarkBarViewTest, ChangeTitle) {
+  CreateBookmarkModelAndBookmarkBarView();
+  const BookmarkNode* bookmark_bar_node = GetBookmarkBarNode();
+  AddNodesToBookmarkBarFromModelString("a b c d e f ");
+  EXPECT_EQ(0, test_helper_->GetBookmarkButtonCount());
+
+  BookmarkModelFactory::GetForProfile(profile())
+      ->SetTitle(bookmark_bar_node->GetChild(0), base::ASCIIToUTF16("a1"));
+  EXPECT_EQ(0, test_helper_->GetBookmarkButtonCount());
+
+  // Make enough room for 1 node.
+  SizeUntilButtonsVisible(1);
+  EXPECT_EQ("a1", GetStringForVisibleButtons());
+
+  BookmarkModelFactory::GetForProfile(profile())
+      ->SetTitle(bookmark_bar_node->GetChild(1), base::ASCIIToUTF16("b1"));
+  EXPECT_EQ("a1", GetStringForVisibleButtons());
+
+  BookmarkModelFactory::GetForProfile(profile())
+      ->SetTitle(bookmark_bar_node->GetChild(5), base::ASCIIToUTF16("f1"));
+  EXPECT_EQ("a1", GetStringForVisibleButtons());
+
+  BookmarkModelFactory::GetForProfile(profile())
+      ->SetTitle(bookmark_bar_node->GetChild(3), base::ASCIIToUTF16("d1"));
+
+  // Make the second button visible, changes the title of the first to something
+  // really long and make sure the second button hides.
+  SizeUntilButtonsVisible(2);
+  EXPECT_EQ("a1 b1", GetStringForVisibleButtons());
+  BookmarkModelFactory::GetForProfile(profile())
+      ->SetTitle(bookmark_bar_node->GetChild(0),
+                 base::ASCIIToUTF16("a_really_long_title"));
+  EXPECT_LE(1, test_helper_->GetBookmarkButtonCount());
+
+  // Change the title back and make sure the 2nd button is visible again. Don't
+  // use GetStringForVisibleButtons() here as more buttons may have been
+  // created.
+  BookmarkModelFactory::GetForProfile(profile())
+      ->SetTitle(bookmark_bar_node->GetChild(0), base::ASCIIToUTF16("a1"));
+  ASSERT_LE(2, test_helper_->GetBookmarkButtonCount());
+  EXPECT_TRUE(test_helper_->GetBookmarkButton(0)->visible());
+  EXPECT_TRUE(test_helper_->GetBookmarkButton(1)->visible());
+
+  bookmark_bar_view_->SetBounds(
+      0, 0, 5000, bookmark_bar_view_->bounds().height());
+  bookmark_bar_view_->Layout();
+  EXPECT_EQ("a1 b1 c d1 e f1", GetStringForVisibleButtons());
+}
+
+#if !defined(OS_CHROMEOS)
 // Verifies that the apps shortcut is shown or hidden following the policy
 // value. This policy (and the apps shortcut) isn't present on ChromeOS.
 TEST_F(BookmarkBarViewTest, ManagedShowAppsShortcutInBookmarksBar) {
-  ScopedTestingLocalState local_state(TestingBrowserProcess::GetGlobal());
-  profile()->CreateBookmarkModel(true);
-  test::WaitForBookmarkModelToLoad(
-      BookmarkModelFactory::GetForProfile(profile()));
-  BookmarkBarView bookmark_bar_view(browser(), NULL);
-  bookmark_bar_view.set_owned_by_client();
-
+  CreateBookmarkModelAndBookmarkBarView();
   // By default, the pref is not managed and the apps shortcut is shown.
   TestingPrefServiceSyncable* prefs = profile()->GetTestingPrefService();
   EXPECT_FALSE(prefs->IsManagedPreference(
       bookmarks::prefs::kShowAppsShortcutInBookmarkBar));
-  EXPECT_TRUE(bookmark_bar_view.apps_page_shortcut_->visible());
+  EXPECT_TRUE(test_helper_->apps_page_shortcut()->visible());
 
   // Hide the apps shortcut by policy, via the managed pref.
   prefs->SetManagedPref(bookmarks::prefs::kShowAppsShortcutInBookmarkBar,
                         new base::FundamentalValue(false));
-  EXPECT_FALSE(bookmark_bar_view.apps_page_shortcut_->visible());
+  EXPECT_FALSE(test_helper_->apps_page_shortcut()->visible());
 
   // And try showing it via policy too.
   prefs->SetManagedPref(bookmarks::prefs::kShowAppsShortcutInBookmarkBar,
                         new base::FundamentalValue(true));
-  EXPECT_TRUE(bookmark_bar_view.apps_page_shortcut_->visible());
+  EXPECT_TRUE(test_helper_->apps_page_shortcut()->visible());
 }
 #endif