aboutsummaryrefslogtreecommitdiff
path: root/test/functional/api/ui_spec.lua
blob: 6efb6726fe2b0dcd3222a732b8200ddd343ed389 (plain) (blame)
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
local helpers = require('test.functional.helpers')(after_each)
local Screen = require('test.functional.ui.screen')
local clear = helpers.clear
local command = helpers.command
local eq = helpers.eq
local eval = helpers.eval
local exec = helpers.exec
local feed = helpers.feed
local meths = helpers.meths
local request = helpers.request
local pcall_err = helpers.pcall_err

describe('nvim_ui_attach()', function()
  before_each(function()
    clear()
  end)

  it('handles very large width/height #2180', function()
    local screen = Screen.new(999, 999)
    screen:attach()
    eq(999, eval('&lines'))
    eq(999, eval('&columns'))
  end)

  it('validation', function()
    eq('No such UI option: foo',
      pcall_err(meths.ui_attach, 80, 24, { foo={'foo'} }))

    eq("Invalid 'ext_linegrid': expected Boolean, got Array",
      pcall_err(meths.ui_attach, 80, 24, { ext_linegrid={} }))
    eq("Invalid 'override': expected Boolean, got Array",
      pcall_err(meths.ui_attach, 80, 24, { override={} }))
    eq("Invalid 'rgb': expected Boolean, got Array",
      pcall_err(meths.ui_attach, 80, 24, { rgb={} }))
    eq("Invalid 'term_name': expected String, got Boolean",
      pcall_err(meths.ui_attach, 80, 24, { term_name=true }))
    eq("Invalid 'term_colors': expected Integer, got Boolean",
      pcall_err(meths.ui_attach, 80, 24, { term_colors=true }))
    eq("Invalid 'stdin_fd': expected Integer, got String",
      pcall_err(meths.ui_attach, 80, 24, { stdin_fd='foo' }))
    eq("Invalid 'stdin_tty': expected Boolean, got String",
      pcall_err(meths.ui_attach, 80, 24, { stdin_tty='foo' }))
    eq("Invalid 'stdout_tty': expected Boolean, got String",
      pcall_err(meths.ui_attach, 80, 24, { stdout_tty='foo' }))

    eq('UI not attached to channel: 1',
      pcall_err(request, 'nvim_ui_try_resize', 40, 10))
    eq('UI not attached to channel: 1',
      pcall_err(request, 'nvim_ui_set_option', 'rgb', true))
    eq('UI not attached to channel: 1',
      pcall_err(request, 'nvim_ui_detach'))

    local screen = Screen.new()
    screen:attach({rgb=false})
    eq('UI already attached to channel: 1',
      pcall_err(request, 'nvim_ui_attach', 40, 10, { rgb=false }))
  end)
end)

it('autocmds UIEnter/UILeave', function()
  clear{args_rm={'--headless'}}
  exec([[
    let g:evs = []
    autocmd UIEnter * call add(g:evs, "UIEnter") | let g:uienter_ev = deepcopy(v:event)
    autocmd UILeave * call add(g:evs, "UILeave") | let g:uileave_ev = deepcopy(v:event)
    autocmd VimEnter * call add(g:evs, "VimEnter")
  ]])
  local screen = Screen.new()
  screen:attach()
  eq({chan=1}, eval('g:uienter_ev'))
  screen:detach()
  eq({chan=1}, eval('g:uileave_ev'))
  eq({
    'VimEnter',
    'UIEnter',
    'UILeave',
  }, eval('g:evs'))
end)

it('autocmds VimSuspend/VimResume #22041', function()
  clear()
  local screen = Screen.new()
  screen:attach()
  exec([[
    let g:ev = []
    autocmd VimResume  * :call add(g:ev, 'r')
    autocmd VimSuspend * :call add(g:ev, 's')
  ]])

  eq(false, screen.suspended)
  feed('<C-Z>')
  screen:expect(function() eq(true, screen.suspended) end)
  eq({ 's' }, eval('g:ev'))
  screen.suspended = false
  feed('<Ignore>')
  eq({ 's', 'r' }, eval('g:ev'))

  command('suspend')
  screen:expect(function() eq(true, screen.suspended) end)
  eq({ 's', 'r', 's' }, eval('g:ev'))
  screen.suspended = false
  meths.input_mouse('move', '', '', 0, 0, 0)
  eq({ 's', 'r', 's', 'r' }, eval('g:ev'))

  feed('<C-Z><C-Z><C-Z>')
  screen:expect(function() eq(true, screen.suspended) end)
  meths.ui_set_focus(false)
  eq({ 's', 'r', 's', 'r', 's' }, eval('g:ev'))
  screen.suspended = false
  meths.ui_set_focus(true)
  eq({ 's', 'r', 's', 'r', 's', 'r' }, eval('g:ev'))

  command('suspend | suspend | suspend')
  screen:expect(function() eq(true, screen.suspended) end)
  screen:detach()
  eq({ 's', 'r', 's', 'r', 's', 'r', 's' }, eval('g:ev'))
  screen.suspended = false
  screen:attach()
  eq({ 's', 'r', 's', 'r', 's', 'r', 's', 'r' }, eval('g:ev'))
end)