File: GraphicsLayerTest.cpp

package info (click to toggle)
chromium-browser 57.0.2987.98-1~deb8u1
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 2,637,852 kB
  • ctags: 2,544,394
  • sloc: cpp: 12,815,961; ansic: 3,676,222; python: 1,147,112; asm: 526,608; java: 523,212; xml: 286,794; perl: 92,654; sh: 86,408; objc: 73,271; makefile: 27,698; cs: 18,487; yacc: 13,031; tcl: 12,957; pascal: 4,875; ml: 4,716; lex: 3,904; sql: 3,862; ruby: 1,982; lisp: 1,508; php: 1,368; exp: 404; awk: 325; csh: 117; jsp: 39; sed: 37
file content (213 lines) | stat: -rw-r--r-- 8,751 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
/*
 * Copyright (C) 2012 Google Inc. All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1.  Redistributions of source code must retain the above copyright
 *     notice, this list of conditions and the following disclaimer.
 * 2.  Redistributions in binary form must reproduce the above copyright
 *     notice, this list of conditions and the following disclaimer in the
 *     documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
 * DAMAGE.
 */

#include "platform/graphics/GraphicsLayer.h"

#include "platform/RuntimeEnabledFeatures.h"
#include "platform/animation/CompositorAnimation.h"
#include "platform/animation/CompositorAnimationHost.h"
#include "platform/animation/CompositorAnimationPlayer.h"
#include "platform/animation/CompositorAnimationPlayerClient.h"
#include "platform/animation/CompositorAnimationTimeline.h"
#include "platform/animation/CompositorFloatAnimationCurve.h"
#include "platform/animation/CompositorTargetProperty.h"
#include "platform/graphics/CompositorElementId.h"
#include "platform/scroll/ScrollableArea.h"
#include "platform/testing/FakeGraphicsLayer.h"
#include "platform/testing/FakeGraphicsLayerClient.h"
#include "platform/testing/WebLayerTreeViewImplForTesting.h"
#include "platform/transforms/Matrix3DTransformOperation.h"
#include "platform/transforms/RotateTransformOperation.h"
#include "platform/transforms/TranslateTransformOperation.h"
#include "public/platform/Platform.h"
#include "public/platform/WebCompositorSupport.h"
#include "public/platform/WebLayer.h"
#include "public/platform/WebLayerTreeView.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "wtf/PtrUtil.h"
#include <memory>

namespace blink {

class GraphicsLayerTest : public testing::Test {
 public:
  GraphicsLayerTest() {
    m_clipLayer = WTF::wrapUnique(new FakeGraphicsLayer(&m_client));
    m_scrollElasticityLayer = WTF::wrapUnique(new FakeGraphicsLayer(&m_client));
    m_graphicsLayer = WTF::wrapUnique(new FakeGraphicsLayer(&m_client));
    m_clipLayer->addChild(m_scrollElasticityLayer.get());
    m_scrollElasticityLayer->addChild(m_graphicsLayer.get());
    m_graphicsLayer->platformLayer()->setScrollClipLayer(
        m_clipLayer->platformLayer());
    m_platformLayer = m_graphicsLayer->platformLayer();
    m_layerTreeView = WTF::wrapUnique(new WebLayerTreeViewImplForTesting);
    ASSERT(m_layerTreeView);
    m_layerTreeView->setRootLayer(*m_clipLayer->platformLayer());
    m_layerTreeView->registerViewportLayers(
        m_scrollElasticityLayer->platformLayer(), m_clipLayer->platformLayer(),
        m_graphicsLayer->platformLayer(), 0);
    m_layerTreeView->setViewportSize(WebSize(1, 1));
  }

  ~GraphicsLayerTest() override {
    m_graphicsLayer.reset();
    m_layerTreeView.reset();
  }

  WebLayerTreeView* layerTreeView() { return m_layerTreeView.get(); }

 protected:
  WebLayer* m_platformLayer;
  std::unique_ptr<FakeGraphicsLayer> m_graphicsLayer;
  std::unique_ptr<FakeGraphicsLayer> m_scrollElasticityLayer;
  std::unique_ptr<FakeGraphicsLayer> m_clipLayer;

 private:
  std::unique_ptr<WebLayerTreeView> m_layerTreeView;
  FakeGraphicsLayerClient m_client;
};

class AnimationPlayerForTesting : public CompositorAnimationPlayerClient {
 public:
  AnimationPlayerForTesting() {
    m_compositorPlayer = CompositorAnimationPlayer::create();
  }

  CompositorAnimationPlayer* compositorPlayer() const override {
    return m_compositorPlayer.get();
  }

