test.dart 73.6 KB
Newer Older
Ian Hickson's avatar
Ian Hickson committed
1
// Copyright 2014 The Flutter Authors. All rights reserved.
2 3 4
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

5
import 'dart:async';
6
import 'dart:convert';
7
import 'dart:io';
8
import 'dart:math' as math;
Ian Hickson's avatar
Ian Hickson committed
9
import 'dart:typed_data';
10

Ian Hickson's avatar
Ian Hickson committed
11
import 'package:archive/archive.dart';
12 13
import 'package:file/file.dart' as fs;
import 'package:file/local.dart';
14
import 'package:path/path.dart' as path;
15

16
import 'browser.dart';
Dan Field's avatar
Dan Field committed
17
import 'flutter_compact_formatter.dart';
18
import 'run_command.dart';
19
import 'service_worker_test.dart';
20
import 'utils.dart';
21

22
typedef ShardRunner = Future<void> Function();
23

24 25 26 27 28 29
/// A function used to validate the output of a test.
///
/// If the output matches expectations, the function shall return null.
///
/// If the output does not match expectations, the function shall return an
/// appropriate error message.
30
typedef OutputChecker = String? Function(CommandResult);
31

32 33
final String exe = Platform.isWindows ? '.exe' : '';
final String bat = Platform.isWindows ? '.bat' : '';
34
final String flutterRoot = path.dirname(path.dirname(path.dirname(path.fromUri(Platform.script))));
35 36
final String flutter = path.join(flutterRoot, 'bin', 'flutter$bat');
final String dart = path.join(flutterRoot, 'bin', 'cache', 'dart-sdk', 'bin', 'dart$exe');
37
final String pubCache = path.join(flutterRoot, '.pub-cache');
38
final String toolRoot = path.join(flutterRoot, 'packages', 'flutter_tools');
39
final String engineVersionFile = path.join(flutterRoot, 'bin', 'internal', 'engine.version');
40
final String flutterPluginsVersionFile = path.join(flutterRoot, 'bin', 'internal', 'flutter_plugins.version');
41 42 43 44 45 46 47 48 49 50 51

String get platformFolderName {
  if (Platform.isWindows)
    return 'windows-x64';
  if (Platform.isMacOS)
    return 'darwin-x64';
  if (Platform.isLinux)
    return 'linux-x64';
  throw UnsupportedError('The platform ${Platform.operatingSystem} is not supported by this script.');
}
final String flutterTester = path.join(flutterRoot, 'bin', 'cache', 'artifacts', 'engine', platformFolderName, 'flutter_tester$exe');
52 53 54

/// The arguments to pass to `flutter test` (typically the local engine
/// configuration) -- prefilled with the arguments passed to test.dart.
55
final List<String> flutterTestArgs = <String>[];
56

57 58 59 60
/// Environment variables to override the local engine when running `pub test`,
/// if such flags are provided to `test.dart`.
final Map<String,String> localEngineEnv = <String, String>{};

61
final bool useFlutterTestFormatter = Platform.environment['FLUTTER_TEST_FORMATTER'] == 'true';
62

63 64 65
const String kShardKey = 'SHARD';
const String kSubshardKey = 'SUBSHARD';

66 67
/// The number of Cirrus jobs that run Web tests in parallel.
///
68 69 70
/// The default is 8 shards. Typically .cirrus.yml would define the
/// WEB_SHARD_COUNT environment variable rather than relying on the default.
///
71 72 73 74
/// WARNING: if you change this number, also change .cirrus.yml
/// and make sure it runs _all_ shards.
///
/// The last shard also runs the Web plugin tests.
75
int get webShardCount => Platform.environment.containsKey('WEB_SHARD_COUNT')
76
  ? int.parse(Platform.environment['WEB_SHARD_COUNT']!)
77
  : 8;
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94

/// Tests that we don't run on Web.
///
/// In general avoid adding new tests here. If a test cannot run on the web
/// because it fails at runtime, such as when a piece of functionality is not
/// implemented or not implementable on the web, prefer using `skip` in the
/// test code. Only add tests here that cannot be skipped using `skip`. For
/// example:
///
///  * Test code cannot be compiled because it uses Dart VM-specific
///    functionality. In this case `skip` doesn't help because the code cannot
///    reach the point where it can even run the skipping logic.
///  * Migrations. It is OK to put tests here that need to be temporarily
///    disabled in certain modes because of some migration or initial bringup.
///
/// The key in the map is the renderer type that the list applies to. The value
/// is the list of tests known to fail for that renderer.
95
//
96
// TODO(yjbanov): we're getting rid of this as part of https://github.com/flutter/flutter/projects/60
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
const Map<String, List<String>> kWebTestFileKnownFailures = <String, List<String>>{
  'html': <String>[
    // These tests are not compilable on the web due to dependencies on
    // VM-specific functionality.
    'test/services/message_codecs_vm_test.dart',
    'test/examples/sector_layout_test.dart',
  ],
  'canvaskit': <String>[
    // These tests are not compilable on the web due to dependencies on
    // VM-specific functionality.
    'test/services/message_codecs_vm_test.dart',
    'test/examples/sector_layout_test.dart',

    // These tests are broken and need to be fixed.
    // TODO(yjbanov): https://github.com/flutter/flutter/issues/71604
    'test/painting/decoration_test.dart',
    'test/material/text_selection_theme_test.dart',
    'test/material/date_picker_test.dart',
    'test/rendering/layers_test.dart',
    'test/painting/text_style_test.dart',
    'test/widgets/image_test.dart',
    'test/cupertino/colors_test.dart',
    'test/cupertino/slider_test.dart',
    'test/material/text_field_test.dart',
    'test/rendering/proxy_box_test.dart',
    'test/widgets/app_overrides_test.dart',
    'test/material/calendar_date_picker_test.dart',
    'test/material/ink_paint_test.dart',
    'test/rendering/editable_test.dart',
    'test/cupertino/dialog_test.dart',
    'test/widgets/shape_decoration_test.dart',
    'test/material/time_picker_theme_test.dart',
    'test/cupertino/picker_test.dart',
    'test/material/chip_theme_test.dart',
    'test/cupertino/nav_bar_test.dart',
    'test/widgets/performance_overlay_test.dart',
    'test/widgets/html_element_view_test.dart',
    'test/cupertino/scaffold_test.dart',
    'test/rendering/platform_view_test.dart',
136
    'test/cupertino/context_menu_action_test.dart',
137 138
  ],
};
139

140
const String kTestHarnessShardName = 'test_harness_tests';
141
const List<String> _kAllBuildModes = <String>['debug', 'profile', 'release'];
142

143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
// The seed used to shuffle tests.  If not passed with
// --test-randomize-ordering-seed=<seed> on the command line, it will be set the
// first time it is accessed. Pass zero to turn off shuffling.
String? _shuffleSeed;
String get shuffleSeed {
  if (_shuffleSeed == null) {
    // Change the seed at 7am, UTC.
    final DateTime seedTime = DateTime.now().toUtc().subtract(const Duration(hours: 7));
    // Generates YYYYMMDD as the seed, so that testing continues to fail for a
    // day after the seed changes, and on other days the seed can be used to
    // replicate failures.
    _shuffleSeed = '${seedTime.year * 10000 + seedTime.month * 100 + seedTime.day}';
  }
  return _shuffleSeed!;
}

159
/// When you call this, you can pass additional arguments to pass custom
160
/// arguments to flutter test. For example, you might want to call this
161
/// script with the parameter --local-engine=host_debug_unopt to
162
/// use your own build of the engine.
163
///
164
/// To run the tool_tests part, run it with SHARD=tool_tests
165
///
166
/// Examples:
167
/// SHARD=tool_tests bin/cache/dart-sdk/bin/dart dev/bots/test.dart
168
/// bin/cache/dart-sdk/bin/dart dev/bots/test.dart --local-engine=host_debug_unopt
169
Future<void> main(List<String> args) async {
170 171 172
  print('$clock STARTING ANALYSIS');
  try {
    flutterTestArgs.addAll(args);
173
    final Set<String> removeArgs = <String>{};
174
    for (final String arg in args) {
175
      if (arg.startsWith('--local-engine=')) {
176
        localEngineEnv['FLUTTER_LOCAL_ENGINE'] = arg.substring('--local-engine='.length);
177 178
      }
      if (arg.startsWith('--local-engine-src-path=')) {
179
        localEngineEnv['FLUTTER_LOCAL_ENGINE_SRC_PATH'] = arg.substring('--local-engine-src-path='.length);
180 181 182 183 184
      }
      if (arg.startsWith('--test-randomize-ordering-seed=')) {
        _shuffleSeed = arg.substring('--test-randomize-ordering-seed='.length);
        removeArgs.add(arg);
      }
185
      if (arg == '--no-smoke-tests') {
186
        // This flag is deprecated, ignore it.
187 188
        removeArgs.add(arg);
      }
189
    }
190
    flutterTestArgs.removeWhere((String arg) => removeArgs.contains(arg));
191 192 193
    if (Platform.environment.containsKey(CIRRUS_TASK_NAME))
      print('Running task: ${Platform.environment[CIRRUS_TASK_NAME]}');
    print('═' * 80);
194
    await selectShard(<String, ShardRunner>{
195
      'add_to_app_life_cycle_tests': _runAddToAppLifeCycleTests,
196 197 198 199
      'build_tests': _runBuildTests,
      'framework_coverage': _runFrameworkCoverage,
      'framework_tests': _runFrameworkTests,
      'tool_tests': _runToolTests,
200 201
      // web_tool_tests is also used by HHH: https://dart.googlesource.com/recipes/+/refs/heads/master/recipes/dart/flutter_engine.py
      'web_tool_tests': _runWebToolTests,
202
      'tool_integration_tests': _runIntegrationToolTests,
203 204 205 206
      // All the unit/widget tests run using `flutter test --platform=chrome --web-renderer=html`
      'web_tests': _runWebHtmlUnitTests,
      // All the unit/widget tests run using `flutter test --platform=chrome --web-renderer=canvaskit`
      'web_canvaskit_tests': _runWebCanvasKitUnitTests,
207
      // All web integration tests
208
      'web_long_running_tests': _runWebLongRunningTests,
209
      'flutter_plugins': _runFlutterPluginsTests,
210
      'skp_generator': _runSkpGeneratorTests,
211
      kTestHarnessShardName: _runTestHarnessTests, // Used for testing this script.
212 213 214 215 216
    });
  } on ExitException catch (error) {
    error.apply();
  }
  print('$clock ${bold}Test successful.$reset');
217 218
}

219 220 221
final String _luciBotId = Platform.environment['SWARMING_BOT_ID'] ?? '';
final bool _runningInDartHHHBot = _luciBotId.startsWith('luci-dart-');

