2018-09-23 01:13:56 -07:00
|
|
|
local Screen = require('test.functional.ui.screen')
|
|
|
|
local helpers = require('test.functional.helpers')(after_each)
|
|
|
|
local lfs = require('lfs')
|
2022-11-17 05:37:07 -07:00
|
|
|
local luv = require('luv')
|
2022-08-30 18:41:00 -07:00
|
|
|
local eq, eval, expect, exec =
|
|
|
|
helpers.eq, helpers.eval, helpers.expect, helpers.exec
|
2021-09-01 09:42:53 -07:00
|
|
|
local assert_alive = helpers.assert_alive
|
2018-09-23 01:13:56 -07:00
|
|
|
local clear = helpers.clear
|
|
|
|
local command = helpers.command
|
|
|
|
local feed = helpers.feed
|
2022-11-17 05:37:07 -07:00
|
|
|
local funcs = helpers.funcs
|
2018-09-23 01:13:56 -07:00
|
|
|
local nvim_prog = helpers.nvim_prog
|
|
|
|
local ok = helpers.ok
|
|
|
|
local rmdir = helpers.rmdir
|
2022-08-30 18:41:00 -07:00
|
|
|
local new_argv = helpers.new_argv
|
|
|
|
local pesc = helpers.pesc
|
2022-03-23 04:52:50 -07:00
|
|
|
local os_kill = helpers.os_kill
|
2018-09-23 01:13:56 -07:00
|
|
|
local set_session = helpers.set_session
|
|
|
|
local spawn = helpers.spawn
|
2018-11-30 18:41:31 -07:00
|
|
|
local nvim_async = helpers.nvim_async
|
2019-04-12 17:13:29 -07:00
|
|
|
local expect_msg_seq = helpers.expect_msg_seq
|
2019-09-06 17:17:37 -07:00
|
|
|
local pcall_err = helpers.pcall_err
|
2018-09-23 01:13:56 -07:00
|
|
|
|
|
|
|
describe(':recover', function()
|
|
|
|
before_each(clear)
|
|
|
|
|
|
|
|
it('fails if given a non-existent swapfile', function()
|
2019-01-14 07:09:47 -07:00
|
|
|
local swapname = 'bogus_swapfile'
|
|
|
|
local swapname2 = 'bogus_swapfile.swp'
|
2019-09-06 17:17:37 -07:00
|
|
|
eq('Vim(recover):E305: No swap file found for '..swapname,
|
|
|
|
pcall_err(command, 'recover '..swapname)) -- Should not segfault. #2117
|
2019-01-14 07:09:47 -07:00
|
|
|
-- Also check filename ending with ".swp". #9504
|
2019-09-06 17:17:37 -07:00
|
|
|
eq('Vim(recover):E306: Cannot open '..swapname2,
|
|
|
|
pcall_err(command, 'recover '..swapname2)) -- Should not segfault. #2117
|
2021-09-01 09:42:53 -07:00
|
|
|
assert_alive()
|
2018-09-23 01:13:56 -07:00
|
|
|
end)
|
|
|
|
|
|
|
|
end)
|
|
|
|
|
|
|
|
describe(':preserve', function()
|
|
|
|
local swapdir = lfs.currentdir()..'/Xtest_recover_dir'
|
|
|
|
before_each(function()
|
|
|
|
clear()
|
|
|
|
rmdir(swapdir)
|
|
|
|
lfs.mkdir(swapdir)
|
|
|
|
end)
|
|
|
|
after_each(function()
|
|
|
|
command('%bwipeout!')
|
|
|
|
rmdir(swapdir)
|
|
|
|
end)
|
|
|
|
|
|
|
|
it("saves to custom 'directory' and (R)ecovers #1836", function()
|
|
|
|
local testfile = 'Xtest_recover_file1'
|
|
|
|
-- Put swapdir at the start of the 'directory' list. #1836
|
|
|
|
-- Note: `set swapfile` *must* go after `set directory`: otherwise it may
|
|
|
|
-- attempt to create a swapfile in different directory.
|
|
|
|
local init = [[
|
|
|
|
set directory^=]]..swapdir:gsub([[\]], [[\\]])..[[//
|
|
|
|
set swapfile fileformat=unix undolevels=-1
|
|
|
|
]]
|
|
|
|
|
2022-08-30 18:41:00 -07:00
|
|
|
exec(init)
|
2018-09-23 01:13:56 -07:00
|
|
|
command('edit! '..testfile)
|
|
|
|
feed('isometext<esc>')
|
|
|
|
command('preserve')
|
2022-08-30 18:41:00 -07:00
|
|
|
exec('redir => g:swapname | silent swapname | redir END')
|
2018-09-23 01:13:56 -07:00
|
|
|
|
|
|
|
local swappath1 = eval('g:swapname')
|
|
|
|
|
2022-03-23 04:52:50 -07:00
|
|
|
os_kill(eval('getpid()'))
|
2018-09-23 01:13:56 -07:00
|
|
|
-- Start another Nvim instance.
|
|
|
|
local nvim2 = spawn({nvim_prog, '-u', 'NONE', '-i', 'NONE', '--embed'},
|
|
|
|
true)
|
|
|
|
set_session(nvim2)
|
|
|
|
|
2022-08-30 18:41:00 -07:00
|
|
|
exec(init)
|
2018-09-23 01:13:56 -07:00
|
|
|
|
|
|
|
-- Use the "SwapExists" event to choose the (R)ecover choice at the dialog.
|
|
|
|
command('autocmd SwapExists * let v:swapchoice = "r"')
|
|
|
|
command('silent edit! '..testfile)
|
2022-08-30 18:41:00 -07:00
|
|
|
exec('redir => g:swapname | silent swapname | redir END')
|
2018-09-23 01:13:56 -07:00
|
|
|
|
|
|
|
local swappath2 = eval('g:swapname')
|
|
|
|
|
|
|
|
expect('sometext')
|
|
|
|
-- swapfile from session 1 should end in .swp
|
|
|
|
eq(testfile..'.swp', string.match(swappath1, '[^%%]+$'))
|
|
|
|
-- swapfile from session 2 should end in .swo
|
|
|
|
eq(testfile..'.swo', string.match(swappath2, '[^%%]+$'))
|
|
|
|
-- Verify that :swapname was not truncated (:help 'shortmess').
|
|
|
|
ok(nil == string.find(swappath1, '%.%.%.'))
|
|
|
|
ok(nil == string.find(swappath2, '%.%.%.'))
|
|
|
|
end)
|
|
|
|
|
|
|
|
end)
|
|
|
|
|
|
|
|
describe('swapfile detection', function()
|
|
|
|
local swapdir = lfs.currentdir()..'/Xtest_swapdialog_dir'
|
2022-08-30 18:41:00 -07:00
|
|
|
local nvim0
|
|
|
|
-- Put swapdir at the start of the 'directory' list. #1836
|
|
|
|
-- Note: `set swapfile` *must* go after `set directory`: otherwise it may
|
|
|
|
-- attempt to create a swapfile in different directory.
|
|
|
|
local init = [[
|
|
|
|
set directory^=]]..swapdir:gsub([[\]], [[\\]])..[[//
|
2022-11-17 05:37:07 -07:00
|
|
|
set swapfile fileformat=unix nomodified undolevels=-1 nohidden
|
2022-08-30 18:41:00 -07:00
|
|
|
]]
|
2018-09-23 01:13:56 -07:00
|
|
|
before_each(function()
|
2022-08-30 18:41:00 -07:00
|
|
|
nvim0 = spawn(new_argv())
|
|
|
|
set_session(nvim0)
|
2018-09-23 01:13:56 -07:00
|
|
|
rmdir(swapdir)
|
|
|
|
lfs.mkdir(swapdir)
|
|
|
|
end)
|
|
|
|
after_each(function()
|
2022-08-30 18:41:00 -07:00
|
|
|
set_session(nvim0)
|
2018-09-23 01:13:56 -07:00
|
|
|
command('%bwipeout!')
|
|
|
|
rmdir(swapdir)
|
|
|
|
end)
|
|
|
|
|
|
|
|
it('always show swapfile dialog #8840 #9027', function()
|
|
|
|
local testfile = 'Xtest_swapdialog_file1'
|
|
|
|
|
|
|
|
local expected_no_dialog = '^'..(' '):rep(256)..'|\n'
|
|
|
|
for _=1,37 do
|
|
|
|
expected_no_dialog = expected_no_dialog..'~'..(' '):rep(255)..'|\n'
|
|
|
|
end
|
|
|
|
expected_no_dialog = expected_no_dialog..testfile..(' '):rep(216)..'0,0-1 All|\n'
|
|
|
|
expected_no_dialog = expected_no_dialog..(' '):rep(256)..'|\n'
|
|
|
|
|
2022-08-30 18:41:00 -07:00
|
|
|
exec(init)
|
2018-09-23 01:13:56 -07:00
|
|
|
command('edit! '..testfile)
|
|
|
|
feed('isometext<esc>')
|
|
|
|
command('preserve')
|
|
|
|
|
|
|
|
-- Start another Nvim instance.
|
2022-08-30 18:41:00 -07:00
|
|
|
local nvim2 = spawn({nvim_prog, '-u', 'NONE', '-i', 'NONE', '--embed'}, true, nil, true)
|
2018-09-23 01:13:56 -07:00
|
|
|
set_session(nvim2)
|
|
|
|
local screen2 = Screen.new(256, 40)
|
|
|
|
screen2:attach()
|
2022-08-30 18:41:00 -07:00
|
|
|
exec(init)
|
2018-09-23 01:13:56 -07:00
|
|
|
|
|
|
|
-- With shortmess+=F
|
|
|
|
command('set shortmess+=F')
|
|
|
|
feed(':edit '..testfile..'<CR>')
|
|
|
|
screen2:expect{any=[[E325: ATTENTION.*]]..'\n'..[[Found a swap file by the name ".*]]
|
|
|
|
..[[Xtest_swapdialog_dir[/\].*]]..testfile..[[%.swp"]]}
|
|
|
|
feed('e') -- Chose "Edit" at the swap dialog.
|
|
|
|
screen2:expect(expected_no_dialog)
|
|
|
|
|
|
|
|
-- With :silent and shortmess+=F
|
|
|
|
feed(':silent edit %<CR>')
|
|
|
|
screen2:expect{any=[[Found a swap file by the name ".*]]
|
|
|
|
..[[Xtest_swapdialog_dir[/\].*]]..testfile..[[%.swp"]]}
|
|
|
|
feed('e') -- Chose "Edit" at the swap dialog.
|
|
|
|
screen2:expect(expected_no_dialog)
|
|
|
|
|
|
|
|
-- With :silent! and shortmess+=F
|
|
|
|
feed(':silent! edit %<CR>')
|
|
|
|
screen2:expect{any=[[Found a swap file by the name ".*]]
|
|
|
|
..[[Xtest_swapdialog_dir[/\].*]]..testfile..[[%.swp"]]}
|
|
|
|
feed('e') -- Chose "Edit" at the swap dialog.
|
|
|
|
screen2:expect(expected_no_dialog)
|
|
|
|
|
|
|
|
-- With API (via eval/VimL) call and shortmess+=F
|
|
|
|
feed(':call nvim_command("edit %")<CR>')
|
|
|
|
screen2:expect{any=[[Found a swap file by the name ".*]]
|
|
|
|
..[[Xtest_swapdialog_dir[/\].*]]..testfile..[[%.swp"]]}
|
|
|
|
feed('e') -- Chose "Edit" at the swap dialog.
|
|
|
|
feed('<c-c>')
|
|
|
|
screen2:expect(expected_no_dialog)
|
2018-11-30 18:41:31 -07:00
|
|
|
|
|
|
|
-- With API call and shortmess+=F
|
|
|
|
nvim_async('command', 'edit %')
|
|
|
|
screen2:expect{any=[[Found a swap file by the name ".*]]
|
|
|
|
..[[Xtest_swapdialog_dir[/\].*]]..testfile..[[%.swp"]]}
|
|
|
|
feed('e') -- Chose "Edit" at the swap dialog.
|
2019-04-12 17:13:29 -07:00
|
|
|
expect_msg_seq({
|
|
|
|
ignore={'redraw'},
|
|
|
|
seqs={
|
|
|
|
{ {'notification', 'nvim_error_event', {0, 'Vim(edit):E325: ATTENTION'}},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
feed('<cr>')
|
2022-08-30 18:41:00 -07:00
|
|
|
|
|
|
|
nvim2:close()
|
|
|
|
end)
|
|
|
|
|
|
|
|
-- oldtest: Test_swap_prompt_splitwin()
|
|
|
|
it('selecting "q" in the attention prompt', function()
|
|
|
|
exec(init)
|
|
|
|
command('edit Xfile1')
|
|
|
|
command('preserve') -- should help to make sure the swap file exists
|
|
|
|
|
|
|
|
local screen = Screen.new(75, 18)
|
|
|
|
screen:set_default_attr_ids({
|
|
|
|
[0] = {bold = true, foreground = Screen.colors.Blue}, -- NonText
|
|
|
|
[1] = {bold = true, foreground = Screen.colors.SeaGreen}, -- MoreMsg
|
|
|
|
})
|
|
|
|
|
|
|
|
local nvim1 = spawn(new_argv(), true, nil, true)
|
|
|
|
set_session(nvim1)
|
|
|
|
screen:attach()
|
|
|
|
exec(init)
|
|
|
|
feed(':split Xfile1\n')
|
|
|
|
screen:expect({
|
|
|
|
any = pesc('{1:[O]pen Read-Only, (E)dit anyway, (R)ecover, (Q)uit, (A)bort: }^')
|
|
|
|
})
|
|
|
|
feed('q')
|
|
|
|
feed(':<CR>')
|
|
|
|
screen:expect([[
|
|
|
|
^ |
|
|
|
|
{0:~ }|
|
|
|
|
{0:~ }|
|
|
|
|
{0:~ }|
|
|
|
|
{0:~ }|
|
|
|
|
{0:~ }|
|
|
|
|
{0:~ }|
|
|
|
|
{0:~ }|
|
|
|
|
{0:~ }|
|
|
|
|
{0:~ }|
|
|
|
|
{0:~ }|
|
|
|
|
{0:~ }|
|
|
|
|
{0:~ }|
|
|
|
|
{0:~ }|
|
|
|
|
{0:~ }|
|
|
|
|
{0:~ }|
|
|
|
|
{0:~ }|
|
|
|
|
: |
|
|
|
|
]])
|
|
|
|
nvim1:close()
|
|
|
|
|
|
|
|
local nvim2 = spawn(new_argv(), true, nil, true)
|
|
|
|
set_session(nvim2)
|
|
|
|
screen:attach()
|
|
|
|
exec(init)
|
|
|
|
command('set more')
|
|
|
|
command('au bufadd * let foo_w = wincol()')
|
|
|
|
feed(':e Xfile1<CR>')
|
|
|
|
screen:expect({any = pesc('{1:-- More --}^')})
|
|
|
|
feed('<Space>')
|
|
|
|
screen:expect({
|
|
|
|
any = pesc('{1:[O]pen Read-Only, (E)dit anyway, (R)ecover, (Q)uit, (A)bort: }^')
|
|
|
|
})
|
|
|
|
feed('q')
|
|
|
|
command([[echo 'hello']])
|
|
|
|
screen:expect([[
|
|
|
|
^ |
|
|
|
|
{0:~ }|
|
|
|
|
{0:~ }|
|
|
|
|
{0:~ }|
|
|
|
|
{0:~ }|
|
|
|
|
{0:~ }|
|
|
|
|
{0:~ }|
|
|
|
|
{0:~ }|
|
|
|
|
{0:~ }|
|
|
|
|
{0:~ }|
|
|
|
|
{0:~ }|
|
|
|
|
{0:~ }|
|
|
|
|
{0:~ }|
|
|
|
|
{0:~ }|
|
|
|
|
{0:~ }|
|
|
|
|
{0:~ }|
|
|
|
|
{0:~ }|
|
|
|
|
hello |
|
|
|
|
]])
|
|
|
|
nvim2:close()
|
2018-09-23 01:13:56 -07:00
|
|
|
end)
|
2022-11-17 05:37:07 -07:00
|
|
|
|
|
|
|
-- oldtest: Test_nocatch_process_still_running()
|
|
|
|
it('allows deleting swapfile created before boot vim-patch:8.2.2586', function()
|
|
|
|
local screen = Screen.new(75, 30)
|
|
|
|
screen:set_default_attr_ids({
|
|
|
|
[0] = {bold = true, foreground = Screen.colors.Blue}, -- NonText
|
|
|
|
[1] = {bold = true, foreground = Screen.colors.SeaGreen}, -- MoreMsg
|
|
|
|
[2] = {background = Screen.colors.Red, foreground = Screen.colors.White}, -- ErrorMsg
|
|
|
|
})
|
|
|
|
screen:attach()
|
|
|
|
|
|
|
|
exec(init)
|
|
|
|
command('set nohidden')
|
|
|
|
|
|
|
|
exec([=[
|
|
|
|
" Make a copy of the current swap file to "Xswap".
|
|
|
|
" Return the name of the swap file.
|
|
|
|
func CopySwapfile()
|
|
|
|
preserve
|
|
|
|
" get the name of the swap file
|
|
|
|
let swname = split(execute("swapname"))[0]
|
|
|
|
let swname = substitute(swname, '[[:blank:][:cntrl:]]*\(.\{-}\)[[:blank:][:cntrl:]]*$', '\1', '')
|
|
|
|
" make a copy of the swap file in Xswap
|
|
|
|
set binary
|
|
|
|
exe 'sp ' . fnameescape(swname)
|
|
|
|
w! Xswap
|
|
|
|
set nobinary
|
|
|
|
return swname
|
|
|
|
endfunc
|
|
|
|
]=])
|
|
|
|
|
|
|
|
-- Edit a file and grab its swapfile.
|
|
|
|
exec([[
|
|
|
|
edit Xswaptest
|
|
|
|
call setline(1, ['a', 'b', 'c'])
|
|
|
|
]])
|
|
|
|
local swname = funcs.CopySwapfile()
|
|
|
|
|
|
|
|
-- Forget we edited this file
|
|
|
|
exec([[
|
|
|
|
new
|
|
|
|
only!
|
|
|
|
bwipe! Xswaptest
|
|
|
|
]])
|
|
|
|
|
|
|
|
os.rename('Xswap', swname)
|
|
|
|
|
|
|
|
feed(':edit Xswaptest<CR>')
|
|
|
|
screen:expect({any = table.concat({
|
|
|
|
pesc('{2:E325: ATTENTION}'),
|
|
|
|
'file name: .*Xswaptest',
|
|
|
|
'process ID: %d* %(STILL RUNNING%)',
|
|
|
|
pesc('{1:[O]pen Read-Only, (E)dit anyway, (R)ecover, (Q)uit, (A)bort: }^'),
|
|
|
|
}, '.*')})
|
|
|
|
|
|
|
|
feed('e')
|
|
|
|
|
|
|
|
-- Forget we edited this file
|
|
|
|
exec([[
|
|
|
|
new
|
|
|
|
only!
|
|
|
|
bwipe! Xswaptest
|
|
|
|
]])
|
|
|
|
|
|
|
|
-- pretend that the swapfile was created before boot
|
|
|
|
lfs.touch(swname, os.time() - luv.uptime() - 10)
|
|
|
|
|
|
|
|
feed(':edit Xswaptest<CR>')
|
|
|
|
screen:expect({any = table.concat({
|
|
|
|
pesc('{2:E325: ATTENTION}'),
|
|
|
|
pesc('{1:[O]pen Read-Only, (E)dit anyway, (R)ecover, (D)elete it, (Q)uit, (A)bort: }^'),
|
|
|
|
}, '.*')})
|
|
|
|
|
|
|
|
feed('e')
|
|
|
|
end)
|
2018-09-23 01:13:56 -07:00
|
|
|
end)
|