summaryrefslogtreecommitdiff
path: root/test/fixers/test_gopls_fixer_callback.vader
blob: 218a356af104d8f509929b1180503641260107bd (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_gopls_fix_executable
  Save g:ale_go_gopls_fix_options
  Save g:ale_go_go111module

  " Use an invalid global executable, so we don't match it.
  let g:ale_go_gopls_fix_executable = 'xxxinvalid'
  let g:ale_go_gopls_fix_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 gopls callback should return 0 when the executable isn't executable):
  AssertEqual
  \ 0,
  \ ale#fixers#gopls#Fix(bufnr(''))

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

  AssertEqual
  \ {
  \   'read_temporary_file': 1,
  \   'command': ale#Escape(g:ale_go_gopls_fix_executable) . ' format -l -w %t'
  \ },
  \ ale#fixers#gopls#Fix(bufnr(''))

Execute(The gopls callback should include extra options):
  let g:ale_go_gopls_fix_executable = has('win32') ? 'cmd' : 'echo'
  let g:ale_go_gopls_fix_options = '--xxx'

  AssertEqual
  \ {
  \   'read_temporary_file': 1,
  \   'command': ale#Escape(g:ale_go_gopls_fix_executable) . ' format --xxx -l -w %t'
  \ },
  \ ale#fixers#gopls#Fix(bufnr(''))

Execute(The gopls callback should support Go environment variables):
  let g:ale_go_gopls_fix_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_gopls_fix_executable)
  \     . ' format -l -w %t'
  \ },
  \ ale#fixers#gopls#Fix(bufnr(''))