5 #import <OCMock/OCMock.h>
6 #import <XCTest/XCTest.h>
8 #include "flutter/common/constants.h"
25 - (void)testOldGenHeapSizeSetting {
27 int64_t old_gen_heap_size =
28 std::round([NSProcessInfo processInfo].physicalMemory * .48 / flutter::kMegaByteSizeInBytes);
29 XCTAssertEqual(project.
settings.old_gen_heap_size, old_gen_heap_size);
32 - (void)testResourceCacheMaxBytesThresholdSetting {
34 CGFloat scale = [UIScreen mainScreen].scale;
35 CGFloat screenWidth = [UIScreen mainScreen].bounds.size.width * scale;
36 CGFloat screenHeight = [UIScreen mainScreen].bounds.size.height * scale;
37 size_t resource_cache_max_bytes_threshold = screenWidth * screenHeight * 12 * 4;
38 XCTAssertEqual(project.
settings.resource_cache_max_bytes_threshold,
39 resource_cache_max_bytes_threshold);
42 - (void)testMainBundleSettingsAreCorrectlyParsed {
43 NSBundle* mainBundle = [NSBundle mainBundle];
44 NSDictionary* appTransportSecurity =
45 [mainBundle objectForInfoDictionaryKey:@"NSAppTransportSecurity"];
47 XCTAssertEqualObjects(
48 @"[[\"invalid-site.com\
",true,false],[\"sub.invalid-site.com\",false,false]]",
52 - (void)testLeakDartVMSettingsAreCorrectlyParsed {
54 NSBundle* mainBundle = [NSBundle mainBundle];
55 NSNumber* leakDartVM = [mainBundle objectForInfoDictionaryKey:@"FLTLeakDartVM"];
56 XCTAssertEqual(leakDartVM.boolValue, NO);
60 XCTAssertEqual(settings.leak_vm, NO);
63 - (void)testFLTFrameworkBundleInternalWhenBundleIsNotPresent {
69 - (void)testFLTFrameworkBundleInternalWhenBundleIsPresent {
70 NSString* presentBundleID =
@"io.flutter.flutter";
73 XCTAssertNotNil(found);
76 - (void)testFLTGetApplicationBundleWhenCurrentTargetIsNotExtension {
78 XCTAssertEqual(bundle, [NSBundle mainBundle]);
81 - (void)testFLTGetApplicationBundleWhenCurrentTargetIsExtension {
82 id mockMainBundle = OCMPartialMock([NSBundle mainBundle]);
83 NSURL* url = [[NSBundle mainBundle].bundleURL URLByAppendingPathComponent:@"foo/ext.appex"];
84 OCMStub([mockMainBundle bundleURL]).andReturn(url);
86 [mockMainBundle stopMocking];
87 XCTAssertEqualObjects(bundle.bundleURL, [NSBundle mainBundle].bundleURL);
90 - (void)testFLTAssetsURLFromBundle {
93 id mockBundle = OCMClassMock([NSBundle
class]);
94 OCMStub([mockBundle objectForInfoDictionaryKey:
@"FLTAssetsPath"]).andReturn(
@"foo/assets");
95 NSString* resultAssetsPath =
@"path/to/foo/assets";
96 OCMStub([mockBundle pathForResource:
@"foo/assets" ofType:nil]).andReturn(resultAssetsPath);
98 XCTAssertEqualObjects(path,
@"path/to/foo/assets");
102 id mockBundle = OCMClassMock([NSBundle
class]);
103 id mockMainBundle = OCMPartialMock(NSBundle.mainBundle);
104 OCMStub([mockBundle objectForInfoDictionaryKey:
@"FLTAssetsPath"]).andReturn(
@"foo/assets");
105 OCMStub([mockMainBundle objectForInfoDictionaryKey:
@"FLTAssetsPath"]).andReturn(nil);
106 NSString* resultAssetsPath =
@"path/to/foo/assets";
107 OCMStub([mockBundle pathForResource:
@"foo/assets" ofType:nil]).andReturn(resultAssetsPath);
109 XCTAssertEqualObjects(path,
@"path/to/foo/assets");
110 [mockMainBundle stopMocking];
114 id mockBundle = OCMClassMock([NSBundle
class]);
115 id mockMainBundle = OCMPartialMock([NSBundle mainBundle]);
116 NSString* resultAssetsPath =
@"path/to/foo/assets";
117 OCMStub([mockBundle pathForResource:
@"Frameworks/App.framework/flutter_assets" ofType:nil])
119 OCMStub([mockMainBundle pathForResource:
@"Frameworks/App.framework/flutter_assets" ofType:nil])
120 .andReturn(resultAssetsPath);
122 XCTAssertEqualObjects(path,
@"path/to/foo/assets");
123 [mockMainBundle stopMocking];
127 - (void)testFLTAssetPathReturnsTheCorrectValue {
130 id mockBundle = OCMClassMock([NSBundle
class]);
131 OCMStub([mockBundle objectForInfoDictionaryKey:
@"FLTAssetsPath"]).andReturn(
@"foo/assets");
132 XCTAssertEqualObjects(
FLTAssetPath(mockBundle),
@"foo/assets");
136 id mockBundle = OCMClassMock([NSBundle
class]);
137 OCMStub([mockBundle objectForInfoDictionaryKey:
@"FLTAssetsPath"]).andReturn(nil);
142 - (void)testLookUpForAssets {
144 id mockBundle = OCMPartialMock([NSBundle mainBundle]);
146 OCMStub([mockBundle objectForInfoDictionaryKey:
@"FLTAssetsPath"]).andReturn(
@"foo/assets");
149 XCTAssertEqualObjects(assetsPath,
@"foo/assets/bar");
150 [mockBundle stopMocking];
153 id mockBundle = OCMPartialMock([NSBundle mainBundle]);
155 OCMStub([mockBundle objectForInfoDictionaryKey:
@"FLTAssetsPath"]).andReturn(nil);
158 XCTAssertEqualObjects(assetsPath,
@"Frameworks/App.framework/flutter_assets/bar");
159 [mockBundle stopMocking];
163 - (void)testLookUpForAssetsFromBundle {
165 id mockBundle = OCMClassMock([NSBundle
class]);
167 OCMStub([mockBundle objectForInfoDictionaryKey:
@"FLTAssetsPath"]).andReturn(
@"foo/assets");
170 XCTAssertEqualObjects(assetsPath,
@"foo/assets/bar");
174 id mockBundle = OCMClassMock([NSBundle
class]);
175 OCMStub([mockBundle objectForInfoDictionaryKey:
@"FLTAssetsPath"]).andReturn(nil);
178 XCTAssertEqualObjects(assetsPath,
@"Frameworks/App.framework/flutter_assets/bar");
182 - (void)testLookUpForAssetsFromPackage {
184 id mockBundle = OCMPartialMock([NSBundle mainBundle]);
186 OCMStub([mockBundle objectForInfoDictionaryKey:
@"FLTAssetsPath"]).andReturn(
@"foo/assets");
189 XCTAssertEqualObjects(assetsPath,
@"foo/assets/packages/bar_package/bar");
190 [mockBundle stopMocking];
193 id mockBundle = OCMPartialMock([NSBundle mainBundle]);
195 OCMStub([mockBundle objectForInfoDictionaryKey:
@"FLTAssetsPath"]).andReturn(nil);
198 XCTAssertEqualObjects(assetsPath,
199 @"Frameworks/App.framework/flutter_assets/packages/bar_package/bar");
200 [mockBundle stopMocking];
204 - (void)testLookUpForAssetsFromPackageFromBundle {
206 id mockBundle = OCMClassMock([NSBundle
class]);
208 OCMStub([mockBundle objectForInfoDictionaryKey:
@"FLTAssetsPath"]).andReturn(
@"foo/assets");
213 XCTAssertEqualObjects(assetsPath,
@"foo/assets/packages/bar_package/bar");
216 id mockBundle = OCMClassMock([NSBundle
class]);
218 OCMStub([mockBundle objectForInfoDictionaryKey:
@"FLTAssetsPath"]).andReturn(nil);
223 XCTAssertEqualObjects(assetsPath,
224 @"Frameworks/App.framework/flutter_assets/packages/bar_package/bar");
228 - (void)testRequestsWarningWhenImpellerOptOut {
230 XCTAssertEqual(settings.warn_on_impeller_opt_out, YES);
233 - (void)testEnableImpellerSettingIsCorrectlyParsed {
234 id mockMainBundle = OCMPartialMock([NSBundle mainBundle]);
235 OCMStub([mockMainBundle objectForInfoDictionaryKey:
@"FLTEnableImpeller"]).andReturn(
@"YES");
239 XCTAssertEqual(settings.enable_impeller, YES);
240 [mockMainBundle stopMocking];
243 - (void)testEnableImpellerSettingIsCorrectlyOverriddenByCommandLine {
244 id mockMainBundle = OCMPartialMock([NSBundle mainBundle]);
245 OCMStub([mockMainBundle objectForInfoDictionaryKey:
@"FLTEnableImpeller"]).andReturn(
@"NO");
246 id mockProcessInfo = OCMPartialMock([NSProcessInfo processInfo]);
247 NSArray* arguments = @[ @"process_name", @"--enable-impeller" ];
248 OCMStub([mockProcessInfo arguments]).andReturn(arguments);
252 XCTAssertEqual(settings.enable_impeller, YES);
253 [mockMainBundle stopMocking];
256 - (void)testEnableDartAssertsCommandLineArgument {
257 id mockMainBundle = OCMPartialMock([NSBundle mainBundle]);
258 OCMStub([mockMainBundle objectForInfoDictionaryKey:
@"FLTEnableDartAsserts"]).andReturn(
@"YES");
259 id mockProcessInfo = OCMPartialMock([NSProcessInfo processInfo]);
260 NSArray* arguments = @[ @"process_name" ];
261 OCMStub([mockProcessInfo arguments]).andReturn(arguments);
265 XCTAssertEqual(settings.dart_flags.size(), 1u);
266 XCTAssertEqual(settings.dart_flags[0],
"--enable-asserts");
267 [mockMainBundle stopMocking];
270 - (void)testEnableTraceSystraceSettingIsCorrectlyParsed {
271 NSBundle* mainBundle = [NSBundle mainBundle];
272 NSNumber* enableTraceSystrace = [mainBundle objectForInfoDictionaryKey:@"FLTTraceSystrace"];
273 XCTAssertNotNil(enableTraceSystrace);
274 XCTAssertEqual(enableTraceSystrace.boolValue, NO);
276 XCTAssertEqual(settings.trace_systrace, NO);
279 - (void)testEnableDartProflingSettingIsCorrectlyParsed {
280 NSBundle* mainBundle = [NSBundle mainBundle];
281 NSNumber* enableTraceSystrace = [mainBundle objectForInfoDictionaryKey:@"FLTEnableDartProfiling"];
282 XCTAssertNotNil(enableTraceSystrace);
283 XCTAssertEqual(enableTraceSystrace.boolValue, NO);
285 XCTAssertEqual(settings.trace_systrace, NO);
288 - (void)testEmptySettingsAreCorrect {
289 XCTAssertFalse([
FlutterDartProject allowsArbitraryLoads:[[NSDictionary alloc] init]]);
290 XCTAssertEqualObjects(
@"", [
FlutterDartProject domainNetworkPolicy:[[NSDictionary alloc] init]]);
293 - (void)testAllowsArbitraryLoads {
294 XCTAssertFalse([
FlutterDartProject allowsArbitraryLoads:@{
@"NSAllowsArbitraryLoads" : @
false}]);
295 XCTAssertTrue([
FlutterDartProject allowsArbitraryLoads:@{
@"NSAllowsArbitraryLoads" : @
true}]);
298 - (void)testProperlyFormedExceptionDomains {
299 NSDictionary* domainInfoOne = @{
300 @"NSIncludesSubdomains" : @
false,
301 @"NSExceptionAllowsInsecureHTTPLoads" : @
true,
302 @"NSExceptionMinimumTLSVersion" :
@"4.0"
304 NSDictionary* domainInfoTwo = @{
305 @"NSIncludesSubdomains" : @
true,
306 @"NSExceptionAllowsInsecureHTTPLoads" : @
false,
307 @"NSExceptionMinimumTLSVersion" :
@"4.0"
309 NSDictionary* domainInfoThree = @{
310 @"NSIncludesSubdomains" : @
false,
311 @"NSExceptionAllowsInsecureHTTPLoads" : @
true,
312 @"NSExceptionMinimumTLSVersion" :
@"4.0"
314 NSDictionary* exceptionDomains = @{
315 @"domain.name" : domainInfoOne,
316 @"sub.domain.name" : domainInfoTwo,
317 @"sub.two.domain.name" : domainInfoThree
319 NSDictionary* appTransportSecurity = @{
@"NSExceptionDomains" : exceptionDomains};
320 XCTAssertEqualObjects(
@"[[\"domain.name\
",false,true],[\"sub.domain.name\",true,false],"
321 @"[\"sub.two.domain.name\
",false,true]]",
325 - (void)testExceptionDomainsWithMissingInfo {
326 NSDictionary* domainInfoOne = @{
@"NSExceptionMinimumTLSVersion" :
@"4.0"};
327 NSDictionary* domainInfoTwo = @{
328 @"NSIncludesSubdomains" : @
true,
330 NSDictionary* domainInfoThree = @{};
331 NSDictionary* exceptionDomains = @{
332 @"domain.name" : domainInfoOne,
333 @"sub.domain.name" : domainInfoTwo,
334 @"sub.two.domain.name" : domainInfoThree
336 NSDictionary* appTransportSecurity = @{
@"NSExceptionDomains" : exceptionDomains};
337 XCTAssertEqualObjects(
@"[[\"domain.name\
",false,false],[\"sub.domain.name\",true,false],"
338 @"[\"sub.two.domain.name\
",false,false]]",