summaryrefslogtreecommitdiff
path: root/test/handler
diff options
context:
space:
mode:
authorHoracio Sanson <hsanson@gmail.com>2021-02-02 13:08:18 +0900
committerGitHub <noreply@github.com>2021-02-02 13:08:18 +0900
commit9b5c09047361f3ec2cf18afbb6d1e03047a59778 (patch)
tree13ab27fe9a41dd16c78091ac34ec22728b310990 /test/handler
parentc747c277c2ead915b56be0f7e25a9f0c8b91b78e (diff)
parentd9b74caf43ed2bfeb3f090a18fe8b17fe5438c3f (diff)
downloadale-9b5c09047361f3ec2cf18afbb6d1e03047a59778.zip
Merge pull request #3472 from m-ildefons/hadolint
hadolint: Recognize message type
Diffstat (limited to 'test/handler')
-rw-r--r--test/handler/test_hadolint.vader49
1 files changed, 49 insertions, 0 deletions
diff --git a/test/handler/test_hadolint.vader b/test/handler/test_hadolint.vader
new file mode 100644
index 00000000..eec71fbc
--- /dev/null
+++ b/test/handler/test_hadolint.vader
@@ -0,0 +1,49 @@
+Before:
+ runtime ale_linters/dockerfile/hadolint.vim
+
+After:
+ call ale#linter#Reset()
+
+Execute(The hadolint handler should handle an empty string response):
+ AssertEqual
+ \ [],
+ \ ale_linters#dockerfile#hadolint#Handle(bufnr(''), [])
+
+Execute(The hadolint handler should handle a normal example):
+ AssertEqual
+ \ [
+ \ {
+ \ 'lnum': 1,
+ \ 'col': 0,
+ \ 'type': 'W',
+ \ 'text': "Always tag the version of an image explicitly",
+ \ 'detail': "DL3006 ( https://github.com/hadolint/hadolint/wiki/DL3006 )\n\nAlways tag the version of an image explicitly",
+ \ },
+# \ {
+# \ 'lnum': 2,
+# \ 'col': 0,
+# \ 'type': 'E',
+# \ 'text': "MAINTAINER is deprecated",
+# \ 'detail': "DL4000 ( https://github.com/hadolint/hadolint/wiki/DL4000 )\n\nMAINTAINER is deprecated",
+# \ },
+# \ {
+# \ 'lnum': 4,
+# \ 'col': 0,
+# \ 'type': 'W',
+# \ 'text': "Specify version with `yum install -y <package>-<version>`.",
+# \ 'detail': "DL3033 ( https://github.com/hadolint/hadolint/wiki/DL3033 )\n\nSpecify version with `yum install -y <package>-<version>`.",
+# \ },
+# \ {
+# \ 'lnum': 12,
+# \ 'col': 0,
+# \ 'type': 'W',
+# \ 'text': "In POSIX sh, brace expansion is undefined.",
+# \ 'detail': "SC2039 ( https://github.com/koalaman/shellcheck/wiki/SC2039 )\n\nIn POSIX sh, brace expansion is undefined.",
+# \ },
+ \ ],
+ \ ale_linters#dockerfile#hadolint#Handle(bufnr(''), [
+ \ '/dev/stdin:1 DL3006 warning: Always tag the version of an image explicitly',
+# \ '/dev/stdin:2 DL4000 error: MAINTAINER is deprecated',
+# \ '/dev/stdin:4 DL3033 warning: Specify version with `yum install -y <package>-<version>`.',
+# \ '/dev/stdin:12 SC2039 warning: In POSIX sh, brace expansion is undefined.'
+ \ ])