FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
docker-python/tests/test_python_lsp_server.py at main · CrazyAI9/docker-python · GitHub
CrazyAI9
/
docker-python
Public
forked from
Kaggle/docker-python
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
docker-python
/
tests
/
test_python_lsp_server.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
18 lines (15 loc) · 620 Bytes
Breadcrumbs
docker-python
/
tests
/
test_python_lsp_server.py
Copy path
File metadata and controls
18 lines (15 loc) · 620 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import
subprocess
import
unittest
class
TestPythonLspServer
(
unittest
.
TestCase
):
def
test_initialize
(
self
):
server
=
subprocess
.
Popen
(
'python -m pylsp --check-parent-process'
,
shell
=
True
,
stdin
=
subprocess
.
PIPE
,
stdout
=
subprocess
.
PIPE
)
response
=
server
.
communicate
(
input
=
b'Content-Length: 67
\r
\n
'
b'Content-Type: application/vscode-jsonrpc; charset=utf8
\r
\n
'
b'
\r
\n
'
b'{"id": "a", "jsonrpc": "2.0", "method": "initialize", "params": {}}'
)[
0
]
assert
'capabilities'
in
response
.
decode
(
'utf-8'
)
Back
|
FazBrowse Home
|
New Git URL