diff options
author | w0rp <w0rp@users.noreply.github.com> | 2016-10-23 10:41:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-23 10:41:58 +0100 |
commit | f94865c4ce2a61e304faf5aa99d643b44260fde5 (patch) | |
tree | 8a7e31fbaed739acc65263280be3bf8139522056 /test/test_statusline.vader | |
parent | 89d8f2a0bc541af8d6c5aa33b806846e4efedcd2 (diff) | |
parent | dc99282f7919dd3b30fdb5971ee75234ec8a8196 (diff) | |
download | ale-f94865c4ce2a61e304faf5aa99d643b44260fde5.zip |
Merge pull request #140 from neersighted/cleanup
Clean up some test filenames and extraneous code
Diffstat (limited to 'test/test_statusline.vader')
-rw-r--r-- | test/test_statusline.vader | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/test/test_statusline.vader b/test/test_statusline.vader new file mode 100644 index 00000000..da4c693f --- /dev/null +++ b/test/test_statusline.vader @@ -0,0 +1,49 @@ +Before: + let g:ale_buffer_loclist_map = {} + +Execute (Count should be 0 when data is empty): + AssertEqual [0, 0], ale#statusline#Count(bufnr('%')) + +Before: + let g:ale_buffer_count_map = {'44': [1, 2]} + +Execute (Count should read data from the cache): + AssertEqual [1, 2], ale#statusline#Count(44) + +Execute (Update the cache with new data): + call ale#statusline#Update(44, []) + +Then (The cache should reflect the new data): + AssertEqual [0, 0], ale#statusline#Count(44) + +Before: + let g:ale_buffer_loclist_map = {'1': [{'lnum': 1, 'bufnr': 1, 'vcol': 0, 'linter_name': 'testlinter', 'nr': -1, 'type': 'E', 'col': 1, 'text': 'Test Error'}]} + +Execute (Count should be match the loclist): + AssertEqual [1, 0], ale#statusline#Count(1) + +Execute (Output should be empty for non-existant buffer): + AssertEqual [0, 0], ale#statusline#Count(9001) + +Before: + let g:ale_statusline_format = ['%sE', '%sW', 'OKIE'] + +Execute (Given some errors): + call ale#statusline#Update(bufnr('%'), [{'type': 'E'}, {'type': 'E'}]) +Then (Statusline is formatted to the users preference): + AssertEqual '2E', ale#statusline#Status() + +Execute (Given some warnings): + call ale#statusline#Update(bufnr('%'), [{'type': 'W'}, {'type': 'W'}, {'type': 'W'}]) +Then (Statusline is formatted to the users preference): + AssertEqual '3W', ale#statusline#Status() + +Execute (Given some warnings, and errors): + call ale#statusline#Update(bufnr('%'), [{'type': 'E'}, {'type': 'W'}, {'type': 'W'}]) +Then (Statusline is formatted to the users preference): + AssertEqual '1E 2W', ale#statusline#Status() + +Execute (Given a lack of data): + call ale#statusline#Update(bufnr('%'), []) +Then (Statusline is formatted to the users preference): + AssertEqual 'OKIE', ale#statusline#Status() |