iosWebViewFix/example/integration_test/in_app_webview/is_secure_context.dart

50 lines
1.4 KiB
Dart
Raw Normal View History

part of 'main.dart';
2022-04-28 17:29:01 +00:00
2022-04-28 21:23:38 +00:00
void isSecureContext() {
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;
2022-04-28 17:29:01 +00:00
skippableTestWidgets('isSecureContext', (WidgetTester tester) async {
final Completer<InAppWebViewController> controllerCompleter =
Completer<InAppWebViewController>();
2022-04-28 21:23:38 +00:00
final StreamController<String> pageLoads =
2022-04-29 11:39:28 +00:00
StreamController<String>.broadcast();
2022-04-28 17:29:01 +00:00
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) {
2022-04-28 21:23:38 +00:00
pageLoads.add(url!.toString());
2022-04-28 17:29:01 +00:00
},
),
),
);
final InAppWebViewController controller = await controllerCompleter.future;
2022-04-28 21:23:38 +00:00
await pageLoads.stream.first;
expect(await controller.isSecureContext(), true);
2022-04-28 17:29:01 +00:00
2022-04-28 21:23:38 +00:00
if (!kIsWeb) {
await controller.loadUrl(
urlRequest: URLRequest(url: WebUri('http://example.com/')));
2022-04-28 21:23:38 +00:00
await pageLoads.stream.first;
expect(await controller.isSecureContext(), false);
}
2022-04-28 17:29:01 +00:00
2022-04-28 21:23:38 +00:00
pageLoads.close();
2022-04-28 17:29:01 +00:00
}, skip: shouldSkip);
}