forked from jose-elias-alvarez/null-ls.nvim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdiagnostics_spec.lua
436 lines (412 loc) · 15.6 KB
/
diagnostics_spec.lua
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
local diagnostics = require("null-ls.builtins.diagnostics")
describe("diagnostics", function()
describe("chktex", function()
local linter = diagnostics.chktex
local parser = linter._opts.on_output
local file = {
[[\documentclass{article}]],
[[\begin{document}]],
[[Lorem ipsum dolor \sit amet]],
[[\end{document}]],
}
it("should create a diagnostic", function()
local output = [[3:23:1:Warning:Command terminated with space.]]
local diagnostic = parser(output, { content = file })
assert.are.same({
row = "3",
col = "23",
end_col = 24,
severity = 2,
message = "Command terminated with space.",
}, diagnostic)
end)
end)
describe("luacheck", function()
local linter = diagnostics.luacheck
local parser = linter._opts.on_output
local file = {
[[sx = {]],
}
it("should create a diagnostic", function()
local output = [[test.lua:2:1-1: (E011) expected expression near <eof>]]
local diagnostic = parser(output, { content = file })
assert.are.same({
code = "011",
row = "2",
col = "1",
end_col = 2,
severity = 1,
message = "expected expression near <eof>",
}, diagnostic)
end)
end)
describe("write-good", function()
local linter = diagnostics.write_good
local parser = linter._opts.on_output
local file = {
[[Any rule whose heading is ~~struck through~~ is deprecated, but still provided for backward-compatibility.]],
}
it("should create a diagnostic", function()
local output = [[rules.md:1:46:"is deprecated" may be passive voice]]
local diagnostic = parser(output, { content = file })
assert.are.same({
row = "1", --
col = 47,
end_col = 59,
severity = 1,
message = '"is deprecated" may be passive voice',
}, diagnostic)
end)
end)
describe("markdownlint", function()
local linter = diagnostics.markdownlint
local parser = linter._opts.on_output
local file = {
[[<a name="md001"></a>]],
[[]],
}
it("should create a diagnostic with a column", function()
local output = "rules.md:1:1 MD033/no-inline-html Inline HTML [Element: a]"
local diagnostic = parser(output, { content = file })
assert.are.same({
row = "1", --
col = "1",
severity = 1,
message = "Inline HTML [Element: a]",
}, diagnostic)
end)
it("should create a diagnostic without a column", function()
local output =
"rules.md:2 MD012/no-multiple-blanks Multiple consecutive blank lines [Expected: 1; Actual: 2]"
local diagnostic = parser(output, { content = file })
assert.are.same({
row = "2", --
severity = 1,
message = "Multiple consecutive blank lines [Expected: 1; Actual: 2]",
}, diagnostic)
end)
end)
describe("tl check", function()
local linter = diagnostics.teal
local parser = linter._opts.on_output
local file = {
[[require("settings").load_options()]],
"vim.cmd [[",
[[local command = table.concat(vim.tbl_flatten { "autocmd", def }, " ")]],
}
it("should create a diagnostic (quote field is between quotes)", function()
local output = [[init.lua:1:8: module not found: 'settings']]
local diagnostic = parser(output, { content = file })
assert.are.same({
row = "1", --
col = "8",
end_col = 17,
severity = 1,
message = "module not found: 'settings'",
source = "tl check",
}, diagnostic)
end)
it("should create a diagnostic (quote field is not between quotes)", function()
local output = [[init.lua:2:1: unknown variable: vim]]
local diagnostic = parser(output, { content = file })
assert.are.same({
row = "2", --
col = "1",
end_col = 3,
severity = 1,
message = "unknown variable: vim",
source = "tl check",
}, diagnostic)
end)
it("should create a diagnostic by using the second pattern", function()
local output = [[autocmds.lua:3:46: argument 1: got <unknown type>, expected {string}]]
local diagnostic = parser(output, { content = file })
assert.are.same({
row = "3", --
col = "46",
severity = 1,
message = "argument 1: got <unknown type>, expected {string}",
source = "tl check",
}, diagnostic)
end)
end)
describe("shellcheck", function()
local linter = diagnostics.shellcheck
local parser = linter._opts.on_output
it("should create a diagnostic with info severity", function()
local output = vim.fn.json_decode([[
[{
"file": "./OpenCast.sh",
"line": 21,
"endLine": 21,
"column": 8,
"endColumn": 37,
"level": "info",
"code": 1091,
"message": "Not following: script/cli_builder.sh was not specified as input (see shellcheck -x).",
"fix": null
}] ]])
local diagnostic = parser({ output = output })
assert.are.same({
{
code = 1091,
row = 21,
end_row = 21,
col = 8,
end_col = 37,
severity = 3,
message = "Not following: script/cli_builder.sh was not specified as input (see shellcheck -x).",
},
}, diagnostic)
end)
it("should create a diagnostic with style severity", function()
local output = vim.fn.json_decode([[
[{
"file": "./OpenCast.sh",
"line": 21,
"endLine": 21,
"column": 8,
"endColumn": 37,
"level": "style",
"code": 1091,
"message": "Not following: script/cli_builder.sh was not specified as input (see shellcheck -x).",
"fix": null
}] ]])
local diagnostic = parser({ output = output })
assert.are.same({
{
code = 1091,
row = 21,
end_row = 21,
col = 8,
end_col = 37,
severity = 4,
message = "Not following: script/cli_builder.sh was not specified as input (see shellcheck -x).",
},
}, diagnostic)
end)
end)
describe("selene", function()
local linter = diagnostics.selene
local parser = linter._opts.on_output
local file = {
"vim.cmd [[",
[[CACHE_PATH = vim.fn.stdpath "cache"]],
}
it("should create a diagnostic (quote is between backquotes)", function()
local output = [[init.lua:1:1: error[undefined_variable]: `vim` is not defined]]
local diagnostic = parser(output, { content = file })
assert.are.same({
row = "1", --
col = "1",
end_col = 4,
severity = 1,
code = "undefined_variable",
message = "`vim` is not defined",
}, diagnostic)
end)
it("should create a diagnostic (quote is not between backquotes)", function()
local output =
[[lua/default-config.lua:2:1: warning[unused_variable]: CACHE_PATH is defined, but never used]]
local diagnostic = parser(output, { content = file })
assert.are.same({
row = "2", --
col = "1",
end_col = 11,
severity = 2,
code = "unused_variable",
message = "CACHE_PATH is defined, but never used",
}, diagnostic)
end)
end)
describe("eslint", function()
local linter = diagnostics.eslint
local parser = linter._opts.on_output
it("should create a diagnostic with warning severity", function()
local output = vim.fn.json_decode([[
[{
"filePath": "/home/luc/Projects/Pi-OpenCast/webapp/src/index.js",
"messages": [
{
"ruleId": "quotes",
"severity": 1,
"message": "Strings must use singlequote.",
"line": 1,
"column": 19,
"nodeType": "Literal",
"messageId": "wrongQuotes",
"endLine": 1,
"endColumn": 26,
"fix": {
"range": [
18,
25
],
"text": "'react'"
}
}
]
}] ]])
local diagnostic = parser({ output = output })
assert.are.same({
{
row = 1, --
end_row = 1,
col = 19,
end_col = 26,
severity = 2,
code = "quotes",
message = "Strings must use singlequote.",
},
}, diagnostic)
end)
it("should create a diagnostic with error severity", function()
local output = vim.fn.json_decode([[
[{
"filePath": "/home/luc/Projects/Pi-OpenCast/webapp/src/index.js",
"messages": [
{
"ruleId": "quotes",
"severity": 2,
"message": "Strings must use singlequote.",
"line": 1,
"column": 19,
"nodeType": "Literal",
"messageId": "wrongQuotes",
"endLine": 1,
"endColumn": 26,
"fix": {
"range": [
18,
25
],
"text": "'react'"
}
}
]
}] ]])
local diagnostic = parser({ output = output })
assert.are.same({
{
row = 1, --
end_row = 1,
col = 19,
end_col = 26,
severity = 1,
code = "quotes",
message = "Strings must use singlequote.",
},
}, diagnostic)
end)
end)
describe("hadolint", function()
local linter = diagnostics.hadolint
local parser = linter._opts.on_output
it("should create a diagnostic with warning severity", function()
local output = vim.fn.json_decode([[
[{
"line": 24,
"code": "DL3008",
"message": "Pin versions in apt get install. Instead of `apt-get install <package>` use `apt-get install <package>=<version>`",
"column": 1,
"file": "/home/luc/Projects/Test/buildroot/support/docker/Dockerfile",
"level": "warning"
}]
]])
local diagnostic = parser({ output = output })
assert.are.same({
{
row = 24, --
col = 1,
severity = 2,
code = "DL3008",
message = "Pin versions in apt get install. Instead of `apt-get install <package>` use `apt-get install <package>=<version>`",
},
}, diagnostic)
end)
it("should create a diagnostic with info severity", function()
local output = vim.fn.json_decode([[
[{
"line": 24,
"code": "DL3059",
"message": "Multiple consecutive `RUN` instructions. Consider consolidation.",
"column": 1,
"file": "/home/luc/Projects/Test/buildroot/support/docker/Dockerfile",
"level": "info"
}]
]])
local diagnostic = parser({ output = output })
assert.are.same({
{
row = 24, --
col = 1,
severity = 3,
code = "DL3059",
message = "Multiple consecutive `RUN` instructions. Consider consolidation.",
},
}, diagnostic)
end)
end)
describe("flake8", function()
local linter = diagnostics.flake8
local parser = linter._opts.on_output
local file = {
[[#===- run-clang-tidy.py - Parallel clang-tidy runner ---------*- python -*--===#]],
}
it("should create a diagnostic", function()
local output = [[run-clang-tidy.py:3:1: E265 block comment should start with '# ']]
local diagnostic = parser(output, { content = file })
assert.are.same({
row = "3", --
col = "1",
severity = 1,
code = "E265",
message = "block comment should start with '# '",
}, diagnostic)
end)
end)
describe("misspell", function()
local linter = diagnostics.misspell
local parser = linter._opts.on_output
local file = {
[[Did I misspell langauge ?]],
}
it("should create a diagnostic", function()
local output = [[stdin:1:15: "langauge" is a misspelling of "language"]]
local diagnostic = parser(output, { content = file })
assert.are.same({
row = "1",
col = 16,
severity = 3,
message = [["langauge" is a misspelling of "language"]],
}, diagnostic)
end)
end)
describe("vint", function()
local linter = diagnostics.vint
local parser = linter._opts.on_output
it("should create a diagnostic with warning severity", function()
local output = vim.fn.json_decode([[
[{
"file_path": "/home/luc/Projects/Test/vim-scriptease/plugin/scriptease.vim",
"line_number": 5,
"column_number": 37,
"severity": "style_problem",
"description": "Use the full option name `compatible` instead of `cp`",
"policy_name": "ProhibitAbbreviationOption",
"reference": ":help option-summary"
}]
]])
local diagnostic = parser({ output = output })
assert.are.same({
{
row = 5, --
col = 37,
severity = 3,
code = "ProhibitAbbreviationOption",
message = "Use the full option name `compatible` instead of `cp`",
},
}, diagnostic)
end)
end)
end)