-
Notifications
You must be signed in to change notification settings - Fork 527
/
Copy pathmain.js
350 lines (305 loc) · 9.98 KB
/
main.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
'use strict';
var assert = require('assert'),
equal = require('deep-equal'),
lint = require('../index'),
fs = require('fs'),
sinon = require('sinon');
var lintFile = function lintFile (file, options, cb) {
cb = cb || options;
options = options || {};
var results = lint.lintFiles(process.cwd() + '/tests/sass/' + file, options);
cb(results[0]);
};
var lintFiles = function lintFiles (files, options, configPath, cb) {
options = options || {};
var results = lint.lintFiles(files, options, configPath);
cb(results);
};
var resultsObj = [{
filePath: 'app/scss/echo-base/defaults/utilities/_mixins.scss',
warningCount: 3,
errorCount: 0,
messages: [{
ruleId: 'no-vendor-prefixes',
line: 120,
column: 8,
message: 'Vendor prefixes should not be used',
severity: 1
}, {
ruleId: 'no-vendor-prefixes',
line: 130,
column: 8,
message: 'Vendor prefixes should not be used',
severity: 1
}, {
ruleId: 'no-vendor-prefixes',
line: 140,
column: 8,
message: 'Vendor prefixes should not be used',
severity: 1
}]
}, {
filePath: 'app/scss/main.scss',
warningCount: 0,
errorCount: 2,
messages: [{
ruleId: 'no-ids',
line: 52,
column: 1,
message: 'ID selectors not allowed',
severity: 2
}, {
ruleId: 'no-ids',
line: 57,
column: 1,
message: 'ID selectors not allowed',
severity: 2
}]
}];
var emptyResult = {
filePath: 'tests/cli/cli.scss',
warningCount: 0,
errorCount: 0,
messages: []
};
var oneWarningResult = {
filePath: 'tests/cli/cli.scss',
warningCount: 1,
errorCount: 0,
messages: [
{
ruleId: 'no-color-literals',
line: 2,
column: 10,
message: 'Color literals such as \'red\' should only be used in variable declarations',
severity: 1
}
]
};
var multiInputResults = [{
filePath: 'tests/cli/cli-error.sass',
warningCount: 1,
errorCount: 0,
messages: [{
ruleId: 'no-ids',
line: 1,
column: 1,
message: 'ID selectors not allowed',
severity: 1
}]
}, {
filePath: 'tests/cli/cli-error.scss',
warningCount: 1,
errorCount: 0,
messages: [{
ruleId: 'no-ids',
line: 1,
column: 1,
message: 'ID selectors not allowed',
severity: 1
}]
}];
var stringInputResults = [{
filePath: 'tests/cli/cli-error.sass',
warningCount: 1,
errorCount: 0,
messages: [{
ruleId: 'no-ids',
line: 1,
column: 1,
message: 'ID selectors not allowed',
severity: 1
}]
}];
describe('sass lint', function () {
describe('default functionality', function () {
// ==============================================================================
// Not Error on Empty Files
// ==============================================================================
it('should not error if a file is empty', function (done) {
lintFile('empty-file.scss', function (data) {
assert.equal(0, data.warningCount);
assert.equal(0, data.errorCount);
assert.equal(0, data.messages.length);
done();
});
});
// ==============================================================================
// Not try to read directories
// ==============================================================================
it('should not try to blindly read and lint a directory', function (done) {
var fileSpy = sinon.spy(lint, 'lintText');
lintFiles('tests/dir-test/**/*.scss', {
options: {
'merge-default-rules': false
},
rules: {
'no-ids': 1
}}, '', function (data) {
assert.equal(1, data[0].warningCount);
assert.equal(0, data[0].errorCount);
assert.equal(1, data[0].messages.length);
assert(fileSpy.called);
assert(fileSpy.calledOnce);
assert(fileSpy.calledWithMatch({format: 'scss', filename: 'tests/dir-test/dir.scss/test.scss'}));
assert(fileSpy.neverCalledWithMatch({filename: 'tests/dir-test/dir.scss'}));
fileSpy.reset();
done();
}
);
});
// ==============================================================================
// Parse files with YAML front matter
// ==============================================================================
it('should parse a file with front matter correctly and without parse error', function (done) {
lintFile('front-matter/front-matter.scss', function (data) {
assert.equal(0, data.errorCount);
assert.equal(2, data.warningCount);
done();
});
});
it('should preserve line numbers after parsing a file with front matter', function (done) {
lintFile('front-matter/front-matter.scss', function (data) {
assert.equal(6, data.messages[0].line);
done();
});
});
// ==============================================================================
// Parse Errors should return as lint errors
// ==============================================================================
it('Parse Errors should return as lint errors', function (done) {
lintFile('parse.scss', function (data) {
assert.equal(1, data.errorCount);
done();
});
});
it('Parse Errors should not include warnings too', function (done) {
lintFile('parse.scss', function (data) {
assert.equal(0, data.warningCount);
done();
});
});
it('Parse Errors should return as severity 2', function (done) {
lintFile('parse.scss', function (data) {
var severity = data.messages[0].severity;
assert.equal(2, severity);
done();
});
});
it('Parse Errors should return the correct error message', function (done) {
lintFile('parse.scss', function (data) {
var message = data.messages[0].message,
expected = 'Please check validity of the block starting from line #5';
assert.equal(expected, message);
done();
});
});
it('Parse Errors should return the rule ID \'Fatal\'', function (done) {
lintFile('parse.scss', function (data) {
var ruleId = data.messages[0].ruleId,
expected = 'Fatal';
assert.equal(expected, ruleId);
done();
});
});
});
// ==============================================================================
// lintFileText
// ==============================================================================
describe('lintFileText', function () {
var file,
fileObj;
beforeEach(function () {
file = fs.readFileSync('tests/cli/cli.scss');
fileObj = {
'text': file,
'format': 'scss',
'filename': 'tests/cli/cli.scss'
};
});
it('should ignore a file from the ignore section of a config file', function (done) {
var result = lint.lintFileText(fileObj, {options: {'cache-config': false}}, 'tests/yml/.ignore-file.yml');
assert(
equal(
result,
emptyResult,
{
'strict': true
}
)
);
done();
});
it('should lint a file when no ignores are specified', function (done) {
var result = lint.lintFileText(fileObj, {options: {'cache-config': false}}, 'tests/yml/.no-merge-default.yml');
assert(
equal(
result,
oneWarningResult,
{
'strict': true
}
)
);
done();
});
});
// ==============================================================================
// Lint files with config path
// ==============================================================================
describe('sassLint Config load', function () {
it('should accept multiple input sources in a config', function (done) {
lintFiles(null, {options: {'cache-config': false}}, 'tests/yml/.multiple-inputs.yml', function (data) {
assert.deepEqual(data, multiInputResults);
done();
});
});
it('should accept multiple input sources and ignores in a config', function (done) {
lintFiles(null, {options: {'cache-config': false}}, 'tests/yml/.multiple-ignores.yml', function (data) {
assert.deepEqual(data, []);
done();
});
});
it('should accept singular string input sources', function (done) {
lintFiles(null, {options: {'cache-config': false}}, 'tests/yml/.single-input-include-string.yml', function (data) {
assert.deepEqual(data, stringInputResults);
done();
});
});
it('should accept singular string input sources and ignores in a config file', function (done) {
lintFiles(null, {options: {'cache-config': false}}, 'tests/yml/.multiple-ignore-strings.yml', function (data) {
assert.deepEqual(data, []);
done();
});
});
});
// ==============================================================================
// Counters
// ==============================================================================
describe('sassLint detect counts', function () {
// ==============================================================================
// Error Count
// ==============================================================================
it('should equal 2 errors', function (done) {
var result = lint.errorCount(resultsObj);
assert.equal(2, result.count);
done();
});
// ==============================================================================
// Warning count
// ==============================================================================
it('should equal 3 warnings', function (done) {
var result = lint.warningCount(resultsObj);
assert.equal(3, result.count);
done();
});
// ==============================================================================
// Result count
// ==============================================================================
it('should equal 5 overall detects', function (done) {
var result = lint.resultCount(resultsObj);
assert.equal(5, result);
done();
});
});
});