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
|
# 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 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):
writer.write({
'id': 'hello',
'method': 'method',
'params': {}
})
if 'ujson' in sys.modules:
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":{}}'
)
else:
assert wfile.getvalue() == (
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": {}}'
)
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,
tzinfo=datetime.timezone.utc,
))
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'
]
|