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

This will catch issues like https://github.com/flutter/flutter/issues/44252, and this test is inspired by the `list_demo` sample app in https://github.com/flutter/flutter/issues/43083#issue-509586473 This is tested locally on a Moto G4 before and after the fix https://github.com/flutter/engine/pull/13710 The `average_frame_rasterizer_time_millis` of this test drops from ~5.4ms to ~4.9ms after that fix.
30 lines
964 B
Dart
30 lines
964 B
Dart
// Copyright 2019 The Chromium 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_driver/flutter_driver.dart';
|
|
import 'package:macrobenchmarks/common.dart';
|
|
|
|
import 'util.dart';
|
|
|
|
void main() {
|
|
macroPerfTest(
|
|
'picture_cache_perf',
|
|
kPictureCacheRouteName,
|
|
pageDelay: const Duration(seconds: 1),
|
|
driverOps: (FlutterDriver driver) async {
|
|
final SerializableFinder nestedScroll = find.byValueKey('nested-scroll');
|
|
Future<void> _scrollOnce(double offset) async {
|
|
await driver.scroll(nestedScroll, offset, 0.0, const Duration(milliseconds: 300));
|
|
await Future<void>.delayed(const Duration(milliseconds: 500));
|
|
}
|
|
for (int i = 0; i < 3; i += 1) {
|
|
await _scrollOnce(-300.0);
|
|
await _scrollOnce(-300.0);
|
|
await _scrollOnce(300.0);
|
|
await _scrollOnce(300.0);
|
|
}
|
|
},
|
|
);
|
|
}
|