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
164 lines
4.5 KiB
Dart
164 lines
4.5 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:js_interop';
|
|
|
|
import 'package:collection/collection.dart';
|
|
import 'package:flutter/foundation.dart';
|
|
import 'package:meta/dart2js.dart';
|
|
import 'package:web/web.dart' as web;
|
|
|
|
/// Expected sequence of method calls.
|
|
const List<String> callChain = <String>['baz', 'bar', 'foo'];
|
|
|
|
final List<StackFrame> expectedProfileStackFrames = callChain.map<StackFrame>((String method) {
|
|
return StackFrame(
|
|
number: -1,
|
|
packageScheme: '<unknown>',
|
|
package: '<unknown>',
|
|
packagePath: '<unknown>',
|
|
line: -1,
|
|
column: -1,
|
|
className: 'Object',
|
|
method: method,
|
|
source: '',
|
|
);
|
|
}).toList();
|
|
|
|
// TODO(yjbanov): fix these stack traces when https://github.com/flutter/flutter/issues/50753 is fixed.
|
|
const List<StackFrame> expectedDebugStackFrames = <StackFrame>[
|
|
StackFrame(
|
|
number: -1,
|
|
packageScheme: 'package',
|
|
package: 'packages',
|
|
packagePath: 'web_integration/stack_trace.dart',
|
|
line: 122,
|
|
column: 3,
|
|
className: '<unknown>',
|
|
method: 'baz',
|
|
source: '',
|
|
),
|
|
StackFrame(
|
|
number: -1,
|
|
packageScheme: 'package',
|
|
package: 'packages',
|
|
packagePath: 'web_integration/stack_trace.dart',
|
|
line: 117,
|
|
column: 3,
|
|
className: '<unknown>',
|
|
method: 'bar',
|
|
source: '',
|
|
),
|
|
StackFrame(
|
|
number: -1,
|
|
packageScheme: 'package',
|
|
package: 'packages',
|
|
packagePath: 'web_integration/stack_trace.dart',
|
|
line: 112,
|
|
column: 3,
|
|
className: '<unknown>',
|
|
method: 'foo',
|
|
source: '',
|
|
),
|
|
];
|
|
|
|
/// Tests that we do not crash while parsing Web stack traces.
|
|
///
|
|
/// This test is run in debug, profile, and release modes.
|
|
void main() {
|
|
final StringBuffer output = StringBuffer();
|
|
try {
|
|
try {
|
|
foo();
|
|
} catch (expectedError, expectedStackTrace) {
|
|
final List<StackFrame> parsedFrames = StackFrame.fromStackTrace(expectedStackTrace);
|
|
if (parsedFrames.isEmpty) {
|
|
throw Exception(
|
|
'Failed to parse stack trace. Got empty list of stack frames.\n'
|
|
'Stack trace:\n$expectedStackTrace'
|
|
);
|
|
}
|
|
|
|
// Symbols in release mode are randomly obfuscated, so there's no good way to
|
|
// validate the contents. However, profile mode can be checked.
|
|
if (kProfileMode) {
|
|
_checkStackFrameContents(parsedFrames, expectedProfileStackFrames, expectedStackTrace);
|
|
}
|
|
|
|
if (kDebugMode) {
|
|
_checkStackFrameContents(parsedFrames, expectedDebugStackFrames, expectedStackTrace);
|
|
}
|
|
}
|
|
output.writeln('--- TEST SUCCEEDED ---');
|
|
} catch (unexpectedError, unexpectedStackTrace) {
|
|
output.writeln('--- UNEXPECTED EXCEPTION ---');
|
|
output.writeln(unexpectedError);
|
|
output.writeln(unexpectedStackTrace);
|
|
output.writeln('--- TEST FAILED ---');
|
|
}
|
|
print(output);
|
|
web.window.fetch(
|
|
'/test-result'.toJS,
|
|
web.RequestInit(
|
|
method: 'POST',
|
|
body: '$output'.toJS,
|
|
)
|
|
);
|
|
}
|
|
|
|
@noInline
|
|
void foo() {
|
|
bar();
|
|
}
|
|
|
|
@noInline
|
|
void bar() {
|
|
baz();
|
|
}
|
|
|
|
@noInline
|
|
void baz() {
|
|
throw Exception('Test error message');
|
|
}
|
|
|
|
void _checkStackFrameContents(List<StackFrame> parsedFrames, List<StackFrame> expectedFrames, dynamic stackTrace) {
|
|
// Filter out stack frames outside this library so this test is less brittle.
|
|
final List<StackFrame> actual = parsedFrames
|
|
.where((StackFrame frame) => callChain.contains(frame.method))
|
|
.toList();
|
|
final bool stackFramesAsExpected = ListEquality<StackFrame>(StackFrameEquality()).equals(actual, expectedFrames);
|
|
if (!stackFramesAsExpected) {
|
|
throw Exception(
|
|
'Stack frames parsed incorrectly:\n'
|
|
'Expected:\n${expectedFrames.join('\n')}\n'
|
|
'Actual:\n${actual.join('\n')}\n'
|
|
'Stack trace:\n$stackTrace'
|
|
);
|
|
}
|
|
}
|
|
|
|
/// Use custom equality to ignore [StackFrame.source], which is not important
|
|
/// for the purposes of this test.
|
|
class StackFrameEquality implements Equality<StackFrame> {
|
|
@override
|
|
bool equals(StackFrame e1, StackFrame e2) {
|
|
return e1.number == e2.number &&
|
|
e1.packageScheme == e2.packageScheme &&
|
|
e1.package == e2.package &&
|
|
e1.packagePath == e2.packagePath &&
|
|
e1.line == e2.line &&
|
|
e1.column == e2.column &&
|
|
e1.className == e2.className &&
|
|
e1.method == e2.method;
|
|
}
|
|
|
|
@override
|
|
int hash(StackFrame e) {
|
|
return Object.hash(e.number, e.packageScheme, e.package, e.packagePath, e.line, e.column, e.className, e.method);
|
|
}
|
|
|
|
@override
|
|
bool isValidKey(Object? o) => o is StackFrame;
|
|
}
|