summaryrefslogtreecommitdiff
path: root/test/fixers/test_rubocop_fixer_callback.vader
blob: 74160c73263ef5977d3d27436e3b6469c028b403 (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
34
35
36
37
38
39
40
41
42
Before:
  Save g:ale_ruby_rubocop_executable

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

  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.rb'
  unlet! g:dir

Execute(The rubocop callback should return the correct default values):
  call ale#test#SetFilename('ruby_paths/dummy.rb')

  AssertEqual
  \ {
  \   'read_temporary_file': 1,
  \   'command': ale#Escape(g:ale_ruby_rubocop_executable)
  \     . ' --auto-correct %t',
  \ },
  \ ale#fixers#rubocop#Fix(bufnr(''))

Execute(The rubocop callback should include configuration files):
  call ale#test#SetFilename('ruby_paths/with_config/dummy.rb')

  AssertEqual
  \ {
  \   'read_temporary_file': 1,
  \   'command': ale#Escape(g:ale_ruby_rubocop_executable)
  \     . ' --config ' . ale#Escape(g:dir . '/ruby_paths/with_config/.rubocop.yml')
  \     . ' --auto-correct %t',
  \ },
  \ ale#fixers#rubocop#Fix(bufnr(''))