summaryrefslogtreecommitdiff
path: root/test/fixers/test_goimports_fixer_callback.vader
blob: 64c75b2d3bc7e0c6bfde8a4f45decde20c9e4e08 (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
Before:
  Save g:ale_go_goimports_executable
  Save g:ale_go_goimports_options
  Save g:ale_go_go111module

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

  call ale#test#SetDirectory('/testplugin/test/fixers')
  call ale#test#SetFilename('../test-files/go/testfile.go')

After:
  Restore

  unlet! b:ale_go_go111module

  call ale#test#RestoreDirectory()

Execute(The goimports callback should return 0 when the executable isn't executable):
  AssertEqual
  \ 0,
  \ ale#fixers#goimports#Fix(bufnr(''))

Execute(The goimports callback should the command when the executable test passes):
  let g:ale_go_goimports_executable = has('win32') ? 'cmd' : 'echo'

  AssertEqual
  \ {
  \   'read_temporary_file': 1,
  \   'command': ale#Escape(g:ale_go_goimports_executable) . ' -l -w -srcdir %s %t'
  \ },
  \ ale#fixers#goimports#Fix(bufnr(''))

Execute(The goimports callback should include extra options):
  let g:ale_go_goimports_executable = has('win32') ? 'cmd' : 'echo'
  let g:ale_go_goimports_options = '--xxx'

  AssertEqual
  \ {
  \   'read_temporary_file': 1,
  \   'command': ale#Escape(g:ale_go_goimports_executable) . ' -l -w -srcdir %s --xxx %t'
  \ },
  \ ale#fixers#goimports#Fix(bufnr(''))

Execute(The goimports callback should support Go environment variables):
  let g:ale_go_goimports_executable = has('win32') ? 'cmd' : 'echo'
  let g:ale_go_go111module = 'on'

  AssertEqual
  \ {
  \   'read_temporary_file': 1,
  \   'command': ale#Env('GO111MODULE', 'on')
  \     . ale#Escape(g:ale_go_goimports_executable)
  \     . ' -l -w -srcdir %s %t'
  \ },
  \ ale#fixers#goimports#Fix(bufnr(''))