aboutsummaryrefslogtreecommitdiff
path: root/vim/bundle/lightline.vim/test/link.vim
blob: ca86753617fe279db711300a65f1f118cb8e1e53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
let s:suite = themis#suite('link')
let s:assert = themis#helper('assert')

function! s:suite.before_each()
  hi clear
  let g:lightline = {}
  call lightline#init()
  call lightline#colorscheme()
endfunction

function! s:hi(name)
  redir => hi
    silent! exec 'hi' a:name
  redir END
  return substitute(join(split(hi, "\n"), ''), ' \+', ' ', 'g')
endfunction

function! s:suite.link()
  call lightline#link()
  call s:assert.match(s:hi('LightLineLeft_active_0'), 'LightLineLeft_normal_0')
  call s:assert.match(s:hi('LightLineLeft_active_1'), 'LightLineLeft_normal_1')
  call s:assert.match(s:hi('LightLineLeft_active_2'), 'E411: highlight group not found')
  call s:assert.match(s:hi('LightLineRight_active_0'), 'LightLineRight_normal_0')
  call s:assert.match(s:hi('LightLineRight_active_1'), 'LightLineRight_normal_1')
  call s:assert.match(s:hi('LightLineRight_active_2'), 'LightLineRight_normal_2')
  call s:assert.match(s:hi('LightLineRight_active_3'), 'E411: highlight group not found')
  call s:assert.match(s:hi('LightLineMiddle_active'), 'LightLineMiddle_normal')
endfunction

function! s:suite.insert()
  call lightline#link('i')
  call s:assert.match(s:hi('LightLineLeft_active_0'), 'LightLineLeft_insert_0')
  call s:assert.match(s:hi('LightLineLeft_active_1'), 'LightLineLeft_insert_1')
  call s:assert.match(s:hi('LightLineLeft_active_2'), 'E411: highlight group not found')
  call s:assert.match(s:hi('LightLineRight_active_0'), 'LightLineRight_insert_0')
  call s:assert.match(s:hi('LightLineRight_active_1'), 'LightLineRight_insert_1')
  call s:assert.match(s:hi('LightLineRight_active_2'), 'LightLineRight_insert_2')
  call s:assert.match(s:hi('LightLineRight_active_3'), 'E411: highlight group not found')
  call s:assert.match(s:hi('LightLineMiddle_active'), 'LightLineMiddle_insert')
endfunction

function! s:suite.visual()
  call lightline#link('v')
  call s:assert.match(s:hi('LightLineLeft_active_0'), 'LightLineLeft_visual_0')
  call s:assert.match(s:hi('LightLineLeft_active_1'), 'LightLineLeft_visual_1')
  call s:assert.match(s:hi('LightLineLeft_active_2'), 'E411: highlight group not found')
  call s:assert.match(s:hi('LightLineRight_active_0'), 'LightLineRight_visual_0')
  call s:assert.match(s:hi('LightLineRight_active_1'), 'LightLineRight_visual_1')
  call s:assert.match(s:hi('LightLineRight_active_2'), 'LightLineRight_visual_2')
  call s:assert.match(s:hi('LightLineRight_active_3'), 'E411: highlight group not found')
  call s:assert.match(s:hi('LightLineMiddle_active'), 'LightLineMiddle_visual')
endfunction

function! s:suite.replace()
  call lightline#link('R')
  call s:assert.match(s:hi('LightLineLeft_active_0'), 'LightLineLeft_replace_0')
  call s:assert.match(s:hi('LightLineLeft_active_1'), 'LightLineLeft_replace_1')
  call s:assert.match(s:hi('LightLineLeft_active_2'), 'E411: highlight group not found')
  call s:assert.match(s:hi('LightLineRight_active_0'), 'LightLineRight_replace_0')
  call s:assert.match(s:hi('LightLineRight_active_1'), 'LightLineRight_replace_1')
  call s:assert.match(s:hi('LightLineRight_active_2'), 'LightLineRight_replace_2')
  call s:assert.match(s:hi('LightLineRight_active_3'), 'E411: highlight group not found')
  call s:assert.match(s:hi('LightLineMiddle_active'), 'LightLineMiddle_replace')
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()
  call lightline#link()
  call s:assert.match(s:hi('LightLineLeft_active_0'), 'LightLineLeft_normal_0')
  call s:assert.match(s:hi('LightLineLeft_active_1'), 'LightLineLeft_normal_1')
  call s:assert.match(s:hi('LightLineLeft_active_2'), 'LightLineLeft_normal_2')
  call s:assert.match(s:hi('LightLineLeft_active_3'), 'LightLineLeft_normal_3')
  call s:assert.match(s:hi('LightLineLeft_active_4'), 'E411: highlight group not found')
  call s:assert.match(s:hi('LightLineRight_active_0'), 'LightLineRight_normal_0')
  call s:assert.match(s:hi('LightLineRight_active_1'), 'LightLineRight_normal_1')
  call s:assert.match(s:hi('LightLineRight_active_2'), 'LightLineRight_normal_2')
  call s:assert.match(s:hi('LightLineRight_active_3'), 'LightLineRight_normal_3')
  call s:assert.match(s:hi('LightLineRight_active_4'), 'LightLineRight_normal_4')
  call s:assert.match(s:hi('LightLineRight_active_5'), 'E411: highlight group not found')
  call s:assert.match(s:hi('LightLineMiddle_active'), 'LightLineMiddle_normal')
endfunction

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()
  call lightline#link()
  for i in range(4)
    for j in range(5)
      if i + 1 == j
        call s:assert.match(s:hi(printf('LightLineLeft_active_%s_%s', i, j)), printf('LightLineLeft_normal_%s_%s', i, j))
      else
        call s:assert.match(s:hi(printf('LightLineLeft_active_%s_%s', i, j)), 'E411: highlight group not found')
      endif
    endfor
  endfor
endfunction

function! s:suite.component_type()
  let g:lightline = { 'component_type': { 'error': 'error', 'warning': 'warning' } }
  call lightline#init()
  call lightline#colorscheme()
  call lightline#link()
  for type in ['error', 'warning']
    call s:assert.match(s:hi(printf('LightLineLeft_active_%s', type)), printf('LightLineLeft_normal_%s', type))
    call s:assert.match(s:hi(printf('LightLineLeft_active_0_%s', type)), printf('LightLineLeft_normal_0_%s', type))
    call s:assert.match(s:hi(printf('LightLineLeft_active_1_%s', type)), printf('LightLineLeft_normal_1_%s', type))
    call s:assert.match(s:hi(printf('LightLineLeft_active_2_%s', type)), 'E411: highlight group not found')
    call s:assert.match(s:hi(printf('LightLineLeft_active_%s_0', type)), printf('LightLineLeft_normal_%s_0', type))
    call s:assert.match(s:hi(printf('LightLineLeft_active_%s_1', type)), printf('LightLineLeft_normal_%s_1', type))
    call s:assert.match(s:hi(printf('LightLineLeft_active_%s_2', type)), printf('LightLineLeft_normal_%s_2', type))
    call s:assert.match(s:hi(printf('LightLineLeft_active_%s_3', type)), 'E411: highlight group not found')
  endfor
  for type1 in ['error', 'warning']
    for type2 in ['error', 'warning']
      call s:assert.match(s:hi(printf('LightLineLeft_active_%s_%s', type1, type2)), printf('LightLineLeft_normal_%s_%s', type1, type2))
    endfor
  endfor
endfunction