Merge pull request #1232 from languitar/vale-json
Use JSON output with vale
This commit is contained in:
commit
fdde8af894
5 changed files with 109 additions and 6 deletions
67
test/handler/test_vale_handler.vader
Normal file
67
test/handler/test_vale_handler.vader
Normal file
|
@ -0,0 +1,67 @@
|
|||
Execute(The vale handler should handle broken JSON):
|
||||
AssertEqual
|
||||
\ [],
|
||||
\ ale#handlers#vale#Handle(bufnr(''), ["{asdf"])
|
||||
|
||||
Execute(The vale handler should handle am empty string response):
|
||||
AssertEqual
|
||||
\ [],
|
||||
\ ale#handlers#vale#Handle(bufnr(''), [])
|
||||
|
||||
Execute(The vale handler should handle an empty result):
|
||||
AssertEqual
|
||||
\ [],
|
||||
\ ale#handlers#vale#Handle(bufnr(''), ["{}"])
|
||||
|
||||
Execute(The vale handler should handle a normal example):
|
||||
AssertEqual
|
||||
\ [
|
||||
\ {
|
||||
\ 'lnum': 5,
|
||||
\ 'col': 195,
|
||||
\ 'end_col': 201,
|
||||
\ 'type': 'W',
|
||||
\ 'text': "Consider removing 'usually'",
|
||||
\ 'code': 'vale.Hedging',
|
||||
\ },
|
||||
\ {
|
||||
\ 'lnum': 7,
|
||||
\ 'col': 1,
|
||||
\ 'end_col': 27,
|
||||
\ 'type': 'E',
|
||||
\ 'text': "'Documentation' is repeated!",
|
||||
\ 'code': 'vale.Repetition',
|
||||
\ },
|
||||
\ ],
|
||||
\ ale#handlers#vale#Handle(bufnr(''), [
|
||||
\ '{',
|
||||
\ ' "/home/languitar/src/autosuspend/README.md": [',
|
||||
\ ' {',
|
||||
\ ' "Check": "vale.Hedging",',
|
||||
\ ' "Description": "",',
|
||||
\ ' "Line": 5,',
|
||||
\ ' "Link": "",',
|
||||
\ " \"Message\": \"Consider removing 'usually'\",",
|
||||
\ ' "Severity": "warning",',
|
||||
\ ' "Span": [',
|
||||
\ ' 195,',
|
||||
\ ' 201',
|
||||
\ ' ],',
|
||||
\ ' "Hide": false',
|
||||
\ ' },',
|
||||
\ ' {',
|
||||
\ ' "Check": "vale.Repetition",',
|
||||
\ ' "Description": "",',
|
||||
\ ' "Line": 7,',
|
||||
\ ' "Link": "",',
|
||||
\ " \"Message\": \"'Documentation' is repeated!\",",
|
||||
\ ' "Severity": "error",',
|
||||
\ ' "Span": [',
|
||||
\ ' 1,',
|
||||
\ ' 27',
|
||||
\ ' ],',
|
||||
\ ' "Hide": false',
|
||||
\ ' }',
|
||||
\ ' ]',
|
||||
\ '}',
|
||||
\ ])
|
Loading…
Add table
Add a link
Reference in a new issue