-
-
Notifications
You must be signed in to change notification settings - Fork 106
/
test_protocol.py
407 lines (342 loc) · 10.9 KB
/
test_protocol.py
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
############################################################################
# Copyright(c) Open Law Library. All rights reserved. #
# See ThirdPartyNotices.txt in the project root for additional notices. #
# #
# Licensed under the Apache License, Version 2.0 (the "License") #
# you may not use this file except in compliance with the License. #
# You may obtain a copy of the License at #
# #
# http: // www.apache.org/licenses/LICENSE-2.0 #
# #
# Unless required by applicable law or agreed to in writing, software #
# distributed under the License is distributed on an "AS IS" BASIS, #
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. #
# See the License for the specific language governing permissions and #
# limitations under the License. #
############################################################################
import io
import json
from concurrent.futures import Future
from functools import partial
from pathlib import Path
from typing import Optional
from unittest.mock import Mock
import attrs
import pytest
from pygls.exceptions import JsonRpcException, JsonRpcInvalidParams
from pygls.lsp import get_method_params_type
from pygls.lsp.types import (
ClientCapabilities,
CompletionItem,
CompletionItemKind,
InitializeParams,
InitializeResult,
ProgressParams,
WorkDoneProgressBegin,
)
from pygls.protocol import (
JsonRPCNotification,
JsonRPCProtocol,
JsonRPCRequestMessage,
JsonRPCResponseMessage,
)
from pygls.protocol import deserialize_message as _deserialize_message
TEST_METHOD = "test_method"
@attrs.define
class FeatureParams:
@attrs.define
class InnerType:
inner_field: str
field_a: str
field_b: Optional[InnerType] = None
TEST_LSP_METHODS_MAP = {
TEST_METHOD: (None, None, FeatureParams, None),
}
deserialize_message = partial(
_deserialize_message,
get_params_type=partial(
get_method_params_type, lsp_methods_map=TEST_LSP_METHODS_MAP
),
)
def test_deserialize_notification_message_valid_params():
params = """
{
"jsonrpc": "2.0",
"method": "test_method",
"params": {
"fieldA": "test_a",
"fieldB": {
"innerField": "test_inner"
}
}
}
"""
result = json.loads(params, object_hook=deserialize_message)
assert isinstance(result, JsonRPCNotification)
assert result.jsonrpc == "2.0"
assert isinstance(result.params, FeatureParams)
assert result.params.field_a == "test_a"
assert isinstance(result.params.field_b, FeatureParams.InnerType)
assert result.params.field_b.inner_field == "test_inner"
def test_deserialize_notification_message_bad_params_should_raise_error():
params = """
{
"jsonrpc": "2.0",
"method": "test_method",
"params": {
"field_a": "test_a",
"field_b": {
"wrong_field_name": "test_inner"
}
}
}
"""
with pytest.raises(JsonRpcInvalidParams):
json.loads(params, object_hook=deserialize_message)
@pytest.mark.parametrize(
"params, expected",
[
(
ProgressParams(
token="id1",
value=WorkDoneProgressBegin(
kind='begin',
title="Begin progress",
percentage=0,
),
),
{
"jsonrpc": "2.0",
"method": "test/notification",
"params": {
"token": "id1",
"value": {
"kind": "begin",
"percentage": 0,
"title": "Begin progress",
},
},
},
),
],
)
def test_serialize_notification_message(params, expected):
"""
Ensure that we can serialize notification messages, retaining all
expected fields.
"""
buffer = io.StringIO()
protocol = JsonRPCProtocol(None)
protocol._send_only_body = True
protocol.connection_made(buffer)
protocol.notify("test/notification", params=params)
actual = json.loads(buffer.getvalue())
assert actual == expected
def test_deserialize_response_message():
params = """
{
"jsonrpc": "2.0",
"id": "id",
"result": "1"
}
"""
result = json.loads(params, object_hook=deserialize_message)
assert isinstance(result, JsonRPCResponseMessage)
assert result.jsonrpc == "2.0"
assert result.id == "id"
assert result.result == "1"
def test_deserialize_request_message_with_registered_type():
params = """
{
"jsonrpc": "2.0",
"id": "id",
"method": "test_method",
"params": {
"fieldA": "test_a",
"fieldB": {
"innerField": "test_inner"
}
}
}
"""
result = json.loads(params, object_hook=deserialize_message)
assert isinstance(result, JsonRPCRequestMessage)
assert result.jsonrpc == "2.0"
assert result.id == "id"
assert isinstance(result.params, FeatureParams)
assert result.params.field_a == "test_a"
assert isinstance(result.params.field_b, FeatureParams.InnerType)
assert result.params.field_b.inner_field == "test_inner"
def test_deserialize_request_message_without_registered_type():
params = """
{
"jsonrpc": "2.0",
"id": "id",
"method": "random",
"params": {
"field_a": "test_a",
"field_b": {
"inner_field": "test_inner"
}
}
}
"""
result = json.loads(params, object_hook=deserialize_message)
assert isinstance(result, JsonRPCRequestMessage)
assert result.jsonrpc == "2.0"
assert result.id == "id"
assert type(result.params).__name__ == "Object"
assert result.params.field_a == "test_a"
assert result.params.field_b.inner_field == "test_inner"
@pytest.mark.parametrize(
"result, expected",
[
(None, {"jsonrpc": "2.0", "id": "1", "result": None}),
(
[
CompletionItem(label="example-one"),
CompletionItem(
label="example-two",
kind=CompletionItemKind.CLASS,
preselect=False,
deprecated=True,
),
],
{
"jsonrpc": "2.0",
"id": "1",
"result": [
{"label": "example-one"},
{
"label": "example-two",
"kind": 7, # CompletionItemKind.Class
"preselect": False,
"deprecated": True,
},
],
},
),
],
)
def test_serialize_response_message(result, expected):
"""
Ensure that we can serialize response messages, retaining all expected
fields.
"""
buffer = io.StringIO()
protocol = JsonRPCProtocol(None)
protocol._send_only_body = True
protocol.connection_made(buffer)
protocol._send_response("1", result=result)
actual = json.loads(buffer.getvalue())
assert actual == expected
def test_data_received_without_content_type(client_server):
_, server = client_server
body = json.dumps(
{
"jsonrpc": "2.0",
"method": "test",
"params": 1,
}
)
message = "\r\n".join(
(
"Content-Length: " + str(len(body)),
"",
body,
)
)
data = bytes(message, "utf-8")
server.lsp.data_received(data)
def test_data_received_content_type_first_should_handle_message(client_server):
_, server = client_server
body = json.dumps(
{
"jsonrpc": "2.0",
"method": "test",
"params": 1,
}
)
message = "\r\n".join(
(
"Content-Type: application/vscode-jsonrpc; charset=utf-8",
"Content-Length: " + str(len(body)),
"",
body,
)
)
data = bytes(message, "utf-8")
server.lsp.data_received(data)
def dummy_message(param=1):
body = json.dumps(
{
"jsonrpc": "2.0",
"method": "test",
"params": param,
}
)
message = "\r\n".join(
(
"Content-Length: " + str(len(body)),
"Content-Type: application/vscode-jsonrpc; charset=utf-8",
"",
body,
)
)
return bytes(message, "utf-8")
def test_data_received_single_message_should_handle_message(client_server):
_, server = client_server
data = dummy_message()
server.lsp.data_received(data)
def test_data_received_partial_message_should_handle_message(client_server):
_, server = client_server
data = dummy_message()
partial = len(data) - 5
server.lsp.data_received(data[:partial])
server.lsp.data_received(data[partial:])
def test_data_received_multi_message_should_handle_messages(client_server):
_, server = client_server
messages = (dummy_message(i) for i in range(3))
data = b"".join(messages)
server.lsp.data_received(data)
def test_data_received_error_should_raise_jsonrpc_error(client_server):
_, server = client_server
body = json.dumps(
{
"jsonrpc": "2.0",
"id": "err",
"error": {
"code": -1,
"message": "message for you sir",
},
}
)
message = "\r\n".join(
[
"Content-Length: " + str(len(body)),
"Content-Type: application/vscode-jsonrpc; charset=utf-8",
"",
body,
]
).encode("utf-8")
future = server.lsp._server_request_futures["err"] = Future()
server.lsp.data_received(message)
with pytest.raises(JsonRpcException, match="message for you sir"):
future.result()
def test_initialize_should_return_server_capabilities(client_server):
_, server = client_server
params = InitializeParams(
process_id=1234,
root_uri=Path(__file__).parent.as_uri(),
capabilities=ClientCapabilities(),
)
server_capabilities = server.lsp.lsp_initialize(params)
assert isinstance(server_capabilities, InitializeResult)
def test_ignore_unknown_notification(client_server):
_, server = client_server
fn = server.lsp._execute_notification
server.lsp._execute_notification = Mock()
server.lsp._handle_notification("random/notification", None)
assert not server.lsp._execute_notification.called
# Remove mock
server.lsp._execute_notification = fn