summaryrefslogtreecommitdiff
path: root/test/handler/test_shellcheck_handler.vader
blob: 7d9e620b90c9cc1d83ea906c44fa3b551bbccbb3 (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
Before:
  runtime ale_linters/shell/shellcheck.vim

After:
  call ale#linter#Reset()

Execute(The shellcheck handler should handle basic errors or warnings <0.7.0):
  AssertEqual
  \ [
  \   {
  \     'lnum': 2,
  \     'col': 1,
  \     'type': 'W',
  \     'text': 'In POSIX sh, ''let'' is not supported.',
  \     'code': 'SC2039',
  \   },
  \   {
  \     'lnum': 2,
  \     'col': 3,
  \     'type': 'E',
  \     'text': 'Don''t put spaces around the = in assignments.',
  \     'code': 'SC1068',
  \   },
  \ ],
  \ ale#handlers#shellcheck#Handle(bufnr(''), [0, 6, 0], [
  \   '-:2:1: warning: In POSIX sh, ''let'' is not supported. [SC2039]',
  \   '-:2:3: error: Don''t put spaces around the = in assignments. [SC1068]',
  \ ])

Execute(The shellcheck handler should handle notes <0.7.0):
  AssertEqual
  \ [
  \   {
  \     'lnum': 3,
  \     'col': 3,
  \     'type': 'I',
  \     'text': 'Double quote to prevent globbing and word splitting.',
  \     'code': 'SC2086',
  \   },
  \ ],
  \ ale#handlers#shellcheck#Handle(bufnr(''), [0, 6, 0], [
  \   '-:3:3: note: Double quote to prevent globbing and word splitting. [SC2086]',
  \ ])

Execute(The shellcheck handler should handle basic errors or warnings >=0.7.0):
  AssertEqual
  \ [
  \   {
  \     'lnum': 2,
  \     'end_lnum': 3,
  \     'col': 1,
  \     'end_col': 1,
  \     'type': 'W',
  \     'text': 'In POSIX sh, ''let'' is not supported.',
  \     'code': 'SC2039',
  \     'detail': 'In POSIX sh, ''let'' is not supported.' . "\n\nFor more information:\n  https://www.shellcheck.net/wiki/" . 'SC2039',
  \   },
  \   {
  \     'lnum': 2,
  \     'end_lnum': 3,
  \     'col': 3,
  \     'end_col': 3,
  \     'type': 'E',
  \     'text': 'Don''t put spaces around the = in assignments.',
  \     'code': 'SC1068',
  \     'detail': 'Don''t put spaces around the = in assignments.' . "\n\nFor more information:\n  https://www.shellcheck.net/wiki/" . 'SC1068',
  \   },
  \ ],
  \ ale#handlers#shellcheck#Handle(bufnr(''), [0, 7, 0], [
  \   '{
  \     "comments": [
  \       {
  \         "file":"-",
  \         "line":2,
  \         "endLine":3,
  \         "column":1,
  \         "endColumn":2,
  \         "level":"warning",
  \         "code":2039,
  \         "message":"In POSIX sh, ''let'' is not supported.",
  \         "fix": null
  \       },
  \       {
  \         "file":"-",
  \         "line":2,
  \         "endLine":3,
  \         "column":3,
  \         "endColumn":4,
  \         "level":"error",
  \         "code":1068,
  \         "message":"Don''t put spaces around the = in assignments.",
  \         "fix": null
  \       }
  \     ]
  \   }'
  \ ])

Execute(The shellcheck handler should handle info and style >=0.7.0):
  AssertEqual
  \ [
  \   {
  \     'lnum': 3,
  \     'end_lnum': 5,
  \     'col': 3,
  \     'end_col': 4,
  \     'type': 'I',
  \     'text': 'Double quote to prevent globbing and word splitting.',
  \     'code': 'SC2086',
  \     'detail': 'Double quote to prevent globbing and word splitting.' . "\n\nFor more information:\n  https://www.shellcheck.net/wiki/" . 'SC2086',
  \   },
  \   {
  \     'lnum': 13,
  \     'end_lnum': 13,
  \     'col': 17,
  \     'end_col': 27,
  \     'type': 'I',
  \     'text': '$/${} is unnecessary on arithmetic variables.',
  \     'code': 'SC2004',
  \     'detail': '$/${} is unnecessary on arithmetic variables.' . "\n\nFor more information:\n  https://www.shellcheck.net/wiki/" . 'SC2004',
  \   }
  \ ],
  \ ale#handlers#shellcheck#Handle(bufnr(''), [0, 7, 0], [
  \   '{
  \     "comments": [
  \       {
  \         "file": "-",
  \         "line": 3,
  \         "endLine": 5,
  \         "column": 3,
  \         "endColumn": 5,
  \         "level": "info",
  \         "code": 2086,
  \         "message": "Double quote to prevent globbing and word splitting.",
  \         "fix": null
  \       },
  \       {
  \         "file": "-",
  \         "line": 13,
  \         "endLine": 13,
  \         "column": 17,
  \         "endColumn": 28,
  \         "level": "style",
  \         "code": 2004,
  \         "message": "$/${} is unnecessary on arithmetic variables.",
  \         "fix": null
  \       }
  \     ]
  \   }'
  \ ])