mirror of
				https://github.com/neovim/neovim.git
				synced 2025-11-04 01:34:25 +00:00 
			
		
		
		
	Problem: Unable to update the screen for external cmdline during cmdpreview. Solution: Flush the cmdline UI before cmdpreview state.
		
			
				
	
	
		
			264 lines
		
	
	
		
			7.4 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			264 lines
		
	
	
		
			7.4 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
local t = require('test.testutil')
 | 
						|
local n = require('test.functional.testnvim')()
 | 
						|
local Screen = require('test.functional.ui.screen')
 | 
						|
 | 
						|
local eq = t.eq
 | 
						|
local exec_lua = n.exec_lua
 | 
						|
local clear = n.clear
 | 
						|
local feed = n.feed
 | 
						|
local fn = n.fn
 | 
						|
local assert_log = t.assert_log
 | 
						|
local check_close = n.check_close
 | 
						|
 | 
						|
local testlog = 'Xtest_lua_ui_event_log'
 | 
						|
 | 
						|
describe('vim.ui_attach', function()
 | 
						|
  local screen
 | 
						|
  before_each(function()
 | 
						|
    clear()
 | 
						|
    exec_lua [[
 | 
						|
      ns = vim.api.nvim_create_namespace 'testspace'
 | 
						|
      events = {}
 | 
						|
      function on_event(event, ...)
 | 
						|
        events[#events+1] = {event, ...}
 | 
						|
        return true
 | 
						|
      end
 | 
						|
 | 
						|
      function get_events()
 | 
						|
        local ret_events = events
 | 
						|
        events = {}
 | 
						|
        return ret_events
 | 
						|
      end
 | 
						|
    ]]
 | 
						|
 | 
						|
    screen = Screen.new(40, 5)
 | 
						|
    screen:set_default_attr_ids({
 | 
						|
      [1] = { bold = true, foreground = Screen.colors.Blue1 },
 | 
						|
      [2] = { bold = true },
 | 
						|
      [3] = { background = Screen.colors.Grey },
 | 
						|
      [4] = { background = Screen.colors.LightMagenta },
 | 
						|
      [5] = { reverse = true },
 | 
						|
      [6] = { reverse = true, bold = true },
 | 
						|
      [7] = { background = Screen.colors.Yellow1 },
 | 
						|
    })
 | 
						|
    screen:attach()
 | 
						|
  end)
 | 
						|
 | 
						|
  local function expect_events(expected)
 | 
						|
    local evs = exec_lua 'return get_events(...)'
 | 
						|
    eq(expected, evs, vim.inspect(evs))
 | 
						|
  end
 | 
						|
 | 
						|
  it('can receive popupmenu events', function()
 | 
						|
    exec_lua [[ vim.ui_attach(ns, {ext_popupmenu=true}, on_event) ]]
 | 
						|
    feed('ifo')
 | 
						|
    screen:expect {
 | 
						|
      grid = [[
 | 
						|
      fo^                                      |
 | 
						|
      {1:~                                       }|*3
 | 
						|
      {2:-- INSERT --}                            |
 | 
						|
    ]],
 | 
						|
    }
 | 
						|
 | 
						|
    fn.complete(1, { 'food', 'foobar', 'foo' })
 | 
						|
    screen:expect {
 | 
						|
      grid = [[
 | 
						|
      food^                                    |
 | 
						|
      {1:~                                       }|*3
 | 
						|
      {2:-- INSERT --}                            |
 | 
						|
    ]],
 | 
						|
    }
 | 
						|
    expect_events {
 | 
						|
      {
 | 
						|
        'popupmenu_show',
 | 
						|
        { { 'food', '', '', '' }, { 'foobar', '', '', '' }, { 'foo', '', '', '' } },
 | 
						|
        0,
 | 
						|
        0,
 | 
						|
        0,
 | 
						|
        1,
 | 
						|
      },
 | 
						|
    }
 | 
						|
 | 
						|
    feed '<c-n>'
 | 
						|
    screen:expect {
 | 
						|
      grid = [[
 | 
						|
      foobar^                                  |
 | 
						|
      {1:~                                       }|*3
 | 
						|
      {2:-- INSERT --}                            |
 | 
						|
    ]],
 | 
						|
    }
 | 
						|
    expect_events {
 | 
						|
      { 'popupmenu_select', 1 },
 | 
						|
    }
 | 
						|
 | 
						|
    feed '<c-y>'
 | 
						|
    screen:expect_unchanged()
 | 
						|
    expect_events {
 | 
						|
      { 'popupmenu_hide' },
 | 
						|
    }
 | 
						|
 | 
						|
    -- vim.ui_detach() stops events, and reenables builtin pum immediately
 | 
						|
    exec_lua [[
 | 
						|
      vim.ui_detach(ns)
 | 
						|
      vim.fn.complete(1, {'food', 'foobar', 'foo'})
 | 
						|
    ]]
 | 
						|
 | 
						|
    screen:expect {
 | 
						|
      grid = [[
 | 
						|
      food^                                    |
 | 
						|
      {3:food           }{1:                         }|
 | 
						|
      {4:foobar         }{1:                         }|
 | 
						|
      {4:foo            }{1:                         }|
 | 
						|
      {2:-- INSERT --}                            |
 | 
						|
    ]],
 | 
						|
    }
 | 
						|
    expect_events {}
 | 
						|
  end)
 | 
						|
 | 
						|
  it('does not crash on exit', function()
 | 
						|
    fn.system({
 | 
						|
      n.nvim_prog,
 | 
						|
      '-u',
 | 
						|
      'NONE',
 | 
						|
      '-i',
 | 
						|
      'NONE',
 | 
						|
      '--cmd',
 | 
						|
      [[ lua ns = vim.api.nvim_create_namespace 'testspace' ]],
 | 
						|
      '--cmd',
 | 
						|
      [[ lua vim.ui_attach(ns, {ext_popupmenu=true}, function() end) ]],
 | 
						|
      '--cmd',
 | 
						|
      'quitall!',
 | 
						|
    })
 | 
						|
    eq(0, n.eval('v:shell_error'))
 | 
						|
  end)
 | 
						|
 | 
						|
  it('can receive accurate message kinds even if they are history', function()
 | 
						|
    exec_lua([[
 | 
						|
    vim.cmd.echomsg("'message1'")
 | 
						|
    print('message2')
 | 
						|
    vim.ui_attach(ns, { ext_messages = true }, on_event)
 | 
						|
    vim.cmd.echomsg("'message3'")
 | 
						|
    ]])
 | 
						|
    feed(':messages<cr>')
 | 
						|
    feed('<cr>')
 | 
						|
 | 
						|
    local actual = exec_lua([[
 | 
						|
    return vim.tbl_filter(function (event)
 | 
						|
      return event[1] == "msg_history_show"
 | 
						|
    end, events)
 | 
						|
    ]])
 | 
						|
    eq({
 | 
						|
      {
 | 
						|
        'msg_history_show',
 | 
						|
        {
 | 
						|
          { 'echomsg', { { 0, 'message1' } } },
 | 
						|
          { '', { { 0, 'message2' } } },
 | 
						|
          { 'echomsg', { { 0, 'message3' } } },
 | 
						|
        },
 | 
						|
      },
 | 
						|
    }, actual, vim.inspect(actual))
 | 
						|
  end)
 | 
						|
 | 
						|
  it('ui_refresh() activates correct capabilities without remote UI', function()
 | 
						|
    screen:detach()
 | 
						|
    exec_lua('vim.ui_attach(ns, { ext_cmdline = true }, on_event)')
 | 
						|
    eq(1, n.api.nvim_get_option_value('cmdheight', {}))
 | 
						|
    exec_lua('vim.ui_detach(ns)')
 | 
						|
    exec_lua('vim.ui_attach(ns, { ext_messages = true }, on_event)')
 | 
						|
    n.api.nvim_set_option_value('cmdheight', 1, {})
 | 
						|
    screen:attach()
 | 
						|
    eq(1, n.api.nvim_get_option_value('cmdheight', {}))
 | 
						|
  end)
 | 
						|
 | 
						|
  it("ui_refresh() sets 'cmdheight' for all open tabpages with ext_messages", function()
 | 
						|
    exec_lua('vim.cmd.tabnew()')
 | 
						|
    exec_lua('vim.ui_attach(ns, { ext_messages = true }, on_event)')
 | 
						|
    exec_lua('vim.cmd.tabnext()')
 | 
						|
    eq(0, n.api.nvim_get_option_value('cmdheight', {}))
 | 
						|
  end)
 | 
						|
 | 
						|
  it('avoids recursive flushing and invalid memory access with :redraw', function()
 | 
						|
    exec_lua([[
 | 
						|
      _G.cmdline = 0
 | 
						|
      vim.ui_attach(ns, { ext_messages = true }, function(ev)
 | 
						|
        vim.cmd.redraw()
 | 
						|
        _G.cmdline = _G.cmdline + (ev == 'cmdline_show' and 1 or 0)
 | 
						|
      end
 | 
						|
    )]])
 | 
						|
    feed(':')
 | 
						|
    eq(1, exec_lua('return _G.cmdline'))
 | 
						|
    n.assert_alive()
 | 
						|
    feed('version<CR><CR>v<Esc>')
 | 
						|
    n.assert_alive()
 | 
						|
  end)
 | 
						|
 | 
						|
  it("preserved 'incsearch/command' screen state after :redraw from ext_cmdline", function()
 | 
						|
    exec_lua([[
 | 
						|
      vim.cmd.norm('ifoobar')
 | 
						|
      vim.cmd('1split cmdline')
 | 
						|
      local buf = vim.api.nvim_get_current_buf()
 | 
						|
      vim.cmd.wincmd('p')
 | 
						|
      vim.ui_attach(ns, { ext_cmdline = true }, function(event, ...)
 | 
						|
        if event == 'cmdline_show' then
 | 
						|
          local content = select(1, ...)
 | 
						|
          vim.api.nvim_buf_set_lines(buf, -2, -1, false, {content[1][2]})
 | 
						|
          vim.cmd('redraw')
 | 
						|
        end
 | 
						|
        return true
 | 
						|
      end)
 | 
						|
    ]])
 | 
						|
    -- Updates a cmdline window
 | 
						|
    feed(':cmdline')
 | 
						|
    screen:expect({
 | 
						|
      grid = [[
 | 
						|
        cmdline                                 |
 | 
						|
        {5:cmdline [+]                             }|
 | 
						|
        fooba^r                                  |
 | 
						|
        {6:[No Name] [+]                           }|
 | 
						|
                                                |
 | 
						|
      ]],
 | 
						|
    })
 | 
						|
    -- Does not clear 'incsearch' highlighting
 | 
						|
    feed('<Esc>/foo')
 | 
						|
    screen:expect({
 | 
						|
      grid = [[
 | 
						|
        foo                                     |
 | 
						|
        {5:cmdline [+]                             }|
 | 
						|
        {5:foo}ba^r                                  |
 | 
						|
        {6:[No Name] [+]                           }|
 | 
						|
                                                |
 | 
						|
      ]],
 | 
						|
    })
 | 
						|
    -- Shows new cmdline state during 'inccommand'
 | 
						|
    feed('<Esc>:%s/bar/baz')
 | 
						|
    screen:expect({
 | 
						|
      grid = [[
 | 
						|
        %s/bar/baz                              |
 | 
						|
        {5:cmdline [+]                             }|
 | 
						|
        foo{7:ba^z}                                  |
 | 
						|
        {6:[No Name] [+]                           }|
 | 
						|
                                                |
 | 
						|
      ]],
 | 
						|
    })
 | 
						|
  end)
 | 
						|
end)
 | 
						|
 | 
						|
describe('vim.ui_attach', function()
 | 
						|
  after_each(function()
 | 
						|
    check_close()
 | 
						|
    os.remove(testlog)
 | 
						|
  end)
 | 
						|
 | 
						|
  it('error in callback is logged', function()
 | 
						|
    clear({ env = { NVIM_LOG_FILE = testlog } })
 | 
						|
    local screen = Screen.new()
 | 
						|
    screen:attach()
 | 
						|
    exec_lua([[
 | 
						|
      local ns = vim.api.nvim_create_namespace('testspace')
 | 
						|
      vim.ui_attach(ns, { ext_popupmenu = true }, function() error(42) end)
 | 
						|
    ]])
 | 
						|
    feed('ifoo<CR>foobar<CR>fo<C-X><C-N>')
 | 
						|
    assert_log('Error executing UI event callback: Error executing lua: .*: 42', testlog, 100)
 | 
						|
  end)
 | 
						|
end)
 |