summaryrefslogtreecommitdiff
path: root/test/handler/test_phpcs_handler.vader
blob: 26d35cb8c69e90e3cc93f9e3ce073cc9e6f18070 (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
Before:
  runtime ale_linters/php/phpcs.vim

After:
  call ale#linter#Reset()

Execute(phpcs errors should be handled):
  AssertEqual
  \ [
  \   {
  \     'lnum': 18,
  \     'col': 3,
  \     'type': 'E',
  \     'sub_type': 'style',
  \     'text': 'Line indented incorrectly; expected 4 spaces, found 2 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)',
  \   },
  \   {
  \     'lnum': 22,
  \     'col': 3,
  \     'type': 'E',
  \     'sub_type': 'style',
  \     'text': 'All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks)',
  \   },
  \ ],
  \ ale_linters#php#phpcs#Handle(bufnr(''), [
  \ '/path/to/some-filename.php:18:3: error - Line indented incorrectly; expected 4 spaces, found 2 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)',
  \ "/path/to/some-filename.php:22:3: error - All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '\"\n'.",
  \ ])