222 223 224
/// Verify the Flutter Engine is the revision in
/// bin/cache/internal/engine.version.
Future<void> _validateEngineHash() async {
225
  if (_runningInDartHHHBot) {
226 227 228 229 230
    // The Dart HHH bots intentionally modify the local artifact cache
    // and then use this script to run Flutter's test suites.
    // Because the artifacts have been changed, this particular test will return
    // a false positive and should be skipped.
    print('${yellow}Skipping Flutter Engine Version Validation for swarming '
231
          'bot $_luciBotId.');
232 233 234
    return;
  }
  final String expectedVersion = File(engineVersionFile).readAsStringSync().trim();
235
  final CommandResult result = await runCommand(flutterTester, <String>['--help'], outputMode: OutputMode.capture);
236
  final String actualVersion = result.flattenedStderr!.split('\n').firstWhere((final String line) {
237 238 239 240 241 242 243 244 245
    return line.startsWith('Flutter Engine Version:');
  });
  if (!actualVersion.contains(expectedVersion)) {
    print('${red}Expected "Flutter Engine Version: $expectedVersion", '
          'but found "$actualVersion".');
    exit(1);
  }
}

246 247
Future<void> _runTestHarnessTests() async {
  print('${green}Running test harness tests...$reset');
248 249 250

  await _validateEngineHash();

251 252
  // Verify that the tests actually return failure on failure and success on
  // success.
253
  final String automatedTests = path.join(flutterRoot, 'dev', 'automated_tests');
254

255
  // We want to run these tests in parallel, because they each take some time
256 257 258
  // to run (e.g. compiling), so we don't want to run them in series, especially
  // on 20-core machines. However, we have a race condition, so for now...
  // Race condition issue: https://github.com/flutter/flutter/issues/90026
259 260
  final List<ShardRunner> tests = <ShardRunner>[
    () => _runFlutterTest(
261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294
      automatedTests,
      script: path.join('test_smoke_test', 'pass_test.dart'),
      printOutput: false,
    ),
    () => _runFlutterTest(
      automatedTests,
      script: path.join('test_smoke_test', 'fail_test.dart'),
      expectFailure: true,
      printOutput: false,
    ),
    () => _runFlutterTest(
      automatedTests,
      script: path.join('test_smoke_test', 'pending_timer_fail_test.dart'),
      expectFailure: true,
      printOutput: false,
      outputChecker: (CommandResult result) {
        return result.flattenedStdout!.contains('failingPendingTimerTest')
          ? null
          : 'Failed to find the stack trace for the pending Timer.\n\n'
            'stdout:\n${result.flattenedStdout}\n\n'
            'stderr:\n${result.flattenedStderr}';
    }),
    () => _runFlutterTest(
      automatedTests,
      script: path.join('test_smoke_test', 'crash1_test.dart'),
      expectFailure: true,
      printOutput: false,
    ),
    () => _runFlutterTest(
      automatedTests,
      script: path.join('test_smoke_test', 'crash2_test.dart'),
      expectFailure: true,
      printOutput: false,
    ),
295
    () => _runFlutterTest(
296 297 298 299 300
      automatedTests,
      script: path.join('test_smoke_test', 'syntax_error_test.broken_dart'),
      expectFailure: true,
      printOutput: false,
    ),
301
    () => _runFlutterTest(
302 303 304 305 306
      automatedTests,
      script: path.join('test_smoke_test', 'missing_import_test.broken_dart'),
      expectFailure: true,
      printOutput: false,
    ),
307
    () => _runFlutterTest(
308 309 310 311 312
      automatedTests,
      script: path.join('test_smoke_test', 'disallow_error_reporter_modification_test.dart'),
      expectFailure: true,
      printOutput: false,
    ),
313 314 315 316
  ];

  List<ShardRunner> testsToRun;

317
  // Run all tests unless sharding is explicitly specified.
318
  final String? shardName = Platform.environment[kShardKey];
319
  if (shardName == kTestHarnessShardName) {
320 321 322 323 324 325 326
    testsToRun = _selectIndexOfTotalSubshard<ShardRunner>(tests);
  } else {
    testsToRun = tests;
  }
  for (final ShardRunner test in testsToRun) {
    await test();
  }
327

328
  // Verify that we correctly generated the version file.
329
  final String? versionError = await verifyVersion(File(path.join(flutterRoot, 'version')));
330 331
  if (versionError != null)
    exitWithError(<String>[versionError]);
332 333
}

334
Future<void> _runGeneralToolTests() async {
335
  await _dartRunTest(
336 337 338 339
    path.join(flutterRoot, 'packages', 'flutter_tools'),
    testPaths: <String>[path.join('test', 'general.shard')],
    enableFlutterToolAsserts: false,
    // Detect unit test time regressions (poor time delay handling, etc).
340 341
    // This overrides the 15 minute default for tools tests.
    // See the README.md and dart_test.yaml files in the flutter_tools package.
342 343 344 345 346
    perTestTimeout: const Duration(seconds: 2),
  );
}

Future<void> _runCommandsToolTests() async {
347
  await _dartRunTest(
348 349
    path.join(flutterRoot, 'packages', 'flutter_tools'),
    forceSingleCore: true,
350
    testPaths: <String>[path.join('test', 'commands.shard')],
351 352 353
  );
}

354
Future<void> _runWebToolTests() async {
355
  await _dartRunTest(
356 357 358
    path.join(flutterRoot, 'packages', 'flutter_tools'),
    forceSingleCore: true,
    testPaths: <String>[path.join('test', 'web.shard')],
359
    includeLocalEngineEnv: true,
360 361 362
  );
}

363 364 365 366 367 368 369
Future<void> _runIntegrationToolTests() async {
  final String toolsPath = path.join(flutterRoot, 'packages', 'flutter_tools');
  final List<String> allTests = Directory(path.join(toolsPath, 'test', 'integration.shard'))
      .listSync(recursive: true).whereType<File>()
      .map<String>((FileSystemEntity entry) => path.relative(entry.path, from: toolsPath))
      .where((String testPath) => path.basename(testPath).endsWith('_test.dart')).toList();

370
  await _dartRunTest(
371 372 373 374 375 376
    toolsPath,
    forceSingleCore: true,
    testPaths: _selectIndexOfTotalSubshard<String>(allTests),
  );
}

377
Future<void> _runToolTests() async {
378 379 380 381
  await selectSubshard(<String, ShardRunner>{
    'general': _runGeneralToolTests,
    'commands': _runCommandsToolTests,
  });
382 383
}

384 385
Future<void> runForbiddenFromReleaseTests() async {
  // Build a release APK to get the snapshot json.
386
  final Directory tempDirectory = Directory.systemTemp.createTempSync('flutter_forbidden_imports.');
387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424
  final List<String> command = <String>[
    'build',
    'apk',
    '--target-platform',
    'android-arm64',
    '--release',
    '--analyze-size',
    '--code-size-directory',
    tempDirectory.path,
    '-v',
  ];

  await runCommand(
    flutter,
    command,
    workingDirectory: path.join(flutterRoot, 'examples', 'hello_world'),
  );

  // First, a smoke test.
  final List<String> smokeTestArgs = <String>[
    path.join(flutterRoot, 'dev', 'forbidden_from_release_tests', 'bin', 'main.dart'),
    '--snapshot', path.join(tempDirectory.path, 'snapshot.arm64-v8a.json'),
    '--package-config', path.join(flutterRoot, 'examples', 'hello_world', '.dart_tool', 'package_config.json'),
    '--forbidden-type', 'package:flutter/src/widgets/framework.dart::Widget',
  ];
  await runCommand(
    dart,
    smokeTestArgs,
    workingDirectory: flutterRoot,
    expectNonZeroExit: true,
  );

  // Actual test.
  final List<String> args = <String>[
    path.join(flutterRoot, 'dev', 'forbidden_from_release_tests', 'bin', 'main.dart'),
    '--snapshot', path.join(tempDirectory.path, 'snapshot.arm64-v8a.json'),
    '--package-config', path.join(flutterRoot, 'examples', 'hello_world', '.dart_tool', 'package_config.json'),
    '--forbidden-type', 'package:flutter/src/widgets/widget_inspector.dart::WidgetInspectorService',
425 426
    '--forbidden-type', 'package:flutter/src/widgets/framework.dart::DebugCreator',
    '--forbidden-type', 'package:flutter/src/foundation/print.dart::debugPrint',
427 428 429 430 431 432 433 434
  ];
  await runCommand(
    dart,
    args,
    workingDirectory: flutterRoot,
  );
}

435 436 437 438 439
/// Verifies that APK, and IPA (if on macOS), and native desktop builds the
/// examples apps without crashing. It does not actually launch the apps. That
/// happens later in the devicelab. This is just a smoke-test. In particular,
/// this will verify we can build when there are spaces in the path name for the
/// Flutter SDK and target app.
440 441
///
/// Also does some checking about types included in hello_world.
442
Future<void> _runBuildTests() async {
443 444 445
  final List<Directory> exampleDirectories = Directory(path.join(flutterRoot, 'examples')).listSync()
    // API example builds will be tested in a separate shard.
    .where((FileSystemEntity entity) => entity is Directory && path.basename(entity.path) != 'api').cast<Directory>().toList()
446
    ..add(Directory(path.join(flutterRoot, 'packages', 'integration_test', 'example')))
447 448 449 450 451 452
    ..add(Directory(path.join(flutterRoot, 'dev', 'integration_tests', 'android_semantics_testing')))
    ..add(Directory(path.join(flutterRoot, 'dev', 'integration_tests', 'android_views')))
    ..add(Directory(path.join(flutterRoot, 'dev', 'integration_tests', 'channels')))
    ..add(Directory(path.join(flutterRoot, 'dev', 'integration_tests', 'hybrid_android_views')))
    ..add(Directory(path.join(flutterRoot, 'dev', 'integration_tests', 'flutter_gallery')))
    ..add(Directory(path.join(flutterRoot, 'dev', 'integration_tests', 'ios_platform_view_tests')))
453
    ..add(Directory(path.join(flutterRoot, 'dev', 'integration_tests', 'non_nullable')))
454
    ..add(Directory(path.join(flutterRoot, 'dev', 'integration_tests', 'ui')));
455

456 457 458
  // The tests are randomly distributed into subshards so as to get a uniform
  // distribution of costs, but the seed is fixed so that issues are reproducible.
  final List<ShardRunner> tests = <ShardRunner>[
459
    for (final Directory exampleDirectory in exampleDirectories)
460 461 462 463 464 465 466 467 468 469 470 471 472
      () => _runExampleProjectBuildTests(exampleDirectory),
    ...<ShardRunner>[
      // Web compilation tests.
      () => _flutterBuildDart2js(
            path.join('dev', 'integration_tests', 'web'),
            path.join('lib', 'main.dart'),
          ),
      // Should not fail to compile with dart:io.
      () => _flutterBuildDart2js(
            path.join('dev', 'integration_tests', 'web_compile_tests'),
            path.join('lib', 'dart_io_import.dart'),
          ),
    ],
473
    runForbiddenFromReleaseTests,
474 475
  ]..shuffle(math.Random(0));

476
  await _runShardRunnerIndexOfTotalSubshard(tests);
477 478
}

