mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
65 lines
2.3 KiB
Dart
65 lines
2.3 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:async';
|
|
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter/rendering.dart';
|
|
import 'package:stocks/main.dart' as stocks;
|
|
import 'package:stocks/stock_data.dart' as stock_data;
|
|
|
|
import '../common.dart';
|
|
|
|
const Duration kBenchmarkTime = Duration(seconds: 15);
|
|
|
|
Future<void> main() async {
|
|
assert(false, "Don't run benchmarks in checked mode! Use 'flutter run --release'.");
|
|
stock_data.StockData.actuallyFetchData = false;
|
|
|
|
// We control the framePolicy below to prevent us from scheduling frames in
|
|
// the engine, so that the engine does not interfere with our timings.
|
|
final LiveTestWidgetsFlutterBinding binding = TestWidgetsFlutterBinding.ensureInitialized() as LiveTestWidgetsFlutterBinding;
|
|
|
|
final Stopwatch watch = Stopwatch();
|
|
int iterations = 0;
|
|
|
|
await benchmarkWidgets((WidgetTester tester) async {
|
|
stocks.main();
|
|
await tester.pump(); // Start startup animation
|
|
await tester.pump(const Duration(seconds: 1)); // Complete startup animation
|
|
await tester.tapAt(const Offset(20.0, 40.0)); // Open drawer
|
|
await tester.pump(); // Start drawer animation
|
|
await tester.pump(const Duration(seconds: 1)); // Complete drawer animation
|
|
|
|
final TestViewConfiguration big = TestViewConfiguration(
|
|
size: const Size(360.0, 640.0),
|
|
window: RendererBinding.instance.window,
|
|
);
|
|
final TestViewConfiguration small = TestViewConfiguration(
|
|
size: const Size(355.0, 635.0),
|
|
window: RendererBinding.instance.window,
|
|
);
|
|
final RenderView renderView = WidgetsBinding.instance.renderView;
|
|
binding.framePolicy = LiveTestWidgetsFlutterBindingFramePolicy.benchmark;
|
|
|
|
watch.start();
|
|
while (watch.elapsed < kBenchmarkTime) {
|
|
renderView.configuration = iterations.isEven ? big : small;
|
|
await tester.pumpBenchmark(Duration(milliseconds: iterations * 16));
|
|
iterations += 1;
|
|
}
|
|
watch.stop();
|
|
});
|
|
|
|
final BenchmarkResultPrinter printer = BenchmarkResultPrinter();
|
|
printer.addResult(
|
|
description: 'Stock layout',
|
|
value: watch.elapsedMicroseconds / iterations,
|
|
unit: 'µs per iteration',
|
|
name: 'stock_layout_iteration',
|
|
);
|
|
printer.printToStdout();
|
|
}
|