| // Copyright 2013 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/lib/ui/painting/paint.h" |
| #include "flutter/shell/common/shell_test.h" |
| #include "flutter/shell/common/thread_host.h" |
| |
| #include "flutter/testing/testing.h" |
| |
| namespace flutter { |
| namespace testing { |
| |
| TEST_F(ShellTest, ConvertPaintToDlPaint) { |
| auto message_latch = std::make_shared<fml::AutoResetWaitableEvent>(); |
| DlPaint dl_paint; |
| |
| auto nativeToDlPaint = [message_latch, &dl_paint](Dart_NativeArguments args) { |
| Dart_Handle dart_paint = Dart_GetNativeArgument(args, 0); |
| Dart_Handle paint_objects = |
| Dart_GetField(dart_paint, tonic::ToDart("_objects")); |
| Dart_Handle paint_data = Dart_GetField(dart_paint, tonic::ToDart("_data")); |
| Paint ui_paint(paint_objects, paint_data); |
| ui_paint.toDlPaint(dl_paint); |
| message_latch->Signal(); |
| }; |
| |
| Settings settings = CreateSettingsForFixture(); |
| TaskRunners task_runners("test", // label |
| GetCurrentTaskRunner(), // platform |
| CreateNewThread(), // raster |
| CreateNewThread(), // ui |
| CreateNewThread() // io |
| ); |
| |
| AddNativeCallback("ConvertPaintToDlPaint", |
| CREATE_NATIVE_ENTRY(nativeToDlPaint)); |
| |
| std::unique_ptr<Shell> shell = CreateShell(settings, task_runners); |
| |
| ASSERT_TRUE(shell->IsSetup()); |
| auto configuration = RunConfiguration::InferFromSettings(settings); |
| configuration.SetEntrypoint("convertPaintToDlPaint"); |
| |
| shell->RunEngine(std::move(configuration), [](auto result) { |
| ASSERT_EQ(result, Engine::RunStatus::Success); |
| }); |
| |
| message_latch->Wait(); |
| DestroyShell(std::move(shell), task_runners); |
| |
| ASSERT_EQ(dl_paint.getBlendMode(), DlBlendMode::kModulate); |
| ASSERT_EQ(static_cast<uint32_t>(dl_paint.getColor()), 0x11223344u); |
| ASSERT_EQ(*dl_paint.getColorFilter(), |
| DlBlendColorFilter(0x55667788, DlBlendMode::kXor)); |
| ASSERT_EQ(*dl_paint.getMaskFilter(), |
| DlBlurMaskFilter(SkBlurStyle::kInner_SkBlurStyle, 0.75)); |
| ASSERT_EQ(dl_paint.getDrawStyle(), DlDrawStyle::kStroke); |
| } |
| |
| } // namespace testing |
| } // namespace flutter |