  std::unique_ptr<CompositorAnimationPlayer> m_compositorPlayer;
};

TEST_F(GraphicsLayerTest, updateLayerShouldFlattenTransformWithAnimations) {
  ASSERT_FALSE(m_platformLayer->hasTickingAnimationForTesting());

  std::unique_ptr<CompositorFloatAnimationCurve> curve =
      CompositorFloatAnimationCurve::create();
  curve->addKeyframe(CompositorFloatKeyframe(
      0.0, 0.0, *CubicBezierTimingFunction::preset(
                    CubicBezierTimingFunction::EaseType::EASE)));
  std::unique_ptr<CompositorAnimation> floatAnimation(
      CompositorAnimation::create(*curve, CompositorTargetProperty::OPACITY, 0,
                                  0));
  int animationId = floatAnimation->id();

  std::unique_ptr<CompositorAnimationTimeline> compositorTimeline =
      CompositorAnimationTimeline::create();
  AnimationPlayerForTesting player;

  CompositorAnimationHost host(layerTreeView()->compositorAnimationHost());

  host.addTimeline(*compositorTimeline);
  compositorTimeline->playerAttached(player);

  m_platformLayer->setElementId(CompositorElementId(m_platformLayer->id(), 0));

  player.compositorPlayer()->attachElement(m_platformLayer->elementId());
  ASSERT_TRUE(player.compositorPlayer()->isElementAttached());

  player.compositorPlayer()->addAnimation(std::move(floatAnimation));

  ASSERT_TRUE(m_platformLayer->hasTickingAnimationForTesting());

  m_graphicsLayer->setShouldFlattenTransform(false);

  m_platformLayer = m_graphicsLayer->platformLayer();
  ASSERT_TRUE(m_platformLayer);

  ASSERT_TRUE(m_platformLayer->hasTickingAnimationForTesting());
  player.compositorPlayer()->removeAnimation(animationId);
  ASSERT_FALSE(m_platformLayer->hasTickingAnimationForTesting());

  m_graphicsLayer->setShouldFlattenTransform(true);

  m_platformLayer = m_graphicsLayer->platformLayer();
  ASSERT_TRUE(m_platformLayer);

  ASSERT_FALSE(m_platformLayer->hasTickingAnimationForTesting());

  player.compositorPlayer()->detachElement();
  ASSERT_FALSE(player.compositorPlayer()->isElementAttached());

  compositorTimeline->playerDestroyed(player);
  host.removeTimeline(*compositorTimeline.get());
}

class FakeScrollableArea : public GarbageCollectedFinalized<FakeScrollableArea>,
                           public ScrollableArea {
  USING_GARBAGE_COLLECTED_MIXIN(FakeScrollableArea);

 public:
  static FakeScrollableArea* create() { return new FakeScrollableArea; }

  LayoutRect visualRectForScrollbarParts() const override {
    return LayoutRect();
  }
  bool isActive() const override { return false; }
  int scrollSize(ScrollbarOrientation) const override { return 100; }
  bool isScrollCornerVisible() const override { return false; }
  IntRect scrollCornerRect() const override { return IntRect(); }
  int visibleWidth() const override { return 10; }
  int visibleHeight() const override { return 10; }
  IntSize contentsSize() const override { return IntSize(100, 100); }
  bool scrollbarsCanBeActive() const override { return false; }
  IntRect scrollableAreaBoundingBox() const override { return IntRect(); }
  void scrollControlWasSetNeedsPaintInvalidation() override {}
  bool userInputScrollable(ScrollbarOrientation) const override { return true; }
  bool shouldPlaceVerticalScrollbarOnLeft() const override { return false; }
  int pageStep(ScrollbarOrientation) const override { return 0; }
  IntSize minimumScrollOffsetInt() const override { return IntSize(); }
  IntSize maximumScrollOffsetInt() const override {
    return contentsSize() - IntSize(visibleWidth(), visibleHeight());
  }

  void updateScrollOffset(const ScrollOffset& offset, ScrollType) override {
    m_scrollOffset = offset;
  }
  ScrollOffset getScrollOffset() const override { return m_scrollOffset; }
  IntSize scrollOffsetInt() const override {
    return flooredIntSize(m_scrollOffset);
  }

  DEFINE_INLINE_VIRTUAL_TRACE() { ScrollableArea::trace(visitor); }

 private:
  ScrollOffset m_scrollOffset;
};

TEST_F(GraphicsLayerTest, applyScrollToScrollableArea) {
  FakeScrollableArea* scrollableArea = FakeScrollableArea::create();
  m_graphicsLayer->setScrollableArea(scrollableArea, false);

  WebDoublePoint scrollPosition(7, 9);
  m_platformLayer->setScrollPositionDouble(scrollPosition);
  m_graphicsLayer->didScroll();

  EXPECT_FLOAT_EQ(scrollPosition.x, scrollableArea->getScrollOffset().width());
  EXPECT_FLOAT_EQ(scrollPosition.y, scrollableArea->getScrollOffset().height());
}

}  // namespace blink