34 lines
958 B
Python
34 lines
958 B
Python
import pytest
|
|
import asyncio
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_did_open(client, test_data_dir):
|
|
await client.initialize(test_data_dir / "hello_world")
|
|
await client.did_open("main.cpp")
|
|
await asyncio.sleep(5)
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_did_change(client, test_data_dir):
|
|
await client.initialize(test_data_dir / "hello_world")
|
|
await client.did_open("main.cpp")
|
|
|
|
# Test frequently change content will not make server crash.
|
|
content = client.get_file("main.cpp").content
|
|
|
|
for _ in range(0, 20):
|
|
content += "\n"
|
|
await asyncio.sleep(0.2)
|
|
await client.did_change("main.cpp", content)
|
|
|
|
await asyncio.sleep(5)
|
|
|
|
|
|
@pytest.mark.parametrize("client", [{"config_project": "clang_tidy"}], indirect=True)
|
|
@pytest.mark.asyncio
|
|
async def test_clang_tidy(client, test_data_dir):
|
|
await client.initialize(test_data_dir / "clang_tidy")
|
|
await client.did_open("main.cpp")
|
|
await asyncio.sleep(5)
|