mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

* Adds support for `flutter test --wasm`. * The test compilation flow is a bit different now, so that it supports compilers other than DDC. Specifically, when we run a set of unit tests, we generate a "switchboard" main function that imports each unit test and runs the main function for a specific one based off of a value set by the JS bootstrapping code. This way, there is one compile step and the same compile output is invoked for each unit test file. * Also, removes all references to `dart:html` from flutter/flutter. * Adds CI steps for running the framework unit tests with dart2wasm+skwasm * These steps are marked as `bringup: true`, so we don't know what kind of failures they will result in. Any failures they have will not block the tree at all yet while we're still in `bringup: true`. Once this PR is merged, I plan on looking at any failures and either fixing them or disabling them so we can get these CI steps running on presubmit. This fixes https://github.com/flutter/flutter/issues/126692
47 lines
1.8 KiB
Dart
47 lines
1.8 KiB
Dart
// Copyright 2014 The Flutter Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
import 'dart:async';
|
|
import 'dart:convert';
|
|
import 'dart:js_interop';
|
|
import 'dart:js_interop_unsafe';
|
|
|
|
@JS('window')
|
|
external JSObject get _window;
|
|
|
|
/// The web implementation of [registerWebServiceExtension].
|
|
///
|
|
/// Adds a hidden `window.$flutterDriver` JavaScript function that's called by
|
|
/// `FlutterWebDriver` to fulfill FlutterDriver commands.
|
|
///
|
|
/// See also:
|
|
///
|
|
/// * `_extension_io.dart`, which has the dart:io implementation
|
|
void registerWebServiceExtension(Future<Map<String, dynamic>> Function(Map<String, String>) callback) {
|
|
// Define the result variable because packages/flutter_driver/lib/src/driver/web_driver.dart
|
|
// checks for this value to become non-null when waiting for the result. If this value is
|
|
// undefined at the time of the check, WebDriver throws an exception.
|
|
_window.setProperty(r'$flutterDriverResult'.toJS, null);
|
|
|
|
_window.setProperty(r'$flutterDriver'.toJS, (JSAny message) {
|
|
(() async {
|
|
try {
|
|
final Map<String, dynamic> messageJson = jsonDecode((message as JSString).toDart) as Map<String, dynamic>;
|
|
final Map<String, String> params = messageJson.cast<String, String>();
|
|
final Map<String, dynamic> result = await callback(params);
|
|
_window.setProperty(r'$flutterDriverResult'.toJS, json.encode(result).toJS);
|
|
} catch (error, stackTrace) {
|
|
// Encode the error in the same format the FlutterDriver extension uses.
|
|
// See //packages/flutter_driver/lib/src/extension/extension.dart
|
|
_window.setProperty(r'$flutterDriverResult'.toJS,
|
|
json.encode(<String, dynamic>{
|
|
'isError': true,
|
|
'response': '$error\n$stackTrace',
|
|
}).toJS
|
|
);
|
|
}
|
|
})();
|
|
}.toJS);
|
|
}
|