8 #include <wrl/client.h>
11 #include "flutter/fml/synchronization/count_down_latch.h"
12 #include "flutter/fml/synchronization/waitable_event.h"
14 #include "flutter/shell/platform/embedder/test_utils/proc_table_replacement.h"
16 #include "flutter/shell/platform/windows/testing/engine_modifier.h"
17 #include "flutter/shell/platform/windows/testing/windows_test.h"
18 #include "flutter/shell/platform/windows/testing/windows_test_config_builder.h"
19 #include "flutter/shell/platform/windows/testing/windows_test_context.h"
21 #include "flutter/testing/stream_capture.h"
22 #include "gmock/gmock.h"
23 #include "gtest/gtest.h"
24 #include "third_party/tonic/converter/dart_converter.h"
32 class HalfBrokenEGLManager :
public egl::Manager {
34 HalfBrokenEGLManager() : egl::Manager( false) {}
36 std::unique_ptr<egl::WindowSurface>
37 CreateWindowSurface(HWND hwnd,
size_t width,
size_t height)
override {
42 class MockWindowsLifecycleManager :
public WindowsLifecycleManager {
54 if (::GetMessage(&msg,
nullptr, 0, 0)) {
55 ::TranslateMessage(&msg);
56 ::DispatchMessage(&msg);
64 TEST(WindowsNoFixtureTest, GetTextureRegistrar) {
69 ASSERT_NE(engine,
nullptr);
71 EXPECT_NE(texture_registrar,
nullptr);
77 auto& context = GetContext();
78 WindowsConfigBuilder builder(context);
79 ViewControllerPtr controller{builder.Run()};
80 ASSERT_NE(controller,
nullptr);
84 TEST_F(WindowsTest, LaunchMainHasNoOutput) {
86 StreamCapture stdout_capture(&std::cout);
87 StreamCapture stderr_capture(&std::cerr);
89 auto& context = GetContext();
90 WindowsConfigBuilder builder(context);
91 ViewControllerPtr controller{builder.Run()};
92 ASSERT_NE(controller,
nullptr);
94 stdout_capture.Stop();
95 stderr_capture.Stop();
98 EXPECT_TRUE(stdout_capture.GetOutput().empty());
99 EXPECT_TRUE(stderr_capture.GetOutput().empty());
103 TEST_F(WindowsTest, LaunchCustomEntrypoint) {
104 auto& context = GetContext();
105 WindowsConfigBuilder builder(context);
106 builder.SetDartEntrypoint(
"customEntrypoint");
107 ViewControllerPtr controller{builder.Run()};
108 ASSERT_NE(controller,
nullptr);
116 TEST_F(WindowsTest, LaunchCustomEntrypointInEngineRunInvocation) {
117 auto& context = GetContext();
118 WindowsConfigBuilder builder(context);
119 EnginePtr engine{builder.InitializeEngine()};
120 ASSERT_NE(engine,
nullptr);
126 TEST_F(WindowsTest, LaunchHeadlessEngine) {
127 auto& context = GetContext();
128 WindowsConfigBuilder builder(context);
129 builder.SetDartEntrypoint(
"signalViewIds");
130 EnginePtr engine{builder.RunHeadless()};
131 ASSERT_NE(engine,
nullptr);
133 std::string view_ids;
134 fml::AutoResetWaitableEvent latch;
135 context.AddNativeFunction(
136 "SignalStringValue", CREATE_NATIVE_ENTRY([&](Dart_NativeArguments args) {
137 auto handle = Dart_GetNativeArgument(args, 0);
138 ASSERT_FALSE(Dart_IsError(handle));
139 view_ids = tonic::DartConverter<std::string>::FromDart(handle);
143 ViewControllerPtr controller{builder.Run()};
144 ASSERT_NE(controller,
nullptr);
148 EXPECT_EQ(view_ids,
"View IDs: [0]");
152 TEST_F(WindowsTest, EngineCanTransitionToHeadless) {
153 auto& context = GetContext();
154 WindowsConfigBuilder builder(context);
155 EnginePtr engine{builder.RunHeadless()};
156 ASSERT_NE(engine,
nullptr);
162 ViewControllerPtr controller{
165 ASSERT_NE(controller,
nullptr);
169 ASSERT_NE(engine,
nullptr);
172 ASSERT_TRUE(engine_ptr->running());
176 TEST_F(WindowsTest, LaunchRefreshesAccessibility) {
177 auto& context = GetContext();
178 WindowsConfigBuilder builder(context);
179 EnginePtr engine{builder.InitializeEngine()};
180 EngineModifier modifier{
185 UpdateAccessibilityFeatures, ([&called](
auto engine,
auto flags) {
190 ViewControllerPtr controller{
201 TEST_F(WindowsTest, LaunchConflictingCustomEntrypoints) {
202 auto& context = GetContext();
203 WindowsConfigBuilder builder(context);
204 builder.SetDartEntrypoint(
"customEntrypoint");
205 EnginePtr engine{builder.InitializeEngine()};
206 ASSERT_NE(engine,
nullptr);
212 TEST_F(WindowsTest, VerifyNativeFunction) {
213 auto& context = GetContext();
214 WindowsConfigBuilder builder(context);
215 builder.SetDartEntrypoint(
"verifyNativeFunction");
217 fml::AutoResetWaitableEvent latch;
219 CREATE_NATIVE_ENTRY([&](Dart_NativeArguments args) { latch.Signal(); });
220 context.AddNativeFunction(
"Signal", native_entry);
222 ViewControllerPtr controller{builder.Run()};
223 ASSERT_NE(controller,
nullptr);
231 TEST_F(WindowsTest, VerifyNativeFunctionWithParameters) {
232 auto& context = GetContext();
233 WindowsConfigBuilder builder(context);
234 builder.SetDartEntrypoint(
"verifyNativeFunctionWithParameters");
236 bool bool_value =
false;
237 fml::AutoResetWaitableEvent latch;
238 auto native_entry = CREATE_NATIVE_ENTRY([&](Dart_NativeArguments args) {
239 auto handle = Dart_GetNativeBooleanArgument(args, 0, &bool_value);
240 ASSERT_FALSE(Dart_IsError(handle));
243 context.AddNativeFunction(
"SignalBoolValue", native_entry);
245 ViewControllerPtr controller{builder.Run()};
246 ASSERT_NE(controller,
nullptr);
250 EXPECT_TRUE(bool_value);
254 TEST_F(WindowsTest, PlatformExecutable) {
255 auto& context = GetContext();
256 WindowsConfigBuilder builder(context);
257 builder.SetDartEntrypoint(
"readPlatformExecutable");
259 std::string executable_name;
260 fml::AutoResetWaitableEvent latch;
261 auto native_entry = CREATE_NATIVE_ENTRY([&](Dart_NativeArguments args) {
262 auto handle = Dart_GetNativeArgument(args, 0);
263 ASSERT_FALSE(Dart_IsError(handle));
264 executable_name = tonic::DartConverter<std::string>::FromDart(handle);
267 context.AddNativeFunction(
"SignalStringValue", native_entry);
269 ViewControllerPtr controller{builder.Run()};
270 ASSERT_NE(controller,
nullptr);
274 EXPECT_EQ(executable_name,
"flutter_windows_unittests.exe");
279 TEST_F(WindowsTest, VerifyNativeFunctionWithReturn) {
280 auto& context = GetContext();
281 WindowsConfigBuilder builder(context);
282 builder.SetDartEntrypoint(
"verifyNativeFunctionWithReturn");
284 bool bool_value_to_return =
true;
285 fml::CountDownLatch latch(2);
286 auto bool_return_entry = CREATE_NATIVE_ENTRY([&](Dart_NativeArguments args) {
287 Dart_SetBooleanReturnValue(args, bool_value_to_return);
290 context.AddNativeFunction(
"SignalBoolReturn", bool_return_entry);
292 bool bool_value_passed =
false;
293 auto bool_pass_entry = CREATE_NATIVE_ENTRY([&](Dart_NativeArguments args) {
294 auto handle = Dart_GetNativeBooleanArgument(args, 0, &bool_value_passed);
295 ASSERT_FALSE(Dart_IsError(handle));
298 context.AddNativeFunction(
"SignalBoolValue", bool_pass_entry);
300 ViewControllerPtr controller{builder.Run()};
301 ASSERT_NE(controller,
nullptr);
305 EXPECT_TRUE(bool_value_passed);
311 fml::AutoResetWaitableEvent frame_scheduled_latch;
312 fml::AutoResetWaitableEvent frame_drawn_latch;
313 std::thread::id thread_id;
318 CreateNewThread(
"test_platform_thread")->PostTask([&]() {
319 captures.thread_id = std::this_thread::get_id();
321 auto& context = GetContext();
322 WindowsConfigBuilder builder(context);
323 builder.SetDartEntrypoint(
"drawHelloWorld");
325 auto native_entry = CREATE_NATIVE_ENTRY([&](Dart_NativeArguments args) {
326 ASSERT_FALSE(captures.frame_drawn_latch.IsSignaledForTest());
327 captures.frame_scheduled_latch.Signal();
329 context.AddNativeFunction(
"NotifyFirstFrameScheduled", native_entry);
331 ViewControllerPtr controller{builder.Run()};
332 ASSERT_NE(controller,
nullptr);
339 auto captures =
static_cast<Captures*
>(
user_data);
341 ASSERT_TRUE(captures->frame_scheduled_latch.IsSignaledForTest());
344 ASSERT_EQ(std::this_thread::get_id(), captures->thread_id);
347 captures->done =
true;
348 captures->frame_drawn_latch.Signal();
353 while (!captures.done) {
358 captures.frame_drawn_latch.Wait();
364 auto& context = GetContext();
365 WindowsConfigBuilder builder(context);
366 builder.SetDartEntrypoint(
"renderImplicitView");
368 EnginePtr engine{builder.RunHeadless()};
369 ASSERT_NE(engine,
nullptr);
376 auto done = reinterpret_cast<std::atomic<bool>*>(user_data);
385 FlutterWindowMetricsEvent metrics = {};
386 metrics.struct_size =
sizeof(FlutterWindowMetricsEvent);
388 metrics.height = 100;
389 metrics.pixel_ratio = 1.0;
391 engine_ptr->SendWindowMetricsEvent(metrics);
401 auto& context = GetContext();
402 WindowsConfigBuilder builder(context);
403 ViewControllerPtr controller{builder.Run()};
404 ASSERT_NE(controller,
nullptr);
411 TEST_F(WindowsTest, GetGraphicsAdapter) {
412 auto& context = GetContext();
413 WindowsConfigBuilder builder(context);
414 ViewControllerPtr controller{builder.Run()};
415 ASSERT_NE(controller,
nullptr);
418 Microsoft::WRL::ComPtr<IDXGIAdapter> dxgi_adapter;
420 ASSERT_NE(dxgi_adapter,
nullptr);
421 DXGI_ADAPTER_DESC desc{};
422 ASSERT_TRUE(SUCCEEDED(dxgi_adapter->GetDesc(&desc)));
426 TEST_F(WindowsTest, PluginRegistrarGetImplicitView) {
427 auto& context = GetContext();
428 WindowsConfigBuilder builder(context);
429 ViewControllerPtr controller{builder.Run()};
430 ASSERT_NE(controller,
nullptr);
439 ASSERT_NE(implicit_view,
nullptr);
442 TEST_F(WindowsTest, PluginRegistrarGetView) {
443 auto& context = GetContext();
444 WindowsConfigBuilder builder(context);
445 ViewControllerPtr controller{builder.Run()};
446 ASSERT_NE(controller,
nullptr);
461 ASSERT_NE(view,
nullptr);
462 ASSERT_EQ(view_123,
nullptr);
465 TEST_F(WindowsTest, PluginRegistrarGetViewHeadless) {
466 auto& context = GetContext();
467 WindowsConfigBuilder builder(context);
468 EnginePtr engine{builder.RunHeadless()};
469 ASSERT_NE(engine,
nullptr);
479 ASSERT_EQ(implicit_view,
nullptr);
480 ASSERT_EQ(view_123,
nullptr);
486 auto& context = GetContext();
487 WindowsConfigBuilder builder(context);
488 EnginePtr engine{builder.InitializeEngine()};
489 EngineModifier modifier{
492 auto egl_manager = std::make_unique<HalfBrokenEGLManager>();
493 ASSERT_TRUE(egl_manager->IsValid());
494 modifier.SetEGLManager(std::move(egl_manager));
496 ViewControllerPtr controller{
499 ASSERT_NE(controller,
nullptr);
504 auto& context = GetContext();
505 WindowsConfigBuilder builder(context);
506 EnginePtr engine{builder.InitializeEngine()};
508 EngineModifier modifier{windows_engine};
510 auto lifecycle_manager =
511 std::make_unique<MockWindowsLifecycleManager>(windows_engine);
512 auto lifecycle_manager_ptr = lifecycle_manager.get();
513 modifier.SetLifecycleManager(std::move(lifecycle_manager));
515 EXPECT_CALL(*lifecycle_manager_ptr,
518 lifecycle_manager_ptr->WindowsLifecycleManager::SetLifecycleState(
522 EXPECT_CALL(*lifecycle_manager_ptr,
525 lifecycle_manager_ptr->WindowsLifecycleManager::SetLifecycleState(
531 ViewControllerPtr controller{
536 ASSERT_NE(view,
nullptr);
539 ASSERT_NE(hwnd,
nullptr);
544 ::MoveWindow(hwnd, 0, 0, 100, 100,
548 TEST_F(WindowsTest, GetKeyboardStateHeadless) {
549 auto& context = GetContext();
550 WindowsConfigBuilder builder(context);
551 builder.SetDartEntrypoint(
"sendGetKeyboardState");
553 std::atomic<bool> done =
false;
554 context.AddNativeFunction(
555 "SignalStringValue", CREATE_NATIVE_ENTRY([&](Dart_NativeArguments args) {
556 auto handle = Dart_GetNativeArgument(args, 0);
557 ASSERT_FALSE(Dart_IsError(handle));
558 auto value = tonic::DartConverter<std::string>::FromDart(handle);
559 EXPECT_EQ(value,
"Success");
563 ViewControllerPtr controller{builder.Run()};
564 ASSERT_NE(controller,
nullptr);
576 std::string view_ids;
578 auto& context = GetContext();
579 WindowsConfigBuilder builder(context);
580 builder.SetDartEntrypoint(
"onMetricsChangedSignalViewIds");
582 fml::AutoResetWaitableEvent ready_latch;
583 context.AddNativeFunction(
584 "Signal", CREATE_NATIVE_ENTRY(
585 [&](Dart_NativeArguments args) { ready_latch.Signal(); }));
587 context.AddNativeFunction(
588 "SignalStringValue", CREATE_NATIVE_ENTRY([&](Dart_NativeArguments args) {
589 auto handle = Dart_GetNativeArgument(args, 0);
590 ASSERT_FALSE(Dart_IsError(handle));
592 std::scoped_lock lock{mutex};
593 view_ids = tonic::DartConverter<std::string>::FromDart(handle);
597 ViewControllerPtr first_controller{builder.Run()};
598 ASSERT_NE(first_controller,
nullptr);
606 properties.
width = 100;
608 ViewControllerPtr second_controller{
610 ASSERT_NE(second_controller,
nullptr);
615 std::scoped_lock lock{mutex};
616 if (view_ids ==
"View IDs: [0, 1]") {
623 second_controller.reset();
626 std::scoped_lock lock{mutex};
627 if (view_ids ==
"View IDs: [0]") {