mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
104 lines
2.5 KiB
Dart
104 lines
2.5 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:convert' show jsonDecode;
|
|
|
|
// JSON Event samples taken from running an instrumented version of the
|
|
// integration tests of this package that dumped all the data as captured.
|
|
|
|
/// To test isBeginFrame. (Sampled from Chrome 89+)
|
|
final Map<String, Object?> beginMainFrameJson_89plus = jsonDecode('''
|
|
{
|
|
"args": {
|
|
"frameTime": 2338687248768
|
|
},
|
|
"cat": "blink",
|
|
"dur": 6836,
|
|
"name": "WebFrameWidgetImpl::BeginMainFrame",
|
|
"ph": "X",
|
|
"pid": 1367081,
|
|
"tdur": 393,
|
|
"tid": 1,
|
|
"ts": 2338687258440,
|
|
"tts": 375499
|
|
}
|
|
''') as Map<String, Object?>;
|
|
|
|
/// To test isUpdateAllLifecyclePhases. (Sampled from Chrome 89+)
|
|
final Map<String, Object?> updateLifecycleJson_89plus = jsonDecode('''
|
|
{
|
|
"args": {},
|
|
"cat": "blink",
|
|
"dur": 103,
|
|
"name": "WebFrameWidgetImpl::UpdateLifecycle",
|
|
"ph": "X",
|
|
"pid": 1367081,
|
|
"tdur": 102,
|
|
"tid": 1,
|
|
"ts": 2338687265284,
|
|
"tts": 375900
|
|
}
|
|
''') as Map<String, Object?>;
|
|
|
|
/// To test isBeginMeasuredFrame. (Sampled from Chrome 89+)
|
|
final Map<String, Object?> beginMeasuredFrameJson_89plus = jsonDecode('''
|
|
{
|
|
"args": {},
|
|
"cat": "blink.user_timing",
|
|
"id": "0xea2a8b45",
|
|
"name": "measured_frame",
|
|
"ph": "b",
|
|
"pid": 1367081,
|
|
"scope": "blink.user_timing",
|
|
"tid": 1,
|
|
"ts": 2338687265932
|
|
}
|
|
''') as Map<String, Object?>;
|
|
|
|
/// To test isEndMeasuredFrame. (Sampled from Chrome 89+)
|
|
final Map<String, Object?> endMeasuredFrameJson_89plus = jsonDecode('''
|
|
{
|
|
"args": {},
|
|
"cat": "blink.user_timing",
|
|
"id": "0xea2a8b45",
|
|
"name": "measured_frame",
|
|
"ph": "e",
|
|
"pid": 1367081,
|
|
"scope": "blink.user_timing",
|
|
"tid": 1,
|
|
"ts": 2338687440485
|
|
}
|
|
''') as Map<String, Object?>;
|
|
|
|
/// An unrelated data frame to test negative cases.
|
|
final Map<String, Object?> unrelatedPhXJson = jsonDecode('''
|
|
{
|
|
"args": {},
|
|
"cat": "blink,rail",
|
|
"dur": 2,
|
|
"name": "PageAnimator::serviceScriptedAnimations",
|
|
"ph": "X",
|
|
"pid": 1367081,
|
|
"tdur": 2,
|
|
"tid": 1,
|
|
"ts": 2338691143317,
|
|
"tts": 1685405
|
|
}
|
|
''') as Map<String, Object?>;
|
|
|
|
/// Another unrelated data frame to test negative cases.
|
|
final Map<String, Object?> anotherUnrelatedJson = jsonDecode('''
|
|
{
|
|
"args": {
|
|
"sort_index": -1
|
|
},
|
|
"cat": "__metadata",
|
|
"name": "thread_sort_index",
|
|
"ph": "M",
|
|
"pid": 1367081,
|
|
"tid": 1,
|
|
"ts": 2338692906482
|
|
}
|
|
''') as Map<String, Object?>;
|