mirror of
https://github.com/danog/dart-sass.git
synced 2024-12-02 17:49:38 +01:00
d4655f22bd
We were resolving URLs relative to the canonical URL rather than the original URL, which broke importers for which those were different, like the package importer. Closes #334
143 lines
4.1 KiB
Dart
143 lines
4.1 KiB
Dart
// 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 'package:test/test.dart';
|
|
|
|
import 'package:sass/sass.dart';
|
|
import 'package:sass/src/exception.dart';
|
|
|
|
main() {
|
|
test("uses an importer to resolve an @import", () {
|
|
var css = compileString('@import "orange";', importers: [
|
|
new _TestImporter((url) => url, (url) {
|
|
return new ImporterResult('.$url {color: $url}', indented: false);
|
|
})
|
|
]);
|
|
|
|
expect(css, equals(".orange {\n color: orange;\n}"));
|
|
});
|
|
|
|
test("passes the canonicalized URL to the importer", () {
|
|
var css = compileString('@import "orange";', importers: [
|
|
new _TestImporter((url) => new Uri(path: 'blue'), (url) {
|
|
return new ImporterResult('.$url {color: $url}', indented: false);
|
|
})
|
|
]);
|
|
|
|
expect(css, equals(".blue {\n color: blue;\n}"));
|
|
});
|
|
|
|
test("only invokes the importer once for a given canonicalization", () {
|
|
var css = compileString("""
|
|
@import "orange";
|
|
@import "orange";
|
|
""", importers: [
|
|
new _TestImporter(
|
|
(url) => new Uri(path: 'blue'),
|
|
expectAsync1((url) {
|
|
return new ImporterResult('.$url {color: $url}', indented: false);
|
|
}, count: 1))
|
|
]);
|
|
|
|
expect(css, equals("""
|
|
.blue {
|
|
color: blue;
|
|
}
|
|
|
|
.blue {
|
|
color: blue;
|
|
}"""));
|
|
});
|
|
|
|
test("resolves URLs relative to the pre-canonicalized URL", () {
|
|
var times = 0;
|
|
var css = compileString('@import "foo:bar/baz";', importers: [
|
|
new _TestImporter(
|
|
expectAsync1((url) {
|
|
times++;
|
|
if (times == 1) return new Uri(path: 'first');
|
|
|
|
expect(url, equals(Uri.parse('foo:bar/bang')));
|
|
return new Uri(path: 'second');
|
|
}, count: 2),
|
|
expectAsync1((url) {
|
|
return new ImporterResult(
|
|
times == 1
|
|
? '''
|
|
.first {url: "$url"}
|
|
@import "bang";
|
|
'''
|
|
: '.second {url: "$url"}',
|
|
indented: false);
|
|
}, count: 2))
|
|
]);
|
|
|
|
expect(css, equalsIgnoringWhitespace('''
|
|
.first { url: "first"; }
|
|
.second { url: "second"; }
|
|
'''));
|
|
});
|
|
|
|
test("wraps an error in canonicalize()", () {
|
|
expect(() {
|
|
compileString('@import "orange";', importers: [
|
|
new _TestImporter((url) {
|
|
throw "this import is bad actually";
|
|
}, expectAsync1((_) => null, count: 0))
|
|
]);
|
|
}, throwsA(predicate((error) {
|
|
expect(error, new isInstanceOf<SassException>());
|
|
expect(
|
|
error.toString(), startsWith("Error: this import is bad actually"));
|
|
return true;
|
|
})));
|
|
});
|
|
|
|
test("wraps an error in load()", () {
|
|
expect(() {
|
|
compileString('@import "orange";', importers: [
|
|
new _TestImporter((url) => url, (url) {
|
|
throw "this import is bad actually";
|
|
})
|
|
]);
|
|
}, throwsA(predicate((error) {
|
|
expect(error, new isInstanceOf<SassException>());
|
|
expect(
|
|
error.toString(), startsWith("Error: this import is bad actually"));
|
|
return true;
|
|
})));
|
|
});
|
|
|
|
test("prefers .message to .toString() for an importer error", () {
|
|
expect(() {
|
|
compileString('@import "orange";', importers: [
|
|
new _TestImporter((url) => url, (url) {
|
|
throw new FormatException("bad format somehow");
|
|
})
|
|
]);
|
|
}, throwsA(predicate((error) {
|
|
expect(error, new isInstanceOf<SassException>());
|
|
// FormatException.toString() starts with "FormatException:", but
|
|
// the error message should not.
|
|
expect(error.toString(), startsWith("Error: bad format somehow"));
|
|
return true;
|
|
})));
|
|
});
|
|
}
|
|
|
|
/// An [Importer] whose [canonicalize] and [load] methods are provided by
|
|
/// closures.
|
|
class _TestImporter extends Importer {
|
|
final Uri Function(Uri url) _canonicalize;
|
|
final ImporterResult Function(Uri url) _load;
|
|
|
|
_TestImporter(this._canonicalize, this._load);
|
|
|
|
Uri canonicalize(Uri url) => _canonicalize(url);
|
|
|
|
ImporterResult load(Uri url) => _load(url);
|
|
}
|