summaryrefslogtreecommitdiff
path: root/test/tclient/tests/performance-jass-common.lua
blob: cc982af554db4b80e959aa9b1f2cebd19f23bbf9 (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
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 clock = os.clock()

    for i = 1, 10 do
        local text = [[
local jass = require 'jass.common'

]]

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

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

        local results = client:awaitRequest('textDocument/definition', {
            textDocument = { uri = furi.encode('abc/1.lua') },
            position = { line = 2, character = 4 },
        })

        assert(results[1] ~= nil)

        client:awaitRequest('textDocument/didClose', {
            textDocument = { uri = furi.encode('abc/1.lua') },
        })
    end

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