summaryrefslogtreecommitdiff
path: root/test/handler
diff options
context:
space:
mode:
authorserapas <vytautas.macionis@manomail.de>2021-02-28 13:43:23 +0100
committerGitHub <noreply@github.com>2021-02-28 21:43:23 +0900
commit038e4a8c31feb03beea02c09d953affc8c460515 (patch)
tree4470f633a25e7fda68d9dca34c10d7ba8c1bf6cf /test/handler
parent76965615558e9398ef4cc79991632a7b68a6c7bc (diff)
downloadale-038e4a8c31feb03beea02c09d953affc8c460515.zip
Fix ansible-lint linter definition. (#3601)
* Fix ansible-lint linter definition. Use ansible-lint's feature auto-detection instead of temporary file. For auto-detection to work, ansible project has to be also a git repository. Don't use yaml rules. These are checked by yamllint. Refactor pattern to work with ansible-lint >=5.0 version. Clean-up obsolete test cases. * Pull Request changes
Diffstat (limited to 'test/handler')
-rw-r--r--test/handler/test_ansible_lint_handler.vader63
1 files changed, 50 insertions, 13 deletions
diff --git a/test/handler/test_ansible_lint_handler.vader b/test/handler/test_ansible_lint_handler.vader
index 796277e6..28dbba30 100644
--- a/test/handler/test_ansible_lint_handler.vader
+++ b/test/handler/test_ansible_lint_handler.vader
@@ -1,15 +1,14 @@
Before:
runtime ale_linters/ansible/ansible_lint.vim
- call ale#test#SetFilename('main.yml')
+ call ale#test#SetFilename('test_playbook.yml')
let b:ale_warn_about_trailing_whitespace = 1
After:
unlet! b:ale_warn_about_trailing_whitespace
-
call ale#linter#Reset()
-Execute(The ansible-lint handler should handle basic errors):
+Execute(The ansible-lint handler for version group <5 should handle basic errors):
AssertEqual
\ [
\ {
@@ -20,21 +19,44 @@ Execute(The ansible-lint handler should handle basic errors):
\ 'code': 'EANSIBLE0002',
\ },
\ ],
- \ ale_linters#ansible#ansible_lint#Handle(bufnr(''), [
- \ fnamemodify(tempname(), ':h') . '/main.yml:35: [EANSIBLE0002] Trailing whitespace',
+ \ ale_linters#ansible#ansible_lint#Handle(bufnr(''), [4, 1, 2], [
+ \ fnamemodify(tempname(), ':h') . '/test_playbook.yml:35: [EANSIBLE0002] Trailing whitespace',
\ ])
-Execute(The ansible-lint handler should supress trailing whitespace output when the option is used):
+Execute(The ansible-lint handler for version group <5 should supress trailing whitespace output when the option is used):
let b:ale_warn_about_trailing_whitespace = 0
AssertEqual
\ [
\ ],
- \ ale_linters#ansible#ansible_lint#Handle(bufnr(''), [
- \ fnamemodify(tempname(), ':h') . '/main.yml:35: [EANSIBLE0002] Trailing whitespace',
+ \ ale_linters#ansible#ansible_lint#Handle(bufnr(''), [4, 1, 2], [
+ \ fnamemodify(tempname(), ':h') . '/test_playbook.yml:35: [EANSIBLE0002] Trailing whitespace',
\ ])
-Execute (The ansible-lint handler should handle names with spaces):
+
+Execute(The ansible-lint handler for version group >=5 should handle basic errors):
+ AssertEqual
+ \ [
+ \ {
+ \ 'lnum': 35,
+ \ 'col': 0,
+ \ 'type': 'E',
+ \ 'text': 'File permissions unset or incorrect',
+ \ 'code': 'risky-file-permissions',
+ \ },
+ \ ],
+ \ ale_linters#ansible#ansible_lint#Handle(bufnr(''), [5, 1, 2], [
+ \ fnamemodify(tempname(), ':h') . '/test_playbook.yml:35: [risky-file-permissions] [VERY_HIGH] File permissions unset or incorrect',
+ \ ])
+
+Before:
+ runtime ale_linters/ansible/ansible_lint.vim
+ call ale#test#SetFilename('test playbook.yml')
+
+After:
+ call ale#linter#Reset()
+
+Execute (The ansible-lint handler for version group <5 should handle names with spaces):
AssertEqual
\ [
\ {
@@ -45,14 +67,29 @@ Execute (The ansible-lint handler should handle names with spaces):
\ 'code': 'E111',
\ },
\ ],
- \ ale_linters#ansible#ansible_lint#Handle(bufnr(''), [
- \ fnamemodify(tempname(), ':h') . '/main.yml:6:6: E111 indentation is not a multiple of four',
+ \ ale_linters#ansible#ansible_lint#Handle(bufnr(''), [4, 1, 2], [
+ \ fnamemodify(tempname(), ':h') . '/test playbook.yml:6:6: E111 indentation is not a multiple of four',
+ \ ])
+
+Execute (The ansible-lint handler for version group >=5 should handle names with spaces):
+ AssertEqual
+ \ [
+ \ {
+ \ 'lnum': 3,
+ \ 'col': 148,
+ \ 'type': 'E',
+ \ 'text': "'var' is not a valid attribute for a Play",
+ \ 'code': 'syntax-check',
+ \ },
+ \ ],
+ \ ale_linters#ansible#ansible_lint#Handle(bufnr(''), [5, 1, 2], [
+ \ fnamemodify(tempname(), ':h') . "/test playbook.yml:3:148: [syntax-check] [VERY_HIGH] 'var' is not a valid attribute for a Play",
\ ])
Execute (The ansible-lint handler should ignore errors from other files):
AssertEqual
\ [
\ ],
- \ ale_linters#ansible#ansible_lint#Handle(bufnr(''), [
- \ '/foo/bar/roles/main.yml:6:6: E111 indentation is not a multiple of four',
+ \ ale_linters#ansible#ansible_lint#Handle(bufnr(''), [5, 1, 2], [
+ \ '/foo/bar/roles/test_playbook.yml:6: [command-instead-of-module] [VERY_LOW] curl used in place of get_url or uri module',
\ ])