2019-03-19 00:50:23 +01:00
|
|
|
// Copyright 2019 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.
|
|
|
|
|
|
|
|
// Almost all CSS output tests should go in sass-spec rather than here. This
|
|
|
|
// just covers tests that explicitly validate out that's considered too
|
|
|
|
// implementation-specific to verify in sass-spec.
|
|
|
|
|
|
|
|
import 'package:test/test.dart';
|
|
|
|
|
|
|
|
import 'package:sass/sass.dart';
|
|
|
|
|
|
|
|
void main() {
|
2021-08-16 23:52:35 +02:00
|
|
|
group("emits private-use area characters as escapes in expanded mode", () {
|
|
|
|
var testCharacter = (String escape) {
|
|
|
|
test("$escape", () {
|
|
|
|
expect(compileString("a {b: $escape}"),
|
|
|
|
equalsIgnoringWhitespace("a { b: $escape; }"));
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
group("in the basic multilingual plane", () {
|
|
|
|
testCharacter(r"\e000");
|
|
|
|
testCharacter(r"\f000");
|
|
|
|
testCharacter(r"\f8ff");
|
|
|
|
});
|
|
|
|
|
|
|
|
group("in the supplementary planes", () {
|
|
|
|
testCharacter(r"\f0000");
|
|
|
|
testCharacter(r"\fabcd");
|
|
|
|
testCharacter(r"\ffffd");
|
|
|
|
testCharacter(r"\100000");
|
|
|
|
testCharacter(r"\10abcd");
|
|
|
|
testCharacter(r"\10fffd");
|
|
|
|
|
|
|
|
// Although these aren't technically in private-use areaa, they're in
|
|
|
|
// private-use planes and they have no visual representation to we
|
|
|
|
// escape them as well.
|
|
|
|
group("that aren't technically in PUAs", () {
|
|
|
|
testCharacter(r"\ffffe");
|
|
|
|
testCharacter(r"\fffff");
|
|
|
|
testCharacter(r"\10fffe");
|
|
|
|
testCharacter(r"\10ffff");
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
group("adds a space", () {
|
|
|
|
test("if followed by a hex character", () {
|
|
|
|
expect(compileString(r"a {b: '\e000 a'}"),
|
|
|
|
equalsIgnoringWhitespace(r'a { b: "\e000 a"; }'));
|
|
|
|
});
|
|
|
|
|
|
|
|
test("if followed by a space", () {
|
|
|
|
expect(compileString(r"a {b: '\e000 '}"),
|
|
|
|
equalsIgnoringWhitespace(r'a { b: "\e000 "; }'));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2019-03-19 00:50:23 +01:00
|
|
|
// Regression test for sass/dart-sass#623. This needs to be tested here
|
|
|
|
// because sass-spec normalizes CR LF newlines.
|
|
|
|
group("normalizes newlines in a loud comment", () {
|
|
|
|
test("in SCSS", () {
|
|
|
|
expect(compileString("/* foo\r\n * bar */"), equals("/* foo\n * bar */"));
|
|
|
|
});
|
|
|
|
|
|
|
|
test("in Sass", () {
|
|
|
|
expect(compileString("/*\r\n foo\r\n bar", syntax: Syntax.sass),
|
|
|
|
equals("/* foo\n * bar */"));
|
|
|
|
});
|
|
|
|
});
|
2019-05-21 00:49:40 +02:00
|
|
|
|
|
|
|
// Regression test for sass/dart-sass#688. This needs to be tested here
|
|
|
|
// because it varies between Dart and Node.
|
|
|
|
group("removes exponential notation", () {
|
|
|
|
group("for integers", () {
|
|
|
|
test(">= 1e21", () {
|
|
|
|
expect(compileString("a {b: 1e21}"),
|
|
|
|
equalsIgnoringWhitespace("a { b: 1${'0' * 21}; }"));
|
|
|
|
});
|
|
|
|
|
|
|
|
// At time of writing, numbers that are 20 digits or fewer are not printed
|
|
|
|
// in exponential notation by either Dart or Node, and we rely on that to
|
|
|
|
// determine when to get rid of the exponent. This test ensures that if that
|
|
|
|
// ever changes, we know about it.
|
|
|
|
test("< 1e21", () {
|
|
|
|
expect(compileString("a {b: 1e20}"),
|
|
|
|
equalsIgnoringWhitespace("a { b: 1${'0' * 20}; }"));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
group("for floating-point numbers", () {
|
2020-09-04 21:25:42 +02:00
|
|
|
test("Infinity", () {
|
|
|
|
expect(compileString("a {b: 1e999}"),
|
|
|
|
equalsIgnoringWhitespace("a { b: Infinity; }"));
|
|
|
|
});
|
|
|
|
|
2019-05-21 00:49:40 +02:00
|
|
|
test(">= 1e21", () {
|
|
|
|
expect(compileString("a {b: 1.01e21}"),
|
|
|
|
equalsIgnoringWhitespace("a { b: 101${'0' * 19}; }"));
|
|
|
|
});
|
|
|
|
|
|
|
|
// At time of writing, numbers that are 20 digits or fewer are not printed
|
|
|
|
// in exponential notation by either Dart or Node, and we rely on that to
|
|
|
|
// determine when to get rid of the exponent. This test ensures that if that
|
|
|
|
// ever changes, we know about it.
|
|
|
|
test("< 1e21", () {
|
|
|
|
expect(compileString("a {b: 1.01e20}"),
|
|
|
|
equalsIgnoringWhitespace("a { b: 101${'0' * 18}; }"));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2019-03-19 00:50:23 +01:00
|
|
|
}
|