summaryrefslogtreecommitdiff
path: root/test/handler/test_vint_handler.vader
blob: c5af85c42b1f003c45f374939aa916255c3d6b4e (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
Execute(The vint handler should parse error messages correctly):
  :file! gxc.vim

  AssertEqual
  \ [
  \   {
  \     'lnum': 1,
  \     'col': 1,
  \     'text': 'Use scriptencoding when multibyte char exists (see :help :script encoding)',
  \     'type': 'W',
  \   },
  \   {
  \     'lnum': 3,
  \     'col': 17,
  \     'text': 'Use robust operators ''==#'' or ''==?'' instead of ''=='' (see Google VimScript Style Guide (Matching))',
  \     'type': 'W',
  \   },
  \   {
  \     'lnum': 3,
  \     'col': 8,
  \     'text': 'Make the scope explicit like ''l:filename'' (see Anti-pattern of vimrc (Scope of identifier))',
  \     'type': 'W',
  \   },
  \   {
  \     'lnum': 7,
  \     'col': 8,
  \     'text': 'Undefined variable: filename (see :help E738)',
  \     'type': 'W',
  \   },
  \ ],
  \ ale#handlers#gcc#HandleGCCFormat(347, [
  \   'gcc.vim:1:1: warning: Use scriptencoding when multibyte char exists (see :help :script encoding)',
  \   'gcc.vim:3:17: warning: Use robust operators `==#` or `==?` instead of `==` (see Google VimScript Style Guide (Matching))',
  \   'gcc.vim:3:8: style_problem: Make the scope explicit like `l:filename` (see Anti-pattern of vimrc (Scope of identifier))',
  \   'gcc.vim:7:8: warning: Undefined variable: filename (see :help E738)',
  \ ])