summaryrefslogtreecommitdiffstatshomepage
path: root/test/functional/lua/pos_spec.lua
blob: 0ee9ac0752b4754afd2512ef95a2019a434a55f8 (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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
-- Test suite for vim.pos
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.pos', function()
  before_each(clear)

  it('creates a position', function()
    local pos, buf = exec_lua(function()
      local buf = vim.api.nvim_create_buf(false, true)
      return vim.pos(buf, 3, 5), buf
    end)
    eq(3, pos[1])
    eq(5, pos[2])
    eq(buf, pos[3])
  end)

  it('comparisons by overloaded operators', function()
    local buf = exec_lua(function()
      return vim.api.nvim_create_buf(false, true)
    end)
    eq(
      true,
      exec_lua(function()
        return vim.pos(buf, 3, 5) < vim.pos(buf, 4, 5)
      end)
    )
    eq(
      true,
      exec_lua(function()
        return vim.pos(buf, 3, 5) <= vim.pos(buf, 3, 6)
      end)
    )
    eq(
      true,
      exec_lua(function()
        return vim.pos(buf, 3, 5) > vim.pos(buf, 2, 5)
      end)
    )
    eq(
      true,
      exec_lua(function()
        return vim.pos(buf, 3, 5) >= vim.pos(buf, 3, 5)
      end)
    )
    eq(
      true,
      exec_lua(function()
        return vim.pos(buf, 3, 5) == vim.pos(buf, 3, 5)
      end)
    )
    eq(
      true,
      exec_lua(function()
        return vim.pos(buf, 3, 5) ~= vim.pos(buf, 3, 6)
      end)
    )
  end)

  it('converts between vim.Pos and lsp.Position', function()
    local buf = exec_lua(function()
      return vim.api.nvim_get_current_buf()
    end)
    insert('Neovim 是 Vim 的分支,专注于扩展性和可用性。')
    local lsp_pos = exec_lua(function()
      local pos = vim.pos(buf, 0, 36)
      return pos:to_lsp('utf-16')
    end)
    eq({ line = 0, character = 20 }, lsp_pos)
    local pos = exec_lua(function()
      return vim.pos.lsp(buf, lsp_pos, 'utf-16')
    end)
    eq({
      0,
      36,
      buf,
    }, pos)
  end)

  it("converts between vim.Pos and extmark on buffer's last line", function()
    local buf = exec_lua(function()
      return vim.api.nvim_get_current_buf()
    end)
    insert('Some text')
    local extmark_pos = {
      exec_lua(function()
        local pos = vim.pos(buf, 1, 0)
        return pos:to_extmark()
      end),
    }
    eq({ 0, 9 }, extmark_pos)
    local pos = exec_lua(function()
      return vim.pos.extmark(buf, extmark_pos[1], extmark_pos[2])
    end)
    eq({ 0, 9, buf }, pos)

    local extmark_pos2 = {
      exec_lua(function()
        local pos2 = vim.pos(buf, 0, 9)
        return pos2:to_extmark()
      end),
    }
    eq({ 0, 9 }, extmark_pos2)
    local pos2 = exec_lua(function()
      return vim.pos.extmark(buf, extmark_pos2[1], extmark_pos2[2])
    end)
    eq({ 0, 9, buf }, pos2)
  end)
end)