| // Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file |
| // for details. 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:async'; |
| import 'dart:io'; |
| |
| import 'package:dart2native/dart2native.dart' hide platformDill, genSnapshot; |
| import 'package:path/path.dart' as path; |
| import 'package:expect/expect.dart'; |
| |
| import 'snapshot_test_helper.dart'; |
| |
| Future<void> main(List<String> args) async { |
| if (args.length == 1 && args[0] == '--child') { |
| print('Hello, Appended AOT'); |
| return; |
| } |
| |
| final String sourcePath = path.join( |
| 'runtime', 'tests', 'vm', 'dart', 'run_appended_aot_snapshot_test.dart'); |
| |
| await withTempDir((String tmp) async { |
| final String exeName = 'test.exe'; |
| final String dillPath = path.join(tmp, 'test.dill'); |
| final String aotPath = path.join(tmp, 'test.aot'); |
| final String exePath = path.join(tmp, exeName); |
| final extraGenKernelOptions = Platform.executableArguments |
| .where((arg) => |
| arg.startsWith('--enable-experiment=') || |
| arg == '--sound-null-safety' || |
| arg == '--no-sound-null-safety') |
| .toList(); |
| |
| { |
| final result = await generateAotKernel( |
| checkedInDartVM, genKernelDart, platformDill, sourcePath, dillPath, |
| extraGenKernelOptions: extraGenKernelOptions); |
| Expect.equals(result.stderr, ''); |
| Expect.equals(result.stdout, ''); |
| Expect.equals(result.exitCode, 0); |
| } |
| |
| { |
| final result = |
| await generateAotSnapshotHelper(genSnapshot, dillPath, aotPath); |
| Expect.equals(result.stderr, ''); |
| Expect.equals(result.stdout, ''); |
| Expect.equals(result.exitCode, 0); |
| } |
| |
| await writeAppendedExecutable(dartPrecompiledRuntime, aotPath, exePath); |
| |
| if (Platform.isLinux || Platform.isMacOS) { |
| final result = await markExecutable(exePath); |
| Expect.equals(result.stderr, ''); |
| Expect.equals(result.exitCode, 0); |
| Expect.equals(result.stdout, ''); |
| } |
| |
| { |
| final runResult = |
| await runBinary('run appended aot snapshot', exePath, ['--child']); |
| expectOutput('Hello, Appended AOT', runResult); |
| } |
| |
| { |
| // Test that it runs when invoked via PATH as well. |
| Map<String, String> environment = {'PATH': tmp}; |
| final runResult = await runBinary( |
| 'run appended aot snapshot from PATH', exeName, ['--child'], |
| environment: environment, runInShell: true); |
| expectOutput('Hello, Appended AOT', runResult); |
| } |
| |
| // Windows allows leaving out .exe. Make sure we can load that as well. |
| if (Platform.isWindows) { |
| final String exeNameWithoutExt = |
| exeName.replaceFirst(new RegExp(r'.exe$'), ''); |
| Map<String, String> environment = {'PATH': tmp}; |
| final runResult = await runBinary( |
| 'run appended aot snapshot without extension', |
| exeNameWithoutExt, |
| ['--child'], |
| environment: environment, |
| runInShell: true); |
| expectOutput('Hello, Appended AOT', runResult); |
| } |
| }); |
| } |
| |
| Future generateAotKernel( |
| String dart, |
| String genKernel, |
| String platformDill, |
| String sourceFile, |
| String kernelFile, { |
| List<String> extraGenKernelOptions = const [], |
| }) async { |
| return Process.run(dart, [ |
| genKernel, |
| '--platform', |
| platformDill, |
| '--aot', |
| '-Ddart.vm.product=true', |
| '-o', |
| kernelFile, |
| ...extraGenKernelOptions, |
| sourceFile |
| ]); |
| } |
| |
| Future<ProcessResult> generateAotSnapshotHelper( |
| String genSnapshot, String kernelFile, String snapshotFile) { |
| return Process.run(genSnapshot, |
| ['--snapshot-kind=app-aot-elf', '--elf=$snapshotFile', kernelFile]); |
| } |