mirror of
https://github.com/neovim/neovim.git
synced 2026-05-24 13:50:06 +00:00
195 lines
4.6 KiB
Lua
195 lines
4.6 KiB
Lua
-- Test suite for vim.range
|
|
local t = require('test.testutil')
|
|
local n = require('test.functional.testnvim')()
|
|
local eq = t.eq
|
|
|
|
local clear = n.clear
|
|
local exec_lua = n.exec_lua
|
|
local insert = n.insert
|
|
|
|
describe('vim.range', function()
|
|
before_each(clear)
|
|
|
|
it('creates a range', function()
|
|
local range, buf = exec_lua(function()
|
|
local buf = vim.api.nvim_create_buf(false, true)
|
|
return vim.range(buf, 3, 5, 4, 6), buf
|
|
end)
|
|
eq(3, range[1])
|
|
eq(5, range[2])
|
|
eq(4, range[3])
|
|
eq(6, range[4])
|
|
eq(buf, range[5])
|
|
end)
|
|
|
|
it('creates a range with buf=0', function()
|
|
local range, buf = exec_lua(function()
|
|
return vim.range(0, 3, 5, 4, 6), vim.api.nvim_get_current_buf()
|
|
end)
|
|
eq(3, range[1])
|
|
eq(5, range[2])
|
|
eq(4, range[3])
|
|
eq(6, range[4])
|
|
eq(buf, range[5])
|
|
end)
|
|
|
|
it('creates a range from two positions', function()
|
|
local range, buf1 = exec_lua(function()
|
|
local buf = vim.api.nvim_create_buf(false, true)
|
|
return vim.range(vim.pos(buf, 3, 5), vim.pos(buf, 4, 6)), buf
|
|
end)
|
|
eq(3, range[1])
|
|
eq(5, range[2])
|
|
eq(4, range[3])
|
|
eq(6, range[4])
|
|
eq(buf1, range[5])
|
|
|
|
local buf2 = exec_lua(function()
|
|
return vim.api.nvim_create_buf(false, true)
|
|
end)
|
|
local success = exec_lua(function()
|
|
return pcall(function()
|
|
return vim.range(vim.pos(buf1, 3, 5), vim.pos(buf2, 4, 6))
|
|
end)
|
|
end)
|
|
eq(success, false)
|
|
end)
|
|
|
|
it('converts between vim.Range and lsp.Range', function()
|
|
local buf = exec_lua(function()
|
|
return vim.api.nvim_get_current_buf()
|
|
end)
|
|
insert('Neovim 是 Vim 的分支,专注于扩展性和可用性。')
|
|
local lsp_range = exec_lua(function()
|
|
local range = vim.range(buf, 0, 10, 0, 36)
|
|
return range:to_lsp('utf-16')
|
|
end)
|
|
eq({
|
|
['start'] = { line = 0, character = 8 },
|
|
['end'] = { line = 0, character = 20 },
|
|
}, lsp_range)
|
|
local range = exec_lua(function()
|
|
return vim.range.lsp(buf, lsp_range, 'utf-16')
|
|
end)
|
|
eq({
|
|
0,
|
|
10,
|
|
0,
|
|
36,
|
|
buf,
|
|
}, range)
|
|
end)
|
|
|
|
it('converts between inclusive mark ranges ending on multibyte characters', function()
|
|
insert('🙂')
|
|
|
|
local range, mark_range = exec_lua(function()
|
|
vim.o.selection = 'inclusive'
|
|
local range = vim.range.mark(0, 1, 0, 1, 0)
|
|
return { range[1], range[2], range[3], range[4] }, { range:to_mark() }
|
|
end)
|
|
eq({ 0, 0, 0, 4 }, range)
|
|
eq({ 1, 0, 1, 0 }, mark_range)
|
|
end)
|
|
|
|
it('checks whether a range contains a position', function()
|
|
eq(
|
|
true,
|
|
exec_lua(function()
|
|
local buf = vim.api.nvim_create_buf(false, true)
|
|
return vim.range(buf, 0, 0, 1, 5):has(vim.pos(buf, 0, 1))
|
|
end)
|
|
)
|
|
end)
|
|
|
|
it('a range does not contain an empty range just outside it', function()
|
|
eq(
|
|
false,
|
|
exec_lua(function()
|
|
return vim.range(0, 0, 0, 0, 4):has(vim.range(0, 0, 0, 0, 0))
|
|
end)
|
|
)
|
|
|
|
eq(
|
|
false,
|
|
exec_lua(function()
|
|
return vim.range(0, 0, 0, 0, 4):has(vim.range(0, 0, 4, 0, 4))
|
|
end)
|
|
)
|
|
end)
|
|
|
|
it('an empty range contains no other range', function()
|
|
eq(
|
|
false,
|
|
exec_lua(function()
|
|
return vim.range(0, 1, 0, 1, 0):has(vim.range(0, 1, 0, 1, 0))
|
|
end)
|
|
)
|
|
eq(
|
|
false,
|
|
exec_lua(function()
|
|
return vim.range(0, 1, 0, 1, 0):has(vim.range(0, 1, 0, 2, 0))
|
|
end)
|
|
)
|
|
eq(
|
|
false,
|
|
exec_lua(function()
|
|
return vim.range(0, 1, 0, 1, 0):has(vim.range(0, 0, 0, 1, 0))
|
|
end)
|
|
)
|
|
end)
|
|
|
|
it('an empty range intersercts with no other range', function()
|
|
eq(
|
|
nil,
|
|
exec_lua(function()
|
|
return vim.range(0, 1, 0, 1, 0):intersect(vim.range(0, 1, 0, 1, 0))
|
|
end)
|
|
)
|
|
eq(
|
|
nil,
|
|
exec_lua(function()
|
|
return vim.range(0, 1, 0, 1, 0):intersect(vim.range(0, 1, 0, 2, 0))
|
|
end)
|
|
)
|
|
eq(
|
|
nil,
|
|
exec_lua(function()
|
|
return vim.range(0, 1, 0, 1, 0):intersect(vim.range(0, 0, 0, 1, 0))
|
|
end)
|
|
)
|
|
end)
|
|
|
|
it('empty range comparison semantics', function()
|
|
eq(
|
|
true,
|
|
exec_lua(function()
|
|
return vim.range(0, 0, 0, 0, 0) < vim.range(0, 0, 0, 0, 1)
|
|
end)
|
|
)
|
|
|
|
eq(
|
|
true,
|
|
exec_lua(function()
|
|
return vim.range(0, 1, 0, 1, 0) < vim.range(0, 1, 0, 1, 1)
|
|
end)
|
|
)
|
|
|
|
eq(
|
|
true,
|
|
exec_lua(function()
|
|
return vim.range(0, 1, 1, 1, 1) > vim.range(0, 1, 0, 1, 1)
|
|
end)
|
|
)
|
|
end)
|
|
|
|
it('1 byte wide range is not empty', function()
|
|
eq(
|
|
false,
|
|
exec_lua(function()
|
|
return vim.range(0, 1, 0, 1, 1):is_empty()
|
|
end)
|
|
)
|
|
end)
|
|
end)
|