5 #import <Foundation/Foundation.h>
6 #import <OCMock/OCMock.h>
7 #import <XCTest/XCTest.h>
9 #import <objc/runtime.h>
11 #import "flutter/common/settings.h"
12 #include "flutter/fml/synchronization/sync_switch.h"
30 _ensureSemanticsEnabledCalled = YES;
44 @property(nonatomic, assign) BOOL failOnDealloc;
50 XCTFail(
"FakeBinaryMessageRelay should not be deallocated");
72 - (void)testShellGetters {
78 XCTAssertEqual(
engine.platformTaskRunner.get(),
nullptr);
79 XCTAssertEqual(
engine.uiTaskRunner.get(),
nullptr);
80 XCTAssertEqual(
engine.rasterTaskRunner.get(),
nullptr);
83 - (void)testInfoPlist {
85 NSURL* flutterFrameworkURL =
86 [NSBundle.mainBundle.privateFrameworksURL URLByAppendingPathComponent:@"Flutter.framework"];
87 NSBundle* flutterBundle = [NSBundle bundleWithURL:flutterFrameworkURL];
88 XCTAssertEqualObjects(flutterBundle.bundleIdentifier,
@"io.flutter.flutter");
90 NSDictionary<NSString*, id>* infoDictionary = flutterBundle.infoDictionary;
93 NSError* regexError = NULL;
94 NSRegularExpression* osVersionRegex =
95 [NSRegularExpression regularExpressionWithPattern:@"((0|[1-9]\\d*)\\.)*(0|[1-9]\\d*)"
96 options:NSRegularExpressionCaseInsensitive
98 XCTAssertNil(regexError);
101 NSString* testString =
@"9";
102 NSUInteger versionMatches =
103 [osVersionRegex numberOfMatchesInString:testString
104 options:NSMatchingAnchored
105 range:NSMakeRange(0, testString.length)];
106 XCTAssertEqual(versionMatches, 1UL);
108 versionMatches = [osVersionRegex numberOfMatchesInString:testString
109 options:NSMatchingAnchored
110 range:NSMakeRange(0, testString.length)];
111 XCTAssertEqual(versionMatches, 1UL);
112 testString =
@"9.0.1";
113 versionMatches = [osVersionRegex numberOfMatchesInString:testString
114 options:NSMatchingAnchored
115 range:NSMakeRange(0, testString.length)];
116 XCTAssertEqual(versionMatches, 1UL);
117 testString =
@".0.1";
118 versionMatches = [osVersionRegex numberOfMatchesInString:testString
119 options:NSMatchingAnchored
120 range:NSMakeRange(0, testString.length)];
121 XCTAssertEqual(versionMatches, 0UL);
124 NSString* minimumOSVersion = infoDictionary[@"MinimumOSVersion"];
125 versionMatches = [osVersionRegex numberOfMatchesInString:minimumOSVersion
126 options:NSMatchingAnchored
127 range:NSMakeRange(0, minimumOSVersion.length)];
128 XCTAssertEqual(versionMatches, 1UL);
131 XCTAssertEqual(((NSString*)infoDictionary[
@"FlutterEngine"]).length, 40UL);
136 XCTAssertTrue(((NSString*)infoDictionary[
@"ClangVersion"]).length > 15UL);
139 - (void)testDeallocated {
145 XCTAssertNotNil(weakEngine);
147 XCTAssertNil(weakEngine);
150 - (void)testSendMessageBeforeRun {
154 XCTAssertThrows([
engine.binaryMessenger
156 message:[
@"bar" dataUsingEncoding:NSUTF8StringEncoding]
160 - (void)testSetMessageHandlerBeforeRun {
164 XCTAssertThrows([
engine.binaryMessenger
165 setMessageHandlerOnChannel:
@"foo"
171 - (void)testNilSetMessageHandlerBeforeRun {
175 XCTAssertNoThrow([
engine.binaryMessenger setMessageHandlerOnChannel:
@"foo"
176 binaryMessageHandler:nil]);
179 - (void)testNotifyPluginOfDealloc {
181 OCMStub([plugin detachFromEngineForRegistrar:[OCMArg any]]);
186 [registrar publish:plugin];
189 OCMVerify([plugin detachFromEngineForRegistrar:[OCMArg any]]);
192 - (void)testSetBinaryMessengerToSameBinaryMessenger {
206 - (void)testRunningInitialRouteSendsNavigationMessage {
219 NSData* encodedSetInitialRouteMethod =
221 OCMVerify([mockBinaryMessenger sendOnChannel:
@"flutter/navigation"
222 message:encodedSetInitialRouteMethod]);
225 - (void)testInitialRouteSettingsSendsNavigationMessage {
229 settings.route =
"test";
239 NSData* encodedSetInitialRouteMethod =
241 OCMVerify([mockBinaryMessenger sendOnChannel:
@"flutter/navigation"
242 message:encodedSetInitialRouteMethod]);
245 - (void)testPlatformViewsControllerRenderingMetalBackend {
253 - (void)testWaitForFirstFrameTimeout {
256 XCTestExpectation* timeoutFirstFrame = [
self expectationWithDescription:@"timeoutFirstFrame"];
259 if (timeoutFirstFrame) {
260 [timeoutFirstFrame fulfill];
263 [
self waitForExpectations:@[ timeoutFirstFrame ]];
273 XCTAssertNotNil(spawn);
276 - (void)testEngineId {
279 int64_t id1 =
engine.engineIdentifier;
280 XCTAssertTrue(id1 != 0);
285 int64_t id2 = spawn.engineIdentifier;
287 XCTAssertEqual([
FlutterEngine engineForIdentifier:id2], spawn);
290 - (void)testSetHandlerAfterRun {
292 XCTestExpectation* gotMessage = [
self expectationWithDescription:@"gotMessage"];
293 dispatch_async(dispatch_get_main_queue(), ^{
295 fml::AutoResetWaitableEvent latch;
298 fml::TaskRunner::RunNowOrPostTask(
299 engine.shell.GetTaskRunners().GetUITaskRunner(), [&latch, &
shell] {
300 flutter::Engine::Delegate& delegate = shell;
301 auto message = std::make_unique<flutter::PlatformMessage>(
"foo", nullptr);
302 delegate.OnEngineHandlePlatformMessage(std::move(message));
306 [registrar.messenger setMessageHandlerOnChannel:@"foo"
307 binaryMessageHandler:^(NSData* message, FlutterBinaryReply reply) {
308 [gotMessage fulfill];
311 [
self waitForExpectations:@[ gotMessage ]];
314 - (void)testThreadPrioritySetCorrectly {
315 XCTestExpectation* prioritiesSet = [
self expectationWithDescription:@"prioritiesSet"];
316 prioritiesSet.expectedFulfillmentCount = 2;
318 IMP mockSetThreadPriority =
319 imp_implementationWithBlock(^(NSThread* thread,
double threadPriority) {
320 if ([thread.name hasSuffix:
@".raster"]) {
321 XCTAssertEqual(threadPriority, 1.0);
322 [prioritiesSet fulfill];
323 }
else if ([thread.name hasSuffix:
@".io"]) {
324 XCTAssertEqual(threadPriority, 0.5);
325 [prioritiesSet fulfill];
328 Method method = class_getInstanceMethod([NSThread
class],
@selector(setThreadPriority:));
329 IMP originalSetThreadPriority = method_getImplementation(method);
330 method_setImplementation(method, mockSetThreadPriority);
334 [
self waitForExpectations:@[ prioritiesSet ]];
336 method_setImplementation(method, originalSetThreadPriority);
339 - (void)testCanEnableDisableEmbedderAPIThroughInfoPlist {
343 settings.enable_software_rendering =
true;
346 XCTAssertFalse(
engine.enableEmbedderAPI);
350 id mockMainBundle = OCMPartialMock([NSBundle mainBundle]);
351 OCMStub([mockMainBundle objectForInfoDictionaryKey:
@"FLTEnableIOSEmbedderAPI"])
354 settings.enable_software_rendering =
true;
357 XCTAssertTrue(
engine.enableEmbedderAPI);
361 - (void)testFlutterTextInputViewDidResignFirstResponderWillCallTextInputClientConnectionClosed {
366 [engine flutterTextInputView:nil didResignFirstResponderWithTextInputClient:1];
371 OCMVerify([mockBinaryMessenger sendOnChannel:
@"flutter/textinput" message:encodedMethodCall]);
374 - (void)testFlutterEngineUpdatesDisplays {
376 id mockEngine = OCMPartialMock(
engine);
380 engine.viewController = nil;
384 - (void)testLifeCycleNotificationDidEnterBackground {
388 NSNotification* sceneNotification =
389 [NSNotification notificationWithName:UISceneDidEnterBackgroundNotification
392 NSNotification* applicationNotification =
393 [NSNotification notificationWithName:UIApplicationDidEnterBackgroundNotification
396 id mockEngine = OCMPartialMock(
engine);
397 [[NSNotificationCenter defaultCenter] postNotification:sceneNotification];
398 [[NSNotificationCenter defaultCenter] postNotification:applicationNotification];
399 #if APPLICATION_EXTENSION_API_ONLY
400 OCMVerify(times(1), [mockEngine sceneDidEnterBackground:[OCMArg any]]);
402 OCMVerify(times(1), [mockEngine applicationDidEnterBackground:[OCMArg any]]);
404 XCTAssertTrue(
engine.isGpuDisabled);
405 bool switch_value =
false;
406 [engine
shell].GetIsGpuDisabledSyncSwitch()->Execute(
407 fml::SyncSwitch::Handlers().SetIfTrue([&] { switch_value =
true; }).SetIfFalse([&] {
408 switch_value =
false;
410 XCTAssertTrue(switch_value);
413 - (void)testLifeCycleNotificationWillEnterForeground {
417 NSNotification* sceneNotification =
418 [NSNotification notificationWithName:UISceneWillEnterForegroundNotification
421 NSNotification* applicationNotification =
422 [NSNotification notificationWithName:UIApplicationWillEnterForegroundNotification
425 id mockEngine = OCMPartialMock(
engine);
426 [[NSNotificationCenter defaultCenter] postNotification:sceneNotification];
427 [[NSNotificationCenter defaultCenter] postNotification:applicationNotification];
428 #if APPLICATION_EXTENSION_API_ONLY
429 OCMVerify(times(1), [mockEngine sceneWillEnterForeground:[OCMArg any]]);
431 OCMVerify(times(1), [mockEngine applicationWillEnterForeground:[OCMArg any]]);
433 XCTAssertFalse(
engine.isGpuDisabled);
434 bool switch_value =
true;
435 [engine
shell].GetIsGpuDisabledSyncSwitch()->Execute(
436 fml::SyncSwitch::Handlers().SetIfTrue([&] { switch_value =
true; }).SetIfFalse([&] {
437 switch_value =
false;
439 XCTAssertFalse(switch_value);
442 - (void)testSpawnsShareGpuContext {
449 XCTAssertNotNil(spawn);
450 XCTAssertTrue(
engine.platformView !=
nullptr);
452 std::shared_ptr<flutter::IOSContext> engine_context =
engine.platformView->GetIosContext();
454 XCTAssertEqual(engine_context, spawn_context);
457 - (void)testEnableSemanticsWhenFlutterViewAccessibilityDidCall {
459 engine.ensureSemanticsEnabledCalled = NO;
460 [engine flutterViewAccessibilityDidCall];
461 XCTAssertTrue(
engine.ensureSemanticsEnabledCalled);
464 - (void)testCanMergePlatformAndUIThread {
465 #if defined(TARGET_IPHONE_SIMULATOR) && TARGET_IPHONE_SIMULATOR
471 XCTAssertEqual(
engine.shell.GetTaskRunners().GetUITaskRunner(),
472 engine.shell.GetTaskRunners().GetPlatformTaskRunner());
473 #endif // defined(TARGET_IPHONE_SIMULATOR) && TARGET_IPHONE_SIMULATOR
476 - (void)testCanUnMergePlatformAndUIThread {
477 #if defined(TARGET_IPHONE_SIMULATOR) && TARGET_IPHONE_SIMULATOR
479 settings.merged_platform_ui_thread =
false;
484 XCTAssertNotEqual(
engine.shell.GetTaskRunners().GetUITaskRunner(),
485 engine.shell.GetTaskRunners().GetPlatformTaskRunner());
486 #endif // defined(TARGET_IPHONE_SIMULATOR) && TARGET_IPHONE_SIMULATOR