iosWebViewFix/example/integration_test/in_app_webview/get_content_height.dart

51 lines
1.4 KiB
Dart
Raw Normal View History

2022-04-28 17:29:01 +00:00
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';
2022-04-28 21:23:38 +00:00
void getContentHeight() {
2022-04-29 11:39:28 +00:00
final shouldSkip = kIsWeb
? false
: ![
TargetPlatform.android,
TargetPlatform.iOS,
TargetPlatform.macOS,
].contains(defaultTargetPlatform);
2022-04-28 17:29:01 +00:00
2022-04-28 21:23:38 +00:00
var url = !kIsWeb ? TEST_CROSS_PLATFORM_URL_1 : TEST_WEB_PLATFORM_URL_1;
testWidgets('getContentHeight', (WidgetTester tester) async {
2022-04-28 17:29:01 +00:00
final Completer controllerCompleter = Completer<InAppWebViewController>();
final Completer<void> pageLoaded = Completer<void>();
await tester.pumpWidget(
Directionality(
textDirection: TextDirection.ltr,
child: InAppWebView(
key: GlobalKey(),
2022-04-29 11:39:28 +00:00
initialUrlRequest: URLRequest(url: url),
2022-04-28 17:29:01 +00:00
onWebViewCreated: (controller) {
controllerCompleter.complete(controller);
},
onLoadStop: (controller, url) {
pageLoaded.complete();
},
),
),
);
2022-04-29 11:39:28 +00:00
final InAppWebViewController controller = await controllerCompleter.future;
2022-04-28 17:29:01 +00:00
await pageLoaded.future;
2022-04-30 19:22:31 +00:00
await tester.pump();
2022-04-28 21:23:38 +00:00
final contentHeight = await controller.getContentHeight();
expect(contentHeight, isNonZero);
expect(contentHeight, isPositive);
2022-04-28 17:29:01 +00:00
}, skip: shouldSkip);
}