summaryrefslogtreecommitdiff
path: root/test/fixers/test_scalafmt_fixer_callback.vader
blob: 2b8dc3ebd3a087dfcc600129b96c0935f684eb78 (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
58
59
60
61
62
63
64
65
66
Before:
  Save g:ale_scala_scalafmt_executable
  Save g:ale_scala_scalafmt_options

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

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

After:
  Restore

  call ale#test#RestoreDirectory()

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

  AssertEqual
  \ {
  \   'read_temporary_file': 1,
  \   'command': ale#Escape(g:ale_scala_scalafmt_executable)
  \     . ' %t',
  \ },
  \ ale#fixers#scalafmt#Fix(bufnr(''))

Execute(The scalafmt callback should use ng with scalafmt automatically):
  let g:ale_scala_scalafmt_executable = 'ng'
  call ale#test#SetFilename('../test-files/scala/dummy.scala')

  AssertEqual
  \ {
  \   'read_temporary_file': 1,
  \   'command': ale#Escape('ng')
  \     . ' scalafmt'
  \     . ' %t',
  \ },
  \ ale#fixers#scalafmt#Fix(bufnr(''))

Execute(The scalafmt callback should include custom scalafmt options):
  let g:ale_scala_scalafmt_options = '--diff'
  call ale#test#SetFilename('../test-files/scala/dummy.scala')

  AssertEqual
  \ {
  \   'read_temporary_file': 1,
  \   'command': ale#Escape(g:ale_scala_scalafmt_executable)
  \     . ' --diff'
  \     . ' %t',
  \ },
  \ ale#fixers#scalafmt#Fix(bufnr(''))

Execute(The scalafmt callback should include custom scalafmt options and use ng with scalafmt):
  let g:ale_scala_scalafmt_options = '--diff'
  let g:ale_scala_scalafmt_executable = 'ng'
  call ale#test#SetFilename('../test-files/scala/dummy.scala')

  AssertEqual
  \ {
  \   'read_temporary_file': 1,
  \   'command': ale#Escape('ng')
  \     . ' scalafmt'
  \     . ' --diff'
  \     . ' %t',
  \ },
  \ ale#fixers#scalafmt#Fix(bufnr(''))