This repository was archived by the owner on Feb 25, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6k
[fuchsia] Add flow test fixtures and tests #13949
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,188 @@ | ||
| // Copyright 2019 The Flutter 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 "flutter/flow/layers/backdrop_filter_layer.h" | ||
|
|
||
| #include "flutter/flow/testing/layer_test.h" | ||
| #include "flutter/flow/testing/mock_layer.h" | ||
| #include "flutter/fml/macros.h" | ||
| #include "flutter/testing/mock_canvas.h" | ||
| #include "third_party/skia/include/core/SkImageFilter.h" | ||
| #include "third_party/skia/include/effects/SkImageFilters.h" | ||
|
|
||
| namespace flutter { | ||
| namespace testing { | ||
|
|
||
| static constexpr SkRect kEmptyRect = SkRect::MakeEmpty(); | ||
|
|
||
| using BackdropFilterLayerDeathTest = LayerTest; | ||
arbreng marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| using BackdropFilterLayerTest = LayerTest; | ||
|
|
||
| TEST_F(BackdropFilterLayerDeathTest, EmptyLayer) { | ||
| auto layer = std::make_shared<BackdropFilterLayer>(sk_sp<SkImageFilter>()); | ||
|
|
||
| layer->Preroll(preroll_context(), SkMatrix()); | ||
| EXPECT_EQ(layer->paint_bounds(), kEmptyRect); | ||
| EXPECT_FALSE(layer->needs_painting()); | ||
| EXPECT_FALSE(layer->needs_system_composite()); | ||
|
|
||
| EXPECT_DEATH_IF_SUPPORTED(layer->Paint(paint_context()), | ||
| "needs_painting\\(\\)"); | ||
arbreng marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| } | ||
|
|
||
| TEST_F(BackdropFilterLayerDeathTest, PaintBeforePreroll) { | ||
| const SkRect child_bounds = SkRect::MakeLTRB(5.0f, 6.0f, 20.5f, 21.5f); | ||
| const SkPath child_path = SkPath().addRect(child_bounds); | ||
| auto mock_layer = std::make_shared<MockLayer>(child_path); | ||
| auto layer = std::make_shared<BackdropFilterLayer>(sk_sp<SkImageFilter>()); | ||
| layer->Add(mock_layer); | ||
|
|
||
| EXPECT_EQ(layer->paint_bounds(), kEmptyRect); | ||
| EXPECT_DEATH_IF_SUPPORTED(layer->Paint(paint_context()), | ||
| "needs_painting\\(\\)"); | ||
| } | ||
|
|
||
| TEST_F(BackdropFilterLayerTest, EmptyFilter) { | ||
| const SkMatrix initial_transform = SkMatrix::MakeTrans(0.5f, 1.0f); | ||
| const SkRect child_bounds = SkRect::MakeLTRB(5.0f, 6.0f, 20.5f, 21.5f); | ||
| const SkPath child_path = SkPath().addRect(child_bounds); | ||
| const SkPaint child_paint = SkPaint(SkColors::kYellow); | ||
| auto mock_layer = std::make_shared<MockLayer>(child_path, child_paint); | ||
| auto layer = std::make_shared<BackdropFilterLayer>(nullptr); | ||
| layer->Add(mock_layer); | ||
|
|
||
| layer->Preroll(preroll_context(), initial_transform); | ||
| EXPECT_EQ(layer->paint_bounds(), child_bounds); | ||
| EXPECT_TRUE(layer->needs_painting()); | ||
| mock_layer->ExpectParentMatrix(initial_transform); | ||
| mock_layer->ExpectMutators({}); | ||
|
|
||
| layer->Paint(paint_context()); | ||
| mock_canvas().ExpectDrawCalls( | ||
| {MockCanvas::DrawCall{ | ||
| 0, MockCanvas::SaveLayerData{child_bounds, SkPaint(), nullptr, 1}}, | ||
| MockCanvas::DrawCall{1, | ||
| MockCanvas::DrawPathData{child_path, child_paint}}, | ||
| MockCanvas::DrawCall{1, MockCanvas::RestoreData{0}}}); | ||
| } | ||
|
|
||
| TEST_F(BackdropFilterLayerTest, SimpleFilter) { | ||
| const SkMatrix initial_transform = SkMatrix::MakeTrans(0.5f, 1.0f); | ||
| const SkRect child_bounds = SkRect::MakeLTRB(5.0f, 6.0f, 20.5f, 21.5f); | ||
| const SkPath child_path = SkPath().addRect(child_bounds); | ||
| const SkPaint child_paint = SkPaint(SkColors::kYellow); | ||
| auto layer_filter = SkImageFilters::Paint(SkPaint(SkColors::kMagenta)); | ||
| auto mock_layer = std::make_shared<MockLayer>(child_path, child_paint); | ||
| auto layer = std::make_shared<BackdropFilterLayer>(layer_filter); | ||
| layer->Add(mock_layer); | ||
|
|
||
| layer->Preroll(preroll_context(), initial_transform); | ||
| EXPECT_EQ(layer->paint_bounds(), child_bounds); | ||
| EXPECT_TRUE(layer->needs_painting()); | ||
| mock_layer->ExpectParentMatrix(initial_transform); | ||
| mock_layer->ExpectMutators({}); | ||
|
|
||
| layer->Paint(paint_context()); | ||
| mock_canvas().ExpectDrawCalls( | ||
| {MockCanvas::DrawCall{ | ||
| 0, | ||
| MockCanvas::SaveLayerData{child_bounds, SkPaint(), layer_filter, 1}}, | ||
| MockCanvas::DrawCall{1, | ||
| MockCanvas::DrawPathData{child_path, child_paint}}, | ||
| MockCanvas::DrawCall{1, MockCanvas::RestoreData{0}}}); | ||
| } | ||
|
|
||
| TEST_F(BackdropFilterLayerTest, MultipleChildren) { | ||
| const SkMatrix initial_transform = SkMatrix::MakeTrans(0.5f, 1.0f); | ||
| const SkRect child_bounds = SkRect::MakeLTRB(5.0f, 6.0f, 2.5f, 3.5f); | ||
| const SkPath child_path1 = SkPath().addRect(child_bounds); | ||
| const SkPath child_path2 = | ||
| SkPath().addRect(child_bounds.makeOffset(3.0f, 0.0f)); | ||
| const SkPaint child_paint1 = SkPaint(SkColors::kYellow); | ||
| const SkPaint child_paint2 = SkPaint(SkColors::kCyan); | ||
| auto layer_filter = SkImageFilters::Paint(SkPaint(SkColors::kMagenta)); | ||
| auto mock_layer1 = std::make_shared<MockLayer>(child_path1, child_paint1); | ||
| auto mock_layer2 = std::make_shared<MockLayer>(child_path2, child_paint2); | ||
| auto layer = std::make_shared<BackdropFilterLayer>(layer_filter); | ||
| layer->Add(mock_layer1); | ||
| layer->Add(mock_layer2); | ||
|
|
||
| SkRect children_bounds = child_path1.getBounds(); | ||
| children_bounds.join(child_path2.getBounds()); | ||
| layer->Preroll(preroll_context(), initial_transform); | ||
| EXPECT_EQ(mock_layer1->paint_bounds(), child_path1.getBounds()); | ||
| EXPECT_EQ(mock_layer2->paint_bounds(), child_path2.getBounds()); | ||
| EXPECT_EQ(layer->paint_bounds(), children_bounds); | ||
| EXPECT_TRUE(mock_layer1->needs_painting()); | ||
| EXPECT_TRUE(mock_layer2->needs_painting()); | ||
| EXPECT_TRUE(layer->needs_painting()); | ||
| mock_layer1->ExpectParentMatrix(initial_transform); | ||
| mock_layer1->ExpectMutators({}); | ||
| mock_layer2->ExpectParentMatrix(initial_transform); | ||
| mock_layer2->ExpectMutators({}); | ||
|
|
||
| layer->Paint(paint_context()); | ||
| mock_canvas().ExpectDrawCalls( | ||
| {MockCanvas::DrawCall{ | ||
| 0, MockCanvas::SaveLayerData{children_bounds, SkPaint(), | ||
| layer_filter, 1}}, | ||
| MockCanvas::DrawCall{ | ||
| 1, MockCanvas::DrawPathData{child_path1, child_paint1}}, | ||
| MockCanvas::DrawCall{ | ||
| 1, MockCanvas::DrawPathData{child_path2, child_paint2}}, | ||
| MockCanvas::DrawCall{1, MockCanvas::RestoreData{0}}}); | ||
| } | ||
|
|
||
| TEST_F(BackdropFilterLayerTest, Nested) { | ||
| const SkMatrix initial_transform = SkMatrix::MakeTrans(0.5f, 1.0f); | ||
| const SkRect child_bounds = SkRect::MakeLTRB(5.0f, 6.0f, 2.5f, 3.5f); | ||
| const SkPath child_path1 = SkPath().addRect(child_bounds); | ||
| const SkPath child_path2 = | ||
| SkPath().addRect(child_bounds.makeOffset(3.0f, 0.0f)); | ||
| const SkPaint child_paint1 = SkPaint(SkColors::kYellow); | ||
| const SkPaint child_paint2 = SkPaint(SkColors::kCyan); | ||
| auto layer_filter1 = SkImageFilters::Paint(SkPaint(SkColors::kMagenta)); | ||
| auto layer_filter2 = SkImageFilters::Paint(SkPaint(SkColors::kDkGray)); | ||
| auto mock_layer1 = std::make_shared<MockLayer>(child_path1, child_paint1); | ||
| auto mock_layer2 = std::make_shared<MockLayer>(child_path2, child_paint2); | ||
| auto layer1 = std::make_shared<BackdropFilterLayer>(layer_filter1); | ||
| auto layer2 = std::make_shared<BackdropFilterLayer>(layer_filter2); | ||
| layer2->Add(mock_layer2); | ||
| layer1->Add(mock_layer1); | ||
| layer1->Add(layer2); | ||
|
|
||
| SkRect children_bounds = child_path1.getBounds(); | ||
| children_bounds.join(child_path2.getBounds()); | ||
| layer1->Preroll(preroll_context(), initial_transform); | ||
| EXPECT_EQ(mock_layer1->paint_bounds(), child_path1.getBounds()); | ||
| EXPECT_EQ(mock_layer2->paint_bounds(), child_path2.getBounds()); | ||
| EXPECT_EQ(layer1->paint_bounds(), children_bounds); | ||
| EXPECT_EQ(layer2->paint_bounds(), mock_layer2->paint_bounds()); | ||
| EXPECT_TRUE(mock_layer1->needs_painting()); | ||
| EXPECT_TRUE(mock_layer2->needs_painting()); | ||
| EXPECT_TRUE(layer1->needs_painting()); | ||
| EXPECT_TRUE(layer2->needs_painting()); | ||
| mock_layer1->ExpectParentMatrix(initial_transform); | ||
| mock_layer1->ExpectMutators({}); | ||
| mock_layer2->ExpectParentMatrix(initial_transform); | ||
| mock_layer2->ExpectMutators({}); | ||
|
|
||
| layer1->Paint(paint_context()); | ||
| mock_canvas().ExpectDrawCalls( | ||
| {MockCanvas::DrawCall{ | ||
| 0, MockCanvas::SaveLayerData{children_bounds, SkPaint(), | ||
| layer_filter1, 1}}, | ||
| MockCanvas::DrawCall{ | ||
| 1, MockCanvas::DrawPathData{child_path1, child_paint1}}, | ||
| MockCanvas::DrawCall{ | ||
| 1, MockCanvas::SaveLayerData{child_path2.getBounds(), SkPaint(), | ||
| layer_filter2, 2}}, | ||
| MockCanvas::DrawCall{ | ||
| 2, MockCanvas::DrawPathData{child_path2, child_paint2}}, | ||
| MockCanvas::DrawCall{2, MockCanvas::RestoreData{1}}, | ||
| MockCanvas::DrawCall{1, MockCanvas::RestoreData{0}}}); | ||
| } | ||
|
|
||
| } // namespace testing | ||
| } // namespace flutter | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.