2018-08-26 22:11:36 +09:00
|
|
|
|
|
|
|
Before:
|
|
|
|
call ale#assert#SetUpLinterTest('java', 'javalsp')
|
|
|
|
|
|
|
|
After:
|
|
|
|
call ale#assert#TearDownLinterTest()
|
|
|
|
|
|
|
|
Execute(The javalsp callback should return the correct default value):
|
2019-06-05 00:31:56 +09:00
|
|
|
AssertLinter 'launcher', ale#Escape('launcher')
|
2018-08-26 22:11:36 +09:00
|
|
|
|
2018-12-05 21:27:02 +09:00
|
|
|
Execute(The javalsp java executable should be configurable):
|
|
|
|
let b:ale_java_javalsp_executable = '/bin/foobar'
|
|
|
|
|
2019-06-05 00:31:56 +09:00
|
|
|
AssertLinter '/bin/foobar', ale#Escape('/bin/foobar')
|
|
|
|
|
|
|
|
Execute(The javalsp callback should return backward compatible value):
|
|
|
|
let b:ale_java_javalsp_executable = '/bin/java'
|
|
|
|
let cmd = [
|
|
|
|
\ ale#Escape('/bin/java'),
|
|
|
|
\ '--add-exports jdk.compiler/com.sun.tools.javac.api=javacs',
|
|
|
|
\ '--add-exports jdk.compiler/com.sun.tools.javac.code=javacs',
|
|
|
|
\ '--add-exports jdk.compiler/com.sun.tools.javac.comp=javacs',
|
|
|
|
\ '--add-exports jdk.compiler/com.sun.tools.javac.main=javacs',
|
|
|
|
\ '--add-exports jdk.compiler/com.sun.tools.javac.tree=javacs',
|
|
|
|
\ '--add-exports jdk.compiler/com.sun.tools.javac.model=javacs',
|
|
|
|
\ '--add-exports jdk.compiler/com.sun.tools.javac.util=javacs',
|
|
|
|
\ '--add-opens jdk.compiler/com.sun.tools.javac.api=javacs',
|
|
|
|
\ '-m javacs/org.javacs.Main',
|
|
|
|
\]
|
|
|
|
AssertLinter '/bin/java', join(cmd, ' ')
|
|
|
|
|