diff options
author | lucas-str <32294068+lucas-str@users.noreply.github.com> | 2023-05-06 02:02:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-06 09:02:07 +0900 |
commit | 9fe9f115213d7e7bf52d06ebdc69c6df38b1120b (patch) | |
tree | 36afc7ede0bf275c71e4f043745d5e15b40860e0 /test/handler | |
parent | 61248e1453dc6373160154e1f6855ffc510a7dfc (diff) | |
download | ale-9fe9f115213d7e7bf52d06ebdc69c6df38b1120b.zip |
Add support for npm-groovy-lint (#4495)
* Add support for npm-groovy-lint
* Add doc and tests for npm-groovy-lint
* Use ale#util#FuzzyJSONDecode instead of json_decode
Diffstat (limited to 'test/handler')
-rw-r--r-- | test/handler/test_npmgroovylint_handler.vader | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/test/handler/test_npmgroovylint_handler.vader b/test/handler/test_npmgroovylint_handler.vader new file mode 100644 index 00000000..e0dae6d2 --- /dev/null +++ b/test/handler/test_npmgroovylint_handler.vader @@ -0,0 +1,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"', + \ ' }', + \ ' ]', + \ ' }', + \ ' }', + \ '}', + \ ]) |