forked from sass/node-sass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
161 lines (142 loc) · 3.96 KB
/
test.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
/*jshint multistr:true */
var sass = require('../sass');
var assert = require('assert');
var path = require('path');
var badSampleFilename = 'sample.scss';
var sampleFilename = path.resolve(__dirname, 'sample.scss');
var scssStr = '#navbar {\
width: 80%;\
height: 23px; }\
#navbar ul {\
list-style-type: none; }\
#navbar li {\
float: left;\
a {\
font-weight: bold; }}\
@mixin keyAnimation($name, $attr, $value) {\
@-webkit-keyframes #{$name} {\
0% { #{$attr}: $value; }\
}\
}';
// Note that the bad
var badInput = '#navbar \n\
width: 80%';
var expectedRender = '#navbar {\n\
width: 80%;\n\
height: 23px; }\n\
\n\
#navbar ul {\n\
list-style-type: none; }\n\
\n\
#navbar li {\n\
float: left; }\n\
#navbar li a {\n\
font-weight: bold; }\n';
describe("DEPRECATED: compile scss", function() {
it("should compile with render", function(done) {
sass.render(scssStr, function(err, css) {
done(err);
});
});
it("should compile with renderSync", function(done) {
done(assert.ok(sass.renderSync(scssStr)));
});
it("should match compiled string with render", function(done) {
sass.render(scssStr, function(err, css) {
if (!err) {
done(assert.equal(css, expectedRender));
} else {
done(err);
}
});
});
it("should match compiled string with renderSync", function(done) {
done(assert.equal(sass.renderSync(scssStr), expectedRender));
});
it("should throw an exception for bad input", function(done) {
done(assert.throws(function() {
sass.renderSync(badInput);
}));
});
});
describe("compile scss", function() {
it("should compile with render", function(done) {
sass.render({
data: scssStr,
success: function(css) {
done(assert.ok(css));
}
});
});
it("should compile with renderSync", function(done) {
done(assert.ok(sass.renderSync({data: scssStr})));
});
it("should match compiled string with render", function(done) {
sass.render({
data: scssStr,
success: function(css) {
done(assert.equal(css, expectedRender));
},
error: function(error) {
done(error);
}
});
});
it("should match compiled string with renderSync", function(done) {
done(assert.equal(sass.renderSync({data: scssStr}), expectedRender));
});
it("should throw an exception for bad input", function(done) {
done(assert.throws(function() {
sass.renderSync({data: badInput});
}));
});
});
describe("compile file with include paths", function(){
it("should compile with render", function(done) {
sass.render({
file: path.resolve(__dirname, "include_path.scss"),
includePaths: [path.resolve(__dirname, "lib"), path.resolve(__dirname, "functions")],
success: function (css) {
done(assert.equal(css, "body {\n background: red;\n color: blue; }\n"));
},
error: function (error) {
done(error);
}
})
});
});
describe("compile file", function() {
it("should compile with render", function(done) {
sass.render({
file: sampleFilename,
success: function (css) {
done(assert.equal(css, expectedRender));
},
error: function (error) {
done(error);
}
});
});
it("should compile with renderSync", function(done) {
done(assert.ok(sass.renderSync({file: sampleFilename})));
});
it("should match compiled string with render", function(done) {
sass.render({
file: sampleFilename,
success: function(css) {
done(assert.equal(css, expectedRender));
},
error: function(error) {
done(error);
}
});
});
it("should match compiled string with renderSync", function(done) {
done(assert.equal(sass.renderSync({file: sampleFilename}), expectedRender));
});
it("should throw an exception for bad input", function(done) {
done(assert.throws(function() {
sass.renderSync({file: badSampleFilename});
}));
});
});