dart-sass/test/cli/dart_test.dart
Natalie Weizenbaum c462b82102 Run snapshots in Dart 1 mode
Until dart-lang/sdk#33257 is fixed, this ensures that users get as
much performance as possible.
2018-06-27 15:51:16 -07:00

66 lines
1.8 KiB
Dart

// Copyright 2016 Google Inc. Use of this source code is governed by an
// MIT-style license that can be found in the LICENSE file or at
// https://opensource.org/licenses/MIT.
@TestOn('vm')
import 'dart:async';
import 'dart:io';
import 'package:path/path.dart' as p;
import 'package:test/test.dart';
import 'package:test_descriptor/test_descriptor.dart' as d;
import 'package:test_process/test_process.dart';
import '../io.dart';
import 'shared.dart';
/// Paths where snapshots of the Sass binary might exist, in order of
/// preference.
final _snapshotPaths = [
p.absolute("build/sass.dart.app.snapshot"),
p.absolute("build/sass.dart.snapshot")
];
void main() {
setUpAll(ensureSnapshotUpToDate);
sharedTests(runSass);
test("--version prints the Sass version", () async {
var sass = await runSass(["--version"]);
expect(sass.stdout, emits(matches(new RegExp(r"^\d+\.\d+\.\d+"))));
await sass.shouldExit(0);
});
}
/// Ensures that the snapshot of the Dart executable used by [runSass] is
/// up-to-date, if one has been generated.
void ensureSnapshotUpToDate() {
for (var path in _snapshotPaths) {
if (new File(path).existsSync()) {
ensureUpToDate(path, "pub run grinder app-snapshot");
return;
}
}
}
Future<TestProcess> runSass(Iterable<String> arguments) {
var executable = _snapshotPaths.firstWhere(
(path) => new File(path).existsSync(),
orElse: () => p.absolute("bin/sass.dart"));
var args = ["--no-preview-dart-2", "--checked"];
// Work around dart-lang/sdk#33622.
if (Platform.isWindows) args.add("--packages=${p.absolute('.packages')}");
return TestProcess.start(
Platform.executable,
args
..add(executable)
..addAll(arguments),
workingDirectory: d.sandbox,
description: "sass");
}