dart-sass/test/double_check_test.dart

57 lines
1.9 KiB
Dart
Raw Normal View History

// Copyright 2017 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:io';
import 'dart:convert';
import 'package:crypto/crypto.dart';
import 'package:test/test.dart';
import 'package:yaml/yaml.dart';
import '../tool/grind/synchronize.dart' as synchronize;
/// Tests that double-check that everything in the repo looks sensible.
void main() {
group("synchronized file is up-to-date:", () {
/// The pattern of a checksum in a generated file.
var checksumPattern = RegExp(r"^// Checksum: (.*)$", multiLine: true);
synchronize.sources.forEach((sourcePath, targetPath) {
test(targetPath, () {
2021-03-10 02:04:09 +01:00
var message = "$targetPath is out-of-date.\n"
"Run pub run grinder to update it.";
var target = File(targetPath).readAsStringSync();
var match = checksumPattern.firstMatch(target);
2021-03-10 02:04:09 +01:00
if (match == null) fail(message);
var source = File(sourcePath).readAsBytesSync();
var expectedHash = sha1.convert(source).toString();
2021-03-10 02:04:09 +01:00
expect(match[1], equals(expectedHash), reason: message);
});
});
},
// Windows sees different bytes than other OSes, possibly because of
// newline normalization issues.
testOn: "!windows");
test("pubspec version matches CHANGELOG version", () {
var firstLine = const LineSplitter()
.convert(File("CHANGELOG.md").readAsStringSync())
.first;
expect(firstLine, startsWith("## "));
var changelogVersion = firstLine.substring(3);
var pubspec = loadYaml(File("pubspec.yaml").readAsStringSync(),
sourceUrl: Uri(path: "pubspec.yaml")) as Map<dynamic, dynamic>;
expect(pubspec, containsPair("version", isA<String>()));
2021-03-17 03:25:39 +01:00
var pubspecVersion = pubspec["version"] as String;
expect(pubspecVersion,
anyOf(equals(changelogVersion), equals("$changelogVersion-dev")));
});
}