summaryrefslogtreecommitdiffstatshomepage
path: root/test/functional/ex_cmds/excmd_spec.lua
blob: cf5f781d1c8d332844a8a0164b37621e6b7f1dd1 (plain)
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
local t = require('test.testutil')
local n = require('test.functional.testnvim')()

local command = n.command
local eq = t.eq
local clear = n.clear
local fn = n.fn
local pcall_err = t.pcall_err
local assert_alive = n.assert_alive

describe('nlua_call_excmd excmds', function()
  -- Exercise nlua_call_excmd by testing commands implemented with it (:log, :lsp).

  before_each(function()
    clear()
  end)

  it('error propagation, formatting', function()
    t.eq('Vim(lsp):E5800: Invalid :lsp subcommand: bogus', pcall_err(command, 'lsp bogus'))
    t.matches('Vim%(log%):E5200: No such log.*', pcall_err(command, 'log bogus'))
  end)
end)

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

  local function check_excmd_err(cmd, err)
    eq(err .. ': ' .. cmd, pcall_err(command, cmd))
  end

  it('handle integer overflow from user-input #5555', function()
    command(':9999999999999999999999999999999999999999')
    command(':later 9999999999999999999999999999999999999999')
    command(':echo expand("#<9999999999999999999999999999999999999999")')
    command(':lockvar 9999999999999999999999999999999999999999')
    command(
      ':winsize 9999999999999999999999999999999999999999 9999999999999999999999999999999999999999'
    )
    check_excmd_err(
      ':tabnext 9999999999999999999999999999999999999999',
      'Vim(tabnext):E475: Invalid argument: 9999999999999999999999999999999999999999'
    )
    eq(
      'Vim(Next):E163: There is only one file to edit',
      pcall_err(command, ':N 9999999999999999999999999999999999999999')
    )
    check_excmd_err(
      ':bdelete 9999999999999999999999999999999999999999',
      'Vim(bdelete):E516: No buffers were deleted'
    )
    eq(
      'Vim(menu):E329: No menu "9999999999999999999999999999999999999999"',
      pcall_err(command, ':menu 9999999999999999999999999999999999999999')
    )
    eq(
      'Vim(substitute):E1510: Value too large: 9999999999999999999999999999999999999999',
      pcall_err(command, ':%s/./b/9999999999999999999999999999999999999999')
    )
    assert_alive()
  end)

  it('listing long user command does not crash', function()
    command('execute "command" repeat("T", 255) ":"')
    command('command')
  end)

  it(':def is an unknown command #23149', function()
    eq('Vim:E492: Not an editor command: def', pcall_err(command, 'def'))
    eq(1, fn.exists(':d'))
    eq('delete', fn.fullcommand('d'))
    eq(1, fn.exists(':de'))
    eq('delete', fn.fullcommand('de'))
    eq(0, fn.exists(':def'))
    eq('', fn.fullcommand('def'))
    eq(1, fn.exists(':defe'))
    eq('defer', fn.fullcommand('defe'))
    eq(2, fn.exists(':defer'))
    eq('defer', fn.fullcommand('defer'))
  end)

  it('various command abbreviations', function()
    -- :connect needs at least :conn
    eq('change', fn.fullcommand('c'))
    eq('copy', fn.fullcommand('co'))
    eq('continue', fn.fullcommand('con'))
    eq('connect', fn.fullcommand('conn'))
    -- :restart needs at least :rest
    eq('read', fn.fullcommand('r'))
    eq('read', fn.fullcommand('re'))
    eq('resize', fn.fullcommand('res'))
    eq('restart', fn.fullcommand('rest'))
  end)
end)