2017-05-08 21:18:28 +00:00
|
|
|
Before:
|
|
|
|
let g:ale_lsp_next_message_id = 1
|
|
|
|
|
|
|
|
After:
|
|
|
|
unlet! b:data
|
2017-09-03 23:09:46 +00:00
|
|
|
unlet! b:conn
|
2017-05-08 21:18:28 +00:00
|
|
|
|
|
|
|
Execute(GetNextMessageID() should increment appropriately):
|
|
|
|
" We should get the initial ID, and increment a bit.
|
|
|
|
AssertEqual 1, ale#lsp#GetNextMessageID()
|
|
|
|
AssertEqual 2, ale#lsp#GetNextMessageID()
|
|
|
|
AssertEqual 3, ale#lsp#GetNextMessageID()
|
|
|
|
|
|
|
|
" Set the maximum ID.
|
|
|
|
let g:ale_lsp_next_message_id = 9223372036854775807
|
|
|
|
|
|
|
|
" When we hit the maximum ID, the next ID afterwards should be 1.
|
|
|
|
AssertEqual 9223372036854775807, ale#lsp#GetNextMessageID()
|
|
|
|
AssertEqual 1, ale#lsp#GetNextMessageID()
|
|
|
|
|
|
|
|
Execute(ale#lsp#CreateMessageData() should create an appropriate message):
|
2017-05-12 19:38:52 +00:00
|
|
|
" NeoVim outputs JSON with spaces, so the output is a little different.
|
|
|
|
if has('nvim')
|
|
|
|
" 79 is the size in bytes for UTF-8, not the number of characters.
|
|
|
|
AssertEqual
|
|
|
|
\ [
|
|
|
|
\ 1,
|
|
|
|
\ "Content-Length: 79\r\n\r\n"
|
2017-11-11 18:28:24 +00:00
|
|
|
\ . '{"method": "someMethod", "jsonrpc": "2.0", "id": 1, "params": {"foo": "barÜ"}}',
|
2017-05-12 19:38:52 +00:00
|
|
|
\ ],
|
|
|
|
\ ale#lsp#CreateMessageData([0, 'someMethod', {'foo': 'barÜ'}])
|
|
|
|
" Check again to ensure that we use the next ID.
|
|
|
|
AssertEqual
|
|
|
|
\ [
|
|
|
|
\ 2,
|
|
|
|
\ "Content-Length: 79\r\n\r\n"
|
2017-11-11 18:28:24 +00:00
|
|
|
\ . '{"method": "someMethod", "jsonrpc": "2.0", "id": 2, "params": {"foo": "barÜ"}}',
|
2017-05-12 19:38:52 +00:00
|
|
|
\ ],
|
|
|
|
\ ale#lsp#CreateMessageData([0, 'someMethod', {'foo': 'barÜ'}])
|
|
|
|
else
|
|
|
|
AssertEqual
|
|
|
|
\ [
|
|
|
|
\ 1,
|
|
|
|
\ "Content-Length: 71\r\n\r\n"
|
2017-11-11 18:28:24 +00:00
|
|
|
\ . '{"method":"someMethod","jsonrpc":"2.0","id":1,"params":{"foo":"barÜ"}}',
|
2017-05-12 19:38:52 +00:00
|
|
|
\ ],
|
|
|
|
\ ale#lsp#CreateMessageData([0, 'someMethod', {'foo': 'barÜ'}])
|
|
|
|
AssertEqual
|
|
|
|
\ [
|
|
|
|
\ 2,
|
|
|
|
\ "Content-Length: 71\r\n\r\n"
|
2017-11-11 18:28:24 +00:00
|
|
|
\ . '{"method":"someMethod","jsonrpc":"2.0","id":2,"params":{"foo":"barÜ"}}',
|
2017-05-12 19:38:52 +00:00
|
|
|
\ ],
|
|
|
|
\ ale#lsp#CreateMessageData([0, 'someMethod', {'foo': 'barÜ'}])
|
|
|
|
endif
|
2017-05-08 21:18:28 +00:00
|
|
|
|
|
|
|
Execute(ale#lsp#CreateMessageData() should create messages without params):
|
2017-05-12 19:38:52 +00:00
|
|
|
if has('nvim')
|
|
|
|
AssertEqual
|
|
|
|
\ [
|
|
|
|
\ 1,
|
|
|
|
\ "Content-Length: 56\r\n\r\n"
|
2017-11-11 18:28:24 +00:00
|
|
|
\ . '{"method": "someOtherMethod", "jsonrpc": "2.0", "id": 1}',
|
2017-05-12 19:38:52 +00:00
|
|
|
\ ],
|
|
|
|
\ ale#lsp#CreateMessageData([0, 'someOtherMethod'])
|
|
|
|
else
|
|
|
|
AssertEqual
|
|
|
|
\ [
|
|
|
|
\ 1,
|
|
|
|
\ "Content-Length: 51\r\n\r\n"
|
2017-11-11 18:28:24 +00:00
|
|
|
\ . '{"method":"someOtherMethod","jsonrpc":"2.0","id":1}',
|
2017-05-12 19:38:52 +00:00
|
|
|
\ ],
|
|
|
|
\ ale#lsp#CreateMessageData([0, 'someOtherMethod'])
|
|
|
|
endif
|
2017-05-08 21:18:28 +00:00
|
|
|
|
|
|
|
Execute(ale#lsp#CreateMessageData() should create notifications):
|
2017-05-12 19:38:52 +00:00
|
|
|
if has('nvim')
|
|
|
|
AssertEqual
|
|
|
|
\ [
|
|
|
|
\ 0,
|
2017-11-11 18:28:24 +00:00
|
|
|
\ "Content-Length: 48\r\n\r\n"
|
|
|
|
\ . '{"method": "someNotification", "jsonrpc": "2.0"}',
|
2017-05-12 19:38:52 +00:00
|
|
|
\ ],
|
|
|
|
\ ale#lsp#CreateMessageData([1, 'someNotification'])
|
|
|
|
AssertEqual
|
|
|
|
\ [
|
|
|
|
\ 0,
|
2017-11-11 18:28:24 +00:00
|
|
|
\ "Content-Length: 74\r\n\r\n"
|
|
|
|
\ . '{"method": "someNotification", "jsonrpc": "2.0", "params": {"foo": "bar"}}',
|
2017-05-12 19:38:52 +00:00
|
|
|
\ ],
|
|
|
|
\ ale#lsp#CreateMessageData([1, 'someNotification', {'foo': 'bar'}])
|
|
|
|
else
|
|
|
|
AssertEqual
|
|
|
|
\ [
|
|
|
|
\ 0,
|
2017-11-11 18:28:24 +00:00
|
|
|
\ "Content-Length: 45\r\n\r\n"
|
|
|
|
\ . '{"method":"someNotification","jsonrpc":"2.0"}',
|
2017-05-12 19:38:52 +00:00
|
|
|
\ ],
|
|
|
|
\ ale#lsp#CreateMessageData([1, 'someNotification'])
|
|
|
|
AssertEqual
|
|
|
|
\ [
|
|
|
|
\ 0,
|
2017-11-11 18:28:24 +00:00
|
|
|
\ "Content-Length: 68\r\n\r\n"
|
|
|
|
\ . '{"method":"someNotification","jsonrpc":"2.0","params":{"foo":"bar"}}',
|
2017-05-12 19:38:52 +00:00
|
|
|
\ ],
|
|
|
|
\ ale#lsp#CreateMessageData([1, 'someNotification', {'foo': 'bar'}])
|
|
|
|
endif
|
2017-05-08 21:18:28 +00:00
|
|
|
|
2017-06-07 16:05:28 +00:00
|
|
|
Execute(ale#lsp#CreateMessageData() should create tsserver notification messages):
|
|
|
|
if has('nvim')
|
|
|
|
AssertEqual
|
|
|
|
\ [
|
|
|
|
\ 0,
|
2017-06-08 16:28:38 +00:00
|
|
|
\ '{"seq": null, "type": "request", "command": "someNotification"}'
|
|
|
|
\ . "\n",
|
2017-06-07 16:05:28 +00:00
|
|
|
\ ],
|
|
|
|
\ ale#lsp#CreateMessageData([1, 'ts@someNotification'])
|
|
|
|
AssertEqual
|
|
|
|
\ [
|
|
|
|
\ 0,
|
2017-06-08 16:28:38 +00:00
|
|
|
\ '{"seq": null, "arguments": {"foo": "bar"}, "type": "request", "command": "someNotification"}'
|
|
|
|
\ . "\n",
|
2017-06-07 16:05:28 +00:00
|
|
|
\ ],
|
|
|
|
\ ale#lsp#CreateMessageData([1, 'ts@someNotification', {'foo': 'bar'}])
|
|
|
|
else
|
|
|
|
AssertEqual
|
|
|
|
\ [
|
|
|
|
\ 0,
|
2017-06-08 16:28:38 +00:00
|
|
|
\ '{"seq":null,"type":"request","command":"someNotification"}'
|
|
|
|
\ . "\n",
|
2017-06-07 16:05:28 +00:00
|
|
|
\ ],
|
|
|
|
\ ale#lsp#CreateMessageData([1, 'ts@someNotification'])
|
|
|
|
AssertEqual
|
|
|
|
\ [
|
|
|
|
\ 0,
|
2017-06-08 16:28:38 +00:00
|
|
|
\ '{"seq":null,"arguments":{"foo":"bar"},"type":"request","command":"someNotification"}'
|
|
|
|
\ . "\n",
|
2017-06-07 16:05:28 +00:00
|
|
|
\ ],
|
|
|
|
\ ale#lsp#CreateMessageData([1, 'ts@someNotification', {'foo': 'bar'}])
|
|
|
|
endif
|
|
|
|
|
2017-06-08 16:28:38 +00:00
|
|
|
Execute(ale#lsp#CreateMessageData() should create tsserver messages expecting responses):
|
2017-06-07 16:05:28 +00:00
|
|
|
if has('nvim')
|
|
|
|
AssertEqual
|
|
|
|
\ [
|
|
|
|
\ 1,
|
2017-06-08 16:28:38 +00:00
|
|
|
\ '{"seq": 1, "type": "request", "command": "someMessage"}'
|
|
|
|
\ . "\n",
|
2017-06-07 16:05:28 +00:00
|
|
|
\ ],
|
|
|
|
\ ale#lsp#CreateMessageData([0, 'ts@someMessage'])
|
|
|
|
AssertEqual
|
|
|
|
\ [
|
|
|
|
\ 2,
|
2017-06-08 16:28:38 +00:00
|
|
|
\ '{"seq": 2, "arguments": {"foo": "bar"}, "type": "request", "command": "someMessage"}'
|
|
|
|
\ . "\n",
|
2017-06-07 16:05:28 +00:00
|
|
|
\ ],
|
|
|
|
\ ale#lsp#CreateMessageData([0, 'ts@someMessage', {'foo': 'bar'}])
|
|
|
|
else
|
|
|
|
AssertEqual
|
|
|
|
\ [
|
|
|
|
\ 1,
|
2017-06-08 16:28:38 +00:00
|
|
|
\ '{"seq":1,"type":"request","command":"someMessage"}'
|
|
|
|
\ . "\n",
|
2017-06-07 16:05:28 +00:00
|
|
|
\ ],
|
|
|
|
\ ale#lsp#CreateMessageData([0, 'ts@someMessage'])
|
|
|
|
AssertEqual
|
|
|
|
\ [
|
|
|
|
\ 2,
|
2017-06-08 16:28:38 +00:00
|
|
|
\ '{"seq":2,"arguments":{"foo":"bar"},"type":"request","command":"someMessage"}'
|
|
|
|
\ . "\n",
|
2017-06-07 16:05:28 +00:00
|
|
|
\ ],
|
|
|
|
\ ale#lsp#CreateMessageData([0, 'ts@someMessage', {'foo': 'bar'}])
|
|
|
|
endif
|
|
|
|
|
2017-05-08 21:18:28 +00:00
|
|
|
Execute(ale#lsp#ReadMessageData() should read single whole messages):
|
|
|
|
AssertEqual
|
|
|
|
\ ['', [{'id': 2, 'jsonrpc': '2.0', 'result': {'foo': 'barÜ'}}]],
|
|
|
|
\ ale#lsp#ReadMessageData(
|
|
|
|
\ "Content-Length: 49\r\n\r\n"
|
|
|
|
\ . '{"id":2,"jsonrpc":"2.0","result":{"foo":"barÜ"}}'
|
|
|
|
\ )
|
|
|
|
|
|
|
|
Execute(ale#lsp#ReadMessageData() should ignore other headers):
|
|
|
|
AssertEqual
|
|
|
|
\ ['', [{'id': 2, 'jsonrpc': '2.0', 'result': {'foo': 'barÜ'}}]],
|
|
|
|
\ ale#lsp#ReadMessageData(
|
|
|
|
\ "First-Header: 49\r\n"
|
|
|
|
\ . "Content-Length: 49\r\n"
|
|
|
|
\ . "Other-Header: 49\r\n"
|
|
|
|
\ . "\r\n"
|
|
|
|
\ . '{"id":2,"jsonrpc":"2.0","result":{"foo":"barÜ"}}'
|
|
|
|
\ )
|
|
|
|
|
|
|
|
Execute(ale#lsp#ReadMessageData() should handle partial messages):
|
|
|
|
let b:data = "Content-Length: 49\r\n\r\n" . '{"id":2,"jsonrpc":"2.0","result":'
|
|
|
|
|
|
|
|
AssertEqual [b:data, []], ale#lsp#ReadMessageData(b:data)
|
|
|
|
|
|
|
|
Execute(ale#lsp#ReadMessageData() should handle multiple messages):
|
|
|
|
AssertEqual
|
|
|
|
\ ['', [
|
|
|
|
\ {'id': 2, 'jsonrpc': '2.0', 'result': {'foo': 'barÜ'}},
|
|
|
|
\ {'id': 2, 'jsonrpc': '2.0', 'result': {'foo123': 'barÜ'}},
|
|
|
|
\ ]],
|
|
|
|
\ ale#lsp#ReadMessageData(
|
|
|
|
\ "Content-Length: 49\r\n\r\n"
|
|
|
|
\ . '{"id":2,"jsonrpc":"2.0","result":{"foo":"barÜ"}}'
|
|
|
|
\ . "Content-Length: 52\r\n\r\n"
|
|
|
|
\ . '{"id":2,"jsonrpc":"2.0","result":{"foo123":"barÜ"}}'
|
|
|
|
\ )
|
|
|
|
|
|
|
|
Execute(ale#lsp#ReadMessageData() should handle a message with part of a second message):
|
|
|
|
let b:data = "Content-Length: 52\r\n\r\n" . '{"id":2,"jsonrpc":"2.'
|
|
|
|
|
|
|
|
AssertEqual
|
|
|
|
\ [b:data, [
|
|
|
|
\ {'id': 2, 'jsonrpc': '2.0', 'result': {'foo': 'barÜ'}},
|
|
|
|
\ ]],
|
|
|
|
\ ale#lsp#ReadMessageData(
|
|
|
|
\ "Content-Length: 49\r\n\r\n"
|
|
|
|
\ . '{"id":2,"jsonrpc":"2.0","result":{"foo":"barÜ"}}'
|
|
|
|
\ . b:data
|
|
|
|
\ )
|
2017-09-03 23:09:46 +00:00
|
|
|
|
|
|
|
Execute(Projects with regular project roots should be registered correctly):
|
|
|
|
let b:conn = {'projects': {}}
|
|
|
|
|
|
|
|
call ale#lsp#RegisterProject(b:conn, '/foo/bar')
|
|
|
|
|
|
|
|
AssertEqual
|
|
|
|
\ {
|
|
|
|
\ 'projects': {
|
|
|
|
\ '/foo/bar': {'initialized': 0, 'message_queue': [], 'init_request_id': 0},
|
|
|
|
\ },
|
|
|
|
\ },
|
|
|
|
\ b:conn
|
|
|
|
|
|
|
|
Execute(Projects with regular project roots should be fetched correctly):
|
|
|
|
let b:conn = {
|
|
|
|
\ 'projects': {
|
|
|
|
\ '/foo/bar': {'initialized': 0, 'message_queue': [], 'init_request_id': 0},
|
|
|
|
\ },
|
|
|
|
\}
|
|
|
|
|
|
|
|
AssertEqual
|
|
|
|
\ {'initialized': 0, 'message_queue': [], 'init_request_id': 0},
|
|
|
|
\ ale#lsp#GetProject(b:conn, '/foo/bar')
|
|
|
|
|
|
|
|
Execute(Projects with empty project roots should be registered correctly):
|
|
|
|
let b:conn = {'projects': {}}
|
|
|
|
|
|
|
|
call ale#lsp#RegisterProject(b:conn, '')
|
|
|
|
|
|
|
|
AssertEqual
|
|
|
|
\ {
|
|
|
|
\ 'projects': {
|
|
|
|
\ '<<EMPTY>>': {'initialized': 1, 'message_queue': [], 'init_request_id': 0},
|
|
|
|
\ },
|
|
|
|
\ },
|
|
|
|
\ b:conn
|
|
|
|
|
|
|
|
Execute(Projects with empty project roots should be fetched correctly):
|
|
|
|
let b:conn = {
|
|
|
|
\ 'projects': {
|
|
|
|
\ '<<EMPTY>>': {'initialized': 1, 'message_queue': [], 'init_request_id': 0},
|
|
|
|
\ },
|
|
|
|
\}
|
|
|
|
|
|
|
|
AssertEqual
|
|
|
|
\ {'initialized': 1, 'message_queue': [], 'init_request_id': 0},
|
|
|
|
\ ale#lsp#GetProject(b:conn, '')
|