summaryrefslogtreecommitdiff
path: root/test/command_callback/test_puglint_command_callback.vader
blob: 11946582a913ab8271a1967ea3b7a969c54d89cd (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
67
68
69
70
71
Before:
  Save g:ale_pug_puglint_options
  Save g:ale_pug_puglint_executable
  Save g:ale_pug_puglint_use_global

  let g:ale_pug_puglint_options = ''
  let g:ale_pug_puglint_executable = 'pug-lint'
  let g:ale_pug_puglint_use_global = 0

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

  runtime ale_linters/pug/puglint.vim

After:
  Restore

  call ale#test#RestoreDirectory()
  call ale#linter#Reset()

Execute(puglint should detect local executables and package.json):
  call ale#test#SetFilename('puglint_project/test.pug')

  AssertEqual
  \ ale#path#Winify(g:dir . '/puglint_project/node_modules/.bin/pug-lint'),
  \ ale_linters#pug#puglint#GetExecutable(bufnr(''))

  AssertEqual
  \ ale#Escape(ale#path#Winify(g:dir . '/puglint_project/node_modules/.bin/pug-lint'))
  \   . ' -c ' . ale#Escape(ale#path#Winify(g:dir . '/puglint_project/package.json'))
  \   . ' -r inline %t',
  \ ale_linters#pug#puglint#GetCommand(bufnr(''))

Execute(puglint should use global executables if configured):
  let g:ale_pug_puglint_use_global = 1

  call ale#test#SetFilename('puglint_project/test.pug')

  AssertEqual 'pug-lint', ale_linters#pug#puglint#GetExecutable(bufnr(''))

  AssertEqual
  \ ale#Escape('pug-lint')
  \   . ' -c ' . ale#Escape(ale#path#Winify(g:dir . '/puglint_project/package.json'))
  \   . ' -r inline %t',
  \ ale_linters#pug#puglint#GetCommand(bufnr(''))

Execute(puglint should detect .pug-lintrc):
  call ale#test#SetFilename('puglint_project/puglint_rc_dir/subdir/test.pug')

  AssertEqual
  \ ale#Escape(ale#path#Winify(g:dir . '/puglint_project/node_modules/.bin/pug-lint'))
  \   . ' -c ' . ale#Escape(ale#path#Winify(g:dir . '/puglint_project/puglint_rc_dir/.pug-lintrc'))
  \   . ' -r inline %t',
  \ ale_linters#pug#puglint#GetCommand(bufnr(''))

Execute(puglint should detect .pug-lintrc.js):
  call ale#test#SetFilename('puglint_project/puglint_rc_js_dir/subdir/test.pug')

  AssertEqual
  \ ale#Escape(ale#path#Winify(g:dir . '/puglint_project/node_modules/.bin/pug-lint'))
  \   . ' -c ' . ale#Escape(ale#path#Winify(g:dir . '/puglint_project/puglint_rc_js_dir/.pug-lintrc.js'))
  \   . ' -r inline %t',
  \ ale_linters#pug#puglint#GetCommand(bufnr(''))

Execute(puglint should detect .pug-lintrc.json):
  call ale#test#SetFilename('puglint_project/puglint_rc_json_dir/subdir/test.pug')

  AssertEqual
  \ ale#Escape(ale#path#Winify(g:dir . '/puglint_project/node_modules/.bin/pug-lint'))
  \   . ' -c ' . ale#Escape(ale#path#Winify(g:dir . '/puglint_project/puglint_rc_json_dir/.pug-lintrc.json'))
  \   . ' -r inline %t',
  \ ale_linters#pug#puglint#GetCommand(bufnr(''))