iosWebViewFix/example/integration_test/constants.dart

26 lines
1.4 KiB
Dart
Raw Normal View History

2022-04-27 16:59:19 +00:00
final TEST_URL_ABOUT_BLANK = Uri.parse('about:blank');
2022-04-28 14:48:39 +00:00
final TEST_CROSS_PLATFORM_URL_1 = Uri.parse('https://flutter.dev/');
2022-04-27 16:59:19 +00:00
final TEST_CROSS_PLATFORM_URL_2 = Uri.parse('https://www.bing.com/');
final TEST_URL_1 = Uri.parse('https://github.com/flutter');
final TEST_URL_2 = Uri.parse('https://www.google.com/');
2022-10-11 14:19:36 +00:00
final TEST_URL_3 =
Uri.parse('https://github.com/pichillilorenzo/flutter_inappwebview');
2022-04-27 23:10:20 +00:00
final TEST_URL_4 = Uri.parse('https://www.youtube.com/');
2022-04-28 21:23:38 +00:00
final TEST_URL_EXAMPLE = Uri.parse('https://www.example.com/');
2022-05-02 10:52:10 +00:00
final TEST_URL_HTTP_EXAMPLE = Uri.parse('http://www.example.com/');
2022-04-28 17:29:01 +00:00
final TEST_URL_404 = Uri.parse('https://google.com/404');
2022-10-11 14:19:36 +00:00
final TEST_WEB_PLATFORM_BASE_URL =
Uri.parse(Uri.base.toString().replaceFirst("/#/", "/"));
final TEST_WEB_PLATFORM_URL_1 =
Uri.parse(TEST_WEB_PLATFORM_BASE_URL.toString() + 'page.html');
final TEST_WEB_PLATFORM_URL_2 =
Uri.parse(TEST_WEB_PLATFORM_BASE_URL.toString() + 'page-2.html');
final TEST_WEB_PLATFORM_URL_3 =
Uri.parse(TEST_WEB_PLATFORM_BASE_URL.toString() + 'heavy-page.html');
2022-04-29 00:07:01 +00:00
final TEST_NOT_A_WEBSITE_URL = Uri.parse('https://www.notawebsite..com/');
2022-10-11 14:19:36 +00:00
final TEST_CHROME_SAFE_BROWSING_MALWARE =
Uri.parse('chrome://safe-browsing/match?type=malware');
2022-04-28 17:29:01 +00:00
final TEST_PERMISSION_SITE = Uri.parse('https://permission.site/');
2022-10-11 14:19:36 +00:00
final TEST_SERVICE_WORKER_URL = Uri.parse(
'https://mdn.github.io/dom-examples/service-worker/simple-service-worker/');