479
Future<void> _runExampleProjectBuildTests(Directory exampleDirectory, [File? mainFile]) async {
480 481
  // Only verify caching with flutter gallery.
  final bool verifyCaching = exampleDirectory.path.contains('flutter_gallery');
482
  final String examplePath = path.relative(exampleDirectory.path, from: Directory.current.path);
483
  final bool hasNullSafety = File(path.join(examplePath, 'null_safety')).existsSync();
484 485 486 487
  final List<String> additionalArgs = <String>[
    if (hasNullSafety) '--no-sound-null-safety',
    if (mainFile != null) path.relative(mainFile.path, from: exampleDirectory.absolute.path),
  ];
488 489 490 491 492 493 494 495 496 497 498 499 500
  if (Directory(path.join(examplePath, 'android')).existsSync()) {
    await _flutterBuildApk(examplePath, release: false, additionalArgs: additionalArgs, verifyCaching: verifyCaching);
    await _flutterBuildApk(examplePath, release: true, additionalArgs: additionalArgs, verifyCaching: verifyCaching);
  } else {
    print('Example project ${path.basename(examplePath)} has no android directory, skipping apk');
  }
  if (Platform.isMacOS) {
    if (Directory(path.join(examplePath, 'ios')).existsSync()) {
      await _flutterBuildIpa(examplePath, release: false, additionalArgs: additionalArgs, verifyCaching: verifyCaching);
      await _flutterBuildIpa(examplePath, release: true, additionalArgs: additionalArgs, verifyCaching: verifyCaching);
    } else {
      print('Example project ${path.basename(examplePath)} has no ios directory, skipping ipa');
    }
501
  }
502
  if (Platform.isLinux) {
503 504 505 506 507 508 509
    if (Directory(path.join(examplePath, 'linux')).existsSync()) {
      await _flutterBuildLinux(examplePath, release: false, additionalArgs: additionalArgs, verifyCaching: verifyCaching);
      await _flutterBuildLinux(examplePath, release: true, additionalArgs: additionalArgs, verifyCaching: verifyCaching);
    } else {
      print('Example project ${path.basename(examplePath)} has no linux directory, skipping Linux');
    }
  }
510
  if (Platform.isMacOS) {
511 512 513 514 515 516 517
    if (Directory(path.join(examplePath, 'macos')).existsSync()) {
      await _flutterBuildMacOS(examplePath, release: false, additionalArgs: additionalArgs, verifyCaching: verifyCaching);
      await _flutterBuildMacOS(examplePath, release: true, additionalArgs: additionalArgs, verifyCaching: verifyCaching);
    } else {
      print('Example project ${path.basename(examplePath)} has no macos directory, skipping macOS');
    }
  }
518
  if (Platform.isWindows) {
519
    if (Directory(path.join(examplePath, 'windows')).existsSync()) {
520 521
      await _flutterBuildWin32(examplePath, release: false, additionalArgs: additionalArgs, verifyCaching: verifyCaching);
      await _flutterBuildWin32(examplePath, release: true, additionalArgs: additionalArgs, verifyCaching: verifyCaching);
522 523 524 525
    } else {
      print('Example project ${path.basename(examplePath)} has no windows directory, skipping Win32');
    }
  }
526
}
527

528
Future<void> _flutterBuildApk(String relativePathToApplication, {
529
  required bool release,
530
  bool verifyCaching = false,
531 532
  List<String> additionalArgs = const <String>[],
}) async {
533
  print('${green}Testing APK build$reset for $cyan$relativePathToApplication$reset...');
534 535 536 537
  await _flutterBuild(relativePathToApplication, 'APK', 'apk',
    release: release,
    verifyCaching: verifyCaching,
    additionalArgs: additionalArgs
538
  );
539 540
}

541
Future<void> _flutterBuildIpa(String relativePathToApplication, {
542
  required bool release,
543
  List<String> additionalArgs = const <String>[],
544
  bool verifyCaching = false,
545
}) async {
546 547
  assert(Platform.isMacOS);
  print('${green}Testing IPA build$reset for $cyan$relativePathToApplication$reset...');
548 549 550 551 552 553 554
  await _flutterBuild(relativePathToApplication, 'IPA', 'ios',
    release: release,
    verifyCaching: verifyCaching,
    additionalArgs: <String>[...additionalArgs, '--no-codesign'],
  );
}

555
Future<void> _flutterBuildLinux(String relativePathToApplication, {
556
  required bool release,
557 558 559 560 561 562 563 564 565 566 567 568 569
  bool verifyCaching = false,
  List<String> additionalArgs = const <String>[],
}) async {
  assert(Platform.isLinux);
  await runCommand(flutter, <String>['config', '--enable-linux-desktop']);
  print('${green}Testing Linux build$reset for $cyan$relativePathToApplication$reset...');
  await _flutterBuild(relativePathToApplication, 'Linux', 'linux',
    release: release,
    verifyCaching: verifyCaching,
    additionalArgs: additionalArgs
  );
}

570
Future<void> _flutterBuildMacOS(String relativePathToApplication, {
571
  required bool release,
572 573 574 575 576 577 578 579 580 581 582 583 584
  bool verifyCaching = false,
  List<String> additionalArgs = const <String>[],
}) async {
  assert(Platform.isMacOS);
  await runCommand(flutter, <String>['config', '--enable-macos-desktop']);
  print('${green}Testing macOS build$reset for $cyan$relativePathToApplication$reset...');
  await _flutterBuild(relativePathToApplication, 'macOS', 'macos',
    release: release,
    verifyCaching: verifyCaching,
    additionalArgs: additionalArgs
  );
}

585
Future<void> _flutterBuildWin32(String relativePathToApplication, {
586
  required bool release,
587 588 589 590 591 592 593 594 595 596 597 598
  bool verifyCaching = false,
  List<String> additionalArgs = const <String>[],
}) async {
  assert(Platform.isWindows);
  print('${green}Testing Windows build$reset for $cyan$relativePathToApplication$reset...');
  await _flutterBuild(relativePathToApplication, 'Windows', 'windows',
    release: release,
    verifyCaching: verifyCaching,
    additionalArgs: additionalArgs
  );
}

599 600 601 602
Future<void> _flutterBuild(
  String relativePathToApplication,
  String platformLabel,
  String platformBuildName, {
603
  required bool release,
604 605 606
  bool verifyCaching = false,
  List<String> additionalArgs = const <String>[],
}) async {
607
  await runCommand(flutter,
608 609
    <String>[
      'build',
610
      platformBuildName,
611 612 613 614 615 616 617
      ...additionalArgs,
      if (release)
        '--release'
      else
        '--debug',
      '-v',
    ],
618 619
    workingDirectory: path.join(flutterRoot, relativePathToApplication),
  );
620

621
  if (verifyCaching) {
622
    print('${green}Testing $platformLabel cache$reset for $cyan$relativePathToApplication$reset...');
623 624 625
    await runCommand(flutter,
      <String>[
        'build',
626
        platformBuildName,
627 628 629 630 631 632 633 634 635 636 637 638 639
        '--performance-measurement-file=perf.json',
        ...additionalArgs,
        if (release)
          '--release'
        else
          '--debug',
        '-v',
      ],
      workingDirectory: path.join(flutterRoot, relativePathToApplication),
    );
    final File file = File(path.join(flutterRoot, relativePathToApplication, 'perf.json'));
    if (!_allTargetsCached(file)) {
      print('${red}Not all build targets cached after second run.$reset');
640
      print('The target performance data was: ${file.readAsStringSync().replaceAll('},', '},\n')}');
641 642 643 644 645 646
      exit(1);
    }
  }
}

bool _allTargetsCached(File performanceFile) {
647 648 649 650 651
  final Map<String, Object?> data = json.decode(performanceFile.readAsStringSync())
    as Map<String, Object?>;
  final List<Map<String, Object?>> targets = (data['targets']! as List<Object?>)
    .cast<Map<String, Object?>>();
  return targets.every((Map<String, Object?> element) => element['skipped'] == true);
652 653
}

654 655 656 657 658 659 660 661 662
Future<void> _flutterBuildDart2js(String relativePathToApplication, String target, { bool expectNonZeroExit = false }) async {
  print('${green}Testing Dart2JS build$reset for $cyan$relativePathToApplication$reset...');
  await runCommand(flutter,
    <String>['build', 'web', '-v', '--target=$target'],
    workingDirectory: path.join(flutterRoot, relativePathToApplication),
    expectNonZeroExit: expectNonZeroExit,
    environment: <String, String>{
      'FLUTTER_WEB': 'true',
    },
663
  );
664 665
}

666 667 668 669 670 671 672 673 674 675 676
Future<void> _runAddToAppLifeCycleTests() async {
  if (Platform.isMacOS) {
    print('${green}Running add-to-app life cycle iOS integration tests$reset...');
    final String addToAppDir = path.join(flutterRoot, 'dev', 'integration_tests', 'ios_add2app_life_cycle');
    await runCommand('./build_and_test.sh',
      <String>[],
      workingDirectory: addToAppDir,
    );
  }
}

