mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 19:25:11 -07:00
743860de40
test: replace lfs with luv luv already pretty much does everything lfs does, so this duplication of dependencies isn't needed.
84 lines
2.9 KiB
Lua
84 lines
2.9 KiB
Lua
local helpers = require('test.functional.helpers')(after_each)
|
|
local thelpers = require('test.functional.terminal.helpers')
|
|
local luv = require('luv')
|
|
local clear = helpers.clear
|
|
local nvim_prog = helpers.nvim_prog
|
|
local feed_command = helpers.feed_command
|
|
local feed_data = thelpers.feed_data
|
|
|
|
if helpers.skip(helpers.is_os('win')) then return end
|
|
|
|
describe('autoread TUI FocusGained/FocusLost', function()
|
|
local f1 = 'xtest-foo'
|
|
local screen
|
|
|
|
before_each(function()
|
|
clear()
|
|
screen = thelpers.screen_setup(0, '["'..nvim_prog
|
|
..'", "-u", "NONE", "-i", "NONE", "--cmd", "set noswapfile noshowcmd noruler"]')
|
|
end)
|
|
|
|
teardown(function()
|
|
os.remove(f1)
|
|
end)
|
|
|
|
it('external file change', function()
|
|
local path = f1
|
|
local expected_addition = [[
|
|
line 1
|
|
line 2
|
|
line 3
|
|
line 4
|
|
]]
|
|
|
|
helpers.write_file(path, '')
|
|
local atime = os.time() - 10
|
|
luv.fs_utime(path, atime, atime)
|
|
|
|
screen:expect{grid=[[
|
|
{1: } |
|
|
{4:~ }|
|
|
{4:~ }|
|
|
{4:~ }|
|
|
{5:[No Name] }|
|
|
|
|
|
{3:-- TERMINAL --} |
|
|
]]}
|
|
feed_command('edit '..path)
|
|
screen:expect{grid=[[
|
|
{1: } |
|
|
{4:~ }|
|
|
{4:~ }|
|
|
{4:~ }|
|
|
{5:xtest-foo }|
|
|
:edit xtest-foo |
|
|
{3:-- TERMINAL --} |
|
|
]]}
|
|
feed_data('\027[O')
|
|
feed_data('\027[O')
|
|
screen:expect{grid=[[
|
|
{1: } |
|
|
{4:~ }|
|
|
{4:~ }|
|
|
{4:~ }|
|
|
{5:xtest-foo }|
|
|
:edit xtest-foo |
|
|
{3:-- TERMINAL --} |
|
|
]], unchanged=true}
|
|
|
|
helpers.write_file(path, expected_addition)
|
|
|
|
feed_data('\027[I')
|
|
|
|
screen:expect{grid=[[
|
|
{1:l}ine 1 |
|
|
line 2 |
|
|
line 3 |
|
|
line 4 |
|
|
{5:xtest-foo }|
|
|
"xtest-foo" 4L, 28B |
|
|
{3:-- TERMINAL --} |
|
|
]]}
|
|
end)
|
|
end)
|