Add puppet-lint fixer (#701)
* Add puppet-lint fixer * Add vader test for puppetlint fixer * Ensure puppetlint variables are initialized
This commit is contained in:
parent
f984c5fb83
commit
f883d4d4fd
4 changed files with 57 additions and 0 deletions
|
@ -32,6 +32,11 @@ let s:default_registry = {
|
|||
\ 'suggested_filetypes': ['javascript'],
|
||||
\ 'description': 'Apply prettier-eslint to a file.',
|
||||
\ },
|
||||
\ 'puppetlint': {
|
||||
\ 'function': 'ale#fixers#puppetlint#Fix',
|
||||
\ 'suggested_filetypes': ['puppet'],
|
||||
\ 'description': 'Run puppet-lint -f on a file.',
|
||||
\ },
|
||||
\ 'remove_trailing_lines': {
|
||||
\ 'function': 'ale#fixers#generic#RemoveTrailingBlankLines',
|
||||
\ 'suggested_filetypes': [],
|
||||
|
|
21
autoload/ale/fixers/puppetlint.vim
Normal file
21
autoload/ale/fixers/puppetlint.vim
Normal file
|
@ -0,0 +1,21 @@
|
|||
" Author: Alexander Olofsson <alexander.olofsson@liu.se>
|
||||
" Description: puppet-lint fixer
|
||||
|
||||
if !exists('g:ale_puppet_puppetlint_executable')
|
||||
let g:ale_puppet_puppetlint_executable = 'puppet-lint'
|
||||
endif
|
||||
if !exists('g:ale_puppet_puppetlint_options')
|
||||
let g:ale_puppet_puppetlint_options = ''
|
||||
endif
|
||||
|
||||
function! ale#fixers#puppetlint#Fix(buffer) abort
|
||||
let l:executable = ale#Var(a:buffer, 'puppet_puppetlint_executable')
|
||||
|
||||
return {
|
||||
\ 'command': ale#Escape(l:executable)
|
||||
\ . ' ' . ale#Var(a:buffer, 'puppet_puppetlint_options')
|
||||
\ . ' --fix'
|
||||
\ . ' %t',
|
||||
\ 'read_temporary_file': 1,
|
||||
\}
|
||||
endfunction
|
0
test/command_callback/puppet_paths/dummy.pp
Normal file
0
test/command_callback/puppet_paths/dummy.pp
Normal file
31
test/fixers/test_puppetlint_fixer_callback.vader
Normal file
31
test/fixers/test_puppetlint_fixer_callback.vader
Normal file
|
@ -0,0 +1,31 @@
|
|||
Before:
|
||||
Save g:ale_puppet_puppetlint_executable
|
||||
Save g:ale_puppet_puppetlint_options
|
||||
|
||||
" Use an invalid global executable, so we don't match it.
|
||||
let g:ale_puppet_puppetlint_executable = 'xxxinvalid'
|
||||
let g:ale_puppet_puppetlint_options = '--invalid'
|
||||
|
||||
silent! execute 'cd /testplugin/test/command_callback'
|
||||
silent cd ..
|
||||
silent cd command_callback
|
||||
let g:dir = getcwd()
|
||||
|
||||
After:
|
||||
Restore
|
||||
|
||||
silent execute 'cd ' . fnameescape(g:dir)
|
||||
" Set the file to something else,
|
||||
" or we'll cause issues when running other tests
|
||||
silent file 'dummy.pp'
|
||||
unlet! g:dir
|
||||
|
||||
Execute(The puppetlint callback should return the correct default values):
|
||||
silent execute 'file ' . fnameescape(g:dir . '/puppet_paths/dummy.pp')
|
||||
|
||||
AssertEqual
|
||||
\ {'read_temporary_file': 1,
|
||||
\ 'command': "'" . g:ale_puppet_puppetlint_executable . "'"
|
||||
\ . ' ' . g:ale_puppet_puppetlint_options
|
||||
\ . ' --fix %t' },
|
||||
\ ale#fixers#puppetlint#Fix(bufnr(''))
|
Reference in a new issue