677
Future<void> _runFrameworkTests() async {
678 679
  final List<String> soundNullSafetyOptions     = <String>['--null-assertions', '--sound-null-safety'];
  final List<String> mixedModeNullSafetyOptions = <String>['--null-assertions', '--no-sound-null-safety'];
680
  final List<String> trackWidgetCreationAlternatives = <String>['--track-widget-creation', '--no-track-widget-creation'];
681

682
  Future<void> runWidgets() async {
683
    print('${green}Running packages/flutter tests for$reset: ${cyan}test/widgets/$reset');
684 685 686
    for (final String trackWidgetCreationOption in trackWidgetCreationAlternatives) {
      await _runFlutterTest(
        path.join(flutterRoot, 'packages', 'flutter'),
687
        options: <String>[trackWidgetCreationOption, ...soundNullSafetyOptions],
688 689 690
        tests: <String>[ path.join('test', 'widgets') + path.separator ],
      );
    }
691
    // Try compiling code outside of the packages/flutter directory with and without --track-widget-creation
692 693 694 695
    for (final String trackWidgetCreationOption in trackWidgetCreationAlternatives) {
      await _runFlutterTest(
        path.join(flutterRoot, 'dev', 'integration_tests', 'flutter_gallery'),
        options: <String>[trackWidgetCreationOption],
696
        fatalWarnings: false, // until we've migrated video_player
697 698
      );
    }
699 700 701 702
    // Run release mode tests (see packages/flutter/test_release/README.md)
    await _runFlutterTest(
      path.join(flutterRoot, 'packages', 'flutter'),
      options: <String>['--dart-define=dart.vm.product=true', ...soundNullSafetyOptions],
703
      tests: <String>['test_release${path.separator}'],
704
    );
705 706 707 708 709 710
    // Run profile mode tests (see packages/flutter/test_profile/README.md)
    await _runFlutterTest(
      path.join(flutterRoot, 'packages', 'flutter'),
      options: <String>['--dart-define=dart.vm.product=false', '--dart-define=dart.vm.profile=true', ...soundNullSafetyOptions],
      tests: <String>['test_profile${path.separator}'],
    );
711 712
  }

713
  Future<void> runLibraries() async {
714
    final List<String> tests = Directory(path.join(flutterRoot, 'packages', 'flutter', 'test'))
715
      .listSync(followLinks: false)
716
      .whereType<Directory>()
717
      .where((Directory dir) => dir.path.endsWith('widgets') == false)
718
      .map<String>((Directory dir) => path.join('test', path.basename(dir.path)) + path.separator)
719
      .toList();
720
    print('${green}Running packages/flutter tests$reset for: $cyan${tests.join(", ")}$reset');
721 722 723
    for (final String trackWidgetCreationOption in trackWidgetCreationAlternatives) {
      await _runFlutterTest(
        path.join(flutterRoot, 'packages', 'flutter'),
724
        options: <String>[trackWidgetCreationOption, ...soundNullSafetyOptions],
725 726 727
        tests: tests,
      );
    }
728 729
  }

730 731 732 733 734 735 736 737 738 739 740 741 742 743
  Future<void> runExampleTests() async {
    // TODO(gspencergoog): Currently Linux LUCI bots can't run desktop Flutter applications, https://github.com/flutter/flutter/issues/90676
    if (!Platform.isLinux || ciProvider != CiProviders.luci) {
      await runCommand(
        flutter,
        <String>['config', '--enable-${Platform.operatingSystem}-desktop'],
        workingDirectory: flutterRoot,
      );
      await runCommand(
        dart,
        <String>[path.join(flutterRoot, 'dev', 'tools', 'examples_smoke_test.dart')],
        workingDirectory: path.join(flutterRoot, 'examples', 'api'),
      );
    }
744
    await _runFlutterTest(path.join(flutterRoot, 'examples', 'api'), options: soundNullSafetyOptions);
745 746 747 748
    await _runFlutterTest(path.join(flutterRoot, 'examples', 'hello_world'), options: soundNullSafetyOptions);
    await _runFlutterTest(path.join(flutterRoot, 'examples', 'layers'), options: soundNullSafetyOptions);
  }

Ian Hickson's avatar
Ian Hickson committed
749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831
  Future<void> runTracingTests() async {
    final String tracingDirectory = path.join(flutterRoot, 'dev', 'tracing_tests');

    // run the tests for debug mode
    await _runFlutterTest(tracingDirectory, options: <String>['--enable-vmservice']);

    Future<List<String>> verifyTracingAppBuild({
      required String modeArgument,
      required String sourceFile,
      required Set<String> allowed,
      required Set<String> disallowed,
    }) async {
      await runCommand(
        flutter,
        <String>[
          'build', 'appbundle', '--$modeArgument', path.join('lib', sourceFile),
        ],
        workingDirectory: tracingDirectory,
      );
      final Archive archive = ZipDecoder().decodeBytes(File(path.join(tracingDirectory, 'build', 'app', 'outputs', 'bundle', modeArgument, 'app-$modeArgument.aab')).readAsBytesSync());
      final ArchiveFile libapp = archive.findFile('base/lib/arm64-v8a/libapp.so')!;
      final Uint8List libappBytes = libapp.content as Uint8List; // bytes decompressed here
      final String libappStrings = utf8.decode(libappBytes, allowMalformed: true);
      await runCommand(flutter, <String>['clean'], workingDirectory: tracingDirectory);
      final List<String> results = <String>[];
      for (final String pattern in allowed) {
        if (!libappStrings.contains(pattern)) {
          results.add('When building with --$modeArgument, expected to find "$pattern" in libapp.so but could not find it.');
        }
      }
      for (final String pattern in disallowed) {
        if (libappStrings.contains(pattern)) {
          results.add('When building with --$modeArgument, expected to not find "$pattern" in libapp.so but did find it.');
        }
      }
      return results;
    }

    final List<String> results = <String>[];
    results.addAll(await verifyTracingAppBuild(
      modeArgument: 'profile',
      sourceFile: 'control.dart', // this is the control, the other two below are the actual test
      allowed: <String>{
        'TIMELINE ARGUMENTS TEST CONTROL FILE',
        'toTimelineArguments used in non-debug build', // we call toTimelineArguments directly to check the message does exist
      },
      disallowed: <String>{
        'BUILT IN DEBUG MODE', 'BUILT IN RELEASE MODE',
      },
    ));
    results.addAll(await verifyTracingAppBuild(
      modeArgument: 'profile',
      sourceFile: 'test.dart',
      allowed: <String>{
        'BUILT IN PROFILE MODE', 'RenderTest.performResize called', // controls
        'BUILD', 'LAYOUT', 'PAINT', // we output these to the timeline in profile builds
        // (LAYOUT and PAINT also exist because of NEEDS-LAYOUT and NEEDS-PAINT in RenderObject.toStringShort)
      },
      disallowed: <String>{
        'BUILT IN DEBUG MODE', 'BUILT IN RELEASE MODE',
        'TestWidget.debugFillProperties called', 'RenderTest.debugFillProperties called', // debug only
        'toTimelineArguments used in non-debug build', // entire function should get dropped by tree shaker
      },
    ));
    results.addAll(await verifyTracingAppBuild(
      modeArgument: 'release',
      sourceFile: 'test.dart',
      allowed: <String>{
        'BUILT IN RELEASE MODE', 'RenderTest.performResize called', // controls
      },
      disallowed: <String>{
        'BUILT IN DEBUG MODE', 'BUILT IN PROFILE MODE',
        'BUILD', 'LAYOUT', 'PAINT', // these are only used in Timeline.startSync calls that should not appear in release builds
        'TestWidget.debugFillProperties called', 'RenderTest.debugFillProperties called', // debug only
        'toTimelineArguments used in non-debug build', // not included in release builds
      },
    ));
    if (results.isNotEmpty) {
      print(results.join('\n'));
      exit(1);
    }
  }

832 833 834 835 836 837 838 839 840 841 842 843
  Future<void> runFixTests() async {
    final List<String> args = <String>[
      'fix',
      '--compare-to-golden',
    ];
    await runCommand(
      dart,
      args,
      workingDirectory: path.join(flutterRoot, 'packages', 'flutter', 'test_fixes'),
    );
  }

844 845 846
  Future<void> runPrivateTests() async {
    final List<String> args = <String>[
      '--sound-null-safety',
847 848
      'run',
      'bin/test_private.dart',
849
    ];
850
    final Map<String, String> environment = <String, String>{
851
      'FLUTTER_ROOT': flutterRoot,
852 853
      if (Directory(pubCache).existsSync())
        'PUB_CACHE': pubCache,
854
    };
855
    adjustEnvironmentToEnableFlutterAsserts(environment);
856
    await runCommand(
857
      dart,
858 859
      args,
      workingDirectory: path.join(flutterRoot, 'packages', 'flutter', 'test_private'),
860
      environment: environment,
861 862 863
    );
  }

864 865
  Future<void> runMisc() async {
    print('${green}Running package tests$reset for directories other than packages/flutter');
866
    await _runTestHarnessTests();
867
    await runExampleTests();
868 869 870
    await _dartRunTest(path.join(flutterRoot, 'dev', 'bots'));
    await _dartRunTest(path.join(flutterRoot, 'dev', 'devicelab'), ensurePrecompiledTool: false); // See https://github.com/flutter/flutter/issues/86209
    await _dartRunTest(path.join(flutterRoot, 'dev', 'conductor', 'core'), forceSingleCore: true);
871 872
    // TODO(gspencergoog): Remove the exception for fatalWarnings once https://github.com/flutter/flutter/pull/91127 has landed.
    await _runFlutterTest(path.join(flutterRoot, 'dev', 'integration_tests', 'android_semantics_testing'), fatalWarnings: false);
873 874
    await _runFlutterTest(path.join(flutterRoot, 'dev', 'manual_tests'));
    await _runFlutterTest(path.join(flutterRoot, 'dev', 'tools', 'vitool'));
875
    await _runFlutterTest(path.join(flutterRoot, 'dev', 'tools', 'gen_defaults'));
876
    await _runFlutterTest(path.join(flutterRoot, 'dev', 'tools', 'gen_keycodes'));
877
    await _runFlutterTest(path.join(flutterRoot, 'dev', 'benchmarks', 'test_apps', 'stocks'));
878
    await _runFlutterTest(path.join(flutterRoot, 'packages', 'flutter_driver'), tests: <String>[path.join('test', 'src', 'real_tests')], options: soundNullSafetyOptions);
879
    await _runFlutterTest(path.join(flutterRoot, 'packages', 'integration_test'), options: <String>['--enable-vmservice']);
880
    await _runFlutterTest(path.join(flutterRoot, 'packages', 'flutter_goldens'), options: soundNullSafetyOptions);
881 882
    await _runFlutterTest(path.join(flutterRoot, 'packages', 'flutter_localizations'), options: soundNullSafetyOptions);
    await _runFlutterTest(path.join(flutterRoot, 'packages', 'flutter_test'), options: soundNullSafetyOptions);
883
    await _runFlutterTest(path.join(flutterRoot, 'packages', 'fuchsia_remote_debug_protocol'), options: soundNullSafetyOptions);
884
    await _runFlutterTest(path.join(flutterRoot, 'dev', 'integration_tests', 'non_nullable'), options: mixedModeNullSafetyOptions);
Ian Hickson's avatar
Ian Hickson committed
885
    await runTracingTests();
886
    await runFixTests();
887
    await runPrivateTests();
888 889 890 891
    const String httpClientWarning =
      'Warning: At least one test in this suite creates an HttpClient. When\n'
      'running a test suite that uses TestWidgetsFlutterBinding, all HTTP\n'
      'requests will return status code 400, and no network request will\n'
892
      'actually be made. Any test expecting a real network connection and\n'
893 894 895 896 897 898 899 900 901
      'status code will fail.\n'
      'To test code that needs an HttpClient, provide your own HttpClient\n'
      'implementation to the code under test, so that your test can\n'
      'consistently provide a testable response to the code under test.';
    await _runFlutterTest(
      path.join(flutterRoot, 'packages', 'flutter_test'),
      script: path.join('test', 'bindings_test_failure.dart'),
      expectFailure: true,
      printOutput: false,
902
      outputChecker: (CommandResult result) {
903
        final Iterable<Match> matches = httpClientWarning.allMatches(result.flattenedStdout!);
904
        if (matches == null || matches.isEmpty || matches.length > 1) {
905 906 907
          return 'Failed to print warning about HttpClientUsage, or printed it too many times.\n\n'
                 'stdout:\n${result.flattenedStdout}\n\n'
                 'stderr:\n${result.flattenedStderr}';
908 909 910 911
        }
        return null;
      },
    );
912
  }
913

914 915 916 917 918
  await selectSubshard(<String, ShardRunner>{
    'widgets': runWidgets,
    'libraries': runLibraries,
    'misc': runMisc,
  });
919 920
}

