diff options
author | Nozomu Okuda <Nozomu.Okuda@gmail.com> | 2017-05-24 21:40:06 -0600 |
---|---|---|
committer | Nozomu Okuda <Nozomu.Okuda@gmail.com> | 2017-05-24 21:40:06 -0600 |
commit | 43098171ac8585bd42f78d2f208b717abfaf36c3 (patch) | |
tree | 943fb39fc3b5469076b8ba7d6d26578eae60d917 /test/handler | |
parent | ed8f79987d5a64c41f8b5c1c244243babde45d25 (diff) | |
download | ale-43098171ac8585bd42f78d2f208b717abfaf36c3.zip |
Translate pylint output column to 1-based index
This should fix #575; also added vader tests to ensure that translation
is working properly.
Diffstat (limited to 'test/handler')
-rw-r--r-- | test/handler/test_pylint_handler.vader | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/test/handler/test_pylint_handler.vader b/test/handler/test_pylint_handler.vader new file mode 100644 index 00000000..590a795f --- /dev/null +++ b/test/handler/test_pylint_handler.vader @@ -0,0 +1,53 @@ +Before: + runtime ale_linters/python/pylint.vim + +After: + call ale#linter#Reset() + silent file something_else.py + +Execute(pylint handler parsing, translating columns to 1-based index): + AssertEqual + \ [ + \ { + \ 'lnum': 4, + \ 'col': 1, + \ 'text': 'C0303: Trailing whitespace', + \ 'type': 'W', + \ }, + \ { + \ 'lnum': 1, + \ 'col': 1, + \ 'text': 'C0111: Missing module docstring', + \ 'type': 'W', + \ }, + \ { + \ 'lnum': 2, + \ 'col': 1, + \ 'text': 'C0111: Missing function docstring', + \ 'type': 'W', + \ }, + \ { + \ 'lnum': 3, + \ 'col': 5, + \ 'text': 'E0103: ''break'' not properly in loop', + \ 'type': 'E', + \ }, + \ { + \ 'lnum': 4, + \ 'col': 5, + \ 'text': 'W0101: Unreachable code', + \ 'type': 'W', + \ }, + \ ], + \ ale_linters#python#pylint#Handle(bufnr(''), [ + \ 'No config file found, using default configuration', + \ '************* Module test', + \ 'test.py:4:0: C0303 (trailing-whitespace) Trailing whitespace', + \ 'test.py:1:0: C0111 (missing-docstring) Missing module docstring', + \ 'test.py:2:0: C0111 (missing-docstring) Missing function docstring', + \ 'test.py:3:4: E0103 (not-in-loop) ''break'' not properly in loop', + \ 'test.py:4:4: W0101 (unreachable) Unreachable code', + \ '', + \ '------------------------------------------------------------------', + \ 'Your code has been rated at 0.00/10 (previous run: 2.50/10, -2.50)', + \ ]) |