summaryrefslogtreecommitdiff
path: root/test/handler/test_npmgroovylint_handler.vader
blob: e0dae6d255803dd44e074b1f1e11546f14fa0b2d (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
Before:
  runtime ale_linters/groovy/npmgroovylint.vim

After:
  call ale#linter#Reset()

Execute(The npm-groovy-lint handler should parse JSON):
  AssertEqual
  \ [
  \   {
  \     'col': 0,
  \     'end_col': 1,
  \     'end_lnum': 2,
  \     'filename': 'test2.groovy',
  \     'lnum': 2,
  \     'text': 'Some error message',
  \     'type': 'E',
  \   },
  \   {
  \     'filename': 'test.groovy',
  \     'lnum': 1,
  \     'text': 'Some warning message',
  \     'type': 'W',
  \   },
  \ ],
  \ ale_linters#groovy#npmgroovylint#Handle(bufnr(''), [
  \   '{',
  \   '  "files" : {',
  \   '    "test.groovy" : {',
  \   '      "errors" : [',
  \   '        {',
  \   '          "id" : 0,',
  \   '          "line" : 1,',
  \   '          "msg" : "Some warning message",',
  \   '          "rule" : "SomeRule",',
  \   '          "severity" : "warning"',
  \   '        }',
  \   '      ]',
  \   '    },',
  \   '    "test2.groovy": {',
  \   '      "errors": [',
  \   '        {',
  \   '          "id" : 1,',
  \   '          "line" : 2,',
  \   '          "msg" : "Some error message",',
  \   '          "range" : {',
  \   '            "end" : {',
  \   '              "character" : 1,',
  \   '              "line" : 2',
  \   '            },',
  \   '            "start" : {',
  \   '              "character" : 0,',
  \   '              "line" : 2',
  \   '            }',
  \   '          },',
  \   '          "rule" : "SomeOtherRule",',
  \   '          "severity" : "error"',
  \   '        }',
  \   '      ]',
  \   '    }',
  \   '  }',
  \   '}',
  \ ])