921
Future<void> _runFrameworkCoverage() async {
922 923 924
  final File coverageFile = File(path.join(flutterRoot, 'packages', 'flutter', 'coverage', 'lcov.info'));
  if (!coverageFile.existsSync()) {
    print('${red}Coverage file not found.$reset');
925 926
    print('Expected to find: $cyan${coverageFile.absolute}$reset');
    print('This file is normally obtained by running `${green}flutter update-packages$reset`.');
927 928 929 930 931 932 933 934
    exit(1);
  }
  coverageFile.deleteSync();
  await _runFlutterTest(path.join(flutterRoot, 'packages', 'flutter'),
    options: const <String>['--coverage'],
  );
  if (!coverageFile.existsSync()) {
    print('${red}Coverage file not found.$reset');
935 936
    print('Expected to find: $cyan${coverageFile.absolute}$reset');
    print('This file should have been generated by the `${green}flutter test --coverage$reset` script, but was not.');
937 938
    exit(1);
  }
939 940
}

941 942 943 944 945 946 947 948 949
Future<void> _runWebHtmlUnitTests() {
  return _runWebUnitTests('html');
}

Future<void> _runWebCanvasKitUnitTests() {
  return _runWebUnitTests('canvaskit');
}

Future<void> _runWebUnitTests(String webRenderer) async {
950 951 952 953 954 955 956 957 958 959 960 961 962 963
  final Map<String, ShardRunner> subshards = <String, ShardRunner>{};

  final Directory flutterPackageDirectory = Directory(path.join(flutterRoot, 'packages', 'flutter'));
  final Directory flutterPackageTestDirectory = Directory(path.join(flutterPackageDirectory.path, 'test'));

  final List<String> allTests = flutterPackageTestDirectory
    .listSync()
    .whereType<Directory>()
    .expand((Directory directory) => directory
      .listSync(recursive: true)
      .where((FileSystemEntity entity) => entity.path.endsWith('_test.dart'))
    )
    .whereType<File>()
    .map<String>((File file) => path.relative(file.path, from: flutterPackageDirectory.path))
964
    .where((String filePath) => !kWebTestFileKnownFailures[webRenderer]!.contains(path.split(filePath).join('/')))
965 966 967 968 969 970 971
    .toList()
    // Finally we shuffle the list because we want the average cost per file to be uniformly
    // distributed. If the list is not sorted then different shards and batches may have
    // very different characteristics.
    // We use a constant seed for repeatability.
    ..shuffle(math.Random(0));

972 973 974
  assert(webShardCount >= 1);
  final int testsPerShard = (allTests.length / webShardCount).ceil();
  assert(testsPerShard * webShardCount >= allTests.length);
975 976

  // This for loop computes all but the last shard.
977
  for (int index = 0; index < webShardCount - 1; index += 1) {
978
    subshards['$index'] = () => _runFlutterWebTest(
979
      webRenderer,
980 981 982 983 984 985 986 987 988 989 990 991
      flutterPackageDirectory.path,
      allTests.sublist(
        index * testsPerShard,
        (index + 1) * testsPerShard,
      ),
    );
  }

  // The last shard also runs the flutter_web_plugins tests.
  //
  // We make sure the last shard ends in _last so it's easier to catch mismatches
  // between `.cirrus.yml` and `test.dart`.
992
  subshards['${webShardCount - 1}_last'] = () async {
993
    await _runFlutterWebTest(
994
      webRenderer,
995 996
      flutterPackageDirectory.path,
      allTests.sublist(
997
        (webShardCount - 1) * testsPerShard,
998 999 1000 1001
        allTests.length,
      ),
    );
    await _runFlutterWebTest(
1002
      webRenderer,
1003 1004 1005
      path.join(flutterRoot, 'packages', 'flutter_web_plugins'),
      <String>['test'],
    );
1006
    await _runFlutterWebTest(
1007 1008 1009
      webRenderer,
      path.join(flutterRoot, 'packages', 'flutter_driver'),
      <String>[path.join('test', 'src', 'web_tests', 'web_extension_test.dart')],
1010
    );
1011 1012 1013 1014 1015
  };

  await selectSubshard(subshards);
}

1016 1017 1018
/// Coarse-grained integration tests running on the Web.
Future<void> _runWebLongRunningTests() async {
  final List<ShardRunner> tests = <ShardRunner>[
1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059
    for (String buildMode in _kAllBuildModes)
      () => _runFlutterDriverWebTest(
        testAppDirectory: path.join('packages', 'integration_test', 'example'),
        target: path.join('test_driver', 'failure.dart'),
        buildMode: buildMode,
        renderer: 'canvaskit',
        // This test intentionally fails and prints stack traces in the browser
        // logs. To avoid confusion, silence browser output.
        silenceBrowserOutput: true,
      ),

    // This test specifically tests how images are loaded in HTML mode, so we don't run it in CanvasKit mode.
    () => _runWebE2eTest('image_loading_integration', buildMode: 'debug', renderer: 'html'),
    () => _runWebE2eTest('image_loading_integration', buildMode: 'profile', renderer: 'html'),
    () => _runWebE2eTest('image_loading_integration', buildMode: 'release', renderer: 'html'),

    // This test doesn't do anything interesting w.r.t. rendering, so we don't run the full build mode x renderer matrix.
    () => _runWebE2eTest('platform_messages_integration', buildMode: 'debug', renderer: 'canvaskit'),
    () => _runWebE2eTest('platform_messages_integration', buildMode: 'profile', renderer: 'html'),
    () => _runWebE2eTest('platform_messages_integration', buildMode: 'release', renderer: 'html'),

    // This test doesn't do anything interesting w.r.t. rendering, so we don't run the full build mode x renderer matrix.
    () => _runWebE2eTest('profile_diagnostics_integration', buildMode: 'debug', renderer: 'html'),
    () => _runWebE2eTest('profile_diagnostics_integration', buildMode: 'profile', renderer: 'canvaskit'),
    () => _runWebE2eTest('profile_diagnostics_integration', buildMode: 'release', renderer: 'html'),

    // This test is only known to work in debug mode.
    () => _runWebE2eTest('scroll_wheel_integration', buildMode: 'debug', renderer: 'html'),

    // This test doesn't do anything interesting w.r.t. rendering, so we don't run the full build mode x renderer matrix.
    () => _runWebE2eTest('text_editing_integration', buildMode: 'debug', renderer: 'canvaskit'),
    () => _runWebE2eTest('text_editing_integration', buildMode: 'profile', renderer: 'html'),
    () => _runWebE2eTest('text_editing_integration', buildMode: 'release', renderer: 'html'),

    // This test doesn't do anything interesting w.r.t. rendering, so we don't run the full build mode x renderer matrix.
    () => _runWebE2eTest('url_strategy_integration', buildMode: 'debug', renderer: 'html'),
    () => _runWebE2eTest('url_strategy_integration', buildMode: 'profile', renderer: 'canvaskit'),
    () => _runWebE2eTest('url_strategy_integration', buildMode: 'release', renderer: 'html'),

    () => _runWebTreeshakeTest(),

1060 1061 1062 1063
    () => _runFlutterDriverWebTest(
      testAppDirectory: path.join(flutterRoot, 'examples', 'hello_world'),
      target: 'test_driver/smoke_web_engine.dart',
      buildMode: 'profile',
1064
      renderer: 'auto',
1065
    ),
1066 1067 1068 1069 1070 1071
    () => _runGalleryE2eWebTest('debug'),
    () => _runGalleryE2eWebTest('debug', canvasKit: true),
    () => _runGalleryE2eWebTest('profile'),
    () => _runGalleryE2eWebTest('profile', canvasKit: true),
    () => _runGalleryE2eWebTest('release'),
    () => _runGalleryE2eWebTest('release', canvasKit: true),
1072
    () => runWebServiceWorkerTest(headless: true),
1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100
    () => _runWebStackTraceTest('profile', 'lib/stack_trace.dart'),
    () => _runWebStackTraceTest('release', 'lib/stack_trace.dart'),
    () => _runWebStackTraceTest('profile', 'lib/framework_stack_trace.dart'),
    () => _runWebStackTraceTest('release', 'lib/framework_stack_trace.dart'),
    () => _runWebDebugTest('lib/stack_trace.dart'),
    () => _runWebDebugTest('lib/framework_stack_trace.dart'),
    () => _runWebDebugTest('lib/web_directory_loading.dart'),
    () => _runWebDebugTest('test/test.dart'),
    () => _runWebDebugTest('lib/null_assert_main.dart', enableNullSafety: true),
    () => _runWebDebugTest('lib/null_safe_main.dart', enableNullSafety: true),
    () => _runWebDebugTest('lib/web_define_loading.dart',
      additionalArguments: <String>[
        '--dart-define=test.valueA=Example,A',
        '--dart-define=test.valueB=Value',
      ]
    ),
    () => _runWebReleaseTest('lib/web_define_loading.dart',
      additionalArguments: <String>[
        '--dart-define=test.valueA=Example,A',
        '--dart-define=test.valueB=Value',
      ]
    ),
    () => _runWebDebugTest('lib/sound_mode.dart', additionalArguments: <String>[
      '--sound-null-safety',
    ]),
    () => _runWebReleaseTest('lib/sound_mode.dart', additionalArguments: <String>[
      '--sound-null-safety',
    ]),
1101
  ];
1102 1103 1104 1105 1106

  // Shuffling mixes fast tests with slow tests so shards take roughly the same
  // amount of time to run.
  tests.shuffle(math.Random(0));

1107
  await _ensureChromeDriverIsRunning();
1108
  await _runShardRunnerIndexOfTotalSubshard(tests);
1109
  await _stopChromeDriver();
1110 1111
}

