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

Current numbers from my Nexus 5: "average_frame_build_time_millis": 22.6854, "missed_frame_build_budget_count": 15, "frame_count": 15 Filed https://github.com/flutter/flutter/issues/3296 @yjbanov @hansmuller @vlidholt
51 lines
1.6 KiB
Dart
51 lines
1.6 KiB
Dart
// Copyright 2016 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 'dart:async';
|
|
import 'package:flutter_driver/flutter_driver.dart';
|
|
import 'package:test/test.dart';
|
|
|
|
void main() {
|
|
group('scrolling performance test', () {
|
|
FlutterDriver driver;
|
|
|
|
setUpAll(() async {
|
|
driver = await FlutterDriver.connect();
|
|
});
|
|
|
|
tearDownAll(() async {
|
|
if (driver != null)
|
|
driver.close();
|
|
});
|
|
|
|
test('measure', () async {
|
|
Timeline timeline = await driver.traceAction(() async {
|
|
// Find the scrollable stock list
|
|
ObjectRef stockList = await driver.findByValueKey('Gallery List');
|
|
expect(stockList, isNotNull);
|
|
|
|
await driver.tap(await driver.findByText('Demos'));
|
|
await driver.tap(await driver.findByText('Components'));
|
|
await driver.tap(await driver.findByText('Style'));
|
|
|
|
// Scroll down
|
|
for (int i = 0; i < 5; i++) {
|
|
await driver.scroll(stockList, 0.0, -300.0, new Duration(milliseconds: 300));
|
|
await new Future<Null>.delayed(new Duration(milliseconds: 500));
|
|
}
|
|
|
|
// Scroll up
|
|
for (int i = 0; i < 5; i++) {
|
|
await driver.scroll(stockList, 0.0, 300.0, new Duration(milliseconds: 300));
|
|
await new Future<Null>.delayed(new Duration(milliseconds: 500));
|
|
}
|
|
});
|
|
|
|
TimelineSummary summary = new TimelineSummary.summarize(timeline);
|
|
summary.writeSummaryToFile('home_scroll_perf', pretty: true);
|
|
summary.writeTimelineToFile('home_scroll_perf', pretty: true);
|
|
});
|
|
});
|
|
}
|