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
|
import asyncio
from unittest.mock import patch
import pytest
from dbus_fast import Message
from dbus_fast.aio import MessageBus
@pytest.mark.asyncio
async def test_bus_disconnect_before_reply():
"""In this test, the bus disconnects before the reply comes in. Make sure
the caller receives a reply with the error instead of hanging."""
bus = MessageBus()
assert not bus.connected
await bus.connect()
assert bus.connected
with patch.object(bus._writer, "_write_without_remove_writer"):
ping = bus.call(
Message(
destination="org.freedesktop.DBus",
path="/org/freedesktop/DBus",
interface="org.freedesktop.DBus",
member="Ping",
)
)
asyncio.get_running_loop().call_soon(bus.disconnect)
with pytest.raises((EOFError, BrokenPipeError)):
await ping
assert bus._disconnected
assert not bus.connected
await asyncio.wait_for(bus.wait_for_disconnect(), timeout=1)
@pytest.mark.asyncio
async def test_unexpected_disconnect():
bus = MessageBus()
class FakeSocket:
def send(self, *args, **kwargs):
raise OSError
assert not bus.connected
await bus.connect()
assert bus.connected
with (
patch.object(bus._writer, "_write_without_remove_writer"),
patch.object(bus._writer, "sock", FakeSocket()),
):
ping = bus.call(
Message(
destination="org.freedesktop.DBus",
path="/org/freedesktop/DBus",
interface="org.freedesktop.DBus",
member="Ping",
)
)
with pytest.raises(OSError):
await ping
assert bus._disconnected
assert not bus.connected
with pytest.raises(OSError):
await asyncio.wait_for(bus.wait_for_disconnect(), timeout=1)
bus.disconnect()
with pytest.raises(OSError):
await asyncio.wait_for(bus.wait_for_disconnect(), timeout=1)
|