mirror of
https://github.com/home-assistant/supervisor.git
synced 2025-12-24 12:29:08 +00:00
19 lines
594 B
Python
19 lines
594 B
Python
"""Test System/Agent dbus interface."""
|
|
|
|
import pytest
|
|
|
|
from supervisor.coresys import CoreSys
|
|
from supervisor.exceptions import DBusNotConnectedError
|
|
|
|
|
|
async def test_dbus_osagent_system_wipe(coresys: CoreSys, dbus: list[str]):
|
|
"""Test wipe data partition on host."""
|
|
with pytest.raises(DBusNotConnectedError):
|
|
await coresys.dbus.agent.system.schedule_wipe_device()
|
|
|
|
await coresys.dbus.agent.connect()
|
|
|
|
dbus.clear()
|
|
assert await coresys.dbus.agent.system.schedule_wipe_device() is None
|
|
assert dbus == ["/io/hass/os/System-io.hass.os.System.ScheduleWipeDevice"]
|