diff options
author | w0rp <devw0rp@gmail.com> | 2017-03-03 20:14:03 +0000 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-03-03 20:14:03 +0000 |
commit | 2750c605c1ee320a8675fb40a224a60d27f8de6f (patch) | |
tree | 116ed33731e022c15a66fa221b31ebb32a3f6645 /test | |
parent | da8a0f25cc8aefb566447e434f1a6d7e0749fb5f (diff) | |
download | ale-2750c605c1ee320a8675fb40a224a60d27f8de6f.zip |
Fix cursor issues, and clean up the cursor tests
Diffstat (limited to 'test')
-rw-r--r-- | test/test_cursor_warnings.vader | 117 |
1 files changed, 42 insertions, 75 deletions
diff --git a/test/test_cursor_warnings.vader b/test/test_cursor_warnings.vader index cddeda99..5e37036a 100644 --- a/test/test_cursor_warnings.vader +++ b/test/test_cursor_warnings.vader @@ -4,33 +4,33 @@ Before: \ 'loclist': [ \ { \ 'lnum': 1, + \ 'col': 10, \ 'bufnr': bufnr('%'), \ 'vcol': 0, \ 'linter_name': 'eslint', \ 'nr': -1, \ 'type': 'E', - \ 'col': 10, \ 'text': 'Missing semicolon. (semi)', \ 'detail': 'Every statement should end with a semicolon' \ }, \ { \ 'lnum': 2, + \ 'col': 10, \ 'bufnr': bufnr('%'), \ 'vcol': 0, \ 'linter_name': 'eslint', \ 'nr': -1, \ 'type': 'W', - \ 'col': 10, \ 'text': 'Infix operators must be spaced. (space-infix-ops)' \ }, \ { \ 'lnum': 2, + \ 'col': 15, \ 'bufnr': bufnr('%'), \ 'vcol': 0, \ 'linter_name': 'eslint', \ 'nr': -1, \ 'type': 'E', - \ 'col': 15, \ 'text': 'Missing radix parameter (radix)' \ } \ ], @@ -42,107 +42,74 @@ Before: let g:ale_set_signs = 0 let g:ale_set_highlights = 0 + function GetLastMessage() + redir => l:output + silent mess + redir END + + let l:lines = split(l:output, "\n") + + return empty(l:lines) ? '' : l:lines[-1] + endfunction + After: + call cursor(1, 1) + let g:ale_set_loclist = 1 let g:ale_set_signs = 1 let g:ale_set_highlights = 1 - unlet! g:output - unlet! g:lines let g:ale_buffer_info = {} + delfunction GetLastMessage + + mess clear + Given javascript(A Javscript file with warnings/errors): var x = 3 var x = 5*2 + parseInt("10"); -Execute(Evaluate the cursor function at line 1): - :1 +Execute(Messages should be shown for the correct lines): + call cursor(1, 1) call ale#cursor#EchoCursorWarning() -Then(Check the cursor output): - redir => g:output - silent mess - redir END + AssertEqual 'Missing semicolon. (semi)', GetLastMessage() - let g:lines = split(g:output, "\n") - - AssertEqual 'Missing semicolon. (semi)', g:lines[-1] - -Execute(Evaluate the cursor function at line 2): - :2 +Execute(Messages should be shown for earlier columns): + call cursor(2, 1) call ale#cursor#EchoCursorWarning() -Then(Check the cursor output): - redir => g:output - silent mess - redir END - - let g:lines = split(g:output, "\n") + AssertEqual 'Infix operators must be spaced. (space-infix-ops)', GetLastMessage() - AssertEqual 'Infix operators must be spaced. (space-infix-ops)', g:lines[-1] - -Execute(Evaluate the cursor function later in line 2): - :2 - normal 16l +Execute(Messages should be shown for later columns): + call cursor(2, 16) call ale#cursor#EchoCursorWarning() -Then(Check the cursor output): - redir => g:output - silent mess - redir END - - let g:lines = split(g:output, "\n") - - AssertEqual 'Missing radix parameter (radix)', g:lines[-1] + AssertEqual 'Missing radix parameter (radix)', GetLastMessage() -Execute(Set results for a lint cycle, with the cursor on line 1): - :1 +Execute(The message at the cursor should be shown when linting ends): + call cursor(1, 1) call ale#engine#SetResults( \ bufnr('%'), \ g:ale_buffer_info[bufnr('%')].loclist, \) -Then(Check the cursor output): - redir => g:output - silent mess - redir END + AssertEqual 'Missing semicolon. (semi)', GetLastMessage() - let g:lines = split(g:output, "\n") - - AssertEqual 'Missing semicolon. (semi)', g:lines[-1] - -Execute(Simulate leaving insert mode on line 2): - :2 - normal 16h +Execute(The message at the cursor should be shown on InsertLeave): + call cursor(2, 9) doautocmd InsertLeave -Then(Check the cursor output): - redir => g:output - silent mess - redir END - - let g:lines = split(g:output, "\n") - - AssertEqual 'Infix operators must be spaced. (space-infix-ops)', g:lines[-1] - -Execute(Evaluate the cursor detail function at line 1): - :1 - call ale#cursor#ShowCursorDetail() - -Then(Check the cursor output): - redir => g:output - silent mess - redir END + AssertEqual 'Infix operators must be spaced. (space-infix-ops)', GetLastMessage() - AssertEqual "Every statement should end with a semicolon", g:lines[-1] +Execute(ALEDetail should print 'detail' attributes): + call cursor(1, 1) + ALEDetail -Execute(Evaluate the cursor detail function at line 2): - :2 - call ale#cursor#ShowCursorDetail() + AssertEqual "Every statement should end with a semicolon", GetLastMessage() -Then(Check the cursor output): - redir => g:output - silent mess - redir END +Execute(ALEDetail should print regular 'text' attributes): + call cursor(2, 10) + ALEDetail - AssertEqual "Infix operators must be spaced. (space-infix-ops)", g:lines[-1] + AssertEqual "Infix operators must be spaced. (space-infix-ops)", GetLastMessage() |