summaryrefslogtreecommitdiff
path: root/test/command_callback/test_checkstyle_command_callback.vader
blob: d775f9f285409667c5a90b316ea1f6dca88c9a15 (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
Before:
  call ale#assert#SetUpLinterTest('java', 'checkstyle')
  call ale#test#SetFilename('dummy.java')

After:
  call ale#assert#TearDownLinterTest()

Execute(The checkstyle callback should return the correct default value):
  AssertLinter 'checkstyle', ale#Escape('checkstyle') . ' %s'

Execute(The checkstyle executable should be configurable):
  let b:ale_java_checkstyle_executable = 'foobar'

  AssertLinter 'foobar', ale#Escape('foobar') . ' %s'

Execute(Custom options should be supported):
  let b:ale_java_checkstyle_options = '--foobar'

  AssertLinter 'checkstyle', ale#Escape('checkstyle') . ' --foobar %s'

Execute(configuration files set in _config should be supported):
  let b:ale_java_checkstyle_config = ale#path#Simplify(g:dir . '/checkstyle_paths/other_config.xml')

  AssertLinter 'checkstyle',
  \ ale#Escape('checkstyle')
  \ . ' -c ' . ale#Escape(ale#path#Simplify(g:dir . '/checkstyle_paths/other_config.xml'))
  \ . ' %s'

Execute(configuration files set in _options should be preferred over _config):
  let b:ale_java_checkstyle_config = '/foo.xml'
  let b:ale_java_checkstyle_options = '-c /bar.xml'

  AssertLinter 'checkstyle', ale#Escape('checkstyle') . ' -c /bar.xml %s'

  let b:ale_java_checkstyle_options = '-x -c /bar.xml'

  AssertLinter 'checkstyle', ale#Escape('checkstyle') . ' -x -c /bar.xml %s'

Execute(google_checks.xml should be detected automatically):
  call ale#test#SetFilename('checkstyle_paths/test.java')

  AssertLinter 'checkstyle',
  \ ale#Escape('checkstyle')
  \ . ' -c ' . ale#Escape(ale#path#Simplify(g:dir . '/checkstyle_paths/google_checks.xml'))
  \ . ' %s'

Execute(Other relative paths should be supported):
  let b:ale_java_checkstyle_config = 'checkstyle_paths/other_config.xml'

  AssertLinter 'checkstyle',
  \ ale#Escape('checkstyle')
  \ . ' -c ' . ale#Escape(ale#path#Simplify(g:dir . '/checkstyle_paths/other_config.xml'))
  \ . ' %s'

  call ale#test#SetFilename('checkstyle_paths/test.java')

  let b:ale_java_checkstyle_config = 'other_config.xml'

  AssertLinter 'checkstyle',
  \ ale#Escape('checkstyle')
  \ . ' -c ' . ale#Escape(ale#path#Simplify(g:dir . '/checkstyle_paths/other_config.xml'))
  \ . ' %s'