summaryrefslogtreecommitdiff
path: root/test/test_history_saving.vader
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-02-14 23:44:37 +0000
committerw0rp <devw0rp@gmail.com>2017-02-14 23:44:37 +0000
commited370667c8f45a349ed76e4283593b13cfe68c44 (patch)
tree087941a331909403e0972bfb386901851e16ba52 /test/test_history_saving.vader
parentc460602cbbf80c1b1b3f006ae3dd28528a80c17c (diff)
downloadale-ed370667c8f45a349ed76e4283593b13cfe68c44.zip
#254 Add command history to ALEInfo
Diffstat (limited to 'test/test_history_saving.vader')
-rw-r--r--test/test_history_saving.vader69
1 files changed, 69 insertions, 0 deletions
diff --git a/test/test_history_saving.vader b/test/test_history_saving.vader
new file mode 100644
index 00000000..a06f9a78
--- /dev/null
+++ b/test/test_history_saving.vader
@@ -0,0 +1,69 @@
+Before:
+ let g:history = []
+ let g:ale_buffer_info = {}
+ let g:ale_max_buffer_history_size = 20
+
+ function! CollectResults(buffer, output)
+ return []
+ endfunction
+
+ call ale#linter#Define('foobar', {
+ \ 'name': 'testlinter',
+ \ 'callback': 'CollectResults',
+ \ 'executable': 'echo',
+ \ 'command': 'echo command history test',
+ \ 'read_buffer': 0,
+ \})
+
+After:
+ unlet g:history
+ let g:ale_buffer_info = {}
+ let g:ale_max_buffer_history_size = 20
+ call ale#linter#Reset()
+ delfunction CollectResults
+
+Given foobar (Some imaginary filetype):
+ anything
+
+Execute(History should be set when commands are run):
+ AssertEqual 'foobar', &filetype
+
+ call ale#Lint()
+ call ale#engine#WaitForJobs(2000)
+
+ let g:history = g:ale_buffer_info[bufnr('%')].history
+
+ AssertEqual 1, len(g:history)
+ AssertEqual ['status', 'job_id', 'command'], keys(g:history[0])
+ AssertEqual ['/bin/bash', '-c', 'echo command history test'], g:history[0].command
+ AssertEqual 'ran', g:history[0].status
+ " The Job ID will change each time, but we can check the type.
+ AssertEqual type(1), type(g:history[0].job_id)
+
+Execute(History items should be popped after going over the max):
+ let g:ale_buffer_info[1] = {
+ \ 'history': map(range(20), '{''status'': ''ran'', ''job_id'': v:val, ''command'': ''foobar''}'),
+ \}
+
+ call ale#engine#AddToHistory(1, 'ran', 347, 'last command')
+
+ AssertEqual
+ \ (
+ \ map(range(1, 19), '{''status'': ''ran'', ''job_id'': v:val, ''command'': ''foobar''}')
+ \ + [{'status': 'ran', 'job_id': 347, 'command': 'last command'}]
+ \ ),
+ \ g:ale_buffer_info[1].history
+
+Execute(Nothing should be added to history if the size is too low):
+ let g:ale_max_buffer_history_size = 0
+ let g:ale_buffer_info[1] = {'history': []}
+
+ call ale#engine#AddToHistory(1, 'ran', 347, 'last command')
+
+ AssertEqual [], g:ale_buffer_info[1].history
+
+ let g:ale_max_buffer_history_size = -2
+
+ call ale#engine#AddToHistory(1, 'ran', 347, 'last command')
+
+ AssertEqual [], g:ale_buffer_info[1].history