-
-
Notifications
You must be signed in to change notification settings - Fork 681
/
Copy pathscript-indent.js
297 lines (280 loc) · 7.03 KB
/
script-indent.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
/**
* @author Toru Nagashima
* @copyright 2016 Toru Nagashima. All rights reserved.
* See LICENSE file in root directory for full license.
*/
'use strict'
// ------------------------------------------------------------------------------
// Requirements
// ------------------------------------------------------------------------------
const fs = require('fs')
const path = require('path')
const RuleTester = require('eslint').RuleTester
const rule = require('../../../lib/rules/script-indent')
// ------------------------------------------------------------------------------
// Helpers
// ------------------------------------------------------------------------------
const FIXTURE_ROOT = path.resolve(__dirname, '../../fixtures/script-indent/')
/**
* Load test patterns from fixtures.
*
* - Valid tests: All codes in FIXTURE_ROOT are valid code.
* - Invalid tests: There is an invalid test for every valid test. It removes
* all indentations from the valid test and checks whether
* `html-indent` rule restores the removed indentations exactly.
*
* If a test has some ignored line, we can't use the mechanism.
* So `additionalValid` and `additionalInvalid` exist for asymmetry test cases.
*
* @param {object[]} additionalValid The array of additional valid patterns.
* @param {object[]} additionalInvalid The array of additional invalid patterns.
* @returns {object} The loaded patterns.
*/
function loadPatterns(additionalValid, additionalInvalid) {
const valid = fs.readdirSync(FIXTURE_ROOT).map((filename) => {
const commentPattern = /^(<!--|\/\*)(.+?)(-->|\*\/)/
const code0 = fs.readFileSync(path.join(FIXTURE_ROOT, filename), 'utf8')
const code = code0.replace(commentPattern, `$1${filename}$3`)
const baseObj = JSON.parse(commentPattern.exec(code0)[2])
if ('parser' in baseObj) {
baseObj.parser = require.resolve(baseObj.parser)
}
if ('parserOptions' in baseObj && 'parser' in baseObj.parserOptions) {
baseObj.parserOptions.parser = require.resolve(
baseObj.parserOptions.parser
)
}
return Object.assign(baseObj, { code, filename })
})
const invalid = valid
.map((pattern) => {
const kind =
(pattern.options && pattern.options[0]) === 'tab' ? 'tab' : 'space'
const output = pattern.code
const lines = output.split('\n').map((text, number) => ({
number,
text,
indentSize: (/^[ \t]+/.exec(text) || [''])[0].length
}))
const code = lines
.map((line) => line.text.replace(/^[ \t]+/, ''))
.join('\n')
const errors = lines
.map((line) =>
line.indentSize === 0
? null
: {
message: `Expected indentation of ${line.indentSize} ${kind}${
line.indentSize === 1 ? '' : 's'
} but found 0 ${kind}s.`,
line: line.number + 1
}
)
.filter(Boolean)
return Object.assign({}, pattern, { code, output, errors })
})
.filter((invalid) => invalid.errors.length > 0) // Empty errors cannot be verified with eslint 7.3.
.filter(Boolean)
return {
valid: valid.concat(additionalValid),
invalid: invalid.concat(additionalInvalid)
}
}
/**
* Prevents leading spaces in a multiline template literal from appearing in the resulting string
* @param {string[]} strings The strings in the template literal
* @returns {string} The template literal, with spaces removed from all lines
*/
function unIndent(strings) {
const templateValue = strings[0]
const lines = templateValue
.replace(/^\n/, '')
.replace(/\n\s*$/, '')
.split('\n')
const lineIndents = lines
.filter((line) => line.trim())
.map((line) => line.match(/ */)[0].length)
const minLineIndent = Math.min.apply(null, lineIndents)
return lines.map((line) => line.slice(minLineIndent)).join('\n')
}
// ------------------------------------------------------------------------------
// Tests
// ------------------------------------------------------------------------------
const tester = new RuleTester({
parser: require.resolve('vue-eslint-parser'),
parserOptions: {
ecmaVersion: 2020,
sourceType: 'module'
}
})
tester.run(
'script-indent',
rule,
loadPatterns(
// Valid
[
// TemplateLiteral
{
filename: 'test.vue',
code: unIndent`
<script>
\`
test
test
test
\`
</script>
`
},
// Comments
{
filename: 'test.vue',
code: unIndent`
<script>
// comment
// comment
foo
</script>
`
},
{
filename: 'test.vue',
code: unIndent`
<script>
/*
* comment
*/
message
</script>
`
},
{
filename: 'test.vue',
code: unIndent`
<script>
message
/*
* comment
*/
</script>
`
},
// Ignores files other than .vue
{
filename: 'test.js',
code: unIndent`
<script>
\`
test
test
test
\`
</script>
`
},
// Ignores
{
filename: 'test.vue',
code: unIndent`
<script>
var a
=
1 +
2
</script>
`,
options: [
4,
{
// Ignore all :D
ignores: ['*']
}
]
}
],
// Invalid
[
// TemplateLiteral
{
filename: 'test.vue',
code: unIndent`
<script>
\`
test
test
test
\`
</script>
`,
output: unIndent`
<script>
\`
test
test
test
\`
</script>
`,
options: [4],
errors: [
{
message: 'Expected indentation of 0 spaces but found 2 spaces.',
line: 2
}
]
},
// A mix of spaces and tabs.
{
filename: 'test.vue',
code: unIndent`
<script>
var a =
\t1
</script>
`,
output: unIndent`
<script>
var a =
1
</script>
`,
errors: [
{
message: 'Expected " " character, but found "\\t" character.',
line: 3
}
]
},
{
filename: 'test.vue',
code: unIndent`
<script>
var obj = {
a: 1,
b: 2
}
</script>
`,
output: unIndent`
<script>
var obj = {
\ta: 1,
\tb: 2
}
</script>
`,
options: ['tab'],
errors: [
{
message: 'Expected "\\t" character, but found " " character.',
line: 3
},
{
message: 'Expected "\\t" character, but found " " character.',
line: 4
}
]
}
]
)
)