summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2016-10-17 23:26:19 +0100
committerw0rp <devw0rp@gmail.com>2016-10-17 23:26:19 +0100
commitbf45ab6d8d4dd3a97905eeaa4610757cf69c956c (patch)
tree46000746ebeae64c1b979efafa3e87ec65962798 /test
parent654a1724730e181c80cd262a781055c5a9f0ca05 (diff)
downloadale-bf45ab6d8d4dd3a97905eeaa4610757cf69c956c.zip
Add a function for waiting for linters to complete, and add a test which checks that linting updates the loclist.
Diffstat (limited to 'test')
-rw-r--r--test/test_linting_updates_loclist.vader17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/test_linting_updates_loclist.vader b/test/test_linting_updates_loclist.vader
new file mode 100644
index 00000000..9c39c30c
--- /dev/null
+++ b/test/test_linting_updates_loclist.vader
@@ -0,0 +1,17 @@
+Given javascript (Some JavaScript with problems):
+ var y = 3+3;
+ var y = 3
+
+Before:
+ let g:ale_buffer_loclist_map = {}
+ let g:expected_data = {bufnr('%'): [{'lnum': 1, 'bufnr': bufnr('%'), 'vcol': 0, 'linter_name': 'eslint', 'nr': -1, 'type': 'W', 'col': 10, 'text': 'Infix operators must be spaced. (space-infix-ops)'}, {'lnum': 2, 'bufnr': bufnr('%'), 'vcol': 0, 'linter_name': 'eslint', 'nr': -1, 'type': 'E', 'col': 10, 'text': 'Missing semicolon. (semi)'}]}
+
+After:
+ let g:ale_buffer_loclist_map = {}
+ unlet g:expected_data
+
+Execute(The loclist should be updated after linting is done):
+ call ale#Lint()
+ call ale#engine#WaitForJobs(2000)
+
+ AssertEqual g:expected_data, g:ale_buffer_loclist_map