2017-06-14 15:20:30 +00:00
|
|
|
Before:
|
|
|
|
runtime ale_linters/ansible/ansible_lint.vim
|
2017-07-03 22:16:39 +00:00
|
|
|
call ale#test#SetFilename('main.yml')
|
2017-06-14 15:20:30 +00:00
|
|
|
|
|
|
|
After:
|
|
|
|
call ale#linter#Reset()
|
|
|
|
|
|
|
|
Execute(The ansible-lint handler should handle basic errors):
|
|
|
|
AssertEqual
|
|
|
|
\ [
|
|
|
|
\ {
|
|
|
|
\ 'lnum': 35,
|
|
|
|
\ 'col': 0,
|
|
|
|
\ 'type': 'E',
|
2017-11-15 10:11:32 +00:00
|
|
|
\ 'text': 'Trailing whitespace',
|
|
|
|
\ 'code': 'EANSIBLE0002',
|
2017-06-14 15:20:30 +00:00
|
|
|
\ },
|
|
|
|
\ ],
|
2017-07-03 22:16:39 +00:00
|
|
|
\ ale_linters#ansible#ansible_lint#Handle(bufnr(''), [
|
2017-09-13 23:11:17 +00:00
|
|
|
\ fnamemodify(tempname(), ':h') . '/main.yml:35: [EANSIBLE0002] Trailing whitespace',
|
2017-06-14 15:20:30 +00:00
|
|
|
\ ])
|
|
|
|
|
|
|
|
Execute (The ansible-lint handler should handle names with spaces):
|
|
|
|
AssertEqual
|
|
|
|
\ [
|
|
|
|
\ {
|
|
|
|
\ 'lnum': 6,
|
|
|
|
\ 'col': 6,
|
|
|
|
\ 'type': 'E',
|
2017-11-15 10:11:32 +00:00
|
|
|
\ 'text': 'indentation is not a multiple of four',
|
|
|
|
\ 'code': 'E111',
|
2017-06-14 15:20:30 +00:00
|
|
|
\ },
|
|
|
|
\ ],
|
2017-07-03 22:16:39 +00:00
|
|
|
\ ale_linters#ansible#ansible_lint#Handle(bufnr(''), [
|
2017-09-13 23:11:17 +00:00
|
|
|
\ fnamemodify(tempname(), ':h') . '/main.yml:6:6: E111 indentation is not a multiple of four',
|
2017-07-03 22:16:39 +00:00
|
|
|
\ ])
|
|
|
|
|
|
|
|
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',
|
2017-06-14 15:20:30 +00:00
|
|
|
\ ])
|