2016-05-14 08:22:57 -04:00
|
|
|
let s:suite = themis#suite('highlight')
|
|
|
|
let s:assert = themis#helper('assert')
|
|
|
|
|
|
|
|
function! s:suite.before_each()
|
|
|
|
hi clear
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:hi(name)
|
|
|
|
redir => hi
|
|
|
|
silent! exec 'hi' a:name
|
|
|
|
redir END
|
|
|
|
return substitute(join(split(hi, "\n"), ''), ' \+', ' ', 'g')
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:pattern(xs, ...) abort
|
|
|
|
let ys = a:0 ? a:xs[1:] : a:xs
|
|
|
|
let zs = get(a:000, 0, a:xs)
|
|
|
|
return 'ctermfg=' . ys[2] . ' ctermbg=' . zs[3] . '.*guifg=' . ys[0] . ' guibg=' . zs[1]
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:suite.highlight()
|
2016-06-11 09:56:50 -04:00
|
|
|
let g:lightline = {}
|
|
|
|
call lightline#init()
|
|
|
|
call lightline#colorscheme()
|
2016-05-14 08:22:57 -04:00
|
|
|
let palette = lightline#palette()
|
2016-12-27 09:46:49 -05:00
|
|
|
call s:assert.match(s:hi('LightlineLeft_normal_0'), s:pattern(palette.normal.left[0]))
|
|
|
|
call s:assert.match(s:hi('LightlineLeft_normal_1'), s:pattern(palette.normal.left[1]))
|
|
|
|
call s:assert.match(s:hi('LightlineLeft_normal_2'), 'E411: highlight group not found\|cleared')
|
|
|
|
call s:assert.match(s:hi('LightlineRight_normal_0'), s:pattern(palette.normal.right[0]))
|
|
|
|
call s:assert.match(s:hi('LightlineRight_normal_1'), s:pattern(palette.normal.right[1]))
|
|
|
|
call s:assert.match(s:hi('LightlineRight_normal_2'), s:pattern(palette.normal.right[2]))
|
|
|
|
call s:assert.match(s:hi('LightlineRight_normal_3'), 'E411: highlight group not found\|cleared')
|
|
|
|
call s:assert.match(s:hi('LightlineMiddle_normal'), s:pattern(palette.normal.middle[0]))
|
2016-05-14 08:22:57 -04:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:suite.insert()
|
2016-06-11 09:56:50 -04:00
|
|
|
let g:lightline = {}
|
|
|
|
call lightline#init()
|
|
|
|
call lightline#colorscheme()
|
2016-05-14 08:22:57 -04:00
|
|
|
call lightline#highlight('insert')
|
|
|
|
let palette = lightline#palette()
|
2016-12-27 09:46:49 -05:00
|
|
|
call s:assert.match(s:hi('LightlineLeft_insert_0'), s:pattern(palette.insert.left[0]))
|
|
|
|
call s:assert.match(s:hi('LightlineLeft_insert_1'), s:pattern(palette.insert.left[1]))
|
|
|
|
call s:assert.match(s:hi('LightlineLeft_insert_2'), 'E411: highlight group not found\|cleared')
|
|
|
|
call s:assert.match(s:hi('LightlineRight_insert_0'), s:pattern(palette.insert.right[0]))
|
|
|
|
call s:assert.match(s:hi('LightlineRight_insert_1'), s:pattern(palette.insert.right[1]))
|
|
|
|
call s:assert.match(s:hi('LightlineRight_insert_2'), s:pattern(palette.insert.right[2]))
|
|
|
|
call s:assert.match(s:hi('LightlineRight_insert_3'), 'E411: highlight group not found\|cleared')
|
|
|
|
call s:assert.match(s:hi('LightlineMiddle_insert'), s:pattern(palette.insert.middle[0]))
|
2016-05-14 08:22:57 -04:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
|
|
|
|
function! s:suite.visual()
|
2016-06-11 09:56:50 -04:00
|
|
|
let g:lightline = {}
|
|
|
|
call lightline#init()
|
|
|
|
call lightline#colorscheme()
|
2016-05-14 08:22:57 -04:00
|
|
|
call lightline#highlight('visual')
|
|
|
|
let palette = lightline#palette()
|
2016-12-27 09:46:49 -05:00
|
|
|
call s:assert.match(s:hi('LightlineLeft_visual_0'), s:pattern(palette.visual.left[0]))
|
|
|
|
call s:assert.match(s:hi('LightlineLeft_visual_1'), s:pattern(palette.visual.left[1]))
|
|
|
|
call s:assert.match(s:hi('LightlineLeft_visual_2'), 'E411: highlight group not found\|cleared')
|
|
|
|
call s:assert.match(s:hi('LightlineRight_visual_0'), s:pattern(palette.normal.right[0]))
|
|
|
|
call s:assert.match(s:hi('LightlineRight_visual_1'), s:pattern(palette.normal.right[1]))
|
|
|
|
call s:assert.match(s:hi('LightlineRight_visual_2'), s:pattern(palette.normal.right[2]))
|
|
|
|
call s:assert.match(s:hi('LightlineRight_visual_3'), 'E411: highlight group not found\|cleared')
|
|
|
|
call s:assert.match(s:hi('LightlineMiddle_normal'), s:pattern(palette.normal.middle[0]))
|
2016-05-14 08:22:57 -04:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:suite.replace()
|
2016-06-11 09:56:50 -04:00
|
|
|
let g:lightline = {}
|
|
|
|
call lightline#init()
|
|
|
|
call lightline#colorscheme()
|
2016-05-14 08:22:57 -04:00
|
|
|
call lightline#highlight('replace')
|
|
|
|
let palette = lightline#palette()
|
2016-12-27 09:46:49 -05:00
|
|
|
call s:assert.match(s:hi('LightlineLeft_replace_0'), s:pattern(palette.replace.left[0]))
|
|
|
|
call s:assert.match(s:hi('LightlineLeft_replace_1'), s:pattern(palette.replace.left[1]))
|
|
|
|
call s:assert.match(s:hi('LightlineLeft_replace_2'), 'E411: highlight group not found\|cleared')
|
|
|
|
call s:assert.match(s:hi('LightlineRight_replace_0'), s:pattern(palette.replace.right[0]))
|
|
|
|
call s:assert.match(s:hi('LightlineRight_replace_1'), s:pattern(palette.replace.right[1]))
|
|
|
|
call s:assert.match(s:hi('LightlineRight_replace_2'), s:pattern(palette.replace.right[2]))
|
|
|
|
call s:assert.match(s:hi('LightlineRight_replace_3'), 'E411: highlight group not found\|cleared')
|
|
|
|
call s:assert.match(s:hi('LightlineMiddle_replace'), s:pattern(palette.replace.middle[0]))
|
2016-05-14 08:22:57 -04:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:suite.left_right()
|
|
|
|
let g:lightline = {
|
|
|
|
\ 'active': {
|
|
|
|
\ 'left': [ [ 'mode', 'paste' ], [ 'readonly' ], [ 'filename' ], [ 'modified' ] ],
|
|
|
|
\ 'right': [ [ 'lineinfo' ], [ 'percent' ], [ 'fileformat' ], [ 'fileencoding' ], [ 'filetype' ] ]
|
|
|
|
\ },
|
|
|
|
\ }
|
|
|
|
call lightline#init()
|
|
|
|
call lightline#colorscheme()
|
|
|
|
let palette = lightline#palette()
|
2016-12-27 09:46:49 -05:00
|
|
|
call s:assert.match(s:hi('LightlineLeft_normal_0'), s:pattern(palette.normal.left[0]))
|
|
|
|
call s:assert.match(s:hi('LightlineLeft_normal_1'), s:pattern(palette.normal.left[1]))
|
|
|
|
call s:assert.match(s:hi('LightlineLeft_normal_2'), s:pattern(palette.normal.middle[0]))
|
|
|
|
call s:assert.match(s:hi('LightlineLeft_normal_3'), s:pattern(palette.normal.middle[0]))
|
|
|
|
call s:assert.match(s:hi('LightlineLeft_normal_4'), 'E411: highlight group not found\|cleared')
|
|
|
|
call s:assert.match(s:hi('LightlineRight_normal_0'), s:pattern(palette.normal.right[0]))
|
|
|
|
call s:assert.match(s:hi('LightlineRight_normal_1'), s:pattern(palette.normal.right[1]))
|
|
|
|
call s:assert.match(s:hi('LightlineRight_normal_2'), s:pattern(palette.normal.right[2]))
|
|
|
|
call s:assert.match(s:hi('LightlineRight_normal_3'), s:pattern(palette.normal.middle[0]))
|
|
|
|
call s:assert.match(s:hi('LightlineRight_normal_4'), s:pattern(palette.normal.middle[0]))
|
|
|
|
call s:assert.match(s:hi('LightlineRight_normal_5'), 'E411: highlight group not found\|cleared')
|
|
|
|
call s:assert.match(s:hi('LightlineMiddle_normal'), s:pattern(palette.normal.middle[0]))
|
2016-05-14 08:22:57 -04:00
|
|
|
endfunction
|
|
|
|
|
2016-06-11 09:56:50 -04:00
|
|
|
function! s:suite.no_components()
|
|
|
|
let g:lightline = {
|
|
|
|
\ 'active': {
|
|
|
|
\ 'left': [],
|
|
|
|
\ 'right': []
|
|
|
|
\ },
|
|
|
|
\ 'inactive': {
|
|
|
|
\ 'left': [],
|
|
|
|
\ 'right': []
|
|
|
|
\ },
|
|
|
|
\ }
|
|
|
|
call lightline#init()
|
|
|
|
call lightline#colorscheme()
|
|
|
|
let palette = lightline#palette()
|
2016-12-27 09:46:49 -05:00
|
|
|
call s:assert.match(s:hi('LightlineLeft_normal_0'), s:pattern(palette.normal.left[0]))
|
|
|
|
call s:assert.match(s:hi('LightlineLeft_normal_1'), 'E411: highlight group not found\|cleared')
|
|
|
|
call s:assert.match(s:hi('LightlineRight_normal_0'), s:pattern(palette.normal.right[0]))
|
|
|
|
call s:assert.match(s:hi('LightlineRight_normal_1'), 'E411: highlight group not found\|cleared')
|
|
|
|
call s:assert.match(s:hi('LightlineMiddle_normal'), s:pattern(palette.normal.middle[0]))
|
2016-06-11 09:56:50 -04:00
|
|
|
endfunction
|
|
|
|
|
2016-05-14 08:22:57 -04:00
|
|
|
function! s:suite.subseparator()
|
|
|
|
let g:lightline = {
|
|
|
|
\ 'active': {
|
|
|
|
\ 'left': [ [ 'mode', 'paste' ], [ 'readonly' ], [ 'filename' ], [ 'modified' ] ],
|
|
|
|
\ 'right': [ [ 'lineinfo' ], [ 'percent' ], [ 'fileformat' ], [ 'fileencoding' ], [ 'filetype' ] ]
|
|
|
|
\ },
|
|
|
|
\ }
|
|
|
|
call lightline#init()
|
|
|
|
call lightline#colorscheme()
|
|
|
|
let palette = lightline#palette()
|
|
|
|
for i in range(4)
|
|
|
|
for j in range(5)
|
|
|
|
if i + 1 == j
|
2016-12-27 09:46:49 -05:00
|
|
|
call s:assert.match(s:hi(printf('LightlineLeft_normal_%s_%s', i, j)), s:pattern(get(palette.normal.left, i, palette.normal.middle[0]), get(palette.normal.left, j, palette.normal.middle[0])))
|
2016-05-14 08:22:57 -04:00
|
|
|
else
|
2016-12-27 09:46:49 -05:00
|
|
|
call s:assert.match(s:hi(printf('LightlineLeft_normal_%s_%s', i, j)), 'E411: highlight group not found\|cleared')
|
2016-05-14 08:22:57 -04:00
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
endfor
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:suite.component_type()
|
|
|
|
let g:lightline = { 'component_type': { 'error': 'error', 'warning': 'warning' } }
|
|
|
|
call lightline#init()
|
|
|
|
call lightline#colorscheme()
|
|
|
|
let palette = lightline#palette()
|
|
|
|
for type in ['error', 'warning']
|
2016-12-27 09:46:49 -05:00
|
|
|
call s:assert.match(s:hi(printf('LightlineLeft_normal_%s', type)), s:pattern(palette.normal[type][0]))
|
|
|
|
call s:assert.match(s:hi(printf('LightlineLeft_normal_0_%s', type)), s:pattern(palette.normal.left[0], palette.normal[type][0]))
|
|
|
|
call s:assert.match(s:hi(printf('LightlineLeft_normal_1_%s', type)), s:pattern(palette.normal.left[1], palette.normal[type][0]))
|
|
|
|
call s:assert.match(s:hi(printf('LightlineLeft_normal_2_%s', type)), 'E411: highlight group not found\|cleared')
|
|
|
|
call s:assert.match(s:hi(printf('LightlineLeft_normal_%s_0', type)), s:pattern(palette.normal[type][0], palette.normal.left[0]))
|
|
|
|
call s:assert.match(s:hi(printf('LightlineLeft_normal_%s_1', type)), s:pattern(palette.normal[type][0], palette.normal.left[1]))
|
|
|
|
call s:assert.match(s:hi(printf('LightlineLeft_normal_%s_2', type)), s:pattern(palette.normal[type][0], palette.normal.middle[0]))
|
|
|
|
call s:assert.match(s:hi(printf('LightlineLeft_normal_%s_3', type)), 'E411: highlight group not found\|cleared')
|
2016-05-14 08:22:57 -04:00
|
|
|
endfor
|
|
|
|
for type1 in ['error', 'warning']
|
|
|
|
for type2 in ['error', 'warning']
|
2016-12-27 09:46:49 -05:00
|
|
|
call s:assert.match(s:hi(printf('LightlineLeft_normal_%s_%s', type1, type2)), s:pattern(palette.normal[type1][0], palette.normal[type2][0]))
|
2016-05-14 08:22:57 -04:00
|
|
|
endfor
|
|
|
|
endfor
|
|
|
|
endfunction
|