blob: 1852f6417f5779ce2c56cfa5db896241b95920cd [file] [log] [blame]
// Copyright 2015 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 "cc/layers/painted_scrollbar_layer.h"
#include "cc/animation/animation_host.h"
#include "cc/test/fake_layer_tree_host.h"
#include "cc/test/fake_layer_tree_host_client.h"
#include "cc/test/fake_scrollbar.h"
#include "cc/test/layer_test_common.h"
#include "cc/test/test_task_graph_runner.h"
#include "testing/gmock/include/gmock/gmock.h"
using ::testing::Mock;
using ::testing::_;
namespace cc {
namespace {
class MockScrollbar : public FakeScrollbar {
public:
MockScrollbar()
: FakeScrollbar(/*paint*/ true,
/*has_thumb*/ true,
/*is_overlay*/ false) {}
MOCK_METHOD2(PaintPart, void(PaintCanvas* canvas, ScrollbarPart part));
};
TEST(PaintedScrollbarLayerTest, NeedsPaint) {
FakeLayerTreeHostClient fake_client_;
TestTaskGraphRunner task_graph_runner_;
auto animation_host = AnimationHost::CreateForTesting(ThreadInstance::MAIN);
auto layer_tree_host = FakeLayerTreeHost::Create(
&fake_client_, &task_graph_runner_, animation_host.get());
MockScrollbar* scrollbar = new MockScrollbar();
scoped_refptr<PaintedScrollbarLayer> scrollbar_layer =
PaintedScrollbarLayer::Create(std::unique_ptr<Scrollbar>(scrollbar));
scrollbar_layer->SetIsDrawable(true);
scrollbar_layer->SetBounds(gfx::Size(100, 100));
layer_tree_host->SetRootLayer(scrollbar_layer);
UpdateDrawProperties(layer_tree_host.get());
EXPECT_EQ(scrollbar_layer->layer_tree_host(), layer_tree_host.get());
// Request no paint, but expect them to be painted because they have not
// yet been initialized.
scrollbar->set_needs_paint_thumb(false);
scrollbar->set_needs_paint_track(false);
EXPECT_CALL(*scrollbar, PaintPart(_, THUMB)).Times(1);
EXPECT_CALL(*scrollbar, PaintPart(_, TRACK)).Times(1);
scrollbar_layer->Update();
Mock::VerifyAndClearExpectations(scrollbar);
// The next update will paint nothing because the first update caused a paint.
EXPECT_CALL(*scrollbar, PaintPart(_, THUMB)).Times(0);
EXPECT_CALL(*scrollbar, PaintPart(_, TRACK)).Times(0);
scrollbar_layer->Update();
Mock::VerifyAndClearExpectations(scrollbar);
// Enable the thumb.
EXPECT_CALL(*scrollbar, PaintPart(_, THUMB)).Times(1);
EXPECT_CALL(*scrollbar, PaintPart(_, TRACK)).Times(0);
scrollbar->set_needs_paint_thumb(true);
scrollbar->set_needs_paint_track(false);
scrollbar_layer->Update();
Mock::VerifyAndClearExpectations(scrollbar);
// Enable the track.
EXPECT_CALL(*scrollbar, PaintPart(_, THUMB)).Times(0);
EXPECT_CALL(*scrollbar, PaintPart(_, TRACK)).Times(1);
scrollbar->set_needs_paint_thumb(false);
scrollbar->set_needs_paint_track(true);
scrollbar_layer->Update();
Mock::VerifyAndClearExpectations(scrollbar);
}
} // namespace
} // namespace cc