summaryrefslogtreecommitdiff
path: root/test/handler
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-11-15 17:47:24 +0000
committerw0rp <devw0rp@gmail.com>2017-11-15 17:47:24 +0000
commit1d65e5692f7075bad6806d88eb11961ea32d3e7d (patch)
tree1672dc53b158e572b98f85bd02b05c56a271e48b /test/handler
parentcf538c3a58d61cfe1a77d79455efb9175479fba3 (diff)
downloadale-1d65e5692f7075bad6806d88eb11961ea32d3e7d.zip
#852 Capture error codes for pycodestyle, and consider every code except E999 to be style errors or warnings
Diffstat (limited to 'test/handler')
-rw-r--r--test/handler/test_pycodestyle_handler.vader28
1 files changed, 23 insertions, 5 deletions
diff --git a/test/handler/test_pycodestyle_handler.vader b/test/handler/test_pycodestyle_handler.vader
index cc83fc83..856f4295 100644
--- a/test/handler/test_pycodestyle_handler.vader
+++ b/test/handler/test_pycodestyle_handler.vader
@@ -9,37 +9,55 @@ 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': 'E401 multiple imports on one line',
+ \ 'text': 'multiple imports on one line',
+ \ 'code': 'E401',
\ 'type': 'E',
+ \ 'sub_type': 'style',
\ },
\ {
\ 'lnum': 77,
\ 'col': 1,
- \ 'text': 'E302 expected 2 blank lines, found 1',
+ \ 'text': 'expected 2 blank lines, found 1',
+ \ 'code': 'E302',
\ 'type': 'E',
+ \ 'sub_type': 'style',
\ },
\ {
\ 'lnum': 88,
\ 'col': 5,
- \ 'text': 'E301 expected 1 blank line, found 0',
+ \ 'text': 'expected 1 blank line, found 0',
+ \ 'code': 'E301',
\ 'type': 'E',
+ \ 'sub_type': 'style',
\ },
\ {
\ 'lnum': 222,
\ 'col': 34,
- \ 'text': 'W602 deprecated form of raising exception',
+ \ 'text': 'deprecated form of raising exception',
+ \ 'code': 'W602',
\ 'type': 'W',
+ \ 'sub_type': 'style',
\ },
\ {
\ 'lnum': 544,
\ 'col': 21,
- \ 'text': 'W601 .has_key() is deprecated, use ''in''',
+ \ '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',