41 lines
1.2 KiB
Dart
41 lines
1.2 KiB
Dart
|
import 'dart:async';
|
||
|
|
||
|
import 'package:flutter/foundation.dart';
|
||
|
import 'package:flutter/widgets.dart';
|
||
|
import 'package:flutter_inappwebview/flutter_inappwebview.dart';
|
||
|
import 'package:flutter_test/flutter_test.dart';
|
||
|
|
||
|
import '../constants.dart';
|
||
|
|
||
|
void onWindowFocus() {
|
||
|
final shouldSkip = !kIsWeb ||
|
||
|
![
|
||
|
TargetPlatform.android,
|
||
|
TargetPlatform.iOS,
|
||
|
TargetPlatform.macOS,
|
||
|
].contains(defaultTargetPlatform);
|
||
|
|
||
|
var url = !kIsWeb ? TEST_URL_1 : TEST_WEB_PLATFORM_URL_1;
|
||
|
|
||
|
testWidgets('onWindowFocus', (WidgetTester tester) async {
|
||
|
final Completer<void> onWindowFocusCompleter = Completer<void>();
|
||
|
await tester.pumpWidget(
|
||
|
Directionality(
|
||
|
textDirection: TextDirection.ltr,
|
||
|
child: InAppWebView(
|
||
|
key: GlobalKey(),
|
||
|
initialUrlRequest: URLRequest(url: url),
|
||
|
onLoadStop: (controller, url) async {
|
||
|
await controller.evaluateJavascript(
|
||
|
source: 'window.dispatchEvent(new Event("focus"));');
|
||
|
},
|
||
|
onWindowFocus: (controller) {
|
||
|
onWindowFocusCompleter.complete();
|
||
|
},
|
||
|
),
|
||
|
),
|
||
|
);
|
||
|
await expectLater(onWindowFocusCompleter.future, completes);
|
||
|
}, skip: shouldSkip);
|
||
|
}
|