Files
sdk/pkg/dartdev/test/core_test.dart
T
Michael Thomsen 0df58fc2d0 Add new dart compile wasm command.
Marked as experimental, and only shown when verbose flag is passed:

```
$ dart help compile -v
Compile Dart to various formats.

Usage: dart [vm-options] compile <subcommand> [arguments]
-h, --help    Print this usage information.

Available subcommands:
  aot-snapshot   Compile Dart to an AOT snapshot.
  exe            Compile Dart to a self-contained executable.
  jit-snapshot   Compile Dart to a JIT snapshot.
  js             Compile Dart to JavaScript.
  kernel         Compile Dart to a kernel snapshot.
  wasm           Compile Dart to a WebAssembly/WasmGC module (EXPERIMENTAL).
```

Change-Id: I6a0e65d4fbdd7b2782406b8b9969e14036bf0711
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/304860
Reviewed-by: Ben Konyi <bkonyi@google.com>
Commit-Queue: Michael Thomsen <mit@google.com>
Reviewed-by: Aske Simon Christensen <askesc@google.com>
2023-12-05 15:44:53 +00:00

172 lines
4.7 KiB
Dart

// Copyright (c) 2020, 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:convert';
import 'dart:io';
import 'package:dartdev/src/commands/analyze.dart';
import 'package:dartdev/src/commands/compile.dart';
import 'package:dartdev/src/commands/create.dart';
import 'package:dartdev/src/commands/fix.dart';
import 'package:dartdev/src/commands/run.dart';
import 'package:dartdev/src/commands/test.dart';
import 'package:dartdev/src/core.dart';
import 'package:path/path.dart' as path;
import 'package:test/test.dart';
import 'utils.dart';
void main() {
initGlobalState();
group('DartdevCommand', _dartdevCommand);
group('PackageConfig', _packageConfig);
group('Project', _project);
}
void _dartdevCommand() {
void assertDartdevCommandProperties(
DartdevCommand command, String name, String expectedUsagePath,
[int subcommandCount = 0]) {
expect(command, isNotNull);
expect(command.name, name);
expect(command.description, isNotEmpty);
expect(command.project, isNotNull);
expect(command.argParser, isNotNull);
expect(command.subcommands.length, subcommandCount);
}
test('analyze', () {
assertDartdevCommandProperties(AnalyzeCommand(), 'analyze', 'analyze');
});
test('compile', () {
assertDartdevCommandProperties(CompileCommand(), 'compile', 'compile', 6);
});
test('compile/js', () {
assertDartdevCommandProperties(
CompileCommand().subcommands['js'] as DartdevCommand,
'js',
'compile/js');
});
test('compile/jit-snapshot', () {
assertDartdevCommandProperties(
CompileCommand().subcommands['jit-snapshot'] as DartdevCommand,
'jit-snapshot',
'compile/jit-snapshot');
});
test('compile/kernel', () {
assertDartdevCommandProperties(
CompileCommand().subcommands['kernel'] as DartdevCommand,
'kernel',
'compile/kernel');
});
test('compile/exe', () {
assertDartdevCommandProperties(
CompileCommand().subcommands['exe'] as DartdevCommand,
'exe',
'compile/exe');
});
test('compile/aot-snapshot', () {
assertDartdevCommandProperties(
CompileCommand().subcommands['aot-snapshot'] as DartdevCommand,
'aot-snapshot',
'compile/aot-snapshot');
});
test('compile/wasm', () {
assertDartdevCommandProperties(
CompileCommand().subcommands['wasm'] as DartdevCommand,
'wasm',
'compile/wasm');
});
test('create', () {
assertDartdevCommandProperties(CreateCommand(), 'create', 'create');
});
test('fix', () {
assertDartdevCommandProperties(FixCommand(), 'fix', 'fix');
});
test('run', () {
assertDartdevCommandProperties(RunCommand(verbose: false), 'run', 'run');
});
test('test', () {
assertDartdevCommandProperties(TestCommand(), 'test', 'test');
});
}
void _packageConfig() {
test('packages', () {
PackageConfig packageConfig = PackageConfig(jsonDecode(_packageData));
expect(packageConfig.packages, isNotEmpty);
});
test('hasDependency', () {
PackageConfig packageConfig = PackageConfig(jsonDecode(_packageData));
expect(packageConfig.hasDependency('test'), isFalse);
expect(packageConfig.hasDependency('lints'), isTrue);
});
}
void _project() {
test('hasPubspecFile positive', () {
final p = project();
Project coreProj = Project.fromDirectory(p.dir);
expect(coreProj.hasPubspecFile, isTrue);
});
test('hasPubspecFile negative', () {
final p = project();
var pubspec = File(path.join(p.dirPath, 'pubspec.yaml'));
pubspec.deleteSync();
Project coreProj = Project.fromDirectory(p.dir);
expect(coreProj.hasPubspecFile, isFalse);
});
test('hasPackageConfigFile positive', () {
final p = project();
p.file('.dart_tool/package_config.json', _packageData);
Project coreProj = Project.fromDirectory(p.dir);
expect(coreProj.hasPackageConfigFile, isTrue);
expect(coreProj.packageConfig, isNotNull);
expect(coreProj.packageConfig!.packages, isNotEmpty);
});
test('hasPackageConfigFile negative', () {
final p = project();
Project coreProj = Project.fromDirectory(p.dir);
expect(coreProj.hasPackageConfigFile, isFalse);
});
}
const String _packageData = '''{
"configVersion": 2,
"packages": [
{
"name": "lints",
"rootUri": "file:///Users/.../.pub-cache/hosted/pub.dartlang.org/lints-1.0.1",
"packageUri": "lib/",
"languageVersion": "2.1"
},
{
"name": "args",
"rootUri": "../",
"packageUri": "lib/",
"languageVersion": "2.3"
}
],
"generated": "2020-03-01T03:38:14.906205Z",
"generator": "pub",
"generatorVersion": "2.8.0-dev.10.0"
}
''';