12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- local n = require('test.functional.testnvim')()
- local Screen = require('test.functional.ui.screen')
- local feed = n.feed
- local clear = n.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 },
- })
- 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)
|