summaryrefslogtreecommitdiff
path: root/test/test_ale_info.vader
blob: 7d0712d93835ab4677ecd82631185c7c0d855b9d (plain)
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
Before:
  Save g:ale_warn_about_trailing_whitespace
  Save g:ale_linters

  let g:ale_warn_about_trailing_whitespace = 1

  let g:testlinter1 = {'name': 'testlinter1', 'executable': 'testlinter1', 'command': 'testlinter1', 'callback': 'testCB1', 'output_stream': 'stdout'}
  let g:testlinter2 = {'name': 'testlinter2', 'executable': 'testlinter2', 'command': 'testlinter2', 'callback': 'testCB2', 'output_stream': 'stdout'}

  call ale#linter#Reset()
  let g:ale_linters = {}
  let g:ale_linter_aliases = {}
  let g:ale_buffer_info = {}
  let g:globals_lines = [
  \  ' Global Variables:',
  \  '',
  \  'let g:ale_echo_cursor = 1',
  \  'let g:ale_echo_msg_error_str = ''Error''',
  \  'let g:ale_echo_msg_format = ''%s''',
  \  'let g:ale_echo_msg_warning_str = ''Warning''',
  \  'let g:ale_enabled = 1',
  \  'let g:ale_keep_list_window_open = 0',
  \  'let g:ale_lint_delay = 200',
  \  'let g:ale_lint_on_enter = 1',
  \  'let g:ale_lint_on_save = 1',
  \  'let g:ale_lint_on_text_changed = ''always''',
  \  'let g:ale_linter_aliases = {}',
  \  'let g:ale_linters = {}',
  \  'let g:ale_open_list = 0',
  \  'let g:ale_set_highlights = 1',
  \  'let g:ale_set_loclist = 1',
  \  'let g:ale_set_quickfix = 0',
  \  'let g:ale_set_signs = 1',
  \  'let g:ale_sign_column_always = 0',
  \  'let g:ale_sign_error = ''>>''',
  \  'let g:ale_sign_offset = 1000000',
  \  'let g:ale_sign_warning = ''--''',
  \  'let g:ale_statusline_format = [''%d error(s)'', ''%d warning(s)'', ''OK'']',
  \  'let g:ale_warn_about_trailing_whitespace = 1',
  \]
  let g:command_header = [
  \ '  Command History:',
  \]

  function CheckInfo(expected_list) abort
    let l:output = ''

    redir => l:output
      noautocmd silent ALEInfo
    redir END

    AssertEqual a:expected_list, split(l:output, "\n")
  endfunction

After:
  Restore

  let g:ale_buffer_info = {}

  unlet!  g:testlinter1
  unlet!  g:testlinter2

  unlet! b:ale_linters
  unlet! g:output
  unlet! g:globals_string
  unlet! g:command_header
  let g:ale_buffer_info = {}
  let g:ale_history_log_output = 0
  unlet! g:ale_testft_testlinter1_foo
  unlet! g:ale_testft_testlinter1_bar
  unlet! g:ale_testft2_testlinter2_foo
  unlet! b:ale_testft2_testlinter2_foo
  unlet! g:ale_testft2_testlinter2_bar
  delfunction CheckInfo

Given nolintersft (Empty buffer with no linters):
Execute (ALEInfo with no linters should return the right output):
  call CheckInfo([
  \ ' Current Filetype: nolintersft',
  \ 'Available Linters: []',
  \ '  Enabled Linters: []',
  \ ' Linter Variables:',
  \ '',
  \] + g:globals_lines + g:command_header)

Given (Empty buffer with no filetype):
Execute (ALEInfo should return buffer-local global ALE settings):
  let b:ale_linters = {'x': ['y']}

  call insert(
  \ g:globals_lines,
  \ 'let b:ale_linters = {''x'': [''y'']}',
  \ index(g:globals_lines, 'let g:ale_linters = {}') + 1
  \)

  call CheckInfo([
  \ ' Current Filetype: ',
  \ 'Available Linters: []',
  \ '  Enabled Linters: []',
  \ ' Linter Variables:',
  \ '',
  \] + g:globals_lines + g:command_header)

Given (Empty buffer with no filetype):
Execute (ALEInfo with no filetype should return the right output):
  call CheckInfo([
  \ ' Current Filetype: ',
  \ 'Available Linters: []',
  \ '  Enabled Linters: []',
  \ ' Linter Variables:',
  \ '',
  \] + g:globals_lines + g:command_header)

Given testft (Empty buffer):
Execute (ALEInfo with a single linter should return the right output):
  call ale#linter#Define('testft', g:testlinter1)

  call CheckInfo([
  \ ' Current Filetype: testft',
  \ 'Available Linters: [''testlinter1'']',
  \ '  Enabled Linters: [''testlinter1'']',
  \ ' Linter Variables:',
  \ '',
  \] + g:globals_lines + g:command_header)

