summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorHoracio Sanson <hsanson@gmail.com>2022-09-11 10:53:33 +0900
committerGitHub <noreply@github.com>2022-09-11 10:53:33 +0900
commita51fd9dababe43d239b8bdc1c10ac1f5397d6739 (patch)
tree1a5491d00b264710af0dd85b342edb068ecc5749 /test
parent9e8920b3362b1382cfe4bb6691f2bf4bf41e6e68 (diff)
downloadale-a51fd9dababe43d239b8bdc1c10ac1f5397d6739.zip
Add gitlablint support (#3042)
Diffstat (limited to 'test')
-rw-r--r--test/handler/test_gitlablint_handler.vader35
1 files changed, 35 insertions, 0 deletions
diff --git a/test/handler/test_gitlablint_handler.vader b/test/handler/test_gitlablint_handler.vader
new file mode 100644
index 00000000..3b08ccb4
--- /dev/null
+++ b/test/handler/test_gitlablint_handler.vader
@@ -0,0 +1,35 @@
+Before:
+ runtime! ale_linters/yaml/gitlablint.vim
+
+After:
+ Restore
+ call ale#linter#Reset()
+
+Execute(Problems should be parsed correctly for gitlablint):
+ AssertEqual
+ \ [
+ \ {
+ \ 'lnum': 0,
+ \ 'col': 0,
+ \ 'type': 'E',
+ \ 'text': 'root config contains unknown keys: efore_script',
+ \ },
+ \ {
+ \ 'lnum': 77,
+ \ 'col': 3,
+ \ 'type': 'E',
+ \ 'text': '(<unknown>): could not find expected : while scanning a simple key',
+ \ },
+ \ {
+ \ 'lnum': 0,
+ \ 'col': 0,
+ \ 'type': 'E',
+ \ 'text': 'build:dev:rest job: undefined need: chck:dev',
+ \ },
+ \ ],
+ \ ale_linters#yaml#gitlablint#Handle(bufnr(''), [
+ \ 'GitLab CI configuration is invalid',
+ \ 'root config contains unknown keys: efore_script',
+ \ '(<unknown>): could not find expected : while scanning a simple key at line 77 column 3',
+ \ 'build:dev:rest job: undefined need: chck:dev',
+ \ ])