2016-12-02 15:19:24 -08:00
|
|
|
// 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.
|
|
|
|
|
2021-03-09 14:36:48 -08:00
|
|
|
import 'dart:convert';
|
|
|
|
|
2020-01-24 13:05:04 -08:00
|
|
|
import 'package:cli_pkg/testing.dart' as pkg;
|
2017-05-25 14:23:48 -07:00
|
|
|
import 'package:test/test.dart';
|
|
|
|
import 'package:test_descriptor/test_descriptor.dart' as d;
|
|
|
|
import 'package:test_process/test_process.dart';
|
2016-12-02 15:19:24 -08:00
|
|
|
|
2018-05-30 18:35:35 -04:00
|
|
|
import 'shared.dart';
|
2016-12-02 15:19:24 -08:00
|
|
|
|
|
|
|
void main() {
|
2018-06-27 13:12:16 -07:00
|
|
|
setUpAll(ensureSnapshotUpToDate);
|
|
|
|
|
2018-05-30 18:35:35 -04:00
|
|
|
sharedTests(runSass);
|
2016-12-02 17:30:09 -08:00
|
|
|
|
2017-05-25 14:23:48 -07:00
|
|
|
test("--version prints the Sass version", () async {
|
2018-05-30 18:35:35 -04:00
|
|
|
var sass = await runSass(["--version"]);
|
2018-11-15 15:16:24 -08:00
|
|
|
expect(sass.stdout, emits(matches(RegExp(r"^\d+\.\d+\.\d+"))));
|
2017-05-25 14:23:48 -07:00
|
|
|
await sass.shouldExit(0);
|
2016-12-02 17:30:09 -08:00
|
|
|
});
|
2016-12-02 15:19:24 -08:00
|
|
|
}
|
2016-12-02 17:30:09 -08:00
|
|
|
|
2018-06-27 13:12:16 -07:00
|
|
|
/// Ensures that the snapshot of the Dart executable used by [runSass] is
|
|
|
|
/// up-to-date, if one has been generated.
|
2020-01-24 13:05:04 -08:00
|
|
|
void ensureSnapshotUpToDate() => pkg.ensureExecutableUpToDate("sass");
|
2018-06-27 13:12:16 -07:00
|
|
|
|
2018-11-05 15:24:14 -08:00
|
|
|
Future<TestProcess> runSass(Iterable<String> arguments,
|
2021-03-16 19:25:39 -07:00
|
|
|
{Map<String, String>? environment}) =>
|
2020-01-24 13:05:04 -08:00
|
|
|
pkg.start("sass", arguments,
|
2021-03-09 14:36:48 -08:00
|
|
|
environment: environment, workingDirectory: d.sandbox, encoding: utf8);
|