Flutter iOS Embedder
FlutterEnginePlatformViewTest.mm
Go to the documentation of this file.
1 // Copyright 2013 The Flutter Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #include <memory>
6 #define FML_USED_ON_EMBEDDER
7 
8 #import <OCMock/OCMock.h>
9 #import <XCTest/XCTest.h>
10 
11 #include "flutter/fml/message_loop.h"
16 
18 
19 namespace flutter {
20 namespace {
21 
22 class FakeDelegate : public PlatformView::Delegate {
23  public:
24  void OnPlatformViewCreated(std::unique_ptr<Surface> surface) override {}
25  void OnPlatformViewDestroyed() override {}
26  void OnPlatformViewScheduleFrame() override {}
27  void OnPlatformViewAddView(int64_t view_id,
28  const ViewportMetrics& viewport_metrics,
29  AddViewCallback callback) override {}
30  void OnPlatformViewRemoveView(int64_t view_id, RemoveViewCallback callback) override {}
31  void OnPlatformViewSendViewFocusEvent(const ViewFocusEvent& event) override {}
32  void OnPlatformViewSetNextFrameCallback(const fml::closure& closure) override {}
33  void OnPlatformViewSetViewportMetrics(int64_t view_id, const ViewportMetrics& metrics) override {}
34  const flutter::Settings& OnPlatformViewGetSettings() const override { return settings_; }
35  void OnPlatformViewDispatchPlatformMessage(std::unique_ptr<PlatformMessage> message) override {}
36  void OnPlatformViewDispatchPointerDataPacket(std::unique_ptr<PointerDataPacket> packet) override {
37  }
38  void OnPlatformViewDispatchSemanticsAction(int32_t id,
39  SemanticsAction action,
40  fml::MallocMapping args) override {}
41  void OnPlatformViewSetSemanticsEnabled(bool enabled) override {}
42  void OnPlatformViewSetAccessibilityFeatures(int32_t flags) override {}
43  void OnPlatformViewRegisterTexture(std::shared_ptr<Texture> texture) override {}
44  void OnPlatformViewUnregisterTexture(int64_t texture_id) override {}
45  void OnPlatformViewMarkTextureFrameAvailable(int64_t texture_id) override {}
46 
47  void LoadDartDeferredLibrary(intptr_t loading_unit_id,
48  std::unique_ptr<const fml::Mapping> snapshot_data,
49  std::unique_ptr<const fml::Mapping> snapshot_instructions) override {
50  }
51  void LoadDartDeferredLibraryError(intptr_t loading_unit_id,
52  const std::string error_message,
53  bool transient) override {}
54  void UpdateAssetResolverByType(std::unique_ptr<AssetResolver> updated_asset_resolver,
55  AssetResolver::AssetResolverType type) override {}
56 
57  flutter::Settings settings_;
58 };
59 
60 } // namespace
61 } // namespace flutter
62 
63 @interface FlutterEnginePlatformViewTest : XCTestCase
64 @end
65 
66 @implementation FlutterEnginePlatformViewTest
67 std::unique_ptr<flutter::PlatformViewIOS> platform_view;
68 std::unique_ptr<fml::WeakPtrFactory<flutter::PlatformView>> weak_factory;
69 flutter::FakeDelegate fake_delegate;
70 
71 - (void)setUp {
72  fml::MessageLoop::EnsureInitializedForCurrentThread();
73  auto thread_task_runner = fml::MessageLoop::GetCurrent().GetTaskRunner();
74  auto sync_switch = std::make_shared<fml::SyncSwitch>();
75  flutter::TaskRunners runners(/*label=*/self.name.UTF8String,
76  /*platform=*/thread_task_runner,
77  /*raster=*/thread_task_runner,
78  /*ui=*/thread_task_runner,
79  /*io=*/thread_task_runner);
80  platform_view = std::make_unique<flutter::PlatformViewIOS>(
81  /*delegate=*/fake_delegate,
82  /*rendering_api=*/fake_delegate.settings_.enable_impeller
85  /*platform_views_controller=*/nil,
86  /*task_runners=*/runners,
87  /*worker_task_runner=*/nil,
88  /*is_gpu_disabled_sync_switch=*/sync_switch);
89  weak_factory = std::make_unique<fml::WeakPtrFactory<flutter::PlatformView>>(platform_view.get());
90 }
91 
92 - (void)tearDown {
93  weak_factory.reset();
94  platform_view.reset();
95 }
96 
97 - (fml::WeakPtr<flutter::PlatformView>)platformViewReplacement {
98  return weak_factory->GetWeakPtr();
99 }
100 
101 - (void)testCallsNotifyLowMemory {
102  FlutterEngine* engine = [[FlutterEngine alloc] initWithName:@"tester"];
103  XCTAssertNotNil(engine);
104  id mockEngine = OCMPartialMock(engine);
105  OCMStub([mockEngine notifyLowMemory]);
106  OCMStub([mockEngine platformView]).andReturn(platform_view.get());
107 
108  [engine setViewController:nil];
109  OCMVerify([mockEngine notifyLowMemory]);
110  OCMReject([mockEngine notifyLowMemory]);
111 
112  XCTNSNotificationExpectation* memoryExpectation = [[XCTNSNotificationExpectation alloc]
113  initWithName:UIApplicationDidReceiveMemoryWarningNotification];
114  [[NSNotificationCenter defaultCenter]
115  postNotificationName:UIApplicationDidReceiveMemoryWarningNotification
116  object:nil];
117  [self waitForExpectations:@[ memoryExpectation ] timeout:5.0];
118  OCMVerify([mockEngine notifyLowMemory]);
119  OCMReject([mockEngine notifyLowMemory]);
120 
121  XCTNSNotificationExpectation* backgroundExpectation = [[XCTNSNotificationExpectation alloc]
122  initWithName:UIApplicationDidEnterBackgroundNotification];
123  [[NSNotificationCenter defaultCenter]
124  postNotificationName:UIApplicationDidEnterBackgroundNotification
125  object:nil];
126  [self waitForExpectations:@[ backgroundExpectation ] timeout:5.0];
127 
128  OCMVerify([mockEngine notifyLowMemory]);
129 }
130 
131 @end
FlutterEnginePlatformViewTest
Definition: FlutterEnginePlatformViewTest.mm:63
FlutterEngine
Definition: FlutterEngine.h:61
FlutterEngine_Test.h
FakeDelegate
Definition: FlutterViewTest.mm:11
FlutterEngine_Internal.h
FlutterMacros.h
platform_view
std::unique_ptr< flutter::PlatformViewIOS > platform_view
Definition: FlutterEnginePlatformViewTest.mm:67
flutter
Definition: accessibility_bridge.h:26
fake_delegate
flutter::FakeDelegate fake_delegate
Definition: FlutterEnginePlatformViewTest.mm:69
settings_
flutter::Settings settings_
Definition: FlutterEnginePlatformViewTest.mm:57
fml
Definition: profiler_metrics_ios.mm:41
flutter::IOSRenderingAPI::kMetal
@ kMetal
weak_factory
std::unique_ptr< fml::WeakPtrFactory< flutter::PlatformView > > weak_factory
Definition: FlutterEnginePlatformViewTest.mm:68
engine
id engine
Definition: FlutterTextInputPluginTest.mm:92
platform_view_ios.h
texture_id
int64_t texture_id
Definition: texture_registrar_unittests.cc:24
flutter::IOSRenderingAPI::kSoftware
@ kSoftware
FLUTTER_ASSERT_ARC
Definition: FlutterChannelKeyResponder.mm:13