summaryrefslogtreecommitdiff
path: root/test/handler/test_pycodestyle_handler.vader
blob: 856f4295080d24f3427678cc8d64b1970666bfff (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
Before:
  runtime ale_linters/python/pycodestyle.vim

After:
  call ale#linter#Reset()
  silent file something_else.py

Execute(The pycodestyle handler should parse output):
  AssertEqual
  \ [
  \   {
  \     'lnum': 8,
  \     'col': 3,
  \     'type': 'E',
  \     'text': 'SyntaxError: invalid syntax',
  \     'code': 'E999',
  \   },
  \   {
  \     'lnum': 69,
  \     'col': 11,
  \     'text': 'multiple imports on one line',
  \     'code': 'E401',
  \     'type': 'E',
  \     'sub_type': 'style',
  \   },
  \   {
  \     'lnum': 77,
  \     'col': 1,
  \     'text': 'expected 2 blank lines, found 1',
  \     'code': 'E302',
  \     'type': 'E',
  \     'sub_type': 'style',
  \   },
  \   {
  \     'lnum': 88,
  \     'col': 5,
  \     'text': 'expected 1 blank line, found 0',
  \     'code': 'E301',
  \     'type': 'E',
  \     'sub_type': 'style',
  \   },
  \   {
  \     'lnum': 222,
  \     'col': 34,
  \     'text': 'deprecated form of raising exception',
  \     'code': 'W602',
  \     'type': 'W',
  \     'sub_type': 'style',
  \   },
  \   {
  \     'lnum': 544,
  \     'col': 21,
  \     'text': '.has_key() is deprecated, use ''in''',
  \     'code': 'W601',
  \     'type': 'W',
  \     'sub_type': 'style',
  \   },
  \ ],
  \ ale_linters#python#pycodestyle#Handle(bufnr(''), [
  \   'stdin:8:3: E999 SyntaxError: invalid syntax',
  \   'stdin:69:11: E401 multiple imports on one line',
  \   'stdin:77:1: E302 expected 2 blank lines, found 1',
  \   'stdin:88:5: E301 expected 1 blank line, found 0',
  \   'stdin:222:34: W602 deprecated form of raising exception',
  \   'example.py:544:21: W601 .has_key() is deprecated, use ''in''',
  \ ])