mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
60 lines
2.4 KiB
Dart
60 lines
2.4 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 'package:args/command_runner.dart';
|
|
|
|
import '../framework/cocoon.dart';
|
|
import '../framework/metrics_center.dart';
|
|
|
|
class UploadResultsCommand extends Command<void> {
|
|
UploadResultsCommand() {
|
|
argParser.addOption('results-file', help: 'Test results JSON to upload to Cocoon.');
|
|
argParser.addOption(
|
|
'service-account-token-file',
|
|
help: 'Authentication token for uploading results.',
|
|
);
|
|
argParser.addOption('test-flaky', help: 'Flag to show whether the test is flaky: "True" or "False"');
|
|
argParser.addOption(
|
|
'git-branch',
|
|
help: '[Flutter infrastructure] Git branch of the current commit. LUCI\n'
|
|
'checkouts run in detached HEAD state, so the branch must be passed.',
|
|
);
|
|
argParser.addOption('luci-builder', help: '[Flutter infrastructure] Name of the LUCI builder being run on.');
|
|
argParser.addOption('test-status', help: 'Test status: Succeeded|Failed');
|
|
argParser.addOption('commit-time', help: 'Commit time in UNIX timestamp');
|
|
}
|
|
|
|
@override
|
|
String get name => 'upload-metrics';
|
|
|
|
@override
|
|
String get description => '[Flutter infrastructure] Upload results data to Cocoon';
|
|
|
|
@override
|
|
Future<void> run() async {
|
|
final String? resultsPath = argResults!['results-file'] as String?;
|
|
final String? serviceAccountTokenFile = argResults!['service-account-token-file'] as String?;
|
|
final String? testFlakyStatus = argResults!['test-flaky'] as String?;
|
|
final String? gitBranch = argResults!['git-branch'] as String?;
|
|
final String? builderName = argResults!['luci-builder'] as String?;
|
|
final String? testStatus = argResults!['test-status'] as String?;
|
|
final String? commitTime = argResults!['commit-time'] as String?;
|
|
|
|
// Upload metrics to skia perf from test runner when `resultsPath` is specified.
|
|
if (resultsPath != null) {
|
|
await uploadToSkiaPerf(resultsPath, commitTime);
|
|
print('Successfully uploaded metrics to skia perf');
|
|
}
|
|
|
|
final Cocoon cocoon = Cocoon(serviceAccountTokenPath: serviceAccountTokenFile);
|
|
return cocoon.sendTaskStatus(
|
|
resultsPath: resultsPath,
|
|
isTestFlaky: testFlakyStatus == 'True',
|
|
gitBranch: gitBranch,
|
|
builderName: builderName,
|
|
testStatus: testStatus,
|
|
);
|
|
}
|
|
}
|