Given testft (Empty buffer):
Execute (ALEInfo with two linters should return the right output):
  call ale#linter#Define('testft', g:testlinter1)
  call ale#linter#Define('testft', g:testlinter2)

  call CheckInfo([
  \ ' Current Filetype: testft',
  \ 'Available Linters: [''testlinter1'', ''testlinter2'']',
  \ '  Enabled Linters: [''testlinter1'', ''testlinter2'']',
  \ ' Linter Variables:',
  \ '',
  \] + g:globals_lines + g:command_header)

Given testft (Empty buffer):
Execute (ALEInfo should calculate enabled linters correctly):
  call ale#linter#Define('testft', g:testlinter1)
  call ale#linter#Define('testft', g:testlinter2)
  let g:ale_linters = {'testft': ['testlinter2']}

  let g:globals_lines[index(g:globals_lines, 'let g:ale_linters = {}')]
  \ = 'let g:ale_linters = {''testft'': [''testlinter2'']}'

  call CheckInfo([
  \ ' Current Filetype: testft',
  \ 'Available Linters: [''testlinter1'', ''testlinter2'']',
  \ '  Enabled Linters: [''testlinter2'']',
  \ ' Linter Variables:',
  \ '',
  \] + g:globals_lines + g:command_header)

Given testft (Empty buffer):
Execute (ALEInfo should only return linters for current filetype):
  call ale#linter#Define('testft', g:testlinter1)
  call ale#linter#Define('testft2', g:testlinter2)

  call CheckInfo([
  \ ' Current Filetype: testft',
  \ 'Available Linters: [''testlinter1'']',
  \ '  Enabled Linters: [''testlinter1'']',
  \ ' Linter Variables:',
  \ '',
  \] + g:globals_lines + g:command_header)

Given testft.testft2 (Empty buffer with two filetypes):
Execute (ALEInfo with compound filetypes should return linters for both of them):
  call ale#linter#Define('testft', g:testlinter1)
  call ale#linter#Define('testft2', g:testlinter2)

  call CheckInfo([
  \ ' Current Filetype: testft.testft2',
  \ 'Available Linters: [''testlinter1'', ''testlinter2'']',
  \ '  Enabled Linters: [''testlinter1'', ''testlinter2'']',
  \ ' Linter Variables:',
  \ '',
  \] + g:globals_lines + g:command_header)

Given testft.testft2 (Empty buffer with two filetypes):
Execute (ALEInfo should return appropriately named global variables):
  let g:ale_testft_testlinter1_foo = 'abc'
  let g:ale_testft_testlinter1_bar = ['abc']
  let g:ale_testft2_testlinter2_foo = 123
  let g:ale_testft2_testlinter2_bar = {'x': 'y'}

  call ale#linter#Define('testft', g:testlinter1)
  call ale#linter#Define('testft2', g:testlinter2)

  call CheckInfo([
  \ ' Current Filetype: testft.testft2',
  \ 'Available Linters: [''testlinter1'', ''testlinter2'']',
  \ '  Enabled Linters: [''testlinter1'', ''testlinter2'']',
  \ ' Linter Variables:',
  \ '',
  \ 'let g:ale_testft2_testlinter2_bar = {''x'': ''y''}',
  \ 'let g:ale_testft2_testlinter2_foo = 123',
  \ 'let g:ale_testft_testlinter1_bar = [''abc'']',
  \ 'let g:ale_testft_testlinter1_foo = ''abc''',
  \] + g:globals_lines + g:command_header)

Given testft.testft2 (Empty buffer with two filetypes):
Execute (ALEInfo should buffer-local linter variables):
  let g:ale_testft2_testlinter2_foo = 123
  let b:ale_testft2_testlinter2_foo = 456

  call ale#linter#Define('testft', g:testlinter1)
  call ale#linter#Define('testft2', g:testlinter2)

  call CheckInfo([
  \ ' Current Filetype: testft.testft2',
  \ 'Available Linters: [''testlinter1'', ''testlinter2'']',
  \ '  Enabled Linters: [''testlinter1'', ''testlinter2'']',
  \ ' Linter Variables:',
  \ '',
  \ 'let g:ale_testft2_testlinter2_foo = 123',
  \ 'let b:ale_testft2_testlinter2_foo = 456',
  \] + g:globals_lines + g:command_header)

