summaryrefslogtreecommitdiff
path: root/test/linter/test_scala_sbtserver.vader
blob: 118e090fcfb8e1dd7fc7c86ff2116c4a3aec7194 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
" Author: ophirr33 <coghlan.ty@gmail.com>
" Description: Tests for the sbt Server lsp linter
Before:
  call ale#assert#SetUpLinterTest('scala', 'sbtserver')

After:
  call ale#assert#TearDownLinterTest()

Execute(should set sbtserver for sbt project with build.sbt):
  call ale#test#SetFilename('../test-files/scala/valid_sbt_project/Main.scala')
  AssertLSPLanguage 'scala'
  AssertLSPOptions {}
  AssertLSPConfig {}
  AssertLSPProject ale#test#GetFilename('../test-files/scala/valid_sbt_project')
  AssertLSPAddress '127.0.0.1:4273'

Execute(should not set sbtserver for sbt project without build.sbt):
  call ale#test#SetFilename('../test-files/scala/invalid_sbt_project/Main.scala')
  AssertLSPLanguage 'scala'
  AssertLSPOptions {}
  AssertLSPConfig {}
  AssertLSPProject ''
  AssertLSPAddress '127.0.0.1:4273'