-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathtest_streams.py
159 lines (126 loc) · 3.85 KB
/
test_streams.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
# Copyright 2017-2020 Palantir Technologies, Inc.
# Copyright 2021- Python Language Server Contributors.
# pylint: disable=redefined-outer-name
from io import BytesIO
import datetime
import sys
from unittest import mock
import json
import pytest
from pylsp_jsonrpc.streams import JsonRpcStreamReader, JsonRpcStreamWriter
@pytest.fixture()
def rfile():
return BytesIO()
@pytest.fixture()
def wfile():
return BytesIO()
@pytest.fixture()
def reader(rfile):
return JsonRpcStreamReader(rfile)
@pytest.fixture()
def writer(wfile):
return JsonRpcStreamWriter(wfile, sort_keys=True)
def test_reader(rfile, reader):
rfile.write(
b'Content-Length: 49\r\n'
b'Content-Type: application/vscode-jsonrpc; charset=utf8\r\n'
b'\r\n'
b'{"id": "hello", "method": "method", "params": {}}'
)
rfile.seek(0)
consumer = mock.Mock()
reader.listen(consumer)
consumer.assert_called_once_with({
'id': 'hello',
'method': 'method',
'params': {}
})
def test_reader_bad_message(rfile, reader):
rfile.write(b'Hello world')
rfile.seek(0)
# Ensure the listener doesn't throw
consumer = mock.Mock()
reader.listen(consumer)
consumer.assert_not_called()
def test_reader_bad_json(rfile, reader):
rfile.write(
b'Content-Length: 8\r\n'
b'Content-Type: application/vscode-jsonrpc; charset=utf8\r\n'
b'\r\n'
b'{hello}}'
)
rfile.seek(0)
# Ensure the listener doesn't throw
consumer = mock.Mock()
reader.listen(consumer)
consumer.assert_not_called()
def test_writer(wfile, writer):
data = {
'id': 'hello',
'method': 'method',
'params': {}
}
writer.write(data)
assert wfile.getvalue() == (
b'Content-Length: 44\r\n'
b'Content-Type: application/vscode-jsonrpc; charset=utf8\r\n'
b'\r\n'
b'{"id":"hello","method":"method","params":{}}'
)
def test_writer_stdlib_json(wfile):
"""Test the stream writer using the standard json lib."""
data = {
'id': 'hello',
'method': 'method',
'params': {}
}
orig_modules = sys.modules
try:
# Pretend orjson wasn't imported when initializing the writer.
sys.modules = {'json': json}
std_json_writer = JsonRpcStreamWriter(wfile, sort_keys=True)
finally:
sys.modules = orig_modules
with mock.patch('pylsp_jsonrpc.streams.json') as streams_json:
# Mock the imported json's dumps function to use the stdlib's dumps,
# whether orjson is available or not.
streams_json.dumps = json.dumps
std_json_writer.write(data)
assert wfile.getvalue() == (
b'Content-Length: 44\r\n'
b'Content-Type: application/vscode-jsonrpc; charset=utf8\r\n'
b'\r\n'
b'{"id":"hello","method":"method","params":{}}'
)
class JsonDatetime(datetime.datetime):
"""Monkey path json datetime."""
def __json__(self):
if sys.version_info.major == 3:
dif = int(self.timestamp())
else:
dif = int((self - datetime.datetime(1970, 1, 1)).total_seconds())
return f'{dif}'
def test_writer_bad_message(wfile, writer):
# A datetime isn't serializable(or poorly serializable),
# ensure the write method doesn't throw, but the result could be empty
# or the correct datetime
datetime.datetime = JsonDatetime
writer.write(datetime.datetime(
year=2019,
month=1,
day=1,
hour=1,
minute=1,
second=1,
))
assert wfile.getvalue() in [
b'',
b'Content-Length: 10\r\n'
b'Content-Type: application/vscode-jsonrpc; charset=utf8\r\n'
b'\r\n'
b'1546304461',
b'Content-Length: 10\r\n'
b'Content-Type: application/vscode-jsonrpc; charset=utf8\r\n'
b'\r\n'
b'1546322461'
]