forked from sass/dart-sass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutput_test.dart
483 lines (439 loc) · 12.2 KB
/
output_test.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
// 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.
@TestOn('vm')
library;
import 'package:test/test.dart';
import 'package:sass/sass.dart';
void main() {
group("emits private-use area characters as escapes in expanded mode", () {
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 area, 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 "; }'),
);
});
});
});
// 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 */"),
);
});
});
// 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", () {
test("Infinity", () {
expect(
compileString("a {b: 1e999}"),
equalsIgnoringWhitespace("a { b: calc(infinity); }"),
);
});
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}; }"),
);
});
});
});
// Tests for sass/dart-sass#2070.
//
// These aren't covered by sass-spec because the inspect format for
// non-literal values isn't covered by the spec.
group("uses a nice format to inspect numbers with complex units", () {
group("finite", () {
test("top-level", () {
expect(
compileString("""
@use 'sass:meta';
a {b: meta.inspect(1px * 1em)};
"""),
equalsIgnoringWhitespace('a { b: calc(1px * 1em); }'),
);
});
test("in calc", () {
expect(
compileString("""
@use 'sass:meta';
a {b: meta.inspect(calc(1px * 1em))};
"""),
equalsIgnoringWhitespace('a { b: calc(1px * 1em); }'),
);
});
test("nested in calc", () {
expect(
compileString("""
@use 'sass:meta';
a {b: meta.inspect(calc(c / (1px * 1em)))};
"""),
equalsIgnoringWhitespace('a { b: calc(c / (1px * 1em)); }'),
);
});
test("numerator and denominator", () {
expect(
compileString("""
@use 'sass:math';
@use 'sass:meta';
a {b: meta.inspect(1px * math.div(math.div(1em, 1s), 1x))};
"""),
equalsIgnoringWhitespace('a { b: calc(1px * 1em / 1s / 1x); }'),
);
});
test("denominator only", () {
expect(
compileString("""
@use 'sass:math';
@use 'sass:meta';
a {b: meta.inspect(math.div(math.div(1, 1s), 1x))};
"""),
equalsIgnoringWhitespace('a { b: calc(1 / 1s / 1x); }'),
);
});
});
});
// Tests for sass/dart-sass#417.
//
// Note there's no need for "in Sass" cases as it's not possible to have
// trailing loud comments in the Sass syntax.
group("preserve trailing loud comments in SCSS", () {
test("after open block", () {
expect(
compileString("""
selector { /* please don't move me */
name: value;
}
"""),
equals("""
selector { /* please don't move me */
name: value;
}"""),
);
});
test("after open block (multi-line selector)", () {
expect(
compileString("""
selector1,
selector2 { /* please don't move me */
name: value;
}
"""),
equals("""
selector1,
selector2 { /* please don't move me */
name: value;
}"""),
);
});
test("after close block", () {
expect(
compileString("""
selector {
name: value;
} /* please don't move me */
"""),
equals("""
selector {
name: value;
} /* please don't move me */"""),
);
});
test("only content in block", () {
expect(
compileString("""
selector {
/* please don't move me */
}
"""),
equals("""
selector {
/* please don't move me */
}"""),
);
});
test("only content in block (no newlines)", () {
expect(
compileString("selector { /* please don't move me */ }"),
equals("selector { /* please don't move me */ }"),
);
});
test("double trailing empty block", () {
expect(
compileString(
"selector { /* please don't move me */ /* please don't move me */ "
"}"),
equals("""
selector { /* please don't move me */ /* please don't move me */
}"""),
);
});
test("double trailing style rule", () {
expect(
compileString("""
selector {
margin: 1px; /* please don't move me */ /* please don't move me */
}
"""),
equals("""
selector {
margin: 1px; /* please don't move me */ /* please don't move me */
}"""),
);
});
test("after property in block", () {
expect(
compileString("""
selector {
name1: value1; /* please don't move me 1 */
name2: value2; /* please don't move me 2 */
name3: value3; /* please don't move me 3 */
}
"""),
equals("""
selector {
name1: value1; /* please don't move me 1 */
name2: value2; /* please don't move me 2 */
name3: value3; /* please don't move me 3 */
}"""),
);
});
test("after rule in block", () {
expect(
compileString("""
selector {
@rule1; /* please don't move me 1 */
@rule2; /* please don't move me 2 */
@rule3; /* please don't move me 3 */
}
"""),
equals("""
selector {
@rule1; /* please don't move me 1 */
@rule2; /* please don't move me 2 */
@rule3; /* please don't move me 3 */
}"""),
);
});
test("after top-level statement", () {
expect(
compileString("@rule; /* please don't move me */"),
equals("@rule; /* please don't move me */"),
);
});
// The trailing comment detection logic looks for left braces to detect
// whether a comment is on the same line as its parent node. This test
// checks to make sure it isn't confused by syntax that uses braces for
// things other than starting child blocks.
test("selector contains left brace", () {
expect(
compileString("""
@rule1;
@rule2;
selector[href*="{"]
{ /* please don't move me */ }
@rule3;
"""),
equals("""
@rule1;
@rule2;
selector[href*="{"] { /* please don't move me */ }
@rule3;"""),
);
});
group("loud comments in mixin", () {
test("empty with spacing", () {
expect(
compileString("""
@mixin loudComment {
/* ... */
}
selector {
@include loudComment;
}
"""),
equals("""
selector {
/* ... */
}"""),
);
});
test("empty no spacing", () {
expect(
compileString("""
@mixin loudComment{/* ... */}
selector {@include loudComment;}
"""),
equals("""
selector {
/* ... */
}"""),
);
});
test("with style rule", () {
expect(
compileString("""
@mixin loudComment {
margin: 1px; /* mixin */
} /* mixin-out */
selector {
@include loudComment; /* selector */
}
"""),
"""
/* mixin-out */
selector {
margin: 1px; /* mixin */
/* selector */
}""",
);
});
});
group("loud comments in nested blocks", () {
test("with styles", () {
expect(
compileString("""
foo { /* foo */
padding: 1px; /* foo padding */
bar { /* bar */
padding: 2px; /* bar padding */
baz { /* baz */
padding: 3px; /* baz padding */
margin: 3px; /* baz margin */
} /* baz end */
biz { /* biz */
padding: 3px; /* biz padding */
margin: 3px; /* biz margin */
} /* biz end */
margin: 2px; /* bar margin */
} /* bar end */
margin: 1px; /* foo margin */
} /* foo end */
"""),
equals("""
foo { /* foo */
padding: 1px; /* foo padding */
/* bar end */
margin: 1px; /* foo margin */
}
foo bar { /* bar */
padding: 2px; /* bar padding */
/* baz end */
/* biz end */
margin: 2px; /* bar margin */
}
foo bar baz { /* baz */
padding: 3px; /* baz padding */
margin: 3px; /* baz margin */
}
foo bar biz { /* biz */
padding: 3px; /* biz padding */
margin: 3px; /* biz margin */
}
/* foo end */"""),
);
});
test("empty", () {
expect(
compileString("""
foo { /* foo */
bar { /* bar */
baz { /* baz */
} /* baz end */
biz { /* biz */
} /* biz end */
} /* bar end */
} /* foo end */
"""),
equals("""
foo { /* foo */
/* bar end */
}
foo bar { /* bar */
/* baz end */
/* biz end */
}
foo bar baz { /* baz */ }
foo bar biz { /* biz */ }
/* foo end */"""),
);
});
});
});
}