summaryrefslogtreecommitdiff
path: root/test/fixers/test_uncrustify_fixer_callback.vader
blob: 26b5f892a6a5a919482f2cf722038ce4c4e5aa6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
Before:
  Save g:ale_c_uncrustify_executable

  " Use an invalid global executable, so we don't match it.
  let g:ale_c_uncrustify_executable = 'xxxinvalid'

  call ale#test#SetDirectory('/testplugin/test/fixers')

After:
  Restore

  call ale#test#RestoreDirectory()

Execute(The clang-format callback should return the correct default values):
  call ale#test#SetFilename('../test-files/c/dummy.c')

  AssertEqual
  \ {
  \   'command': ale#Escape(g:ale_c_uncrustify_executable)
  \       . ' --no-backup'
  \ },
  \ ale#fixers#uncrustify#Fix(bufnr(''))

Execute(The uncrustify callback should include any additional options):
  call ale#test#SetFilename('../test-files/c/dummy.c')
  let b:ale_c_uncrustify_options = '--some-option'

  AssertEqual
  \ {
  \   'command': ale#Escape(g:ale_c_uncrustify_executable)
  \     . ' --no-backup --some-option',
  \ },
  \ ale#fixers#uncrustify#Fix(bufnr(''))