1112 1113 1114
/// Runs one of the `dev/integration_tests/web_e2e_tests` tests.
Future<void> _runWebE2eTest(
  String name, {
1115 1116
  required String buildMode,
  required String renderer,
1117 1118 1119 1120 1121 1122 1123 1124 1125
}) async {
  await _runFlutterDriverWebTest(
    target: path.join('test_driver', '$name.dart'),
    buildMode: buildMode,
    renderer: renderer,
    testAppDirectory: path.join(flutterRoot, 'dev', 'integration_tests', 'web_e2e_tests'),
  );
}

1126
Future<void> _runFlutterDriverWebTest({
1127 1128 1129 1130
  required String target,
  required String buildMode,
  required String renderer,
  required String testAppDirectory,
1131 1132
  bool expectFailure = false,
  bool silenceBrowserOutput = false,
1133
}) async {
1134
  print('${green}Running integration tests $target in $buildMode mode.$reset');
1135 1136 1137 1138 1139 1140 1141 1142
  await runCommand(
    flutter,
    <String>[ 'clean' ],
    workingDirectory: testAppDirectory,
  );
  await runCommand(
    flutter,
    <String>[
1143
      ...flutterTestArgs,
1144 1145 1146 1147 1148 1149 1150
      'drive',
      '--target=$target',
      '--browser-name=chrome',
      '--no-sound-null-safety',
      '-d',
      'web-server',
      '--$buildMode',
1151
      '--web-renderer=$renderer',
1152
    ],
1153
    expectNonZeroExit: expectFailure,
1154 1155 1156 1157
    workingDirectory: testAppDirectory,
    environment: <String, String>{
      'FLUTTER_WEB': 'true',
    },
1158 1159 1160 1161 1162 1163 1164 1165 1166
    removeLine: (String line) {
      if (!silenceBrowserOutput) {
        return false;
      }
      if (line.trim().startsWith('[INFO]')) {
        return true;
      }
      return false;
    },
1167 1168 1169 1170
  );
  print('${green}Integration test passed.$reset');
}

1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226
// Compiles a sample web app and checks that its JS doesn't contain certain
// debug code that we expect to be tree shaken out.
//
// The app is compiled in `--profile` mode to prevent the compiler from
// minifying the symbols.
Future<void> _runWebTreeshakeTest() async {
  final String testAppDirectory = path.join(flutterRoot, 'dev', 'integration_tests', 'web_e2e_tests');
  final String target = path.join('lib', 'treeshaking_main.dart');
  await runCommand(
    flutter,
    <String>[ 'clean' ],
    workingDirectory: testAppDirectory,
  );
  await runCommand(
    flutter,
    <String>[
      'build',
      'web',
      '--target=$target',
      '--no-sound-null-safety',
      '--profile',
    ],
    workingDirectory: testAppDirectory,
    environment: <String, String>{
      'FLUTTER_WEB': 'true',
    },
  );

  final File mainDartJs = File(path.join(testAppDirectory, 'build', 'web', 'main.dart.js'));
  final String javaScript = mainDartJs.readAsStringSync();

  // Check that we're not looking at minified JS. Otherwise this test would result in false positive.
  expect(javaScript.contains('RenderObjectToWidgetElement'), true);

  const String word = 'debugFillProperties';
  int count = 0;
  int pos = javaScript.indexOf(word);
  final int contentLength = javaScript.length;
  while (pos != -1) {
    count += 1;
    pos += word.length;
    if (pos >= contentLength || count > 100) {
      break;
    }
    pos = javaScript.indexOf(word, pos);
  }

  const int kMaxExpectedDebugFillProperties = 11;
  if (count > kMaxExpectedDebugFillProperties) {
    throw Exception(
      'Too many occurrences of "$word" in compiled JavaScript.\n'
      'Expected no more than $kMaxExpectedDebugFillProperties, but found $count.'
    );
  }
}

1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238
/// Returns the commit hash of the flutter/plugins repository that's rolled in.
///
/// The flutter/plugins repository is a downstream dependency, it is only used
/// by flutter/flutter for testing purposes, to assure stable tests for a given
/// flutter commit the flutter/plugins commit hash to test against is coded in
/// the bin/internal/flutter_plugins.version file.
///
/// The `filesystem` parameter specified filesystem to read the plugins version file from.
/// The `pluginsVersionFile` parameter allows specifying an alternative path for the
/// plugins version file, when null [flutterPluginsVersionFile] is used.
Future<String> getFlutterPluginsVersion({
  fs.FileSystem fileSystem = const LocalFileSystem(),
1239
  String? pluginsVersionFile,
1240 1241 1242 1243 1244 1245
}) async {
  final File versionFile = fileSystem.file(pluginsVersionFile ?? flutterPluginsVersionFile);
  final String versionFileContents = await versionFile.readAsString();
  return versionFileContents.trim();
}

1246 1247 1248 1249
/// Executes the test suite for the flutter/plugins repo.
Future<void> _runFlutterPluginsTests() async {
  Future<void> runAnalyze() async {
    print('${green}Running analysis for flutter/plugins$reset');
1250
    final Directory checkout = Directory.systemTemp.createTempSync('flutter_plugins.');
1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261
    await runCommand(
      'git',
      <String>[
        '-c',
        'core.longPaths=true',
        'clone',
        'https://github.com/flutter/plugins.git',
        '.'
      ],
      workingDirectory: checkout.path,
    );
1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272
    final String pluginsCommit = await getFlutterPluginsVersion();
    await runCommand(
      'git',
      <String>[
        '-c',
        'core.longPaths=true',
        'checkout',
        pluginsCommit,
      ],
      workingDirectory: checkout.path,
    );
1273 1274 1275 1276 1277 1278
    // Prep the repository tooling.
    // This test does not use tool_runner.sh because in this context the test
    // should always run on the entire plugins repo, while tool_runner.sh
    // is designed for flutter/plugins CI and only analyzes changed repository
    // files when run for anything but master.
    final String toolDir = path.join(checkout.path, 'script', 'tool');
1279
    await runCommand(
1280
      'dart',
1281
      <String>[
1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292
        'pub',
        'get',
      ],
      workingDirectory: toolDir,
    );
    final String toolScript = path.join(toolDir, 'bin', 'flutter_plugin_tools.dart');
    await runCommand(
      'dart',
      <String>[
        'run',
        toolScript,
1293
        'analyze',
1294
        '--custom-analysis=script/configs/custom_analysis.yaml',
1295 1296 1297 1298 1299 1300 1301 1302 1303
      ],
      workingDirectory: checkout.path,
    );
  }
  await selectSubshard(<String, ShardRunner>{
    'analyze': runAnalyze,
  });
}

1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329
/// Runs the skp_generator from the flutter/tests repo.
///
/// See also the customer_tests shard.
///
/// Generated SKPs are ditched, this just verifies that it can run without failure.
Future<void> _runSkpGeneratorTests() async {
  print('${green}Running skp_generator from flutter/tests$reset');
  final Directory checkout = Directory.systemTemp.createTempSync('flutter_skp_generator.');
  await runCommand(
    'git',
    <String>[
      '-c',
      'core.longPaths=true',
      'clone',
      'https://github.com/flutter/tests.git',
      '.'
    ],
    workingDirectory: checkout.path,
  );
  await runCommand(
    './build.sh',
    <String>[ ],
    workingDirectory: path.join(checkout.path, 'skp_generator'),
  );
}

1330 1331 1332 1333
// The `chromedriver` process created by this test.
//
// If an existing chromedriver is already available on port 4444, the existing
// process is reused and this variable remains null.
1334
Command? _chromeDriver;
1335 1336 1337

Future<bool> _isChromeDriverRunning() async {
  try {
1338 1339 1340
    final RawSocket socket = await RawSocket.connect('localhost', 4444);
    socket.shutdown(SocketDirection.both);
    await socket.close();
1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365
    return true;
  } on SocketException {
    return false;
  }
}

Future<void> _ensureChromeDriverIsRunning() async {
  // If we cannot connect to ChromeDriver, assume it is not running. Launch it.
  if (!await _isChromeDriverRunning()) {
    print('Starting chromedriver');
    // Assume chromedriver is in the PATH.
    _chromeDriver = await startCommand(
      'chromedriver',
      <String>['--port=4444'],
    );
    while (!await _isChromeDriverRunning()) {
      await Future<void>.delayed(const Duration(milliseconds: 100));
      print('Waiting for chromedriver to start up.');
    }
  }

  final HttpClient client = HttpClient();
  final Uri chromeDriverUrl = Uri.parse('http://localhost:4444/status');
  final HttpClientRequest request = await client.getUrl(chromeDriverUrl);
  final HttpClientResponse response = await request.close();
1366
  final Map<String, dynamic> webDriverStatus = json.decode(await response.transform(utf8.decoder).join()) as Map<String, dynamic>;
1367
  client.close();
1368
  final bool webDriverReady = (webDriverStatus['value'] as Map<String, dynamic>)['ready'] as bool;
1369 1370 1371 1372 1373 1374 1375 1376 1377
  if (!webDriverReady) {
    throw Exception('WebDriver not available.');
  }
}

Future<void> _stopChromeDriver() async {
  if (_chromeDriver == null) {
    return;
  }
1378
  print('Stopping chromedriver');
1379
  _chromeDriver!.process.kill();
1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401
}

/// Exercises the old gallery in a browser for a long period of time, looking
/// for memory leaks and dangling pointers.
///
/// This is not a performance test.
///
/// If [canvasKit] is set to true, runs the test in CanvasKit mode.
///
/// The test is written using `package:integration_test` (despite the "e2e" in
/// the name, which is there for historic reasons).
Future<void> _runGalleryE2eWebTest(String buildMode, { bool canvasKit = false }) async {
  print('${green}Running flutter_gallery integration test in --$buildMode using ${canvasKit ? 'CanvasKit' : 'HTML'} renderer.$reset');
  final String testAppDirectory = path.join(flutterRoot, 'dev', 'integration_tests', 'flutter_gallery');
  await runCommand(
    flutter,
    <String>[ 'clean' ],
    workingDirectory: testAppDirectory,
  );
  await runCommand(
    flutter,
    <String>[
1402
      ...flutterTestArgs,
1403 1404 1405
      'drive',
      if (canvasKit)
        '--dart-define=FLUTTER_WEB_USE_SKIA=true',
1406 1407
      if (!canvasKit)
        '--dart-define=FLUTTER_WEB_USE_SKIA=false',
1408 1409
      if (!canvasKit)
        '--dart-define=FLUTTER_WEB_AUTO_DETECT=false',
1410 1411 1412
      '--driver=test_driver/transitions_perf_e2e_test.dart',
      '--target=test_driver/transitions_perf_e2e.dart',
      '--browser-name=chrome',
1413
      '--no-sound-null-safety',
1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425
      '-d',
      'web-server',
      '--$buildMode',
    ],
    workingDirectory: testAppDirectory,
    environment: <String, String>{
      'FLUTTER_WEB': 'true',
    },
  );
  print('${green}Integration test passed.$reset');
}

