blob: c5ac1b98a5ecbd7a7e448af87a56c20da140c2e7 (
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
|
Before:
Save g:ale_html_stylelint_executable
Save g:ale_html_stylelint_use_global
Save g:ale_html_stylelint_options
unlet! b:executable
unlet! g:ale_html_stylelint_executable
unlet! g:ale_html_stylelint_use_global
unlet! g:ale_html_stylelint_options
call ale#test#SetDirectory('/testplugin/test/linter')
call ale#test#SetFilename('testfile.html')
runtime ale_linters/html/stylelint.vim
After:
Restore
unlet! b:executable
unlet! b:ale_html_stylelint_executable
unlet! b:ale_html_stylelint_use_global
unlet! b:ale_html_stylelint_options
call ale#test#SetFilename('test.txt')
call ale#test#RestoreDirectory()
call ale#linter#Reset()
Execute(node_modules directories should be discovered):
call ale#test#SetFilename('../test-files/stylelint/nested/testfile.html')
let b:executable = ale#path#Simplify(
\ g:dir
\ . '/../test-files/stylelint/node_modules/.bin/stylelint'
\)
AssertEqual b:executable, ale_linters#html#stylelint#GetExecutable(bufnr(''))
AssertEqual
\ ale#Escape(b:executable) . ' --stdin-filename %s',
\ ale_linters#html#stylelint#GetCommand(bufnr(''))
Execute(The global override should work):
let b:ale_html_stylelint_executable = 'foobar'
let b:ale_html_stylelint_use_global = 1
call ale#test#SetFilename('../test-files/stylelint/nested/testfile.html')
AssertEqual 'foobar', ale_linters#html#stylelint#GetExecutable(bufnr(''))
AssertEqual
\ ale#Escape('foobar') . ' --stdin-filename %s',
\ ale_linters#html#stylelint#GetCommand(bufnr(''))
Execute(Extra options should be configurable):
let b:ale_html_stylelint_options = '--whatever'
AssertEqual 'stylelint', ale_linters#html#stylelint#GetExecutable(bufnr(''))
AssertEqual
\ ale#Escape('stylelint') . ' --whatever --stdin-filename %s',
\ ale_linters#html#stylelint#GetCommand(bufnr(''))
|