summaryrefslogtreecommitdiff
path: root/test/tclient/tests/performance-1.lua
blob: 65aa62ec41b4be97de748c53ba9be0c1e0b66a67 (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
local lclient = require 'lclient'
local util    = require 'utility'
local ws      = require 'workspace'
local files   = require 'files'
local furi    = require 'file-uri'
local fs      = require 'bee.filesystem'
local await   = require 'await'

---@async
lclient():start(function (client)
    client:registerFakers()

    client:register('workspace/configuration', function ()
        return {
            {
                ['workspace.library'] = { '${3rd}/Jass/library' }
            },
        }
    end)

    client:initialize()

    ws.awaitReady()

    local text = [[
local jass = require 'jass.common'

]]

    local clock = os.clock()

    client:awaitRequest('textDocument/didOpen', {
        textDocument = {
            uri = furi.encode('abc/performance-1.lua'),
            languageId = 'lua',
            version = 0,
            text = text,
        }
    })

    await.sleep(1.0)

    for c in ('jass'):gmatch '.' do
        text = text .. c
        client:awaitRequest('textDocument/didChange', {
            textDocument = {
                uri = furi.encode('abc/performance-1.lua'),
            },
            contentChanges = {
                {
                    text = text,
                }
            }
        })
        await.sleep(1.0)
    end

    local items = client:awaitRequest('textDocument/completion', {
        textDocument = { uri = furi.encode('abc/performance-1.lua') },
        position = { line = 2, character = 4 },
    })
    local item = client:awaitRequest('completionItem/resolve', items.items[1])

    assert(item.documentation ~= nil)

    print(('Benchmark [performance-1] takes [%.3f] sec.'):format(os.clock() - clock))
end)