1426
Future<void> _runWebStackTraceTest(String buildMode, String entrypoint) async {
1427
  final String testAppDirectory = path.join(flutterRoot, 'dev', 'integration_tests', 'web');
1428
  final String appBuildDirectory = path.join(testAppDirectory, 'build', 'web');
1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442

  // Build the app.
  await runCommand(
    flutter,
    <String>[ 'clean' ],
    workingDirectory: testAppDirectory,
  );
  await runCommand(
    flutter,
    <String>[
      'build',
      'web',
      '--$buildMode',
      '-t',
1443
      entrypoint,
1444 1445 1446 1447 1448 1449 1450 1451
    ],
    workingDirectory: testAppDirectory,
    environment: <String, String>{
      'FLUTTER_WEB': 'true',
    },
  );

  // Run the app.
1452 1453
  final int serverPort = await findAvailablePort();
  final int browserDebugPort = await findAvailablePort();
1454
  final String result = await evalTestAppInChrome(
1455
    appUrl: 'http://localhost:$serverPort/index.html',
1456
    appDirectory: appBuildDirectory,
1457 1458
    serverPort: serverPort,
    browserDebugPort: browserDebugPort,
1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469
  );

  if (result.contains('--- TEST SUCCEEDED ---')) {
    print('${green}Web stack trace integration test passed.$reset');
  } else {
    print(result);
    print('${red}Web stack trace integration test failed.$reset');
    exit(1);
  }
}

1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485
/// Run a web integration test in release mode.
Future<void> _runWebReleaseTest(String target, {
  List<String> additionalArguments = const<String>[],
}) async {
  final String testAppDirectory = path.join(flutterRoot, 'dev', 'integration_tests', 'web');
  final String appBuildDirectory = path.join(testAppDirectory, 'build', 'web');

  // Build the app.
  await runCommand(
    flutter,
    <String>[ 'clean' ],
    workingDirectory: testAppDirectory,
  );
  await runCommand(
    flutter,
    <String>[
1486
      ...flutterTestArgs,
1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500
      'build',
      'web',
      '--release',
      ...additionalArguments,
      '-t',
      target,
    ],
    workingDirectory: testAppDirectory,
    environment: <String, String>{
      'FLUTTER_WEB': 'true',
    },
  );

  // Run the app.
1501 1502
  final int serverPort = await findAvailablePort();
  final int browserDebugPort = await findAvailablePort();
1503
  final String result = await evalTestAppInChrome(
1504
    appUrl: 'http://localhost:$serverPort/index.html',
1505
    appDirectory: appBuildDirectory,
1506 1507
    serverPort: serverPort,
    browserDebugPort: browserDebugPort,
1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518
  );

  if (result.contains('--- TEST SUCCEEDED ---')) {
    print('${green}Web release mode test passed.$reset');
  } else {
    print(result);
    print('${red}Web release mode test failed.$reset');
    exit(1);
  }
}

1519 1520 1521
/// Debug mode is special because `flutter build web` doesn't build in debug mode.
///
/// Instead, we use `flutter run --debug` and sniff out the standard output.
1522
Future<void> _runWebDebugTest(String target, {
1523
  bool enableNullSafety = false,
1524 1525
  List<String> additionalArguments = const<String>[],
}) async {
1526 1527
  final String testAppDirectory = path.join(flutterRoot, 'dev', 'integration_tests', 'web');
  bool success = false;
1528 1529 1530
  final Map<String, String> environment = <String, String>{
    'FLUTTER_WEB': 'true',
  };
1531
  adjustEnvironmentToEnableFlutterAsserts(environment);
1532
  final CommandResult result = await runCommand(
1533 1534 1535 1536
    flutter,
    <String>[
      'run',
      '--debug',
1537 1538
      if (enableNullSafety)
        ...<String>[
1539 1540
          '--no-sound-null-safety',
          '--null-assertions',
1541
        ],
1542 1543 1544
      '-d',
      'chrome',
      '--web-run-headless',
1545
      '--dart-define=FLUTTER_WEB_USE_SKIA=false',
1546
      '--dart-define=FLUTTER_WEB_AUTO_DETECT=false',
1547
      ...additionalArguments,
1548 1549
      '-t',
      target,
1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560
    ],
    outputMode: OutputMode.capture,
    outputListener: (String line, Process process) {
      if (line.contains('--- TEST SUCCEEDED ---')) {
        success = true;
      }
      if (success || line.contains('--- TEST FAILED ---')) {
        process.stdin.add('q'.codeUnits);
      }
    },
    workingDirectory: testAppDirectory,
1561
    environment: environment,
1562 1563 1564 1565 1566
  );

  if (success) {
    print('${green}Web stack trace integration test passed.$reset');
  } else {
1567 1568
    print(result.flattenedStdout!);
    print(result.flattenedStderr!);
1569 1570 1571 1572 1573
    print('${red}Web stack trace integration test failed.$reset');
    exit(1);
  }
}

1574
Future<void> _runFlutterWebTest(String webRenderer, String workingDirectory, List<String> tests) async {
1575 1576 1577 1578 1579 1580 1581 1582
  await runCommand(
    flutter,
    <String>[
      'test',
      if (ciProvider == CiProviders.cirrus)
        '--concurrency=1',  // do not parallelize on Cirrus, to reduce flakiness
      '-v',
      '--platform=chrome',
1583
      '--web-renderer=$webRenderer',
1584
      '--dart-define=DART_HHH_BOT=$_runningInDartHHHBot',
1585
      '--sound-null-safety',
1586
      ...flutterTestArgs,
1587 1588 1589 1590 1591 1592 1593
      ...tests,
    ],
    workingDirectory: workingDirectory,
    environment: <String, String>{
      'FLUTTER_WEB': 'true',
    },
  );
1594 1595
}

1596 1597 1598 1599 1600
// TODO(sigmund): includeLocalEngineEnv should default to true. Currently we
// only enable it on flutter-web test because some test suites do not work
// properly when overriding the local engine (for example, because some platform
// dependent targets are only built on some engines).
// See https://github.com/flutter/flutter/issues/72368
1601
Future<void> _dartRunTest(String workingDirectory, {
1602
  List<String>? testPaths,
1603 1604
  bool enableFlutterToolAsserts = true,
  bool useBuildRunner = false,
1605
  String? coverage,
1606
  bool forceSingleCore = false,
1607
  Duration? perTestTimeout,
1608
  bool includeLocalEngineEnv = false,
1609
  bool ensurePrecompiledTool = true,
1610
  bool shuffleTests = true,
Dan Field's avatar
Dan Field committed
1611
}) async {
1612 1613
  int? cpus;
  final String? cpuVariable = Platform.environment['CPU']; // CPU is set in cirrus.yml
1614 1615 1616 1617 1618 1619 1620 1621 1622 1623
  if (cpuVariable != null) {
    cpus = int.tryParse(cpuVariable, radix: 10);
    if (cpus == null) {
      print('${red}The CPU environment variable, if set, must be set to the integer number of available cores.$reset');
      print('Actual value: "$cpuVariable"');
      exit(1);
    }
  } else {
    cpus = 2; // Don't default to 1, otherwise we won't catch race conditions.
  }
1624 1625 1626 1627 1628
  // Integration tests that depend on external processes like chrome
  // can get stuck if there are multiple instances running at once.
  if (forceSingleCore) {
    cpus = 1;
  }
1629 1630 1631 1632

  final List<String> args = <String>[
    'run',
    'test',
1633
    if (shuffleTests) '--test-randomize-ordering-seed=$shuffleSeed',
1634 1635 1636 1637 1638 1639 1640 1641 1642
    if (useFlutterTestFormatter)
      '-rjson'
    else
      '-rcompact',
    '-j$cpus',
    if (!hasColor)
      '--no-color',
    if (coverage != null)
      '--coverage=$coverage',
1643 1644
    if (perTestTimeout != null)
      '--timeout=${perTestTimeout.inMilliseconds.toString()}ms',
1645 1646 1647 1648
    if (testPaths != null)
      for (final String testPath in testPaths)
        testPath,
  ];
1649
  final Map<String, String> environment = <String, String>{
1650
    'FLUTTER_ROOT': flutterRoot,
1651 1652 1653 1654
    if (includeLocalEngineEnv)
      ...localEngineEnv,
    if (Directory(pubCache).existsSync())
      'PUB_CACHE': pubCache,
1655 1656
  };
  if (enableFlutterToolAsserts) {
1657
    adjustEnvironmentToEnableFlutterAsserts(environment);
1658
  }
1659 1660 1661 1662
  if (ensurePrecompiledTool) {
    // We rerun the `flutter` tool here just to make sure that it is compiled
    // before tests run, because the tests might time out if they have to rebuild
    // the tool themselves.
1663
    await runCommand(flutter, <String>['--version'], environment: environment);
1664
  }
1665 1666
  if (useFlutterTestFormatter) {
    final FlutterCompactFormatter formatter = FlutterCompactFormatter();
1667 1668 1669
    Stream<String> testOutput;
    try {
      testOutput = runAndGetStdout(
1670
        dart,
1671 1672
        args,
        workingDirectory: workingDirectory,
1673
        environment: environment,
1674 1675 1676 1677
      );
    } finally {
      formatter.finish();
    }
1678
    await _processTestOutput(formatter, testOutput);
1679 1680
  } else {
    await runCommand(
1681
      dart,
1682
      args,
1683
      workingDirectory: workingDirectory,
1684
      environment: environment,
1685
      removeLine: useBuildRunner ? (String line) => line.startsWith('[INFO]') : null,
1686 1687
    );
  }
1688 1689
}

