runAndCollect function

Future<Map<String, dynamic>> runAndCollect(
  1. String scriptPath,
  2. {List<String>? scriptArgs,
  3. bool checked = false,
  4. bool includeDart = false,
  5. Duration? timeout}
)

Implementation

Future<Map<String, dynamic>> runAndCollect(String scriptPath,
    {List<String>? scriptArgs,
    bool checked = false,
    bool includeDart = false,
    Duration? timeout}) async {
  final dartArgs = [
    '--enable-vm-service',
    '--pause_isolates_on_exit',
    if (checked) '--checked',
    scriptPath,
    ...?scriptArgs,
  ];

  final process = await Process.start(Platform.executable, dartArgs);

  final serviceUri = await serviceUriFromProcess(process.stdout.lines());
  Map<String, dynamic> coverage;
  try {
    coverage = await collect(
      serviceUri,
      true,
      true,
      includeDart,
      <String>{},
      timeout: timeout,
    );
  } finally {
    await process.stderr.drain<void>();
  }
  final exitStatus = await process.exitCode;
  if (exitStatus != 0) {
    throw ProcessException(
      Platform.executable,
      dartArgs,
      'Process failed.',
      exitStatus,
    );
  }
  return coverage;
}