forked from sass/node-sass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi.js
1923 lines (1703 loc) · 59.9 KB
/
api.js
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
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
var assert = require('assert'),
fs = require('fs'),
path = require('path'),
read = fs.readFileSync,
sassPath = process.env.NODESASS_COV
? require.resolve('../lib-cov')
: require.resolve('../lib'),
sass = require(sassPath),
fixture = path.join.bind(null, __dirname, 'fixtures'),
resolveFixture = path.resolve.bind(null, __dirname, 'fixtures');
describe('api', function() {
describe('.render(options, callback)', function() {
it('should compile sass to css with file', function(done) {
var expected = read(fixture('simple/expected.css'), 'utf8').trim();
sass.render({
file: fixture('simple/index.scss')
}, function(error, result) {
assert.equal(result.css.toString().trim(), expected.replace(/\r\n/g, '\n'));
done();
});
});
it('should compile sass to css with outFile set to absolute url', function(done) {
sass.render({
file: fixture('simple/index.scss'),
sourceMap: true,
outFile: fixture('simple/index-test.css')
}, function(error, result) {
assert.equal(JSON.parse(result.map).file, 'index-test.css');
done();
});
});
it('should compile sass to css with outFile set to relative url', function(done) {
sass.render({
file: fixture('simple/index.scss'),
sourceMap: true,
outFile: './index-test.css'
}, function(error, result) {
assert.equal(JSON.parse(result.map).file, 'index-test.css');
done();
});
});
it('should compile sass to css with outFile and sourceMap set to relative url', function(done) {
sass.render({
file: fixture('simple/index.scss'),
sourceMap: './deep/nested/index.map',
outFile: './index-test.css'
}, function(error, result) {
assert.equal(JSON.parse(result.map).file, '../../index-test.css');
done();
});
});
it('should compile generate map with sourceMapRoot pass-through option', function(done) {
sass.render({
file: fixture('simple/index.scss'),
sourceMap: './deep/nested/index.map',
sourceMapRoot: 'http://test.com/',
outFile: './index-test.css'
}, function(error, result) {
assert.equal(JSON.parse(result.map).sourceRoot, 'http://test.com/');
done();
});
});
it('should compile sass to css with data', function(done) {
var src = read(fixture('simple/index.scss'), 'utf8');
var expected = read(fixture('simple/expected.css'), 'utf8').trim();
sass.render({
data: src
}, function(error, result) {
assert.equal(result.css.toString().trim(), expected.replace(/\r\n/g, '\n'));
done();
});
});
it('should NOT compile empty data string', function(done) {
sass.render({
data: ''
}, function(error) {
assert.equal(error.message, 'No input specified: provide a file name or a source string to process');
done();
});
});
it('should NOT compile without parameters', function(done) {
sass.render({ }, function(error) {
assert.equal(error.message, 'No input specified: provide a file name or a source string to process');
done();
});
});
it('should compile sass to css using indented syntax', function(done) {
var src = read(fixture('indent/index.sass'), 'utf8');
var expected = read(fixture('indent/expected.css'), 'utf8').trim();
sass.render({
data: src,
indentedSyntax: true
}, function(error, result) {
assert.equal(result.css.toString().trim(), expected.replace(/\r\n/g, '\n'));
done();
});
});
it('should throw error status 1 for bad input', function(done) {
sass.render({
data: '#navbar width 80%;'
}, function(error) {
assert(error.message);
assert.equal(error.status, 1);
done();
});
});
it('should compile with include paths', function(done) {
var src = read(fixture('include-path/index.scss'), 'utf8');
var expected = read(fixture('include-path/expected.css'), 'utf8').trim();
sass.render({
data: src,
includePaths: [
fixture('include-path/functions'),
fixture('include-path/lib')
]
}, function(error, result) {
assert.equal(result.css.toString().trim(), expected.replace(/\r\n/g, '\n'));
done();
});
});
it('should render with precision option', function(done) {
var src = read(fixture('precision/index.scss'), 'utf8');
var expected = read(fixture('precision/expected.css'), 'utf8').trim();
sass.render({
data: src,
precision: 10
}, function(error, result) {
assert.equal(result.css.toString().trim(), expected.replace(/\r\n/g, '\n'));
done();
});
});
it('should contain all included files in stats when data is passed', function(done) {
var src = read(fixture('include-files/index.scss'), 'utf8');
var expected = [
fixture('include-files/bar.scss').replace(/\\/g, '/'),
fixture('include-files/foo.scss').replace(/\\/g, '/')
];
sass.render({
data: src,
includePaths: [fixture('include-files')]
}, function(error, result) {
assert.deepEqual(result.stats.includedFiles, expected);
done();
});
});
it('should render with indentWidth and indentType options', function(done) {
sass.render({
data: 'div { color: transparent; }',
indentWidth: 7,
indentType: 'tab'
}, function(error, result) {
assert.equal(result.css.toString().trim(), 'div {\n\t\t\t\t\t\t\tcolor: transparent; }');
done();
});
});
it('should render with linefeed option', function(done) {
sass.render({
data: 'div { color: transparent; }',
linefeed: 'lfcr'
}, function(error, result) {
assert.equal(result.css.toString().trim(), 'div {\n\r color: transparent; }');
done();
});
});
});
describe('.render(importer)', function() {
var src = read(fixture('include-files/index.scss'), 'utf8');
it('should respect the order of chained imports when using custom importers and one file is custom imported and the other is not.', function(done) {
sass.render({
file: fixture('include-files/chained-imports-with-custom-importer.scss'),
importer: function(url, prev, done) {
// NOTE: to see that this test failure is only due to the stated
// issue do each of the following and see that the tests pass.
//
// a) add `return sass.NULL;` as the first line in this function to
// cause non-custom importers to always be used.
// b) comment out the conditional below to force our custom
// importer to always be used.
//
// You will notice that the tests pass when either all native, or
// all custom importers are used, but not when a native + custom
// import chain is used.
if (url !== 'file-processed-by-loader') {
return sass.NULL;
}
done({
file: fixture('include-files/' + url + '.scss')
});
}
}, function(err, data) {
assert.equal(err, null);
assert.equal(
data.css.toString().trim(),
'body {\n color: "red"; }'
);
done();
});
});
it('should still call the next importer with the resolved prev path when the previous importer returned both a file and contents property - issue #1219', function(done) {
sass.render({
data: '@import "a";',
importer: function(url, prev, done) {
if (url === 'a') {
done({
file: '/Users/me/sass/lib/a.scss',
contents: '@import "b"'
});
} else {
console.log(prev);
assert.equal(prev, '/Users/me/sass/lib/a.scss');
done({
file: '/Users/me/sass/lib/b.scss',
contents: 'div {color: yellow;}'
});
}
}
}, function() {
done();
});
});
it('should override imports with "data" as input and fires callback with file and contents', function(done) {
sass.render({
data: src,
importer: function(url, prev, done) {
done({
file: '/some/other/path.scss',
contents: 'div {color: yellow;}'
});
}
}, function(error, result) {
assert.equal(result.css.toString().trim(), 'div {\n color: yellow; }\n\ndiv {\n color: yellow; }');
done();
});
});
it('should should resolve imports depth first', function (done) {
var actualImportOrder = [];
var expectedImportOrder = [
'a', '_common', 'vars', 'struct', 'a1', 'common', 'vars', 'struct', 'b', 'b1'
];
var expected = read(fixture('depth-first/expected.css'));
sass.render({
file: fixture('depth-first/index.scss'),
importer: function (url, prev, done) {
actualImportOrder.push(url);
done();
}
}, function(error, result) {
assert.equal(result.css.toString().trim(), expected);
assert.deepEqual(actualImportOrder, expectedImportOrder);
done();
});
});
it('should override imports with "file" as input and fires callback with file and contents', function(done) {
sass.render({
file: fixture('include-files/index.scss'),
importer: function(url, prev, done) {
done({
file: '/some/other/path.scss',
contents: 'div {color: yellow;}'
});
}
}, function(error, result) {
assert.equal(result.css.toString().trim(), 'div {\n color: yellow; }\n\ndiv {\n color: yellow; }');
done();
});
});
it('should override imports with "data" as input and returns file and contents', function(done) {
sass.render({
data: src,
importer: function(url, prev) {
return {
file: prev + url,
contents: 'div {color: yellow;}'
};
}
}, function(error, result) {
assert.equal(result.css.toString().trim(), 'div {\n color: yellow; }\n\ndiv {\n color: yellow; }');
done();
});
});
it('should override imports with "file" as input and returns file and contents', function(done) {
sass.render({
file: fixture('include-files/index.scss'),
importer: function(url, prev) {
return {
file: prev + url,
contents: 'div {color: yellow;}'
};
}
}, function(error, result) {
assert.equal(result.css.toString().trim(), 'div {\n color: yellow; }\n\ndiv {\n color: yellow; }');
done();
});
});
it('should override imports with "data" as input and fires callback with file', function(done) {
sass.render({
data: src,
importer: function(url, /* jshint unused:false */ prev, done) {
done({
file: path.resolve(path.dirname(fixture('include-files/index.scss')), url + (path.extname(url) ? '' : '.scss'))
});
}
}, function(error, result) {
assert.equal(result.css.toString().trim(), '/* foo.scss */\n/* bar.scss */');
done();
});
});
it('should override imports with "file" as input and fires callback with file', function(done) {
sass.render({
file: fixture('include-files/index.scss'),
importer: function(url, prev, done) {
done({
file: path.resolve(path.dirname(prev), url + (path.extname(url) ? '' : '.scss'))
});
}
}, function(error, result) {
assert.equal(result.css.toString().trim(), '/* foo.scss */\n/* bar.scss */');
done();
});
});
it('should override imports with "data" as input and returns file', function(done) {
sass.render({
data: src,
importer: function(url) {
return {
file: path.resolve(path.dirname(fixture('include-files/index.scss')), url + (path.extname(url) ? '' : '.scss'))
};
}
}, function(error, result) {
assert.equal(result.css.toString().trim(), '/* foo.scss */\n/* bar.scss */');
done();
});
});
it('should override imports with "file" as input and returns file', function(done) {
sass.render({
file: fixture('include-files/index.scss'),
importer: function(url, prev) {
return {
file: path.resolve(path.dirname(prev), url + (path.extname(url) ? '' : '.scss'))
};
}
}, function(error, result) {
assert.equal(result.css.toString().trim(), '/* foo.scss */\n/* bar.scss */');
done();
});
});
it('should fallback to default import behaviour if importer returns sass.NULL', function(done) {
sass.render({
file: fixture('include-files/index.scss'),
importer: function(url, prev, done) {
done(sass.NULL);
}
}, function(error, result) {
assert.equal(result.css.toString().trim(), '/* foo.scss */\n/* bar.scss */');
done();
});
});
it('should fallback to default import behaviour if importer returns null for backwards compatibility', function(done) {
sass.render({
file: fixture('include-files/index.scss'),
importer: function(url, prev, done) {
done(null);
}
}, function(error, result) {
assert.equal(result.css.toString().trim(), '/* foo.scss */\n/* bar.scss */');
done();
});
});
it('should fallback to default import behaviour if importer returns undefined for backwards compatibility', function(done) {
sass.render({
file: fixture('include-files/index.scss'),
importer: function(url, prev, done) {
done(undefined);
}
}, function(error, result) {
assert.equal(result.css.toString().trim(), '/* foo.scss */\n/* bar.scss */');
done();
});
});
it('should fallback to default import behaviour if importer returns false for backwards compatibility', function(done) {
sass.render({
file: fixture('include-files/index.scss'),
importer: function(url, prev, done) {
done(false);
}
}, function(error, result) {
assert.equal(result.css.toString().trim(), '/* foo.scss */\n/* bar.scss */');
done();
});
});
it('should override imports with "data" as input and fires callback with contents', function(done) {
sass.render({
data: src,
importer: function(url, prev, done) {
done({
contents: 'div {color: yellow;}'
});
}
}, function(error, result) {
assert.equal(result.css.toString().trim(), 'div {\n color: yellow; }\n\ndiv {\n color: yellow; }');
done();
});
});
it('should override imports with "file" as input and fires callback with contents', function(done) {
sass.render({
file: fixture('include-files/index.scss'),
importer: function(url, prev, done) {
done({
contents: 'div {color: yellow;}'
});
}
}, function(error, result) {
assert.equal(result.css.toString().trim(), 'div {\n color: yellow; }\n\ndiv {\n color: yellow; }');
done();
});
});
it('should override imports with "data" as input and returns contents', function(done) {
sass.render({
data: src,
importer: function() {
return {
contents: 'div {color: yellow;}'
};
}
}, function(error, result) {
assert.equal(result.css.toString().trim(), 'div {\n color: yellow; }\n\ndiv {\n color: yellow; }');
done();
});
});
it('should override imports with "file" as input and returns contents', function(done) {
sass.render({
file: fixture('include-files/index.scss'),
importer: function() {
return {
contents: 'div {color: yellow;}'
};
}
}, function(error, result) {
assert.equal(result.css.toString().trim(), 'div {\n color: yellow; }\n\ndiv {\n color: yellow; }');
done();
});
});
it('should accept arrays of importers and return respect the order', function(done) {
sass.render({
file: fixture('include-files/index.scss'),
importer: [
function() {
return sass.NULL;
},
function() {
return {
contents: 'div {color: yellow;}'
};
}
]
}, function(error, result) {
assert.equal(result.css.toString().trim(), 'div {\n color: yellow; }\n\ndiv {\n color: yellow; }');
done();
});
});
it('should be able to see its options in this.options', function(done) {
var fxt = fixture('include-files/index.scss');
sass.render({
file: fxt,
importer: function() {
assert.equal(fxt, this.options.file);
return {};
}
}, function() {
assert.equal(fxt, this.options.file);
done();
});
});
it('should be able to access a persistent options object', function(done) {
sass.render({
data: src,
importer: function() {
this.state = this.state || 0;
this.state++;
return {
contents: 'div {color: yellow;}'
};
}
}, function() {
assert.equal(this.state, 2);
done();
});
});
it('should copy all options properties', function(done) {
var options;
options = {
data: src,
importer: function() {
assert.strictEqual(this.options.importer, options.importer);
return {
contents: 'div {color: yellow;}'
};
}
};
sass.render(options, function() {
assert.strictEqual(this.options, options);
done();
});
});
it('should reflect user-defined error when returned as callback', function(done) {
sass.render({
data: src,
importer: function(url, prev, done) {
done(new Error('doesn\'t exist!'));
}
}, function(error) {
assert(/doesn\'t exist!/.test(error.message));
done();
});
});
it('should reflect user-defined error with return', function(done) {
sass.render({
data: src,
importer: function() {
return new Error('doesn\'t exist!');
}
}, function(error) {
assert(/doesn\'t exist!/.test(error.message));
done();
});
});
it('should throw exception when importer returns an invalid value', function(done) {
sass.render({
data: src,
importer: function() {
return { contents: new Buffer('i am not a string!') };
}
}, function(error) {
assert(/returned value of `contents` must be a string/.test(error.message));
done();
});
});
});
describe('.render(functions)', function() {
it('should call custom defined nullary function', function(done) {
sass.render({
data: 'div { color: foo(); }',
functions: {
'foo()': function() {
return new sass.types.Number(42, 'px');
}
}
}, function(error, result) {
assert.equal(result.css.toString().trim(), 'div {\n color: 42px; }');
done();
});
});
it('should call custom function with multiple args', function(done) {
sass.render({
data: 'div { color: foo(3, 42px); }',
functions: {
'foo($a, $b)': function(factor, size) {
return new sass.types.Number(factor.getValue() * size.getValue(), size.getUnit());
}
}
}, function(error, result) {
assert.equal(result.css.toString().trim(), 'div {\n color: 126px; }');
done();
});
});
it('should work with custom functions that return data asynchronously', function(done) {
sass.render({
data: 'div { color: foo(42px); }',
functions: {
'foo($a)': function(size, done) {
setTimeout(function() {
done(new sass.types.Number(66, 'em'));
}, 50);
}
}
}, function(error, result) {
assert.equal(result.css.toString().trim(), 'div {\n color: 66em; }');
done();
});
});
it('should let custom functions call setter methods on wrapped sass values (number)', function(done) {
sass.render({
data: 'div { width: foo(42px); height: bar(42px); }',
functions: {
'foo($a)': function(size) {
size.setUnit('rem');
return size;
},
'bar($a)': function(size) {
size.setValue(size.getValue() * 2);
return size;
}
}
}, function(error, result) {
assert.equal(result.css.toString().trim(), 'div {\n width: 42rem;\n height: 84px; }');
done();
});
});
it('should properly convert strings when calling custom functions', function(done) {
sass.render({
data: 'div { color: foo("bar"); }',
functions: {
'foo($a)': function(str) {
str = str.getValue().replace(/['"]/g, '');
return new sass.types.String('"' + str + str + '"');
}
}
}, function(error, result) {
assert.equal(result.css.toString().trim(), 'div {\n color: "barbar"; }');
done();
});
});
it('should let custom functions call setter methods on wrapped sass values (string)', function(done) {
sass.render({
data: 'div { width: foo("bar"); }',
functions: {
'foo($a)': function(str) {
var unquoted = str.getValue().replace(/['"]/g, '');
str.setValue('"' + unquoted + unquoted + '"');
return str;
}
}
}, function(error, result) {
assert.equal(result.css.toString().trim(), 'div {\n width: "barbar"; }');
done();
});
});
it('should properly convert colors when calling custom functions', function(done) {
sass.render({
data: 'div { color: foo(#f00); background-color: bar(); border-color: baz(); }',
functions: {
'foo($a)': function(color) {
assert.equal(color.getR(), 255);
assert.equal(color.getG(), 0);
assert.equal(color.getB(), 0);
assert.equal(color.getA(), 1.0);
return new sass.types.Color(255, 255, 0, 0.5);
},
'bar()': function() {
return new sass.types.Color(0x33ff00ff);
},
'baz()': function() {
return new sass.types.Color(0xffff0000);
}
}
}, function(error, result) {
assert.equal(
result.css.toString().trim(),
'div {\n color: rgba(255, 255, 0, 0.5);' +
'\n background-color: rgba(255, 0, 255, 0.2);' +
'\n border-color: red; }'
);
done();
});
});
it('should properly convert boolean when calling custom functions', function(done) {
sass.render({
data: 'div { color: if(foo(true, false), #fff, #000);' +
'\n background-color: if(foo(true, true), #fff, #000); }',
functions: {
'foo($a, $b)': function(a, b) {
return sass.types.Boolean(a.getValue() && b.getValue());
}
}
}, function(error, result) {
assert.equal(result.css.toString().trim(), 'div {\n color: #000;\n background-color: #fff; }');
done();
});
});
it('should let custom functions call setter methods on wrapped sass values (boolean)', function(done) {
sass.render({
data: 'div { color: if(foo(false), #fff, #000); background-color: if(foo(true), #fff, #000); }',
functions: {
'foo($a)': function(a) {
return a.getValue() ? sass.types.Boolean.FALSE : sass.types.Boolean.TRUE;
}
}
}, function(error, result) {
assert.equal(result.css.toString().trim(), 'div {\n color: #fff;\n background-color: #000; }');
done();
});
});
it('should properly convert lists when calling custom functions', function(done) {
sass.render({
data: '$test-list: (bar, #f00, 123em); @each $item in foo($test-list) { .#{$item} { color: #fff; } }',
functions: {
'foo($l)': function(list) {
assert.equal(list.getLength(), 3);
assert.ok(list.getValue(0) instanceof sass.types.String);
assert.equal(list.getValue(0).getValue(), 'bar');
assert.ok(list.getValue(1) instanceof sass.types.Color);
assert.equal(list.getValue(1).getR(), 0xff);
assert.equal(list.getValue(1).getG(), 0);
assert.equal(list.getValue(1).getB(), 0);
assert.ok(list.getValue(2) instanceof sass.types.Number);
assert.equal(list.getValue(2).getValue(), 123);
assert.equal(list.getValue(2).getUnit(), 'em');
var out = new sass.types.List(3);
out.setValue(0, new sass.types.String('foo'));
out.setValue(1, new sass.types.String('bar'));
out.setValue(2, new sass.types.String('baz'));
return out;
}
}
}, function(error, result) {
assert.equal(
result.css.toString().trim(),
'.foo {\n color: #fff; }\n\n.bar {\n color: #fff; }\n\n.baz {\n color: #fff; }'
);
done();
});
});
it('should properly convert maps when calling custom functions', function(done) {
sass.render({
data: '$test-map: foo((abc: 123, #def: true)); div { color: if(map-has-key($test-map, hello), #fff, #000); }' +
'span { color: map-get($test-map, baz); }',
functions: {
'foo($m)': function(map) {
assert.equal(map.getLength(), 2);
assert.ok(map.getKey(0) instanceof sass.types.String);
assert.ok(map.getKey(1) instanceof sass.types.Color);
assert.ok(map.getValue(0) instanceof sass.types.Number);
assert.ok(map.getValue(1) instanceof sass.types.Boolean);
assert.equal(map.getKey(0).getValue(), 'abc');
assert.equal(map.getValue(0).getValue(), 123);
assert.equal(map.getKey(1).getR(), 0xdd);
assert.equal(map.getValue(1).getValue(), true);
var out = new sass.types.Map(3);
out.setKey(0, new sass.types.String('hello'));
out.setValue(0, new sass.types.String('world'));
out.setKey(1, new sass.types.String('foo'));
out.setValue(1, new sass.types.String('bar'));
out.setKey(2, new sass.types.String('baz'));
out.setValue(2, new sass.types.String('qux'));
return out;
}
}
}, function(error, result) {
assert.equal(result.css.toString().trim(), 'div {\n color: #fff; }\n\nspan {\n color: qux; }');
done();
});
});
it('should properly convert null when calling custom functions', function(done) {
sass.render({
data: 'div { color: if(foo("bar"), #fff, #000); } ' +
'span { color: if(foo(null), #fff, #000); }' +
'table { color: if(bar() == null, #fff, #000); }',
functions: {
'foo($a)': function(a) {
return sass.types.Boolean(a instanceof sass.types.Null);
},
'bar()': function() {
return sass.NULL;
}
}
}, function(error, result) {
assert.equal(
result.css.toString().trim(),
'div {\n color: #000; }\n\nspan {\n color: #fff; }\n\ntable {\n color: #fff; }'
);
done();
});
});
it('should be possible to carry sass values across different renders', function(done) {
var persistentMap;
sass.render({
data: 'div { color: foo((abc: #112233, #ddeeff: true)); }',
functions: {
foo: function(m) {
persistentMap = m;
return sass.types.Color(0, 0, 0);
}
}
}, function() {
sass.render({
data: 'div { color: map-get(bar(), abc); background-color: baz(); }',
functions: {
bar: function() {
return persistentMap;
},
baz: function() {
return persistentMap.getKey(1);
}
}
}, function(errror, result) {
assert.equal(result.css.toString().trim(), 'div {\n color: #112233;\n background-color: #ddeeff; }');
done();
});
});
});
it('should let us register custom functions without signatures', function(done) {
sass.render({
data: 'div { color: foo(20, 22); }',
functions: {
foo: function(a, b) {
return new sass.types.Number(a.getValue() + b.getValue(), 'em');
}
}
}, function(error, result) {
assert.equal(result.css.toString().trim(), 'div {\n color: 42em; }');
done();
});
});
it('should fail when returning anything other than a sass value from a custom function', function(done) {
sass.render({
data: 'div { color: foo(); }',
functions: {
'foo()': function() {
return {};
}
}
}, function(error) {
assert.ok(/A SassValue object was expected/.test(error.message));
done();
});
});
it('should properly bubble up standard JS errors thrown by custom functions', function(done) {
sass.render({
data: 'div { color: foo(); }',
functions: {
'foo()': function() {
throw new RangeError('This is a test error');
}
}
}, function(error) {
assert.ok(/This is a test error/.test(error.message));
done();
});
});
it('should properly bubble up unknown errors thrown by custom functions', function(done) {
sass.render({
data: 'div { color: foo(); }',
functions: {
'foo()': function() {
throw {};
}
}
}, function(error) {
assert.ok(/unexpected error/.test(error.message));
done();
});
});
it('should call custom functions with correct context', function(done) {
function assertExpected(result) {
assert.equal(result.css.toString().trim(), 'div {\n foo1: 1;\n foo2: 2; }');
}
var options = {
data: 'div { foo1: foo(); foo2: foo(); }',
functions: {
// foo() is stateful and will persist an incrementing counter
'foo()': function() {
assert(this);
this.fooCounter = (this.fooCounter || 0) + 1;
return new sass.types.Number(this.fooCounter);
}
}
};
sass.render(options, function(error, result) {
assertExpected(result);
done();
});
});
describe('should properly bubble up errors from sass color constructor', function() {
it('four booleans', function(done) {
sass.render({
data: 'div { color: foo(); }',
functions: {
'foo()': function() {
return new sass.types.Color(false, false, false, false);
}
}
}, function(error) {
assert.ok(/Constructor arguments should be numbers exclusively/.test(error.message));
done();
});
});
it('two arguments', function(done) {
sass.render({
data: 'div { color: foo(); }',
functions: {
'foo()': function() {
return sass.types.Color(2,3);
}
}
}, function(error) {
assert.ok(/Constructor should be invoked with either 0, 1, 3 or 4 arguments/.test(error.message));
done();
});
});
it('single string argument', function(done) {
sass.render({
data: 'div { color: foo(); }',
functions: {
'foo()': function() {
return sass.types.Color('foo');
}
}
}, function(error) {
assert.ok(/Only argument should be an integer/.test(error.message));
done();
});
});
});
it('should properly bubble up errors from sass value constructors', function(done) {
sass.render({
data: 'div { color: foo(); }',
functions: {
'foo()': function() {
return sass.types.Boolean('foo');
}
}
}, function(error) {
assert.ok(/Expected one boolean argument/.test(error.message));
done();
});
});
it('should properly bubble up errors from sass value setters', function(done) {
sass.render({
data: 'div { color: foo(); }',
functions: {