1690
Future<void> _runFlutterTest(String workingDirectory, {
1691
  String? script,
1692 1693
  bool expectFailure = false,
  bool printOutput = true,
1694
  OutputChecker? outputChecker,
1695
  List<String> options = const <String>[],
1696
  Map<String, String>? environment,
1697
  List<String> tests = const <String>[],
1698
  bool shuffleTests = true,
1699
  bool fatalWarnings = true,
Dan Field's avatar
Dan Field committed
1700
}) async {
1701
  assert(!printOutput || outputChecker == null, 'Output either can be printed or checked but not both');
1702

1703 1704 1705 1706 1707 1708 1709
  final List<String> tags = <String>[];
  // Recipe configured reduced test shards will only execute tests with the
  // appropriate tag.
  if ((Platform.environment['REDUCED_TEST_SET'] ?? 'False') == 'True') {
    tags.addAll(<String>['-t', 'reduced-test-set']);
  }

1710 1711
  final List<String> args = <String>[
    'test',
1712
    if (shuffleTests) '--test-randomize-ordering-seed=$shuffleSeed',
1713
    if (fatalWarnings) '--fatal-warnings',
1714
    ...options,
1715
    ...tags,
1716
    ...flutterTestArgs,
1717
  ];
Dan Field's avatar
Dan Field committed
1718

1719
  final bool shouldProcessOutput = useFlutterTestFormatter && !expectFailure && !options.contains('--coverage');
1720
  if (shouldProcessOutput)
1721
    args.add('--machine');
Dan Field's avatar
Dan Field committed
1722

1723 1724 1725
  if (script != null) {
    final String fullScriptPath = path.join(workingDirectory, script);
    if (!FileSystemEntity.isFileSync(fullScriptPath)) {
1726 1727 1728
      print('${red}Could not find test$reset: $green$fullScriptPath$reset');
      print('Working directory: $cyan$workingDirectory$reset');
      print('Script: $green$script$reset');
1729 1730 1731 1732
      if (!printOutput)
        print('This is one of the tests that does not normally print output.');
      exit(1);
    }
1733
    args.add(script);
1734
  }
1735

1736
  args.addAll(tests);
1737

1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752
  if (!shouldProcessOutput) {
    final OutputMode outputMode = outputChecker == null && printOutput
      ? OutputMode.print
      : OutputMode.capture;

    final CommandResult result = await runCommand(
      flutter,
      args,
      workingDirectory: workingDirectory,
      expectNonZeroExit: expectFailure,
      outputMode: outputMode,
      environment: environment,
    );

    if (outputChecker != null) {
1753
      final String? message = outputChecker(result);
1754 1755
      if (message != null)
        exitWithError(<String>[message]);
1756
    }
1757 1758
    return;
  }
1759

1760 1761 1762 1763 1764
  if (useFlutterTestFormatter) {
    final FlutterCompactFormatter formatter = FlutterCompactFormatter();
    Stream<String> testOutput;
    try {
      testOutput = runAndGetStdout(
1765 1766 1767 1768
        flutter,
        args,
        workingDirectory: workingDirectory,
        expectNonZeroExit: expectFailure,
1769
        environment: environment,
1770
      );
1771 1772
    } finally {
      formatter.finish();
1773
    }
1774
    await _processTestOutput(formatter, testOutput);
1775
  } else {
1776 1777 1778 1779 1780 1781
    await runCommand(
      flutter,
      args,
      workingDirectory: workingDirectory,
      expectNonZeroExit: expectFailure,
    );
1782
  }
1783 1784
}

1785 1786 1787
/// This will force the next run of the Flutter tool (if it uses the provided
/// environment) to have asserts enabled, by setting an environment variable.
void adjustEnvironmentToEnableFlutterAsserts(Map<String, String> environment) {
1788 1789 1790 1791 1792 1793
  // If an existing env variable exists append to it, but only if
  // it doesn't appear to already include enable-asserts.
  String toolsArgs = Platform.environment['FLUTTER_TOOL_ARGS'] ?? '';
  if (!toolsArgs.contains('--enable-asserts')) {
    toolsArgs += ' --enable-asserts';
  }
1794
  environment['FLUTTER_TOOL_ARGS'] = toolsArgs.trim();
1795 1796
}

1797
Map<String, String> _initGradleEnvironment() {
1798
  final String? androidSdkRoot = (Platform.environment['ANDROID_HOME']?.isEmpty ?? true)
1799 1800 1801
      ? Platform.environment['ANDROID_SDK_ROOT']
      : Platform.environment['ANDROID_HOME'];
  if (androidSdkRoot == null || androidSdkRoot.isEmpty) {
1802
    print('${red}Could not find Android SDK; set ANDROID_SDK_ROOT.$reset');
1803 1804 1805
    exit(1);
  }
  return <String, String>{
1806
    'ANDROID_HOME': androidSdkRoot!,
1807 1808
    'ANDROID_SDK_ROOT': androidSdkRoot,
  };
1809
}
1810

1811 1812 1813 1814 1815 1816 1817 1818 1819
final Map<String, String> gradleEnvironment = _initGradleEnvironment();

void deleteFile(String path) {
  // This is technically a race condition but nobody else should be running
  // while this script runs, so we should be ok. (Sadly recursive:true does not
  // obviate the need for existsSync, at least on Windows.)
  final File file = File(path);
  if (file.existsSync())
    file.deleteSync();
1820 1821
}

1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837
enum CiProviders {
  cirrus,
  luci,
}

Future<void> _processTestOutput(
  FlutterCompactFormatter formatter,
  Stream<String> testOutput,
) async {
  final Timer heartbeat = Timer.periodic(const Duration(seconds: 30), (Timer timer) {
    print('Processing...');
  });

  await testOutput.forEach(formatter.processRawOutput);
  heartbeat.cancel();
  formatter.finish();
1838 1839
}

1840
CiProviders? get ciProvider {
1841 1842 1843 1844 1845 1846 1847 1848
  if (Platform.environment['CIRRUS_CI'] == 'true') {
    return CiProviders.cirrus;
  }
  if (Platform.environment['LUCI_CONTEXT'] != null) {
    return CiProviders.luci;
  }
  return null;
}
1849

1850 1851 1852 1853
/// Returns the name of the branch being tested.
String get branchName {
  switch(ciProvider) {
    case CiProviders.cirrus:
1854
      return Platform.environment['CIRRUS_BRANCH']!;
1855
    case CiProviders.luci:
1856 1857 1858
      return Platform.environment['LUCI_BRANCH']!;
    case null:
      return '';
1859 1860 1861
  }
}

1862 1863 1864 1865 1866
/// Checks the given file's contents to determine if they match the allowed
/// pattern for version strings.
///
/// Returns null if the contents are good. Returns a string if they are bad.
/// The string is an error message.
1867
Future<String?> verifyVersion(File file) async {
1868 1869
  final RegExp pattern = RegExp(
    r'^(\d+)\.(\d+)\.(\d+)((-\d+\.\d+)?\.pre(\.\d+)?)?$');
1870 1871 1872 1873 1874 1875 1876 1877 1878 1879
  final String version = await file.readAsString();
  if (!file.existsSync())
    return 'The version logic failed to create the Flutter version file.';
  if (version == '0.0.0-unknown')
    return 'The version logic failed to determine the Flutter version.';
  if (!version.contains(pattern))
    return 'The version logic generated an invalid version string: "$version".';
  return null;
}

1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891
/// Parse (one-)index/total-named subshards from environment variable SUBSHARD
/// and equally distribute [tests] between them.
/// Subshard format is "{index}_{total number of shards}".
/// The scheduler can change the number of total shards without needing an additional
/// commit in this repository.
///
/// Examples:
/// 1_3
/// 2_3
/// 3_3
List<T> _selectIndexOfTotalSubshard<T>(List<T> tests, {String subshardKey = kSubshardKey}) {
  // Example: "1_3" means the first (one-indexed) shard of three total shards.
1892
  final String? subshardName = Platform.environment[subshardKey];
1893 1894 1895 1896 1897 1898 1899
  if (subshardName == null) {
    print('$kSubshardKey environment variable is missing, skipping sharding');
    return tests;
  }
  print('$bold$subshardKey=$subshardName$reset');

  final RegExp pattern = RegExp(r'^(\d+)_(\d+)$');
1900
  final Match? match = pattern.firstMatch(subshardName);
1901 1902
  if (match == null || match.groupCount != 2) {
    print('${red}Invalid subshard name "$subshardName". Expected format "[int]_[int]" ex. "1_3"');
1903
    exit(1);
1904 1905
  }
  // One-indexed.
1906 1907
  final int index = int.parse(match!.group(1)!);
  final int total = int.parse(match.group(2)!);
1908 1909 1910 1911 1912
  if (index > total) {
    print('${red}Invalid subshard name "$subshardName". Index number must be greater or equal to total.');
    exit(1);
  }

1913
  final int testsPerShard = (tests.length / total).ceil();
1914
  final int start = (index - 1) * testsPerShard;
1915
  final int end = math.min(index * testsPerShard, tests.length);
1916 1917 1918 1919 1920

  print('Selecting subshard $index of $total (range ${start + 1}-$end of ${tests.length})');
  return tests.sublist(start, end);
}

1921
Future<void> _runShardRunnerIndexOfTotalSubshard(List<ShardRunner> tests) async {
1922 1923 1924 1925 1926 1927
  final List<ShardRunner> sublist = _selectIndexOfTotalSubshard<ShardRunner>(tests);
  for (final ShardRunner test in sublist) {
    await test();
  }
}

1928
/// If the CIRRUS_TASK_NAME environment variable exists, we use that to determine
1929
/// the shard and sub-shard (parsing it in the form shard-subshard-platform, ignoring
1930 1931
/// the platform).
///
1932
/// For local testing you can just set the SHARD and SUBSHARD
1933
/// environment variables. For example, to run all the framework tests you can
1934 1935 1936 1937 1938 1939
/// just set SHARD=framework_tests. Some shards support named subshards, like
/// SHARD=framework_tests SUBSHARD=widgets. Others support arbitrary numbered
/// subsharding, like SHARD=build_tests SUBSHARD=1_2 (where 1_2 means "one of two"
/// as in run the first half of the tests).
///
/// To run specifically the third subshard of
1940
/// the Web tests you can set SHARD=web_tests SUBSHARD=2 (it's zero-based).
1941 1942
Future<void> selectShard(Map<String, ShardRunner> shards) => _runFromList(shards, kShardKey, 'shard', 0);
Future<void> selectSubshard(Map<String, ShardRunner> subshards) => _runFromList(subshards, kSubshardKey, 'subshard', 1);
1943 1944 1945 1946

const String CIRRUS_TASK_NAME = 'CIRRUS_TASK_NAME';

Future<void> _runFromList(Map<String, ShardRunner> items, String key, String name, int positionInTaskName) async {
1947
  String? item = Platform.environment[key];
1948
  if (item == null && Platform.environment.containsKey(CIRRUS_TASK_NAME)) {
1949
    final List<String> parts = Platform.environment[CIRRUS_TASK_NAME]!.split('-');
1950 1951 1952 1953
    assert(positionInTaskName < parts.length);
    item = parts[positionInTaskName];
  }
  if (item == null) {
1954
    for (final String currentItem in items.keys) {
1955
      print('$bold$key=$currentItem$reset');
1956
      await items[currentItem]!();
1957 1958 1959
      print('');
    }
  } else {
1960 1961 1962 1963 1964 1965
    if (!items.containsKey(item)) {
      print('${red}Invalid $name: $item$reset');
      print('The available ${name}s are: ${items.keys.join(", ")}');
      exit(1);
    }
    print('$bold$key=$item$reset');
1966
    await items[item]!();
1967 1968
  }
}