blob: b720ce357b9daa3637fb30895517388c07a127f0 [file] [log] [blame]
// 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/browser/ui/views/tabs/tab_strip.h"
#include <memory>
#include <string>
#include "base/bind.h"
#include "base/feature_list.h"
#include "base/test/scoped_feature_list.h"
#include "base/test/task_environment.h"
#include "base/timer/timer.h"
#include "chrome/browser/ui/layout_constants.h"
#include "chrome/browser/ui/tabs/tab_renderer_data.h"
#include "chrome/browser/ui/tabs/tab_style.h"
#include "chrome/browser/ui/ui_features.h"
#include "chrome/browser/ui/views/frame/browser_root_view.h"
#include "chrome/browser/ui/views/tabs/fake_base_tab_strip_controller.h"
#include "chrome/browser/ui/views/tabs/tab.h"
#include "chrome/browser/ui/views/tabs/tab_animation.h"
#include "chrome/browser/ui/views/tabs/tab_group_header.h"
#include "chrome/browser/ui/views/tabs/tab_group_highlight.h"
#include "chrome/browser/ui/views/tabs/tab_group_underline.h"
#include "chrome/browser/ui/views/tabs/tab_group_views.h"
#include "chrome/browser/ui/views/tabs/tab_icon.h"
#include "chrome/browser/ui/views/tabs/tab_strip_controller.h"
#include "chrome/browser/ui/views/tabs/tab_strip_observer.h"
#include "chrome/browser/ui/views/tabs/tab_style_views.h"
#include "chrome/test/base/testing_profile.h"
#include "chrome/test/views/chrome_views_test_base.h"
#include "components/tab_groups/tab_group_id.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/base/dragdrop/drag_drop_types.h"
#include "ui/base/dragdrop/drop_target_event.h"
#include "ui/base/pointer/touch_ui_controller.h"
#include "ui/events/base_event_utils.h"
#include "ui/gfx/animation/animation_test_api.h"
#include "ui/gfx/canvas.h"
#include "ui/gfx/geometry/rect_conversions.h"
#include "ui/gfx/skia_util.h"
#include "ui/views/accessibility/view_accessibility.h"
#include "ui/views/controls/label.h"
#include "ui/views/layout/flex_layout.h"
#include "ui/views/test/ax_event_counter.h"
#include "ui/views/view.h"
#include "ui/views/view_class_properties.h"
#include "ui/views/view_observer.h"
#include "ui/views/view_targeter.h"
#include "ui/views/view_utils.h"
#include "ui/views/widget/widget.h"
namespace {
// Walks up the views hierarchy until it finds a tab view. It returns the
// found tab view, on NULL if none is found.
views::View* FindTabView(views::View* view) {
views::View* current = view;
while (current && !views::IsViewClass<Tab>(current)) {
current = current->parent();
}
return current;
}
struct TabStripUnittestParams {
const bool touch_ui;
const bool scrolling_enabled;
};
constexpr TabStripUnittestParams kTabStripUnittestParams[] = {
{false, true},
{false, false},
{true, false},
{true, true},
};
} // namespace
class TestTabStripObserver : public TabStripObserver {
public:
explicit TestTabStripObserver(TabStrip* tab_strip) : tab_strip_(tab_strip) {
tab_strip_->AddObserver(this);
}
TestTabStripObserver(const TestTabStripObserver&) = delete;
TestTabStripObserver& operator=(const TestTabStripObserver&) = delete;
~TestTabStripObserver() override { tab_strip_->RemoveObserver(this); }
int last_tab_added() const { return last_tab_added_; }
int last_tab_removed() const { return last_tab_removed_; }
int last_tab_moved_from() const { return last_tab_moved_from_; }
int last_tab_moved_to() const { return last_tab_moved_to_; }
private:
// TabStripObserver overrides.
void OnTabAdded(int index) override { last_tab_added_ = index; }
void OnTabMoved(int from_index, int to_index) override {
last_tab_moved_from_ = from_index;
last_tab_moved_to_ = to_index;
}
void OnTabRemoved(int index) override { last_tab_removed_ = index; }
TabStrip* tab_strip_;
int last_tab_added_ = -1;
int last_tab_removed_ = -1;
int last_tab_moved_from_ = -1;
int last_tab_moved_to_ = -1;
};
// TabStripTestBase contains no test cases.
class TabStripTestBase : public ChromeViewsTestBase {
public:
TabStripTestBase(bool touch_ui, bool scrolling_enabled)
: touch_ui_scoper_(touch_ui),
animation_mode_reset_(gfx::AnimationTestApi::SetRichAnimationRenderMode(
gfx::Animation::RichAnimationRenderMode::FORCE_ENABLED)) {
if (scrolling_enabled) {
scoped_feature_list_.InitWithFeatures({features::kScrollableTabStrip},
{});
} else {
scoped_feature_list_.InitWithFeatures({},
{features::kScrollableTabStrip});
}
}
TabStripTestBase(const TabStripTestBase&) = delete;
TabStripTestBase& operator=(const TabStripTestBase&) = delete;
~TabStripTestBase() override = default;
void SetUp() override {
ChromeViewsTestBase::SetUp();
controller_ = new FakeBaseTabStripController;
tab_strip_ = new TabStrip(std::unique_ptr<TabStripController>(controller_));
controller_->set_tab_strip(tab_strip_);
// Do this to force TabStrip to create the buttons.
auto tab_strip_parent = std::make_unique<views::View>();
views::FlexLayout* layout_manager = tab_strip_parent->SetLayoutManager(
std::make_unique<views::FlexLayout>());
// Scale the tabstrip between zero and its preferred width to match the
// context it operates in in TabStripRegionView (with tab scrolling off).
layout_manager->SetOrientation(views::LayoutOrientation::kHorizontal)
.SetDefault(
views::kFlexBehaviorKey,
views::FlexSpecification(views::MinimumFlexSizeRule::kScaleToZero,
views::MaximumFlexSizeRule::kPreferred));
tab_strip_parent->AddChildView(tab_strip_);
// The tab strip is free to use all of the space in its parent view, since
// there are no sibling controls such as the NTB in the test context.
tab_strip_->SetAvailableWidthCallback(base::BindRepeating(
[](views::View* tab_strip_parent) {
return tab_strip_parent->size().width();
},
tab_strip_parent.get()));
widget_ = CreateTestWidget();
tab_strip_parent_ = widget_->SetContentsView(std::move(tab_strip_parent));
// Prevent hover cards from appearing when the mouse is over the tab. Tests
// don't typically account for this possibly, so it can cause unrelated
// tests to fail due to tab data not being set. See crbug.com/1050012.
Tab::SetShowHoverCardOnMouseHoverForTesting(false);
}
void TearDown() override {
widget_.reset();
ChromeViewsTestBase::TearDown();
}
protected:
void SetMaxTabStripWidth(int max_width) {
tab_strip_parent_->SetBounds(0, 0, max_width,
GetLayoutConstant(TAB_HEIGHT));
}
bool IsShowingAttentionIndicator(Tab* tab) {
return tab->icon_->GetShowingAttentionIndicator();
}
// Checks whether |tab| contains |point_in_tabstrip_coords|, where the point
// is in |tab_strip_| coordinates.
bool IsPointInTab(Tab* tab, const gfx::Point& point_in_tabstrip_coords) {
gfx::Point point_in_tab_coords(point_in_tabstrip_coords);
views::View::ConvertPointToTarget(tab_strip_, tab, &point_in_tab_coords);
return tab->HitTestPoint(point_in_tab_coords);
}
Tab* FindTabForEvent(const gfx::Point& point) {
return tab_strip_->FindTabForEvent(point);
}
void CompleteAnimationAndLayout() {
// Complete animations and lay out *within the current tabstrip width*.
tab_strip_->CompleteAnimationAndLayout();
// Resize the tabstrip based on the current tab states.
tab_strip_parent_->Layout();
}
void AnimateToIdealBounds() { tab_strip_->AnimateToIdealBounds(); }
const StackedTabStripLayout* touch_layout() const {
return tab_strip_->touch_layout_.get();
}
views::BoundsAnimator* bounds_animator() {
return &tab_strip_->bounds_animator_;
}
int GetActiveTabWidth() { return tab_strip_->GetActiveTabWidth(); }
int GetInactiveTabWidth() { return tab_strip_->GetInactiveTabWidth(); }
// End any outstanding drag and animate tabs back to their ideal bounds.
void StopDragging(TabSlotView* view) {
// Passing false for |is_first_view| results in running the post-drag
// animation unconditionally.
bool is_first_view = false;
tab_strip_->StoppedDraggingView(view, &is_first_view);
}
// Makes sure that all tabs have the correct AX indices.
void VerifyTabIndices() {
for (int i = 0; i < tab_strip_->GetTabCount(); ++i) {
ui::AXNodeData ax_node_data;
tab_strip_->tab_at(i)->GetViewAccessibility().GetAccessibleNodeData(
&ax_node_data);
EXPECT_EQ(i + 1, ax_node_data.GetIntAttribute(
ax::mojom::IntAttribute::kPosInSet));
EXPECT_EQ(
tab_strip_->GetTabCount(),
ax_node_data.GetIntAttribute(ax::mojom::IntAttribute::kSetSize));
}
}
std::vector<TabGroupViews*> ListGroupViews() const {
std::vector<TabGroupViews*> result;
for (auto const& group_view_pair : tab_strip_->group_views_)
result.push_back(group_view_pair.second.get());
return result;
}
// Returns all TabSlotViews in the order that they have as ViewChildren of
// TabStrip. This should match the actual order that they appear in visually.
views::View::Views GetTabSlotViewsInFocusOrder() {
views::View::Views all_children = tab_strip_->children();
const int num_tab_slot_views =
tab_strip_->GetTabCount() + tab_strip_->group_views_.size();
return views::View::Views(all_children.begin(),
all_children.begin() + num_tab_slot_views);
}
// Returns all TabSlotViews in the order that they appear visually. This is
// the expected order of the ViewChildren of TabStrip.
views::View::Views GetTabSlotViewsInVisualOrder() {
views::View::Views ordered_views;
absl::optional<tab_groups::TabGroupId> prev_group = absl::nullopt;
for (int i = 0; i < tab_strip_->GetTabCount(); ++i) {
Tab* tab = tab_strip_->tab_at(i);
// If the current Tab is the first one in a group, first add the
// TabGroupHeader to the list of views.
absl::optional<tab_groups::TabGroupId> curr_group = tab->group();
if (curr_group.has_value() && curr_group != prev_group)
ordered_views.push_back(tab_strip_->group_header(curr_group.value()));
prev_group = curr_group;
ordered_views.push_back(tab);
}
return ordered_views;
}
// Owned by TabStrip.
FakeBaseTabStripController* controller_ = nullptr;
TabStrip* tab_strip_ = nullptr;
views::View* tab_strip_parent_ = nullptr;
std::unique_ptr<views::Widget> widget_;
ui::MouseEvent dummy_event_ = ui::MouseEvent(ui::ET_MOUSE_PRESSED,
gfx::PointF(),
gfx::PointF(),
base::TimeTicks::Now(),
0,
0);
private:
ui::TouchUiController::TouchUiScoperForTesting touch_ui_scoper_;
std::unique_ptr<base::AutoReset<gfx::Animation::RichAnimationRenderMode>>
animation_mode_reset_;
base::test::ScopedFeatureList scoped_feature_list_;
};
// TabStripTest contains tests that will run with all permutations of touch ui
// and scrolling enabled and disabled.
class TabStripTest
: public TabStripTestBase,
public testing::WithParamInterface<TabStripUnittestParams> {
public:
TabStripTest()
: TabStripTestBase(GetParam().touch_ui, GetParam().scrolling_enabled) {}
TabStripTest(const TabStripTest&) = delete;
TabStripTest& operator=(const TabStripTest&) = delete;
~TabStripTest() override = default;
};
TEST_P(TabStripTest, GetModelCount) {
EXPECT_EQ(0, tab_strip_->GetModelCount());
}
TEST_P(TabStripTest, AccessibilityEvents) {
views::test::AXEventCounter ax_counter(views::AXEventManager::Get());
controller_->AddTab(0, false);
controller_->AddTab(1, true);
EXPECT_EQ(0, ax_counter.GetCount(ax::mojom::Event::kSelectionAdd));
EXPECT_EQ(1, ax_counter.GetCount(ax::mojom::Event::kSelection));
EXPECT_EQ(0, ax_counter.GetCount(ax::mojom::Event::kSelectionRemove));
controller_->RemoveTab(1);
EXPECT_EQ(0, ax_counter.GetCount(ax::mojom::Event::kSelectionAdd));
EXPECT_EQ(2, ax_counter.GetCount(ax::mojom::Event::kSelection));
EXPECT_EQ(0, ax_counter.GetCount(ax::mojom::Event::kSelectionRemove));
// When activating widget, refire selection event on tab.
widget_->OnNativeWidgetActivationChanged(true);
EXPECT_EQ(0, ax_counter.GetCount(ax::mojom::Event::kSelectionAdd));
EXPECT_EQ(3, ax_counter.GetCount(ax::mojom::Event::kSelection));
EXPECT_EQ(0, ax_counter.GetCount(ax::mojom::Event::kSelectionRemove));
}
TEST_P(TabStripTest, AccessibilityData) {
// When adding tabs, indexes should be set.
controller_->AddTab(0, false);
controller_->AddTab(1, true);
VerifyTabIndices();
controller_->AddTab(0, false);
VerifyTabIndices();
controller_->RemoveTab(1);
VerifyTabIndices();
controller_->MoveTab(1, 0);
VerifyTabIndices();
}
TEST_P(TabStripTest, IsValidModelIndex) {
EXPECT_FALSE(tab_strip_->IsValidModelIndex(0));
}
TEST_P(TabStripTest, tab_count) {
EXPECT_EQ(0, tab_strip_->GetTabCount());
}
TEST_P(TabStripTest, AddTabAt) {
TestTabStripObserver observer(tab_strip_);
controller_->AddTab(0, false);
ASSERT_EQ(1, tab_strip_->GetTabCount());
EXPECT_EQ(0, observer.last_tab_added());
Tab* tab = tab_strip_->tab_at(0);
EXPECT_FALSE(tab == NULL);
}
TEST_P(TabStripTest, MoveTab) {
TestTabStripObserver observer(tab_strip_);
controller_->AddTab(0, false);
controller_->AddTab(1, false);
controller_->AddTab(2, false);
ASSERT_EQ(3, tab_strip_->GetTabCount());
EXPECT_EQ(2, observer.last_tab_added());
Tab* tab = tab_strip_->tab_at(0);
controller_->MoveTab(0, 1);
EXPECT_EQ(0, observer.last_tab_moved_from());
EXPECT_EQ(1, observer.last_tab_moved_to());
EXPECT_EQ(tab, tab_strip_->tab_at(1));
}
// Verifies child views are deleted after an animation completes.
TEST_P(TabStripTest, RemoveTab) {
TestTabStripObserver observer(tab_strip_);
controller_->AddTab(0, false);
controller_->AddTab(1, false);
const size_t num_children = tab_strip_->children().size();
EXPECT_EQ(2, tab_strip_->GetTabCount());
controller_->RemoveTab(0);
EXPECT_EQ(0, observer.last_tab_removed());
// When removing a tab the tabcount should immediately decrement.
EXPECT_EQ(1, tab_strip_->GetTabCount());
// But the number of views should remain the same (it's animatining closed).
EXPECT_EQ(num_children, tab_strip_->children().size());
CompleteAnimationAndLayout();
EXPECT_EQ(num_children - 1, tab_strip_->children().size());
// Remove the last tab to make sure things are cleaned up correctly when
// the TabStrip is destroyed and an animation is ongoing.
controller_->RemoveTab(0);
EXPECT_EQ(0, observer.last_tab_removed());
}
// Verifies child view order matches model order.
TEST_P(TabStripTest, TabViewOrder) {
controller_->AddTab(0, false);
controller_->AddTab(1, false);
controller_->AddTab(2, false);
EXPECT_EQ(GetTabSlotViewsInFocusOrder(), GetTabSlotViewsInVisualOrder());
controller_->MoveTab(0, 1);
EXPECT_EQ(GetTabSlotViewsInFocusOrder(), GetTabSlotViewsInVisualOrder());
controller_->MoveTab(1, 2);
EXPECT_EQ(GetTabSlotViewsInFocusOrder(), GetTabSlotViewsInVisualOrder());
controller_->MoveTab(1, 0);
EXPECT_EQ(GetTabSlotViewsInFocusOrder(), GetTabSlotViewsInVisualOrder());
controller_->MoveTab(0, 2);
EXPECT_EQ(GetTabSlotViewsInFocusOrder(), GetTabSlotViewsInVisualOrder());
}
// Verifies child view order matches slot order with group headers.
TEST_P(TabStripTest, TabViewOrderWithGroups) {
controller_->AddTab(0, false);
controller_->AddTab(1, false);
controller_->AddTab(2, false);
controller_->AddTab(3, false);
EXPECT_EQ(GetTabSlotViewsInFocusOrder(), GetTabSlotViewsInVisualOrder());
absl::optional<tab_groups::TabGroupId> group1 =
tab_groups::TabGroupId::GenerateNew();
absl::optional<tab_groups::TabGroupId> group2 =
tab_groups::TabGroupId::GenerateNew();
// Add multiple tabs to a group and verify view order.
controller_->MoveTabIntoGroup(0, group1);
EXPECT_EQ(GetTabSlotViewsInFocusOrder(), GetTabSlotViewsInVisualOrder());
controller_->MoveTabIntoGroup(1, group1);
EXPECT_EQ(GetTabSlotViewsInFocusOrder(), GetTabSlotViewsInVisualOrder());
// Move tabs within a group and verify view order.
controller_->MoveTab(1, 0);
EXPECT_EQ(GetTabSlotViewsInFocusOrder(), GetTabSlotViewsInVisualOrder());
// Add a single tab to a group and verify view order.
controller_->MoveTabIntoGroup(2, group2);
EXPECT_EQ(GetTabSlotViewsInFocusOrder(), GetTabSlotViewsInVisualOrder());
// Move and add tabs near a group and verify view order.
controller_->AddTab(2, false);
EXPECT_EQ(GetTabSlotViewsInFocusOrder(), GetTabSlotViewsInVisualOrder());
controller_->MoveTab(4, 3);
EXPECT_EQ(GetTabSlotViewsInFocusOrder(), GetTabSlotViewsInVisualOrder());
}
// Tests that the tab close buttons of non-active tabs are hidden when
// the tabstrip is not in stacked tab mode and the tab sizes are shrunk
// into small sizes.
TEST_P(TabStripTest, TabCloseButtonVisibilityWhenNotStacked) {
// Set the tab strip width to be wide enough for three tabs to show all
// three icons, but not enough for five tabs to show all three icons.
// Touch-optimized UI requires a larger width for tabs to show close buttons.
const bool touch_ui = ui::TouchUiController::Get()->touch_ui();
SetMaxTabStripWidth(touch_ui ? 442 : 346);
controller_->AddTab(0, false);
controller_->AddTab(1, true);
controller_->AddTab(2, false);
ASSERT_EQ(3, tab_strip_->GetTabCount());
Tab* tab0 = tab_strip_->tab_at(0);
ASSERT_FALSE(tab0->IsActive());
Tab* tab1 = tab_strip_->tab_at(1);
ASSERT_TRUE(tab1->IsActive());
Tab* tab2 = tab_strip_->tab_at(2);
ASSERT_FALSE(tab2->IsActive());
// Ensure this is not in stacked layout mode.
ASSERT_FALSE(touch_layout());
// Ensure that all tab close buttons are initially visible.
EXPECT_TRUE(tab0->showing_close_button_);
EXPECT_TRUE(tab1->showing_close_button_);
EXPECT_TRUE(tab2->showing_close_button_);
// Shrink the tab sizes by adding more tabs.
// An inactive tab added to the tabstrip, now each tab size is not
// big enough to accomodate 3 icons, so it should not show its
// tab close button.
controller_->AddTab(3, false);
Tab* tab3 = tab_strip_->tab_at(3);
EXPECT_FALSE(tab3->showing_close_button_);
// This inactive tab doesn't have alert button, but its favicon and
// title would be shown.
EXPECT_TRUE(tab3->showing_icon_);
EXPECT_FALSE(tab3->showing_alert_indicator_);
EXPECT_TRUE(tab3->title_->GetVisible());
// The active tab's close button still shows.
EXPECT_TRUE(tab1->showing_close_button_);
// An active tab added to the tabstrip should show its tab close
// button.
controller_->AddTab(4, true);
Tab* tab4 = tab_strip_->tab_at(4);
ASSERT_TRUE(tab4->IsActive());
EXPECT_TRUE(tab4->showing_close_button_);
// The previous active button is now inactive so its close
// button should not show.
EXPECT_FALSE(tab1->showing_close_button_);
// After switching tabs, the previously-active tab should have its
// tab close button hidden and the newly-active tab should show
// its tab close button.
tab_strip_->SelectTab(tab2, dummy_event_);
ASSERT_FALSE(tab4->IsActive());
ASSERT_TRUE(tab2->IsActive());
EXPECT_FALSE(tab0->showing_close_button_);
EXPECT_FALSE(tab1->showing_close_button_);
EXPECT_TRUE(tab2->showing_close_button_);
EXPECT_FALSE(tab3->showing_close_button_);
EXPECT_FALSE(tab4->showing_close_button_);
// After closing the active tab, the tab which becomes active should
// show its tab close button.
tab_strip_->CloseTab(tab2, CLOSE_TAB_FROM_TOUCH);
tab2 = nullptr;
ASSERT_TRUE(tab3->IsActive());
CompleteAnimationAndLayout();
EXPECT_FALSE(tab0->showing_close_button_);
EXPECT_FALSE(tab1->showing_close_button_);
EXPECT_TRUE(tab3->showing_close_button_);
EXPECT_FALSE(tab4->showing_close_button_);
}
TEST_P(TabStripTest, GetEventHandlerForOverlappingArea) {
SetMaxTabStripWidth(1000);
controller_->AddTab(0, false);
controller_->AddTab(1, true);
controller_->AddTab(2, false);
controller_->AddTab(3, false);
CompleteAnimationAndLayout();
ASSERT_EQ(4, tab_strip_->GetTabCount());
// Verify that the active tab will be a tooltip handler for points that hit
// it.
Tab* left_tab = tab_strip_->tab_at(0);
left_tab->SetBoundsRect(gfx::Rect(gfx::Point(0, 0), gfx::Size(200, 20)));
Tab* active_tab = tab_strip_->tab_at(1);
active_tab->SetBoundsRect(gfx::Rect(gfx::Point(150, 0), gfx::Size(200, 20)));
ASSERT_TRUE(active_tab->IsActive());
Tab* right_tab = tab_strip_->tab_at(2);
right_tab->SetBoundsRect(gfx::Rect(gfx::Point(300, 0), gfx::Size(200, 20)));
Tab* most_right_tab = tab_strip_->tab_at(3);
most_right_tab->SetBoundsRect(
gfx::Rect(gfx::Point(450, 0), gfx::Size(200, 20)));
// Test that active tabs gets events from area in which it overlaps with its
// left neighbour.
gfx::Point left_overlap(
(active_tab->x() + left_tab->bounds().right() + 1) / 2,
active_tab->bounds().bottom() - 1);
// Sanity check that the point is in both active and left tab.
ASSERT_TRUE(IsPointInTab(active_tab, left_overlap));
ASSERT_TRUE(IsPointInTab(left_tab, left_overlap));
EXPECT_EQ(active_tab,
FindTabView(tab_strip_->GetEventHandlerForPoint(left_overlap)));
// Test that active tabs gets events from area in which it overlaps with its
// right neighbour.
gfx::Point right_overlap((active_tab->bounds().right() + right_tab->x()) / 2,
active_tab->bounds().bottom() - 1);
// Sanity check that the point is in both active and right tab.
ASSERT_TRUE(IsPointInTab(active_tab, right_overlap));
ASSERT_TRUE(IsPointInTab(right_tab, right_overlap));
EXPECT_EQ(active_tab,
FindTabView(tab_strip_->GetEventHandlerForPoint(right_overlap)));
// Test that if neither of tabs is active, the left one is selected.
gfx::Point unactive_overlap(
(right_tab->x() + most_right_tab->bounds().right() + 1) / 2,
right_tab->bounds().bottom() - 1);
// Sanity check that the point is in both active and left tab.
ASSERT_TRUE(IsPointInTab(right_tab, unactive_overlap));
ASSERT_TRUE(IsPointInTab(most_right_tab, unactive_overlap));
EXPECT_EQ(right_tab,
FindTabView(tab_strip_->GetEventHandlerForPoint(unactive_overlap)));
}
TEST_P(TabStripTest, GetTooltipHandler) {
SetMaxTabStripWidth(1000);
controller_->AddTab(0, false);
controller_->AddTab(1, true);
controller_->AddTab(2, false);
controller_->AddTab(3, false);
CompleteAnimationAndLayout();
ASSERT_EQ(4, tab_strip_->GetTabCount());
// Verify that the active tab will be a tooltip handler for points that hit
// it.
Tab* left_tab = tab_strip_->tab_at(0);
left_tab->SetBoundsRect(gfx::Rect(gfx::Point(0, 0), gfx::Size(200, 20)));
Tab* active_tab = tab_strip_->tab_at(1);
active_tab->SetBoundsRect(gfx::Rect(gfx::Point(150, 0), gfx::Size(200, 20)));
ASSERT_TRUE(active_tab->IsActive());
Tab* right_tab = tab_strip_->tab_at(2);
right_tab->SetBoundsRect(gfx::Rect(gfx::Point(300, 0), gfx::Size(200, 20)));
Tab* most_right_tab = tab_strip_->tab_at(3);
most_right_tab->SetBoundsRect(
gfx::Rect(gfx::Point(450, 0), gfx::Size(200, 20)));
// Test that active_tab handles tooltips from area in which it overlaps with
// its left neighbour.
gfx::Point left_overlap(
(active_tab->x() + left_tab->bounds().right() + 1) / 2,
active_tab->bounds().bottom() - 1);
// Sanity check that the point is in both active and left tab.
ASSERT_TRUE(IsPointInTab(active_tab, left_overlap));
ASSERT_TRUE(IsPointInTab(left_tab, left_overlap));
EXPECT_EQ(active_tab,
FindTabView(tab_strip_->GetTooltipHandlerForPoint(left_overlap)));
// Test that active_tab handles tooltips from area in which it overlaps with
// its right neighbour.
gfx::Point right_overlap((active_tab->bounds().right() + right_tab->x()) / 2,
active_tab->bounds().bottom() - 1);
// Sanity check that the point is in both active and right tab.
ASSERT_TRUE(IsPointInTab(active_tab, right_overlap));
ASSERT_TRUE(IsPointInTab(right_tab, right_overlap));
EXPECT_EQ(active_tab,
FindTabView(tab_strip_->GetTooltipHandlerForPoint(right_overlap)));
// Test that if neither of tabs is active, the left one is selected.
gfx::Point unactive_overlap(
(right_tab->x() + most_right_tab->bounds().right() + 1) / 2,
right_tab->bounds().bottom() - 1);
// Sanity check that the point is in both active and left tab.
ASSERT_TRUE(IsPointInTab(right_tab, unactive_overlap));
ASSERT_TRUE(IsPointInTab(most_right_tab, unactive_overlap));
EXPECT_EQ(
right_tab,
FindTabView(tab_strip_->GetTooltipHandlerForPoint(unactive_overlap)));
// Confirm that tab strip doe not return tooltip handler for points that
// don't hit it.
EXPECT_FALSE(tab_strip_->GetTooltipHandlerForPoint(gfx::Point(-1, 2)));
}
// The cached widths are private, but if they give incorrect results it can
// cause subtle errors in other tests. Therefore it's prudent to test them.
TEST_P(TabStripTest, CachedWidthsReportCorrectSize) {
controller_->AddTab(0, false);
controller_->AddTab(1, true);
controller_->AddTab(2, false);
const int standard_width = TabStyle::GetStandardWidth();
SetMaxTabStripWidth(1000);
EXPECT_EQ(standard_width, GetActiveTabWidth());
EXPECT_EQ(standard_width, GetInactiveTabWidth());
SetMaxTabStripWidth(240);
EXPECT_LT(GetActiveTabWidth(), standard_width);
EXPECT_EQ(GetInactiveTabWidth(), GetActiveTabWidth());
SetMaxTabStripWidth(50);
EXPECT_EQ(TabStyleViews::GetMinimumActiveWidth(), GetActiveTabWidth());
EXPECT_EQ(TabStyleViews::GetMinimumInactiveWidth(), GetInactiveTabWidth());
}
// The active tab should always be at least as wide as its minimum width.
// http://crbug.com/587688
TEST_P(TabStripTest, ActiveTabWidthWhenTabsAreTiny) {
// The bug was caused when it's animating. Therefore we should make widget
// visible so that animation can be triggered.
tab_strip_->GetWidget()->Show();
SetMaxTabStripWidth(400);
// Create a lot of tabs in order to make inactive tabs tiny.
const int min_inactive_width = TabStyleViews::GetMinimumInactiveWidth();
while (GetInactiveTabWidth() != min_inactive_width) {
controller_->CreateNewTab();
CompleteAnimationAndLayout();
}
EXPECT_GT(tab_strip_->GetTabCount(), 1);
const int active_index = controller_->GetActiveIndex();
EXPECT_EQ(tab_strip_->GetTabCount() - 1, active_index);
EXPECT_LT(tab_strip_->ideal_bounds(0).width(),
tab_strip_->ideal_bounds(active_index).width());
// During mouse-based tab closure, the active tab should remain at least as
// wide as it's minimum width.
controller_->SelectTab(0, dummy_event_);
while (tab_strip_->GetTabCount() > 0) {
const int active_index = controller_->GetActiveIndex();
EXPECT_GE(tab_strip_->ideal_bounds(active_index).width(),
TabStyleViews::GetMinimumActiveWidth());
tab_strip_->CloseTab(tab_strip_->tab_at(active_index),
CLOSE_TAB_FROM_MOUSE);
CompleteAnimationAndLayout();
}
}
// Inactive tabs shouldn't shrink during mouse-based tab closure.
// http://crbug.com/850190
TEST_P(TabStripTest, InactiveTabWidthWhenTabsAreTiny) {
SetMaxTabStripWidth(200);
// Create a lot of tabs in order to make inactive tabs smaller than active
// tab but not the minimum.
const int min_inactive_width = TabStyleViews::GetMinimumInactiveWidth();
const int min_active_width = TabStyleViews::GetMinimumActiveWidth();
while (GetInactiveTabWidth() >= (min_inactive_width + min_active_width) / 2) {
controller_->CreateNewTab();
CompleteAnimationAndLayout();
}
// During mouse-based tab closure, inactive tabs shouldn't shrink
// so that users can close tabs continuously without moving mouse.
controller_->SelectTab(0, dummy_event_);
// If there are only two tabs in the strip, then after closing one the
// remaining one will be active and there will be no inactive tabs,
// so we stop at 2.
while (tab_strip_->GetTabCount() > 2) {
const int last_inactive_width = GetInactiveTabWidth();
tab_strip_->CloseTab(tab_strip_->tab_at(controller_->GetActiveIndex()),
CLOSE_TAB_FROM_MOUSE);
CompleteAnimationAndLayout();
EXPECT_GE(GetInactiveTabWidth(), last_inactive_width);
}
}
TEST_P(TabStripTest, ExitsClosingModeAtStandardWidth) {
SetMaxTabStripWidth(600);
// Create enough tabs so tabs are not full size.
const int standard_width = TabStyleViews::GetStandardWidth();
while (GetActiveTabWidth() == standard_width) {
controller_->CreateNewTab();
CompleteAnimationAndLayout();
}
// The test closes two tabs, we need at least one left over after that.
ASSERT_GE(tab_strip_->GetTabCount(), 3);
// Close the second-to-last tab to enter tab closing mode.
tab_strip_->CloseTab(tab_strip_->tab_at(tab_strip_->GetTabCount() - 2),
CLOSE_TAB_FROM_MOUSE);
CompleteAnimationAndLayout();
ASSERT_LT(GetActiveTabWidth(), standard_width);
// Close the last tab; tabs should reach standard width.
tab_strip_->CloseTab(tab_strip_->tab_at(tab_strip_->GetTabCount() - 1),
CLOSE_TAB_FROM_MOUSE);
CompleteAnimationAndLayout();
EXPECT_EQ(GetActiveTabWidth(), standard_width);
// The tabstrip width should match the rightmost tab's right edge.
EXPECT_EQ(
tab_strip_->bounds().width(),
tab_strip_->tab_at(tab_strip_->GetTabCount() - 1)->bounds().right());
}
// When dragged tabs are moving back to their position, changes to ideal bounds
// should be respected. http://crbug.com/848016
TEST_P(TabStripTest, ResetBoundsForDraggedTabs) {
SetMaxTabStripWidth(200);
// Create a lot of tabs in order to make inactive tabs tiny.
const int min_inactive_width = TabStyleViews::GetMinimumInactiveWidth();
while (GetInactiveTabWidth() != min_inactive_width) {
controller_->CreateNewTab();
CompleteAnimationAndLayout();
}
const int min_active_width = TabStyleViews::GetMinimumActiveWidth();
int dragged_tab_index = controller_->GetActiveIndex();
EXPECT_GE(tab_strip_->ideal_bounds(dragged_tab_index).width(),
min_active_width);
// Mark the active tab as being dragged.
Tab* dragged_tab = tab_strip_->tab_at(dragged_tab_index);
dragged_tab->set_dragging(true);
gfx::AnimationContainerTestApi test_api(bounds_animator()->container());
// Ending the drag triggers the tabstrip to begin animating this tab back
// to its ideal bounds.
StopDragging(dragged_tab);
EXPECT_TRUE(bounds_animator()->IsAnimating(dragged_tab));
// Change the ideal bounds of the tabs mid-animation by selecting a
// different tab.
controller_->SelectTab(0, dummy_event_);
// Once the animation completes, the dragged tab should have animated to
// the new ideal bounds (computed with this as an inactive tab) rather
// than the original ones (where it's an active tab).
const base::TimeDelta duration = bounds_animator()->GetAnimationDuration();
test_api.IncrementTime(duration);
EXPECT_FALSE(dragged_tab->dragging());
EXPECT_LT(dragged_tab->bounds().width(), min_active_width);
}
// The "blocked" attention indicator should only show for background tabs.
TEST_P(TabStripTest, TabNeedsAttentionBlocked) {
controller_->AddTab(0, false);
controller_->AddTab(1, true);
Tab* tab1 = tab_strip_->tab_at(1);
// Block tab1.
TabRendererData data;
data.blocked = true;
tab1->SetData(data);
EXPECT_FALSE(IsShowingAttentionIndicator(tab1));
controller_->SelectTab(0, dummy_event_);
EXPECT_TRUE(IsShowingAttentionIndicator(tab1));
controller_->SelectTab(1, dummy_event_);
EXPECT_FALSE(IsShowingAttentionIndicator(tab1));
}
// The generic "wants attention" version should always show.
TEST_P(TabStripTest, TabNeedsAttentionGeneric) {
controller_->AddTab(0, false);
controller_->AddTab(1, true);
Tab* tab1 = tab_strip_->tab_at(1);
tab1->SetTabNeedsAttention(true);
EXPECT_TRUE(IsShowingAttentionIndicator(tab1));
controller_->SelectTab(0, dummy_event_);
EXPECT_TRUE(IsShowingAttentionIndicator(tab1));
controller_->SelectTab(1, dummy_event_);
EXPECT_TRUE(IsShowingAttentionIndicator(tab1));
}
// Closing tab should be targeted during event dispatching.
TEST_P(TabStripTest, EventsOnClosingTab) {
SetMaxTabStripWidth(200);
controller_->AddTab(0, false);
controller_->AddTab(1, true);
CompleteAnimationAndLayout();
Tab* first_tab = tab_strip_->tab_at(0);
Tab* second_tab = tab_strip_->tab_at(1);
gfx::Point tab_center = first_tab->bounds().CenterPoint();
EXPECT_EQ(first_tab, tab_strip_->GetEventHandlerForPoint(tab_center));
tab_strip_->CloseTab(first_tab, CLOSE_TAB_FROM_MOUSE);
EXPECT_EQ(first_tab, tab_strip_->GetEventHandlerForPoint(tab_center));
// Closing |first_tab| again should forward to |second_tab| instead.
tab_strip_->CloseTab(first_tab, CLOSE_TAB_FROM_MOUSE);
EXPECT_TRUE(second_tab->closing());
}
TEST_P(TabStripTest, GroupHeaderBasics) {
SetMaxTabStripWidth(1000);
bounds_animator()->SetAnimationDuration(base::TimeDelta());
controller_->AddTab(0, false);
Tab* tab = tab_strip_->tab_at(0);
const int first_slot_x = tab->x();
absl::optional<tab_groups::TabGroupId> group =
tab_groups::TabGroupId::GenerateNew();
controller_->MoveTabIntoGroup(0, group);
CompleteAnimationAndLayout();
std::vector<TabGroupViews*> views = ListGroupViews();
EXPECT_EQ(1u, views.size());
TabGroupHeader* header = views[0]->header();
EXPECT_EQ(first_slot_x, header->x());
EXPECT_GT(header->width(), 0);
EXPECT_EQ(header->bounds().right() - TabStyle::GetTabOverlap(), tab->x());
EXPECT_EQ(tab->height(), header->height());
}
TEST_P(TabStripTest, GroupHeaderBetweenTabs) {
SetMaxTabStripWidth(1000);
bounds_animator()->SetAnimationDuration(base::TimeDelta());
controller_->AddTab(0, false);
controller_->AddTab(1, false);
const int second_slot_x = tab_strip_->tab_at(1)->x();
absl::optional<tab_groups::TabGroupId> group =
tab_groups::TabGroupId::GenerateNew();
controller_->MoveTabIntoGroup(1, group);
TabGroupHeader* header = ListGroupViews()[0]->header();
EXPECT_EQ(header->x(), second_slot_x);
}
TEST_P(TabStripTest, GroupHeaderMovesRightWithTab) {
SetMaxTabStripWidth(2000);
for (int i = 0; i < 4; i++)
controller_->AddTab(i, false);
absl::optional<tab_groups::TabGroupId> group =
tab_groups::TabGroupId::GenerateNew();
controller_->MoveTabIntoGroup(1, group);
CompleteAnimationAndLayout();
controller_->MoveTab(1, 2);
CompleteAnimationAndLayout();
TabGroupHeader* header = ListGroupViews()[0]->header();
// Header is now left of tab 2.
EXPECT_LT(tab_strip_->tab_at(1)->x(), header->x());
EXPECT_LT(header->x(), tab_strip_->tab_at(2)->x());
}
TEST_P(TabStripTest, GroupHeaderMovesLeftWithTab) {
SetMaxTabStripWidth(2000);
for (int i = 0; i < 4; i++)
controller_->AddTab(i, false);
absl::optional<tab_groups::TabGroupId> group =
tab_groups::TabGroupId::GenerateNew();
controller_->MoveTabIntoGroup(2, group);
CompleteAnimationAndLayout();
controller_->MoveTab(2, 1);
CompleteAnimationAndLayout();
TabGroupHeader* header = ListGroupViews()[0]->header();
// Header is now left of tab 1.
EXPECT_LT(tab_strip_->tab_at(0)->x(), header->x());
EXPECT_LT(header->x(), tab_strip_->tab_at(1)->x());
}
TEST_P(TabStripTest, GroupHeaderDoesntMoveReorderingTabsInGroup) {
SetMaxTabStripWidth(2000);
for (int i = 0; i < 4; i++)
controller_->AddTab(i, false);
absl::optional<tab_groups::TabGroupId> group =
tab_groups::TabGroupId::GenerateNew();
controller_->MoveTabIntoGroup(1, group);
controller_->MoveTabIntoGroup(2, group);
CompleteAnimationAndLayout();
TabGroupHeader* header = ListGroupViews()[0]->header();
const int initial_header_x = header->x();
Tab* tab1 = tab_strip_->tab_at(1);
const int initial_tab_1_x = tab1->x();
Tab* tab2 = tab_strip_->tab_at(2);
const int initial_tab_2_x = tab2->x();
controller_->MoveTab(1, 2);
CompleteAnimationAndLayout();
// Header has not moved.
EXPECT_EQ(initial_header_x, header->x());
EXPECT_EQ(initial_tab_1_x, tab2->x());
EXPECT_EQ(initial_tab_2_x, tab1->x());
}
TEST_P(TabStripTest, GroupHeaderMovesOnRegrouping) {
SetMaxTabStripWidth(2000);
for (int i = 0; i < 3; i++)
controller_->AddTab(i, false);
tab_groups::TabGroupId group0 = tab_groups::TabGroupId::GenerateNew();
controller_->MoveTabIntoGroup(0, group0);
tab_groups::TabGroupId group1 = tab_groups::TabGroupId::GenerateNew();
controller_->MoveTabIntoGroup(1, group1);
controller_->MoveTabIntoGroup(2, group1);
CompleteAnimationAndLayout();
std::vector<TabGroupViews*> views = ListGroupViews();
auto views_it =
std::find_if(views.begin(), views.end(), [&group1](TabGroupViews* view) {
return view->header()->group() == group1;
});
ASSERT_TRUE(views_it != views.end());
TabGroupViews* view = *views_it;
// Change groups in a way so that the header should swap with the tab, without
// an explicit MoveTab call.
controller_->MoveTabIntoGroup(1, group0);
CompleteAnimationAndLayout();
// Header is now right of tab 1.
EXPECT_LT(tab_strip_->tab_at(1)->x(), view->header()->x());
EXPECT_LT(view->header()->x(), tab_strip_->tab_at(2)->x());
}
TEST_P(TabStripTest, UngroupedTabMovesLeftOfHeader) {
SetMaxTabStripWidth(2000);
for (int i = 0; i < 2; i++)
controller_->AddTab(i, false);
tab_groups::TabGroupId group = tab_groups::TabGroupId::GenerateNew();
controller_->MoveTabIntoGroup(0, group);
CompleteAnimationAndLayout();
controller_->MoveTab(1, 0);
CompleteAnimationAndLayout();
// Header is right of tab 0.
TabGroupHeader* header = ListGroupViews()[0]->header();
EXPECT_LT(tab_strip_->tab_at(0)->x(), header->x());
EXPECT_LT(header->x(), tab_strip_->tab_at(1)->x());
}
TEST_P(TabStripTest, DeleteTabGroupViewsWhenEmpty) {
controller_->AddTab(0, false);
controller_->AddTab(1, false);
absl::optional<tab_groups::TabGroupId> group =
tab_groups::TabGroupId::GenerateNew();
controller_->MoveTabIntoGroup(0, group);
controller_->MoveTabIntoGroup(1, group);
controller_->MoveTabIntoGroup(0, absl::nullopt);
EXPECT_EQ(1u, ListGroupViews().size());
controller_->MoveTabIntoGroup(1, absl::nullopt);
EXPECT_EQ(0u, ListGroupViews().size());
}
TEST_P(TabStripTest, GroupUnderlineBasics) {
SetMaxTabStripWidth(1000);
bounds_animator()->SetAnimationDuration(base::TimeDelta());
controller_->AddTab(0, false);
absl::optional<tab_groups::TabGroupId> group =
tab_groups::TabGroupId::GenerateNew();
controller_->MoveTabIntoGroup(0, group);
CompleteAnimationAndLayout();
std::vector<TabGroupViews*> views = ListGroupViews();
EXPECT_EQ(1u, views.size());
// Update underline manually in the absence of a real Paint cycle.
views[0]->UpdateBounds();
const TabGroupUnderline* underline = views[0]->underline();
EXPECT_EQ(underline->x(), TabGroupUnderline::GetStrokeInset());
EXPECT_GT(underline->width(), 0);
EXPECT_EQ(underline->bounds().right(),
tab_strip_->tab_at(0)->bounds().right() -
TabGroupUnderline::GetStrokeInset());
EXPECT_EQ(underline->height(), TabGroupUnderline::kStrokeThickness);
// Endpoints are different if the last grouped tab is active.
controller_->AddTab(1, true);
controller_->MoveTabIntoGroup(1, group);
views[0]->UpdateBounds();
EXPECT_EQ(underline->x(), TabGroupUnderline::GetStrokeInset());
EXPECT_EQ(underline->bounds().right(),
tab_strip_->tab_at(1)->bounds().right() +
TabGroupUnderline::kStrokeThickness);
}
TEST_P(TabStripTest, GroupHighlightBasics) {
SetMaxTabStripWidth(1000);
bounds_animator()->SetAnimationDuration(base::TimeDelta());
controller_->AddTab(0, false);
absl::optional<tab_groups::TabGroupId> group =
tab_groups::TabGroupId::GenerateNew();
controller_->MoveTabIntoGroup(0, group);
CompleteAnimationAndLayout();
std::vector<TabGroupViews*> views = ListGroupViews();
EXPECT_EQ(1u, views.size());
// The highlight bounds match the group view bounds. Grab this manually
// here, since there isn't a real paint cycle to trigger OnPaint().
gfx::Rect bounds = views[0]->GetBounds();
EXPECT_EQ(bounds.x(), 0);
EXPECT_GT(bounds.width(), 0);
EXPECT_EQ(bounds.right(), tab_strip_->tab_at(0)->bounds().right());
EXPECT_EQ(bounds.height(), tab_strip_->tab_at(0)->bounds().height());
}
TEST_P(TabStripTest, ChangingLayoutTypeResizesTabs) {
SetMaxTabStripWidth(1000);
controller_->AddTab(0, false);
Tab* tab = tab_strip_->tab_at(0);
const int initial_height = tab->height();
ui::TouchUiController::TouchUiScoperForTesting other_layout(
!GetParam().touch_ui);
CompleteAnimationAndLayout();
if (GetParam().touch_ui) {
// Touch -> normal.
EXPECT_LT(tab->height(), initial_height);
} else {
// Normal -> touch.
EXPECT_GT(tab->height(), initial_height);
}
}
// Regression test for a crash when closing a tab under certain conditions. If
// the first tab in a group was animating closed, attempting to close the next
// tab could result in a crash. This was due to TabStripLayoutHelper mistakenly
// mapping the next tab's model index to the closing tab's slot. See
// https://crbug.com/1138748 for a related crash.
TEST_P(TabStripTest, CloseTabInGroupWhilePreviousTabAnimatingClosed) {
controller_->AddTab(0, true);
controller_->AddTab(1, false);
controller_->AddTab(2, false);
auto group_id = tab_groups::TabGroupId::GenerateNew();
controller_->MoveTabIntoGroup(1, group_id);
controller_->MoveTabIntoGroup(2, group_id);
CompleteAnimationAndLayout();
ASSERT_EQ(3, tab_strip_->GetTabCount());
ASSERT_EQ(3, tab_strip_->GetModelCount());
EXPECT_EQ(absl::nullopt, tab_strip_->tab_at(0)->group());
EXPECT_EQ(group_id, tab_strip_->tab_at(1)->group());
EXPECT_EQ(group_id, tab_strip_->tab_at(2)->group());
// We have the following tabs:
// 1. An ungrouped tab with model index 0
// 2. A tab in |group_id| with model index 1
// 3. A tab in |group_id| with model index 2
controller_->RemoveTab(1);
// After closing the first tab, we now have:
// 1. An ungrouped tab with model index 0
// 2. A closing tab in |group_id| with no model index
// 3. A tab in |group_id| with model index 1.
//
// Closing the tab at model index 1 should result in (3) above being
// closed.
controller_->RemoveTab(1);
// We should now have:
// 1. An ungrouped tab with model index 0
// 2. A closing tab in |group_id| with no model index
// 3. A closing tab in |group_id| with no model index.
CompleteAnimationAndLayout();
// After finishing animations, there should be exactly 1 tab in no
// group.
EXPECT_EQ(1, tab_strip_->GetTabCount());
EXPECT_EQ(absl::nullopt, tab_strip_->tab_at(0)->group());
EXPECT_EQ(1, tab_strip_->GetModelCount());
}
namespace {
struct SizeChangeObserver : public views::ViewObserver {
explicit SizeChangeObserver(views::View* observed_view)
: view(observed_view) {
view->AddObserver(this);
}
~SizeChangeObserver() override { view->RemoveObserver(this); }
void OnViewPreferredSizeChanged(views::View* observed_view) override {
size_change_count++;
}
views::View* const view;
int size_change_count = 0;
};
} // namespace
// When dragged tabs' bounds are modified through TabDragContext, both tab strip
// and its parent view must get re-laid out http://crbug.com/1151092.
TEST_P(TabStripTest, RelayoutAfterDraggedTabBoundsUpdate) {
SetMaxTabStripWidth(400);
// Creates a single tab.
controller_->CreateNewTab();
CompleteAnimationAndLayout();
int dragged_tab_index = controller_->GetActiveIndex();
Tab* dragged_tab = tab_strip_->tab_at(dragged_tab_index);
ASSERT_TRUE(dragged_tab);
// Mark the active tab as being dragged.
dragged_tab->set_dragging(true);
constexpr int kXOffset = 20;
std::vector<TabSlotView*> tabs{dragged_tab};
std::vector<gfx::Rect> bounds{gfx::Rect({kXOffset, 0}, dragged_tab->size())};
SizeChangeObserver view_observer(tab_strip_);
tab_strip_->GetDragContext()->SetBoundsForDrag(tabs, bounds);
EXPECT_EQ(1, view_observer.size_change_count);
}
namespace {
ui::DropTargetEvent MakeEventForDragLocation(const gfx::Point& p) {
return ui::DropTargetEvent({}, gfx::PointF(p), {},
ui::DragDropTypes::DRAG_LINK);
}
} // namespace
TEST_P(TabStripTest, DropIndexForDragLocationIsCorrect) {
controller_->AddTab(0, true);
controller_->AddTab(1, false);
controller_->AddTab(2, false);
auto group = tab_groups::TabGroupId::GenerateNew();
controller_->MoveTabIntoGroup(1, group);
controller_->MoveTabIntoGroup(2, group);
Tab* const tab1 = tab_strip_->tab_at(0);
Tab* const tab2 = tab_strip_->tab_at(1);
Tab* const tab3 = tab_strip_->tab_at(2);
TabGroupHeader* const group_header = tab_strip_->group_header(group);
using DropIndex = BrowserRootView::DropIndex;
// Check dragging near the edge of each tab.
EXPECT_EQ((DropIndex{0, true, false}),
tab_strip_->GetDropIndex(MakeEventForDragLocation(
tab1->bounds().left_center() + gfx::Vector2d(1, 0))));
EXPECT_EQ((DropIndex{1, true, false}),
tab_strip_->GetDropIndex(MakeEventForDragLocation(
tab1->bounds().right_center() + gfx::Vector2d(-1, 0))));
EXPECT_EQ((DropIndex{1, true, true}),
tab_strip_->GetDropIndex(MakeEventForDragLocation(
tab2->bounds().left_center() + gfx::Vector2d(1, 0))));
EXPECT_EQ((DropIndex{2, true, false}),
tab_strip_->GetDropIndex(MakeEventForDragLocation(
tab2->bounds().right_center() + gfx::Vector2d(-1, 0))));
EXPECT_EQ((DropIndex{2, true, false}),
tab_strip_->GetDropIndex(MakeEventForDragLocation(
tab3->bounds().left_center() + gfx::Vector2d(1, 0))));
EXPECT_EQ((DropIndex{3, true, false}),
tab_strip_->GetDropIndex(MakeEventForDragLocation(
tab3->bounds().right_center() + gfx::Vector2d(-1, 0))));
// Check dragging in the center of each tab.
EXPECT_EQ((DropIndex{0, false, false}),
tab_strip_->GetDropIndex(
MakeEventForDragLocation(tab1->bounds().CenterPoint())));
EXPECT_EQ((DropIndex{1, false, false}),
tab_strip_->GetDropIndex(
MakeEventForDragLocation(tab2->bounds().CenterPoint())));
EXPECT_EQ((DropIndex{2, false, false}),
tab_strip_->GetDropIndex(
MakeEventForDragLocation(tab3->bounds().CenterPoint())));
// Check dragging over group header.
EXPECT_EQ((DropIndex{1, true, false}),
tab_strip_->GetDropIndex(MakeEventForDragLocation(
group_header->bounds().left_center() + gfx::Vector2d(1, 0))));
EXPECT_EQ((DropIndex{1, true, true}),
tab_strip_->GetDropIndex(MakeEventForDragLocation(
group_header->bounds().right_center() + gfx::Vector2d(-1, 0))));
}
// TabStripTestWithScrollingDisabled contains tests that will run with scrolling
// disabled.
// TODO(http://crbug.com/951078) Remove these tests as well as tests in
// TabStripTest with scrolling disabled once tab scrolling is fully launched.
class TabStripTestWithScrollingDisabled
: public TabStripTestBase,
public testing::WithParamInterface<bool> {
public:
TabStripTestWithScrollingDisabled() : TabStripTestBase(GetParam(), false) {}
TabStripTestWithScrollingDisabled(const TabStripTestWithScrollingDisabled&) =
delete;
TabStripTestWithScrollingDisabled& operator=(
const TabStripTestWithScrollingDisabled&) = delete;
~TabStripTestWithScrollingDisabled() override = default;
};
TEST_P(TabStripTestWithScrollingDisabled, VisibilityInOverflow) {
constexpr int kInitialWidth = 250;
SetMaxTabStripWidth(kInitialWidth);
// The first tab added to a reasonable-width strip should be visible. If we
// add enough additional tabs, eventually one should be invisible due to
// overflow.
int invisible_tab_index = 0;
for (; invisible_tab_index < 100; ++invisible_tab_index) {
controller_->AddTab(invisible_tab_index, false);
CompleteAnimationAndLayout();
if (!tab_strip_->tab_at(invisible_tab_index)->GetVisible())
break;
}
EXPECT_GT(invisible_tab_index, 0);
EXPECT_LT(invisible_tab_index, 100);
// The tabs before the invisible tab should still be visible.
for (int i = 0; i < invisible_tab_index; ++i)
EXPECT_TRUE(tab_strip_->tab_at(i)->GetVisible());
// Enlarging the strip should result in the last tab becoming visible.
SetMaxTabStripWidth(kInitialWidth * 2);
EXPECT_TRUE(tab_strip_->tab_at(invisible_tab_index)->GetVisible());
// Shrinking it again should re-hide the last tab.
SetMaxTabStripWidth(kInitialWidth);
EXPECT_FALSE(tab_strip_->tab_at(invisible_tab_index)->GetVisible());
// Shrinking it still more should make more tabs invisible, though not all.
// All the invisible tabs should be at the end of the strip.
SetMaxTabStripWidth(kInitialWidth / 2);
int i = 0;
for (; i < invisible_tab_index; ++i) {
if (!tab_strip_->tab_at(i)->GetVisible())
break;
}
ASSERT_GT(i, 0);
EXPECT_LT(i, invisible_tab_index);
invisible_tab_index = i;
for (int i = invisible_tab_index + 1; i < tab_strip_->GetTabCount(); ++i)
EXPECT_FALSE(tab_strip_->tab_at(i)->GetVisible());
// When we're already in overflow, adding tabs at the beginning or end of
// the strip should not change how many tabs are visible.
controller_->AddTab(tab_strip_->GetTabCount(), false);
CompleteAnimationAndLayout();
EXPECT_TRUE(tab_strip_->tab_at(invisible_tab_index - 1)->GetVisible());
EXPECT_FALSE(tab_strip_->tab_at(invisible_tab_index)->GetVisible());
controller_->AddTab(0, false);
CompleteAnimationAndLayout();
EXPECT_TRUE(tab_strip_->tab_at(invisible_tab_index - 1)->GetVisible());
EXPECT_FALSE(tab_strip_->tab_at(invisible_tab_index)->GetVisible());
// If we remove enough tabs, all the tabs should be visible.
for (int i = tab_strip_->GetTabCount() - 1; i >= invisible_tab_index; --i)
controller_->RemoveTab(i);
CompleteAnimationAndLayout();
EXPECT_TRUE(tab_strip_->tab_at(tab_strip_->GetTabCount() - 1)->GetVisible());
}
TEST_P(TabStripTestWithScrollingDisabled, GroupedTabSlotOverflowVisibility) {
constexpr int kInitialWidth = 250;
SetMaxTabStripWidth(kInitialWidth);
// The first tab added to a reasonable-width strip should be visible. If we
// add enough additional tabs, eventually one should be invisible due to
// overflow.
int invisible_tab_index = 0;
for (; invisible_tab_index < 100; ++invisible_tab_index) {
controller_->AddTab(invisible_tab_index, false);
CompleteAnimationAndLayout();
if (!tab_strip_->tab_at(invisible_tab_index)->GetVisible())
break;
}
ASSERT_GT(invisible_tab_index, 0);
ASSERT_LT(invisible_tab_index, 100);
// The tabs before the invisible tab should still be visible.
for (int i = 0; i < invisible_tab_index; ++i)
ASSERT_TRUE(tab_strip_->tab_at(i)->GetVisible());
// The group header of an invisible tab should not be visible.
absl::optional<tab_groups::TabGroupId> group1 =
tab_groups::TabGroupId::GenerateNew();
controller_->MoveTabIntoGroup(invisible_tab_index, group1);
CompleteAnimationAndLayout();
ASSERT_FALSE(tab_strip_->tab_at(invisible_tab_index)->GetVisible());
EXPECT_FALSE(tab_strip_->group_header(group1.value())->GetVisible());
// The group header of a visible tab should be visible when the group is
// expanded and collapsed.
absl::optional<tab_groups::TabGroupId> group2 =
tab_groups::TabGroupId::GenerateNew();
controller_->MoveTabIntoGroup(0, group2);
CompleteAnimationAndLayout();
ASSERT_FALSE(controller_->IsGroupCollapsed(group2.value()));
EXPECT_TRUE(tab_strip_->group_header(group2.value())->GetVisible());
controller_->ToggleTabGroupCollapsedState(
group2.value(), ToggleTabGroupCollapsedStateOrigin::kImplicitAction);
ASSERT_TRUE(controller_->IsGroupCollapsed(group2.value()));
EXPECT_TRUE(tab_strip_->group_header(group2.value())->GetVisible());
}
// Creates a tab strip in stacked layout mode and creates a group.
TEST_P(TabStripTestWithScrollingDisabled, TabGroupCreatedWhenStacked) {
SetMaxTabStripWidth(250);
controller_->AddTab(0, false);
controller_->AddTab(1, true);
controller_->AddTab(2, false);
controller_->AddTab(3, false);
ASSERT_EQ(4, tab_strip_->GetTabCount());
// Switch to stacked layout mode and force a layout to ensure tabs stack.
tab_strip_->SetStackedLayout(true);
CompleteAnimationAndLayout();
// Create a tab group.
absl::optional<tab_groups::TabGroupId> group =
tab_groups::TabGroupId::GenerateNew();
controller_->MoveTabIntoGroup(0, group);
CompleteAnimationAndLayout();
// Expect the tabstrip to be taken out of stacked mode.
EXPECT_EQ(tab_strip_->stacked_layout(), false);
}
// Tests that the tab close buttons of non-active tabs are hidden when
// the tabstrip is in stacked tab mode.
TEST_P(TabStripTestWithScrollingDisabled, TabCloseButtonVisibilityWhenStacked) {
// Touch-optimized UI requires a larger width for tabs to show close buttons.
const bool touch_ui = ui::TouchUiController::Get()->touch_ui();
// The tabstrip width is chosen so that it is:
// a) narrow enough to enter stacked tabs mode, and
// b) wide enough for tabs to show close buttons when not stacked.
SetMaxTabStripWidth(touch_ui ? 389 : 293);
controller_->AddTab(0, false);
controller_->AddTab(1, true);
controller_->AddTab(2, false);
ASSERT_EQ(3, tab_strip_->GetTabCount());
Tab* tab0 = tab_strip_->tab_at(0);
Tab* tab1 = tab_strip_->tab_at(1);
ASSERT_TRUE(tab1->IsActive());
Tab* tab2 = tab_strip_->tab_at(2);
// Ensure that all tab close buttons are initially visible.
EXPECT_TRUE(tab0->showing_close_button_);
EXPECT_TRUE(tab1->showing_close_button_);
EXPECT_TRUE(tab2->showing_close_button_);
// Enter stacked layout mode and verify this sets |touch_layout_|.
ASSERT_FALSE(touch_layout());
tab_strip_->SetStackedLayout(true);
ASSERT_TRUE(touch_layout());
// Only the close button of the active tab should be visible in stacked
// layout mode.
EXPECT_FALSE(tab0->showing_close_button_);
EXPECT_TRUE(tab1->showing_close_button_);
EXPECT_FALSE(tab2->showing_close_button_);
// An inactive tab added to the tabstrip should not show
// its tab close button.
controller_->AddTab(3, false);
Tab* tab3 = tab_strip_->tab_at(3);
EXPECT_FALSE(tab0->showing_close_button_);
EXPECT_TRUE(tab1->showing_close_button_);
EXPECT_FALSE(tab2->showing_close_button_);
EXPECT_FALSE(tab3->showing_close_button_);
// After switching tabs, the previously-active tab should have its
// tab close button hidden and the newly-active tab should show
// its tab close button.
tab_strip_->SelectTab(tab2, dummy_event_);
ASSERT_FALSE(tab1->IsActive());
ASSERT_TRUE(tab2->IsActive());
EXPECT_FALSE(tab0->showing_close_button_);
EXPECT_FALSE(tab1->showing_close_button_);
EXPECT_TRUE(tab2->showing_close_button_);
EXPECT_FALSE(tab3->showing_close_button_);
// After closing the active tab, the tab which becomes active should
// show its tab close button.
tab_strip_->CloseTab(tab1, CLOSE_TAB_FROM_TOUCH);
tab1 = nullptr;
ASSERT_TRUE(tab2->IsActive());
EXPECT_FALSE(tab0->showing_close_button_);
EXPECT_TRUE(tab2->showing_close_button_);
EXPECT_FALSE(tab3->showing_close_button_);
// All tab close buttons should be shown when disengaging stacked tab mode.
tab_strip_->SetStackedLayout(false);
ASSERT_FALSE(touch_layout());
EXPECT_TRUE(tab0->showing_close_button_);
EXPECT_TRUE(tab2->showing_close_button_);
EXPECT_TRUE(tab3->showing_close_button_);
}
// Creates a tab strip in stacked layout mode and verifies that as we move
// across the strip at the top, middle, and bottom, events will target each tab
// in order.
TEST_P(TabStripTestWithScrollingDisabled, TabForEventWhenStacked) {
// This tabstrip width is chosen to make the tabstrip narrow enough to engage
// stacked tabs mode.
SetMaxTabStripWidth(197);
controller_->AddTab(0, false);
controller_->AddTab(1, true);
controller_->AddTab(2, false);
controller_->AddTab(3, false);
ASSERT_EQ(4, tab_strip_->GetTabCount());
// Switch to stacked layout mode and force a layout to ensure tabs stack.
tab_strip_->SetStackedLayout(true);
CompleteAnimationAndLayout();
gfx::Point p;
for (int y : {0, tab_strip_->height() / 2, tab_strip_->height() - 1}) {
p.set_y(y);
int previous_tab = -1;
for (int x = 0; x < tab_strip_->width(); ++x) {
p.set_x(x);
int tab = tab_strip_->GetModelIndexOf(FindTabForEvent(p));
if (tab == previous_tab)
continue;
if ((tab != -1) || (previous_tab != tab_strip_->GetTabCount() - 1))
EXPECT_EQ(previous_tab + 1, tab) << "p = " << p.ToString();
previous_tab = tab;
}
}
}
INSTANTIATE_TEST_SUITE_P(All,
TabStripTest,
::testing::ValuesIn(kTabStripUnittestParams));
INSTANTIATE_TEST_SUITE_P(All,
TabStripTestWithScrollingDisabled,
::testing::Values(false, true));