summaryrefslogtreecommitdiff
path: root/test/handler/test_elmmake_handler.vader
blob: 94bd84ad58fc89cb34bd7e4a2a3a12410d94603a (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
Before:
  let b:tmp = has('win32') ? substitute($TMP, '\\', '\\\\', 'g') : $TMPDIR

  runtime ale_linters/elm/make.vim

After:
  unlet! b:tmp
  unlet! g:config_error_lines

  call ale#linter#Reset()

Execute(The elm-make handler should parse lines correctly):
  AssertEqual
  \ [
  \   {
  \     'lnum': 404,
  \     'col': 1,
  \     'end_lnum': 408,
  \     'end_col': 18,
  \     'type': 'E',
  \     'text': 'TYPE MISMATCH',
  \     'detail': "error details 1 styled details"
  \   },
  \   {
  \     'lnum': 406,
  \     'col': 5,
  \     'end_lnum': 407,
  \     'end_col': 17,
  \     'type': 'E',
  \     'text': 'TYPE MISMATCH',
  \     'detail': "error details 2",
  \   },
  \   {
  \     'lnum': 406,
  \     'col': 5,
  \     'end_lnum': 406,
  \     'end_col': 93,
  \     'type': 'E',
  \     'text': 'TYPE MISMATCH',
  \     'detail': "error details 3",
  \   },
  \ ],
  \ ale_linters#elm#make#Handle(347, [
  \   '{
  \      "type":"compile-errors",
  \      "errors": [
  \        {
  \          "path": "' . b:tmp . 'Module.elm",
  \          "problems": [
  \            {
  \              "title": "TYPE MISMATCH",
  \              "message": ["error details 1 ", { "string": "styled details" }],
  \              "region": { "start": { "line": 404, "column":1 }, "end": { "line":408, "column":18} }
  \            },
  \            {
  \              "title": "TYPE MISMATCH",
  \              "message": ["error details 2"],
  \              "region": { "start": {"line": 406, "column": 5}, "end": {"line": 407, "column": 17} }
  \            },
  \            {
  \              "title": "TYPE MISMATCH",
  \              "message": ["error details 3"],
  \              "region": { "start": { "line": 406, "column": 5}, "end": {"line": 406, "column":93 } }
  \            }
  \          ]
  \        }
  \      ]
  \    }'
  \ ])

Execute(The elm-make handler should put an error on the first line if a line cannot be parsed):
  AssertEqual
  \ [
  \   {
  \     'lnum': 404,
  \     'col': 1,
  \     'end_lnum': 408,
  \     'end_col': 18,
  \     'type': 'E',
  \     'text': 'TYPE MISMATCH',
  \     'detail': "error details 1 styled details"
  \   },
  \   {
  \     'lnum': 1,
  \     'type': 'E',
  \     'text': 'Not JSON',
  \     'detail': "Not JSON\nAlso not JSON",
  \   },
  \ ],
  \ ale_linters#elm#make#Handle(347, [
  \   '{
  \      "type":"compile-errors",
  \      "errors": [
  \        {
  \          "path": "' . b:tmp . 'Module.elm",
  \          "problems": [
  \            {
  \              "title": "TYPE MISMATCH",
  \              "message": ["error details 1 ", { "string": "styled details" }],
  \              "region": { "start": { "line": 404, "column":1 }, "end": { "line":408, "column":18} }
  \            }
  \          ]
  \        }
  \      ]
  \    }',
  \    "Not JSON",
  \    "Also not JSON",
  \ ])