Given testft.testft2 (Empty buffer with two filetypes):
Execute (ALEInfo should output linter aliases):
  let g:testlinter1.aliases = ['testftalias1', 'testftalias2']
  let g:testlinter2.aliases = ['testftalias3', 'testftalias4']

  let g:ale_testft2_testlinter2_foo = 123
  let b:ale_testft2_testlinter2_foo = 456

  call ale#linter#Define('testft', g:testlinter1)
  call ale#linter#Define('testft2', g:testlinter2)

  call CheckInfo([
  \ ' Current Filetype: testft.testft2',
  \ 'Available Linters: [''testlinter1'', ''testlinter2'']',
  \ '   Linter Aliases:',
  \ '''testlinter1'' -> [''testftalias1'', ''testftalias2'']',
  \ '''testlinter2'' -> [''testftalias3'', ''testftalias4'']',
  \ '  Enabled Linters: [''testlinter1'', ''testlinter2'']',
  \ ' Linter Variables:',
  \ '',
  \ 'let g:ale_testft2_testlinter2_foo = 123',
  \ 'let b:ale_testft2_testlinter2_foo = 456',
  \] + g:globals_lines + g:command_header)

Given testft.testft2 (Empty buffer with two filetypes):
Execute (ALEInfo should return command history):
  let g:ale_buffer_info[bufnr('%')] = {
  \ 'history': [
  \   {'status': 'started', 'job_id': 347, 'command': 'first command'},
  \   {'status': 'started', 'job_id': 347, 'command': ['/bin/bash', '\c', 'last command']},
  \ ],
  \}

  call ale#linter#Define('testft', g:testlinter1)
  call ale#linter#Define('testft2', g:testlinter2)

  call CheckInfo([
  \   ' Current Filetype: testft.testft2',
  \   'Available Linters: [''testlinter1'', ''testlinter2'']',
  \   '  Enabled Linters: [''testlinter1'', ''testlinter2'']',
  \ ' Linter Variables:',
  \ '',
  \] + g:globals_lines + g:command_header + [
  \ '',
  \ '(started) ''first command''',
  \ '(started) [''/bin/bash'', ''\c'', ''last command'']',
  \])

Given testft.testft2 (Empty buffer with two filetypes):
Execute (ALEInfo command history should print exit codes correctly):
  let g:ale_buffer_info[bufnr('%')] = {
  \ 'history': [
  \   {'status': 'finished', 'exit_code': 0, 'job_id': 347, 'command': 'first command'},
  \   {'status': 'finished', 'exit_code': 1, 'job_id': 347, 'command': ['/bin/bash', '\c', 'last command']},
  \ ],
  \}

  call ale#linter#Define('testft', g:testlinter1)
  call ale#linter#Define('testft2', g:testlinter2)

  call CheckInfo([
  \   ' Current Filetype: testft.testft2',
  \   'Available Linters: [''testlinter1'', ''testlinter2'']',
  \   '  Enabled Linters: [''testlinter1'', ''testlinter2'']',
  \ ' Linter Variables:',
  \ '',
  \] + g:globals_lines + g:command_header + [
  \ '',
  \ '(finished - exit code 0) ''first command''',
  \ '(finished - exit code 1) [''/bin/bash'', ''\c'', ''last command'']',
  \])

Given testft.testft2 (Empty buffer with two filetypes):
Execute (ALEInfo command history should print command output if logging is on):
  let g:ale_history_log_output = 1

  let g:ale_buffer_info[bufnr('%')] = {
  \ 'history': [
  \   {
  \     'status': 'finished',
  \     'exit_code': 0,
  \     'job_id': 347,
  \     'command': 'first command',
  \     'output': ['some', 'first command output'],
  \   },
  \   {
  \     'status': 'finished',
  \     'exit_code': 1,
  \     'job_id': 347,
  \     'command': ['/bin/bash', '\c', 'last command'],
  \     'output': ['different second command output'],
  \   },
  \   {
  \     'status': 'finished',
  \     'exit_code': 0,
  \     'job_id': 347,
  \     'command': 'command with no output',
  \     'output': [],
  \   },
  \ ],
  \}

  call ale#linter#Define('testft', g:testlinter1)
  call ale#linter#Define('testft2', g:testlinter2)

  call CheckInfo([
  \   ' Current Filetype: testft.testft2',
  \   'Available Linters: [''testlinter1'', ''testlinter2'']',
  \   '  Enabled Linters: [''testlinter1'', ''testlinter2'']',
  \ ' Linter Variables:',
  \ '',
  \] + g:globals_lines + g:command_header + [
  \ '',
  \ '(finished - exit code 0) ''first command''',
  \ '',
  \ '<<<OUTPUT STARTS>>>',
  \ 'some',
  \ 'first command output',
  \ '<<<OUTPUT ENDS>>>',
  \ '',
  \ '(finished - exit code 1) [''/bin/bash'', ''\c'', ''last command'']',
  \ '',
  \ '<<<OUTPUT STARTS>>>',
  \ 'different second command output',
  \ '<<<OUTPUT ENDS>>>',
  \ '',
  \ '(finished - exit code 0) ''command with no output''',
  \ '',
  \ '<<<NO OUTPUT RETURNED>>>',
  \])