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>
86 lines
2.7 KiB
Dart
86 lines
2.7 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 'package:flutter/cupertino.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:leak_tracker_flutter_testing/leak_tracker_flutter_testing.dart';
|
|
|
|
/// Objects that should not be GCed during test run.
|
|
final List<InstrumentedDisposable> _retainer = <InstrumentedDisposable>[];
|
|
|
|
/// Test cases for memory leaks.
|
|
///
|
|
/// They are separate from test execution to allow
|
|
/// excluding them from test helpers.
|
|
final List<LeakTestCase> memoryLeakTests = <LeakTestCase>[
|
|
LeakTestCase(
|
|
name: 'no leaks',
|
|
body: (PumpWidgetsCallback? pumpWidgets, RunAsyncCallback<dynamic>? runAsync) async {
|
|
await pumpWidgets!(Container());
|
|
},
|
|
),
|
|
LeakTestCase(
|
|
name: 'not disposed disposable',
|
|
body: (PumpWidgetsCallback? pumpWidgets, RunAsyncCallback<dynamic>? runAsync) async {
|
|
InstrumentedDisposable();
|
|
},
|
|
notDisposedTotal: 1,
|
|
),
|
|
LeakTestCase(
|
|
name: 'not GCed disposable',
|
|
body: (PumpWidgetsCallback? pumpWidgets, RunAsyncCallback<dynamic>? runAsync) async {
|
|
_retainer.add(InstrumentedDisposable()..dispose());
|
|
},
|
|
notGCedTotal: 1,
|
|
),
|
|
LeakTestCase(
|
|
name: 'leaking widget',
|
|
body: (PumpWidgetsCallback? pumpWidgets, RunAsyncCallback<dynamic>? runAsync) async {
|
|
StatelessLeakingWidget();
|
|
},
|
|
notDisposedTotal: 1,
|
|
notGCedTotal: 1,
|
|
),
|
|
LeakTestCase(
|
|
name: 'dispose in tear down',
|
|
body: (PumpWidgetsCallback? pumpWidgets, RunAsyncCallback<dynamic>? runAsync) async {
|
|
final InstrumentedDisposable myClass = InstrumentedDisposable();
|
|
addTearDown(myClass.dispose);
|
|
},
|
|
),
|
|
LeakTestCase(
|
|
name: 'pumped leaking widget',
|
|
body: (PumpWidgetsCallback? pumpWidgets, RunAsyncCallback<dynamic>? runAsync) async {
|
|
await pumpWidgets!(StatelessLeakingWidget());
|
|
},
|
|
notDisposedTotal: 1,
|
|
notGCedTotal: 1,
|
|
),
|
|
LeakTestCase(
|
|
name: 'leaking widget in runAsync',
|
|
body: (PumpWidgetsCallback? pumpWidgets, RunAsyncCallback<dynamic>? runAsync) async {
|
|
await runAsync!(() async {
|
|
StatelessLeakingWidget();
|
|
});
|
|
},
|
|
notDisposedTotal: 1,
|
|
notGCedTotal: 1,
|
|
),
|
|
LeakTestCase(
|
|
name: 'pumped in runAsync',
|
|
body: (PumpWidgetsCallback? pumpWidgets, RunAsyncCallback<dynamic>? runAsync) async {
|
|
await runAsync!(() async {
|
|
await pumpWidgets!(StatelessLeakingWidget());
|
|
});
|
|
},
|
|
notDisposedTotal: 1,
|
|
notGCedTotal: 1,
|
|
),
|
|
];
|
|
|
|
String memoryLeakTestsFilePath() {
|
|
return RegExp(r'(\/[^\/]*.dart):').firstMatch(StackTrace.current.toString())!.group(1).toString();
|
|
}
|