mirror of
https://github.com/neovim/neovim.git
synced 2024-12-25 21:55:17 -07:00
88 lines
2.7 KiB
Lua
88 lines
2.7 KiB
Lua
local t = require('test.functional.testutil')()
|
|
local Screen = require('test.functional.ui.screen')
|
|
local feed = t.feed
|
|
local clear = t.clear
|
|
|
|
describe(':debug', function()
|
|
local screen
|
|
before_each(function()
|
|
clear()
|
|
screen = Screen.new(30, 14)
|
|
screen:set_default_attr_ids({
|
|
[1] = { bold = true, foreground = Screen.colors.Blue1 },
|
|
[2] = { bold = true, reverse = true },
|
|
[3] = { foreground = Screen.colors.Grey100, background = Screen.colors.Red },
|
|
[4] = { bold = true, foreground = Screen.colors.SeaGreen4 },
|
|
})
|
|
screen:attach()
|
|
end)
|
|
it('scrolls messages correctly', function()
|
|
feed(':echoerr bork<cr>')
|
|
screen:expect([[
|
|
|
|
|
{1:~ }|*8
|
|
{2: }|
|
|
{3:E121: Undefined variable: bork}|
|
|
|
|
|
{4:Press ENTER or type command to}|
|
|
{4: continue}^ |
|
|
]])
|
|
|
|
feed(':debug echo "aa"| echo "bb"<cr>')
|
|
screen:expect([[
|
|
|
|
|
{1:~ }|*5
|
|
{2: }|
|
|
{3:E121: Undefined variable: bork}|
|
|
|
|
|
{4:Press ENTER or type command to}|
|
|
Entering Debug mode. Type "co|
|
|
nt" to continue. |
|
|
cmd: echo "aa"| echo "bb" |
|
|
>^ |
|
|
]])
|
|
|
|
feed('step<cr>')
|
|
screen:expect([[
|
|
|
|
|
{1:~ }|*2
|
|
{2: }|
|
|
{3:E121: Undefined variable: bork}|
|
|
|
|
|
{4:Press ENTER or type command to}|
|
|
Entering Debug mode. Type "co|
|
|
nt" to continue. |
|
|
cmd: echo "aa"| echo "bb" |
|
|
>step |
|
|
aa |
|
|
cmd: echo "bb" |
|
|
>^ |
|
|
]])
|
|
|
|
feed('step<cr>')
|
|
screen:expect([[
|
|
{2: }|
|
|
{3:E121: Undefined variable: bork}|
|
|
|
|
|
{4:Press ENTER or type command to}|
|
|
Entering Debug mode. Type "co|
|
|
nt" to continue. |
|
|
cmd: echo "aa"| echo "bb" |
|
|
>step |
|
|
aa |
|
|
cmd: echo "bb" |
|
|
>step |
|
|
bb |
|
|
{4:Press ENTER or type command to}|
|
|
{4: continue}^ |
|
|
]])
|
|
|
|
feed('<cr>')
|
|
screen:expect([[
|
|
^ |
|
|
{1:~ }|*12
|
|
|
|
|
]])
|
|
end)
|
|
end)
|