mirror of
https://github.com/neovim/neovim.git
synced 2024-12-24 13:15:09 -07:00
tests: cleanup ui/cmdline_spec.lua
This commit is contained in:
parent
aec81f44d1
commit
9714b9f590
@ -16,6 +16,11 @@ describe('external cmdline', function()
|
|||||||
cmdline, block = {}, nil
|
cmdline, block = {}, nil
|
||||||
screen = Screen.new(25, 5)
|
screen = Screen.new(25, 5)
|
||||||
screen:attach({rgb=true, ext_cmdline=true})
|
screen:attach({rgb=true, ext_cmdline=true})
|
||||||
|
screen:set_default_attr_ids({
|
||||||
|
[1] = {bold = true, foreground = Screen.colors.Blue1},
|
||||||
|
[2] = {reverse = true},
|
||||||
|
[3] = {bold = true, reverse = true},
|
||||||
|
})
|
||||||
screen:set_on_event_handler(function(name, data)
|
screen:set_on_event_handler(function(name, data)
|
||||||
if name == "cmdline_show" then
|
if name == "cmdline_show" then
|
||||||
local content, pos, firstc, prompt, indent, level = unpack(data)
|
local content, pos, firstc, prompt, indent, level = unpack(data)
|
||||||
@ -66,9 +71,9 @@ describe('external cmdline', function()
|
|||||||
feed(':')
|
feed(':')
|
||||||
screen:expect([[
|
screen:expect([[
|
||||||
^ |
|
^ |
|
||||||
~ |
|
{1:~ }|
|
||||||
~ |
|
{1:~ }|
|
||||||
~ |
|
{1:~ }|
|
||||||
|
|
|
|
||||||
]], nil, nil, function()
|
]], nil, nil, function()
|
||||||
eq(1, last_level)
|
eq(1, last_level)
|
||||||
@ -84,9 +89,9 @@ describe('external cmdline', function()
|
|||||||
feed('sign')
|
feed('sign')
|
||||||
screen:expect([[
|
screen:expect([[
|
||||||
^ |
|
^ |
|
||||||
~ |
|
{1:~ }|
|
||||||
~ |
|
{1:~ }|
|
||||||
~ |
|
{1:~ }|
|
||||||
|
|
|
|
||||||
]], nil, nil, function()
|
]], nil, nil, function()
|
||||||
eq({{
|
eq({{
|
||||||
@ -101,9 +106,9 @@ describe('external cmdline', function()
|
|||||||
feed('<Left>')
|
feed('<Left>')
|
||||||
screen:expect([[
|
screen:expect([[
|
||||||
^ |
|
^ |
|
||||||
~ |
|
{1:~ }|
|
||||||
~ |
|
{1:~ }|
|
||||||
~ |
|
{1:~ }|
|
||||||
|
|
|
|
||||||
]], nil, nil, function()
|
]], nil, nil, function()
|
||||||
eq({{
|
eq({{
|
||||||
@ -118,9 +123,9 @@ describe('external cmdline', function()
|
|||||||
feed('<bs>')
|
feed('<bs>')
|
||||||
screen:expect([[
|
screen:expect([[
|
||||||
^ |
|
^ |
|
||||||
~ |
|
{1:~ }|
|
||||||
~ |
|
{1:~ }|
|
||||||
~ |
|
{1:~ }|
|
||||||
|
|
|
|
||||||
]], nil, nil, function()
|
]], nil, nil, function()
|
||||||
eq({{
|
eq({{
|
||||||
@ -135,9 +140,9 @@ describe('external cmdline', function()
|
|||||||
feed('<Esc>')
|
feed('<Esc>')
|
||||||
screen:expect([[
|
screen:expect([[
|
||||||
^ |
|
^ |
|
||||||
~ |
|
{1:~ }|
|
||||||
~ |
|
{1:~ }|
|
||||||
~ |
|
{1:~ }|
|
||||||
|
|
|
|
||||||
]], nil, nil, function()
|
]], nil, nil, function()
|
||||||
eq({}, cmdline)
|
eq({}, cmdline)
|
||||||
@ -148,9 +153,9 @@ describe('external cmdline', function()
|
|||||||
feed(':call input("input", "default")<cr>')
|
feed(':call input("input", "default")<cr>')
|
||||||
screen:expect([[
|
screen:expect([[
|
||||||
^ |
|
^ |
|
||||||
~ |
|
{1:~ }|
|
||||||
~ |
|
{1:~ }|
|
||||||
~ |
|
{1:~ }|
|
||||||
|
|
|
|
||||||
]], nil, nil, function()
|
]], nil, nil, function()
|
||||||
eq({{
|
eq({{
|
||||||
@ -164,9 +169,9 @@ describe('external cmdline', function()
|
|||||||
feed('<cr>')
|
feed('<cr>')
|
||||||
screen:expect([[
|
screen:expect([[
|
||||||
^ |
|
^ |
|
||||||
~ |
|
{1:~ }|
|
||||||
~ |
|
{1:~ }|
|
||||||
~ |
|
{1:~ }|
|
||||||
|
|
|
|
||||||
]], nil, nil, function()
|
]], nil, nil, function()
|
||||||
eq({}, cmdline)
|
eq({}, cmdline)
|
||||||
@ -178,9 +183,9 @@ describe('external cmdline', function()
|
|||||||
feed(':xx<c-r>')
|
feed(':xx<c-r>')
|
||||||
screen:expect([[
|
screen:expect([[
|
||||||
^ |
|
^ |
|
||||||
~ |
|
{1:~ }|
|
||||||
~ |
|
{1:~ }|
|
||||||
~ |
|
{1:~ }|
|
||||||
|
|
|
|
||||||
]], nil, nil, function()
|
]], nil, nil, function()
|
||||||
eq({{
|
eq({{
|
||||||
@ -196,9 +201,9 @@ describe('external cmdline', function()
|
|||||||
feed('=')
|
feed('=')
|
||||||
screen:expect([[
|
screen:expect([[
|
||||||
^ |
|
^ |
|
||||||
~ |
|
{1:~ }|
|
||||||
~ |
|
{1:~ }|
|
||||||
~ |
|
{1:~ }|
|
||||||
|
|
|
|
||||||
]], nil, nil, function()
|
]], nil, nil, function()
|
||||||
eq({{
|
eq({{
|
||||||
@ -234,9 +239,9 @@ describe('external cmdline', function()
|
|||||||
}}
|
}}
|
||||||
screen:expect([[
|
screen:expect([[
|
||||||
^ |
|
^ |
|
||||||
~ |
|
{1:~ }|
|
||||||
~ |
|
{1:~ }|
|
||||||
~ |
|
{1:~ }|
|
||||||
|
|
|
|
||||||
]], nil, nil, function()
|
]], nil, nil, function()
|
||||||
eq(expectation, cmdline)
|
eq(expectation, cmdline)
|
||||||
@ -249,9 +254,9 @@ describe('external cmdline', function()
|
|||||||
-- focus is at external cmdline anyway.
|
-- focus is at external cmdline anyway.
|
||||||
screen:expect([[
|
screen:expect([[
|
||||||
|
|
|
|
||||||
~ |
|
{1:~ }|
|
||||||
~ |
|
{1:~ }|
|
||||||
~ |
|
{1:~ }|
|
||||||
^ |
|
^ |
|
||||||
]], nil, nil, function()
|
]], nil, nil, function()
|
||||||
eq(expectation, cmdline)
|
eq(expectation, cmdline)
|
||||||
@ -261,9 +266,9 @@ describe('external cmdline', function()
|
|||||||
feed('<cr>')
|
feed('<cr>')
|
||||||
screen:expect([[
|
screen:expect([[
|
||||||
|
|
|
|
||||||
~ |
|
{1:~ }|
|
||||||
~ |
|
{1:~ }|
|
||||||
~ |
|
{1:~ }|
|
||||||
^ |
|
^ |
|
||||||
]], nil, nil, function()
|
]], nil, nil, function()
|
||||||
eq({{
|
eq({{
|
||||||
@ -278,9 +283,9 @@ describe('external cmdline', function()
|
|||||||
feed('<esc>')
|
feed('<esc>')
|
||||||
screen:expect([[
|
screen:expect([[
|
||||||
^ |
|
^ |
|
||||||
~ |
|
{1:~ }|
|
||||||
~ |
|
{1:~ }|
|
||||||
~ |
|
{1:~ }|
|
||||||
|
|
|
|
||||||
]], nil, nil, function()
|
]], nil, nil, function()
|
||||||
eq({}, cmdline)
|
eq({}, cmdline)
|
||||||
@ -291,9 +296,9 @@ describe('external cmdline', function()
|
|||||||
feed(':function Foo()<cr>')
|
feed(':function Foo()<cr>')
|
||||||
screen:expect([[
|
screen:expect([[
|
||||||
^ |
|
^ |
|
||||||
~ |
|
{1:~ }|
|
||||||
~ |
|
{1:~ }|
|
||||||
~ |
|
{1:~ }|
|
||||||
|
|
|
|
||||||
]], nil, nil, function()
|
]], nil, nil, function()
|
||||||
eq({{
|
eq({{
|
||||||
@ -309,9 +314,9 @@ describe('external cmdline', function()
|
|||||||
feed('line1<cr>')
|
feed('line1<cr>')
|
||||||
screen:expect([[
|
screen:expect([[
|
||||||
^ |
|
^ |
|
||||||
~ |
|
{1:~ }|
|
||||||
~ |
|
{1:~ }|
|
||||||
~ |
|
{1:~ }|
|
||||||
|
|
|
|
||||||
]], nil, nil, function()
|
]], nil, nil, function()
|
||||||
eq({{{{}, 'function Foo()'}},
|
eq({{{{}, 'function Foo()'}},
|
||||||
@ -322,9 +327,9 @@ describe('external cmdline', function()
|
|||||||
command("redraw!")
|
command("redraw!")
|
||||||
screen:expect([[
|
screen:expect([[
|
||||||
|
|
|
|
||||||
~ |
|
{1:~ }|
|
||||||
~ |
|
{1:~ }|
|
||||||
~ |
|
{1:~ }|
|
||||||
^ |
|
^ |
|
||||||
]], nil, nil, function()
|
]], nil, nil, function()
|
||||||
eq({{{{}, 'function Foo()'}},
|
eq({{{{}, 'function Foo()'}},
|
||||||
@ -335,9 +340,9 @@ describe('external cmdline', function()
|
|||||||
feed('endfunction<cr>')
|
feed('endfunction<cr>')
|
||||||
screen:expect([[
|
screen:expect([[
|
||||||
^ |
|
^ |
|
||||||
~ |
|
{1:~ }|
|
||||||
~ |
|
{1:~ }|
|
||||||
~ |
|
{1:~ }|
|
||||||
|
|
|
|
||||||
]], nil, nil, function()
|
]], nil, nil, function()
|
||||||
eq(nil, block)
|
eq(nil, block)
|
||||||
@ -348,9 +353,9 @@ describe('external cmdline', function()
|
|||||||
feed(':make')
|
feed(':make')
|
||||||
screen:expect([[
|
screen:expect([[
|
||||||
^ |
|
^ |
|
||||||
~ |
|
{1:~ }|
|
||||||
~ |
|
{1:~ }|
|
||||||
~ |
|
{1:~ }|
|
||||||
|
|
|
|
||||||
]], nil, nil, function()
|
]], nil, nil, function()
|
||||||
eq({{
|
eq({{
|
||||||
@ -365,9 +370,9 @@ describe('external cmdline', function()
|
|||||||
feed('<c-f>')
|
feed('<c-f>')
|
||||||
screen:expect([[
|
screen:expect([[
|
||||||
|
|
|
|
||||||
[No Name] |
|
{2:[No Name] }|
|
||||||
:make^ |
|
{1::}make^ |
|
||||||
[Command Line] |
|
{3:[Command Line] }|
|
||||||
|
|
|
|
||||||
]], nil, nil, function()
|
]], nil, nil, function()
|
||||||
eq({}, cmdline)
|
eq({}, cmdline)
|
||||||
@ -377,9 +382,9 @@ describe('external cmdline', function()
|
|||||||
feed(':yank')
|
feed(':yank')
|
||||||
screen:expect([[
|
screen:expect([[
|
||||||
|
|
|
|
||||||
[No Name] |
|
{2:[No Name] }|
|
||||||
:make^ |
|
{1::}make^ |
|
||||||
[Command Line] |
|
{3:[Command Line] }|
|
||||||
|
|
|
|
||||||
]], nil, nil, function()
|
]], nil, nil, function()
|
||||||
eq({nil, {
|
eq({nil, {
|
||||||
@ -395,9 +400,9 @@ describe('external cmdline', function()
|
|||||||
command("redraw!")
|
command("redraw!")
|
||||||
screen:expect([[
|
screen:expect([[
|
||||||
|
|
|
|
||||||
[No Name] |
|
{2:[No Name] }|
|
||||||
:make |
|
{1::}make |
|
||||||
[Command Line] |
|
{3:[Command Line] }|
|
||||||
^ |
|
^ |
|
||||||
]], nil, nil, function()
|
]], nil, nil, function()
|
||||||
eq({nil, {
|
eq({nil, {
|
||||||
@ -412,9 +417,9 @@ describe('external cmdline', function()
|
|||||||
feed("<c-c>")
|
feed("<c-c>")
|
||||||
screen:expect([[
|
screen:expect([[
|
||||||
|
|
|
|
||||||
[No Name] |
|
{2:[No Name] }|
|
||||||
:make^ |
|
{1::}make^ |
|
||||||
[Command Line] |
|
{3:[Command Line] }|
|
||||||
|
|
|
|
||||||
]], nil, nil, function()
|
]], nil, nil, function()
|
||||||
eq({}, cmdline)
|
eq({}, cmdline)
|
||||||
@ -423,9 +428,9 @@ describe('external cmdline', function()
|
|||||||
feed("<c-c>")
|
feed("<c-c>")
|
||||||
screen:expect([[
|
screen:expect([[
|
||||||
|
|
|
|
||||||
[No Name] |
|
{2:[No Name] }|
|
||||||
:make^ |
|
{1::}make^ |
|
||||||
[Command Line] |
|
{3:[Command Line] }|
|
||||||
|
|
|
|
||||||
]], nil, nil, function()
|
]], nil, nil, function()
|
||||||
eq({{
|
eq({{
|
||||||
@ -441,9 +446,9 @@ describe('external cmdline', function()
|
|||||||
command("redraw!")
|
command("redraw!")
|
||||||
screen:expect([[
|
screen:expect([[
|
||||||
|
|
|
|
||||||
~ |
|
{1:~ }|
|
||||||
~ |
|
{1:~ }|
|
||||||
~ |
|
{1:~ }|
|
||||||
^ |
|
^ |
|
||||||
]], nil, nil, function()
|
]], nil, nil, function()
|
||||||
eq({{
|
eq({{
|
||||||
@ -460,9 +465,9 @@ describe('external cmdline', function()
|
|||||||
feed(":call inputsecret('secret:')<cr>abc123")
|
feed(":call inputsecret('secret:')<cr>abc123")
|
||||||
screen:expect([[
|
screen:expect([[
|
||||||
^ |
|
^ |
|
||||||
~ |
|
{1:~ }|
|
||||||
~ |
|
{1:~ }|
|
||||||
~ |
|
{1:~ }|
|
||||||
|
|
|
|
||||||
]], nil, nil, function()
|
]], nil, nil, function()
|
||||||
eq({{
|
eq({{
|
||||||
@ -476,50 +481,50 @@ describe('external cmdline', function()
|
|||||||
end)
|
end)
|
||||||
|
|
||||||
it('works with highlighted cmdline', function()
|
it('works with highlighted cmdline', function()
|
||||||
source([[
|
source([[
|
||||||
highlight RBP1 guibg=Red
|
highlight RBP1 guibg=Red
|
||||||
highlight RBP2 guibg=Yellow
|
highlight RBP2 guibg=Yellow
|
||||||
highlight RBP3 guibg=Green
|
highlight RBP3 guibg=Green
|
||||||
highlight RBP4 guibg=Blue
|
highlight RBP4 guibg=Blue
|
||||||
let g:NUM_LVLS = 4
|
let g:NUM_LVLS = 4
|
||||||
function RainBowParens(cmdline)
|
function RainBowParens(cmdline)
|
||||||
let ret = []
|
let ret = []
|
||||||
let i = 0
|
let i = 0
|
||||||
let lvl = 0
|
let lvl = 0
|
||||||
while i < len(a:cmdline)
|
while i < len(a:cmdline)
|
||||||
if a:cmdline[i] is# '('
|
if a:cmdline[i] is# '('
|
||||||
call add(ret, [i, i + 1, 'RBP' . ((lvl % g:NUM_LVLS) + 1)])
|
call add(ret, [i, i + 1, 'RBP' . ((lvl % g:NUM_LVLS) + 1)])
|
||||||
let lvl += 1
|
let lvl += 1
|
||||||
elseif a:cmdline[i] is# ')'
|
elseif a:cmdline[i] is# ')'
|
||||||
let lvl -= 1
|
let lvl -= 1
|
||||||
call add(ret, [i, i + 1, 'RBP' . ((lvl % g:NUM_LVLS) + 1)])
|
call add(ret, [i, i + 1, 'RBP' . ((lvl % g:NUM_LVLS) + 1)])
|
||||||
endif
|
endif
|
||||||
let i += 1
|
let i += 1
|
||||||
endwhile
|
endwhile
|
||||||
return ret
|
return ret
|
||||||
endfunction
|
endfunction
|
||||||
map <f5> :let x = input({'prompt':'>','highlight':'RainBowParens'})<cr>
|
map <f5> :let x = input({'prompt':'>','highlight':'RainBowParens'})<cr>
|
||||||
"map <f5> :let x = input({'prompt':'>'})<cr>
|
"map <f5> :let x = input({'prompt':'>'})<cr>
|
||||||
]])
|
]])
|
||||||
screen:set_default_attr_ids({
|
screen:set_default_attr_ids({
|
||||||
RBP1={background = Screen.colors.Red},
|
RBP1={background = Screen.colors.Red},
|
||||||
RBP2={background = Screen.colors.Yellow},
|
RBP2={background = Screen.colors.Yellow},
|
||||||
RBP3={background = Screen.colors.Green},
|
RBP3={background = Screen.colors.Green},
|
||||||
RBP4={background = Screen.colors.Blue},
|
RBP4={background = Screen.colors.Blue},
|
||||||
EOB={bold = true, foreground = Screen.colors.Blue1},
|
EOB={bold = true, foreground = Screen.colors.Blue1},
|
||||||
ERR={foreground = Screen.colors.Grey100, background = Screen.colors.Red},
|
ERR={foreground = Screen.colors.Grey100, background = Screen.colors.Red},
|
||||||
SK={foreground = Screen.colors.Blue},
|
SK={foreground = Screen.colors.Blue},
|
||||||
PE={bold = true, foreground = Screen.colors.SeaGreen4}
|
PE={bold = true, foreground = Screen.colors.SeaGreen4}
|
||||||
})
|
})
|
||||||
feed('<f5>(a(b)a)')
|
feed('<f5>(a(b)a)')
|
||||||
screen:expect([[
|
screen:expect([[
|
||||||
^ |
|
^ |
|
||||||
{EOB:~ }|
|
{EOB:~ }|
|
||||||
{EOB:~ }|
|
{EOB:~ }|
|
||||||
{EOB:~ }|
|
{EOB:~ }|
|
||||||
|
|
|
|
||||||
]], nil, nil, function()
|
]], nil, nil, function()
|
||||||
expect_cmdline(1, '{RBP1:(}a{RBP2:(}b{RBP2:)}a{RBP1:)}')
|
expect_cmdline(1, '{RBP1:(}a{RBP2:(}b{RBP2:)}a{RBP1:)}')
|
||||||
end)
|
end)
|
||||||
end)
|
end)
|
||||||
end)
|
end)
|
||||||
|
Loading…
Reference in New Issue
Block a user