Fix platform checking logic (#1518)
* Fix platform checking logic * Update _defaultOnTapOutsidepull/1519/head
parent
db406d4b01
commit
ebd2729f39
18 changed files with 303 additions and 72 deletions
@ -0,0 +1,156 @@ |
||||
import 'package:flutter/foundation.dart' show TargetPlatform; |
||||
import 'package:flutter_quill/src/utils/platform.dart'; |
||||
import 'package:test/test.dart'; |
||||
|
||||
void main() { |
||||
group('Test platform checking logic', () { |
||||
var platform = TargetPlatform.linux; |
||||
test('Check isDesktop()', () { |
||||
platform = TargetPlatform.android; |
||||
expect( |
||||
isDesktop( |
||||
platform: platform, |
||||
supportWeb: true, |
||||
), |
||||
false, |
||||
); |
||||
|
||||
for (final desktopPlatform in [ |
||||
TargetPlatform.macOS, |
||||
TargetPlatform.linux, |
||||
TargetPlatform.windows |
||||
]) { |
||||
expect( |
||||
isDesktop( |
||||
supportWeb: false, |
||||
platform: desktopPlatform, |
||||
overrideIsWeb: false, |
||||
), |
||||
true, |
||||
); |
||||
|
||||
expect( |
||||
isDesktop( |
||||
supportWeb: false, |
||||
overrideIsWeb: true, |
||||
platform: desktopPlatform, |
||||
), |
||||
false, |
||||
); |
||||
|
||||
expect( |
||||
isDesktop( |
||||
supportWeb: true, |
||||
overrideIsWeb: true, |
||||
platform: desktopPlatform, |
||||
), |
||||
true, |
||||
); |
||||
} |
||||
}); |
||||
test('Check isMobile()', () { |
||||
platform = TargetPlatform.macOS; |
||||
expect( |
||||
isMobile( |
||||
platform: platform, |
||||
supportWeb: true, |
||||
), |
||||
false, |
||||
); |
||||
|
||||
for (final mobilePlatform in [ |
||||
TargetPlatform.android, |
||||
TargetPlatform.iOS, |
||||
]) { |
||||
expect( |
||||
isMobile( |
||||
supportWeb: false, |
||||
platform: mobilePlatform, |
||||
overrideIsWeb: false, |
||||
), |
||||
true, |
||||
); |
||||
|
||||
expect( |
||||
isMobile( |
||||
supportWeb: false, |
||||
overrideIsWeb: true, |
||||
platform: mobilePlatform, |
||||
), |
||||
false, |
||||
); |
||||
|
||||
expect( |
||||
isMobile( |
||||
supportWeb: true, |
||||
overrideIsWeb: true, |
||||
platform: mobilePlatform, |
||||
), |
||||
true, |
||||
); |
||||
} |
||||
}); |
||||
test( |
||||
'Check supportWeb parameter when using desktop platform on web', |
||||
() { |
||||
platform = TargetPlatform.macOS; |
||||
expect( |
||||
isDesktop( |
||||
platform: platform, |
||||
supportWeb: true, |
||||
), |
||||
true, |
||||
); |
||||
expect( |
||||
isDesktop( |
||||
platform: platform, |
||||
supportWeb: false, |
||||
overrideIsWeb: false, |
||||
), |
||||
true, |
||||
); |
||||
|
||||
expect( |
||||
isDesktop( |
||||
platform: platform, |
||||
supportWeb: false, |
||||
overrideIsWeb: true, |
||||
), |
||||
false, |
||||
); |
||||
}, |
||||
); |
||||
|
||||
test( |
||||
'Check supportWeb parameter when using mobile platform on web', |
||||
() { |
||||
platform = TargetPlatform.android; |
||||
expect( |
||||
isMobile( |
||||
platform: platform, |
||||
supportWeb: true, |
||||
overrideIsWeb: true, |
||||
), |
||||
true, |
||||
); |
||||
expect( |
||||
isMobile( |
||||
platform: platform, |
||||
supportWeb: false, |
||||
overrideIsWeb: false, |
||||
), |
||||
true, |
||||
); |
||||
|
||||
expect( |
||||
isMobile( |
||||
platform: platform, |
||||
supportWeb: false, |
||||
overrideIsWeb: true, |
||||
), |
||||
false, |
||||
); |
||||
}, |
||||
); |
||||
}); |
||||
} |
Loading…
Reference in new issue