timeline_summary_test.dart 7.94 KB
Newer Older
1 2 3 4 5 6 7 8
// 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:convert' show JSON;

import 'package:test/test.dart';
import 'package:flutter_driver/src/common.dart';
9
import 'package:flutter_driver/flutter_driver.dart';
10 11 12 13 14

void main() {
  group('TimelineSummary', () {

    TimelineSummary summarize(List<Map<String, dynamic>> testEvents) {
15
      return new TimelineSummary.summarize(new Timeline.fromJson(<String, dynamic>{
16
        'traceEvents': testEvents,
17
      }));
18 19
    }

20
    Map<String, dynamic> build(int timeStamp, int duration) => <String, dynamic>{
21
      'name': 'Frame', 'ph': 'X', 'ts': timeStamp, 'dur': duration
22 23
    };

24 25 26 27 28 29 30 31
    Map<String, dynamic> begin(int timeStamp) => <String, dynamic>{
      'name': 'GPURasterizer::Draw', 'ph': 'B', 'ts': timeStamp
    };

    Map<String, dynamic> end(int timeStamp) => <String, dynamic>{
      'name': 'GPURasterizer::Draw', 'ph': 'E', 'ts': timeStamp
    };

32 33 34
    group('frame_count', () {
      test('counts frames', () {
        expect(
pq's avatar
pq committed
35
          summarize(<Map<String, dynamic>>[
36 37
            build(1000, 1000),
            build(3000, 2000),
38 39 40 41 42 43 44 45
          ]).countFrames(),
          2
        );
      });
    });

    group('average_frame_build_time_millis', () {
      test('returns null when there is no data', () {
pq's avatar
pq committed
46
        expect(summarize(<Map<String, dynamic>>[]).computeAverageFrameBuildTimeMillis(), isNull);
47 48 49 50
      });

      test('computes average frame build time in milliseconds', () {
        expect(
pq's avatar
pq committed
51
          summarize(<Map<String, dynamic>>[
52 53
            build(1000, 1000),
            build(3000, 2000),
54 55 56 57
          ]).computeAverageFrameBuildTimeMillis(),
          1.5
        );
      });
58 59 60 61
    });

    group('worst_frame_build_time_millis', () {
      test('returns null when there is no data', () {
pq's avatar
pq committed
62
        expect(summarize(<Map<String, dynamic>>[]).computeWorstFrameBuildTimeMillis(), isNull);
63 64 65 66
      });

      test('computes worst frame build time in milliseconds', () {
        expect(
pq's avatar
pq committed
67
          summarize(<Map<String, dynamic>>[
68 69
            build(1000, 1000),
            build(3000, 2000),
70 71 72 73
          ]).computeWorstFrameBuildTimeMillis(),
          2.0
        );
        expect(
pq's avatar
pq committed
74
          summarize(<Map<String, dynamic>>[
75 76
            build(3000, 2000),
            build(1000, 1000),
77 78
          ]).computeWorstFrameBuildTimeMillis(),
          2.0
79 80 81 82 83 84
        );
      });
    });

    group('computeMissedFrameBuildBudgetCount', () {
      test('computes the number of missed build budgets', () {
pq's avatar
pq committed
85
        TimelineSummary summary = summarize(<Map<String, dynamic>>[
86 87 88
          build(1000, 9000),
          build(11000, 1000),
          build(13000, 10000),
89 90 91 92 93 94 95
        ]);

        expect(summary.countFrames(), 3);
        expect(summary.computeMissedFrameBuildBudgetCount(), 2);
      });
    });

96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
    group('average_frame_rasterizer_time_millis', () {
      test('returns null when there is no data', () {
        expect(summarize(<Map<String, dynamic>>[]).computeAverageFrameRasterizerTimeMillis(), isNull);
      });

      test('computes average frame rasterizer time in milliseconds', () {
        expect(
            summarize(<Map<String, dynamic>>[
              begin(1000), end(2000),
              begin(3000), end(5000),
            ]).computeAverageFrameRasterizerTimeMillis(),
            1.5
        );
      });

      test('skips leading "end" events', () {
        expect(
            summarize(<Map<String, dynamic>>[
              end(1000),
              begin(2000), end(4000),
            ]).computeAverageFrameRasterizerTimeMillis(),
            2.0
        );
      });

      test('skips trailing "begin" events', () {
        expect(
            summarize(<Map<String, dynamic>>[
              begin(2000), end(4000),
              begin(5000),
            ]).computeAverageFrameRasterizerTimeMillis(),
            2.0
        );
      });
    });

    group('worst_frame_rasterizer_time_millis', () {
      test('returns null when there is no data', () {
        expect(summarize(<Map<String, dynamic>>[]).computeWorstFrameRasterizerTimeMillis(), isNull);
      });

      test('computes worst frame rasterizer time in milliseconds', () {
        expect(
            summarize(<Map<String, dynamic>>[
              begin(1000), end(2000),
              begin(3000), end(5000),
            ]).computeWorstFrameRasterizerTimeMillis(),
            2.0
        );
        expect(
            summarize(<Map<String, dynamic>>[
              begin(3000), end(5000),
              begin(1000), end(2000),
            ]).computeWorstFrameRasterizerTimeMillis(),
            2.0
        );
      });

      test('skips leading "end" events', () {
        expect(
            summarize(<Map<String, dynamic>>[
              end(1000),
              begin(2000), end(4000),
            ]).computeWorstFrameRasterizerTimeMillis(),
            2.0
        );
      });

      test('skips trailing "begin" events', () {
        expect(
            summarize(<Map<String, dynamic>>[
              begin(2000), end(4000),
              begin(5000),
            ]).computeWorstFrameRasterizerTimeMillis(),
            2.0
        );
      });
    });

    group('computeMissedFrameRasterizerBudgetCount', () {
      test('computes the number of missed rasterizer budgets', () {
        TimelineSummary summary = summarize(<Map<String, dynamic>>[
          begin(1000), end(10000),
          begin(11000), end(12000),
          begin(13000), end(23000),
        ]);

        expect(summary.computeMissedFrameRasterizerBudgetCount(), 2);
      });
    });

187 188 189
    group('summaryJson', () {
      test('computes and returns summary as JSON', () {
        expect(
pq's avatar
pq committed
190
          summarize(<Map<String, dynamic>>[
191 192 193 194 195 196
            begin(1000), end(11000),
            begin(11000), end(13000),
            begin(13000), end(25000),
            build(1000, 9000),
            build(11000, 1000),
            build(13000, 11000),
197
          ]).summaryJson,
pq's avatar
pq committed
198
          <String, dynamic>{
199
            'average_frame_build_time_millis': 7.0,
200
            'worst_frame_build_time_millis': 11.0,
201
            'missed_frame_build_budget_count': 2,
202 203 204
            'average_frame_rasterizer_time_millis': 8.0,
            'worst_frame_rasterizer_time_millis': 12.0,
            'missed_frame_rasterizer_budget_count': 2,
205
            'frame_count': 3,
206
            'frame_build_times': <int>[9000, 1000, 11000],
207
            'frame_rasterizer_times': <int>[10000, 2000, 12000],
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
          }
        );
      });
    });

    group('writeTimelineToFile', () {
      setUp(() {
        useMemoryFileSystemForTesting();
      });

      tearDown(() {
        restoreFileSystem();
      });

      test('writes timeline to JSON file', () async {
pq's avatar
pq committed
223
        await summarize(<Map<String, String>>[<String, String>{'foo': 'bar'}])
224 225 226 227 228 229 230
          .writeTimelineToFile('test', destinationDirectory: '/temp');
        String written =
            await fs.file('/temp/test.timeline.json').readAsString();
        expect(written, '{"traceEvents":[{"foo":"bar"}]}');
      });

      test('writes summary to JSON file', () async {
pq's avatar
pq committed
231
        await summarize(<Map<String, dynamic>>[
232 233 234 235 236 237
          begin(1000), end(11000),
          begin(11000), end(13000),
          begin(13000), end(25000),
          build(1000, 9000),
          build(11000, 1000),
          build(13000, 11000),
238 239 240
        ]).writeSummaryToFile('test', destinationDirectory: '/temp');
        String written =
            await fs.file('/temp/test.timeline_summary.json').readAsString();
pq's avatar
pq committed
241
        expect(JSON.decode(written), <String, dynamic>{
242
          'average_frame_build_time_millis': 7.0,
243
          'worst_frame_build_time_millis': 11.0,
244
          'missed_frame_build_budget_count': 2,
245 246 247
          'average_frame_rasterizer_time_millis': 8.0,
          'worst_frame_rasterizer_time_millis': 12.0,
          'missed_frame_rasterizer_budget_count': 2,
248
          'frame_count': 3,
249
          'frame_build_times': <int>[9000, 1000, 11000],
250
          'frame_rasterizer_times': <int>[10000, 2000, 12000],
251 252 253 254 255
        });
      });
    });
  });
}