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

This auto-formats all *.dart files in the repository outside of the `engine` subdirectory and enforces that these files stay formatted with a presubmit check. **Reviewers:** Please carefully review all the commits except for the one titled "formatted". The "formatted" commit was auto-generated by running `dev/tools/format.sh -a -f`. The other commits were hand-crafted to prepare the repo for the formatting change. I recommend reviewing the commits one-by-one via the "Commits" tab and avoiding Github's "Files changed" tab as it will likely slow down your browser because of the size of this PR. --------- Co-authored-by: Kate Lovett <katelovett@google.com> Co-authored-by: LongCatIsLooong <31859944+LongCatIsLooong@users.noreply.github.com>
97 lines
2.4 KiB
Dart
97 lines
2.4 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:flutter/foundation.dart';
|
|
import 'package:flutter/widgets.dart';
|
|
import 'package:meta/dart2js.dart';
|
|
import 'package:web/web.dart' as web;
|
|
|
|
// Tests that the framework prints stack traces in all build modes.
|
|
//
|
|
// Regression test for https://github.com/flutter/flutter/issues/68616.
|
|
//
|
|
// See also `dev/integration_tests/web/lib/stack_trace.dart` that tests the
|
|
// framework's ability to parse stack traces in all build modes.
|
|
Future<void> main() async {
|
|
final StringBuffer errorMessage = StringBuffer();
|
|
debugPrint = (String? message, {int? wrapWidth}) {
|
|
errorMessage.writeln(message);
|
|
};
|
|
|
|
runApp(const ThrowingWidget());
|
|
|
|
// Let the framework flush error messages.
|
|
await Future<void>.delayed(Duration.zero);
|
|
|
|
final StringBuffer output = StringBuffer();
|
|
if (_errorMessageFormattedCorrectly(errorMessage.toString())) {
|
|
output.writeln('--- TEST SUCCEEDED ---');
|
|
} else {
|
|
output.writeln('--- UNEXPECTED ERROR MESSAGE FORMAT ---');
|
|
output.writeln(errorMessage);
|
|
output.writeln('--- TEST FAILED ---');
|
|
}
|
|
|
|
await web.window
|
|
.fetch('/test-result'.toJS, web.RequestInit(method: 'POST', body: '$output'.toJS))
|
|
.toDart;
|
|
print(output);
|
|
}
|
|
|
|
bool _errorMessageFormattedCorrectly(String errorMessage) {
|
|
if (!errorMessage.contains('Test error message')) {
|
|
return false;
|
|
}
|
|
|
|
// In release mode symbols are minified. No sense testing the contents of the stack trace.
|
|
if (kReleaseMode) {
|
|
return true;
|
|
}
|
|
|
|
const List<String> expectedFunctions = <String>[
|
|
'topLevelFunction',
|
|
'secondLevelFunction',
|
|
'thirdLevelFunction',
|
|
];
|
|
|
|
return expectedFunctions.every(errorMessage.contains);
|
|
}
|
|
|
|
class ThrowingWidget extends StatefulWidget {
|
|
const ThrowingWidget({super.key});
|
|
|
|
@override
|
|
State<ThrowingWidget> createState() => _ThrowingWidgetState();
|
|
}
|
|
|
|
class _ThrowingWidgetState extends State<ThrowingWidget> {
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
topLevelFunction();
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container();
|
|
}
|
|
}
|
|
|
|
@noInline
|
|
void topLevelFunction() {
|
|
secondLevelFunction();
|
|
}
|
|
|
|
@noInline
|
|
void secondLevelFunction() {
|
|
thirdLevelFunction();
|
|
}
|
|
|
|
@noInline
|
|
void thirdLevelFunction() {
|
|
throw Exception('Test error message');
|
|
}
|