mirror of
https://github.com/home-assistant/core.git
synced 2026-05-02 22:52:06 +01:00
58 lines
1.5 KiB
Python
58 lines
1.5 KiB
Python
"""Tests for Proxmox VE integration."""
|
|
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import entity_registry as er
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
# Example permissions dict with audit permissions granted for nodes and vms
|
|
AUDIT_PERMISSIONS = {
|
|
"/nodes": {
|
|
"VM.GuestAgent.Audit": 1,
|
|
"Sys.Audit": 1,
|
|
"VM.Audit": 1,
|
|
},
|
|
"/vms": {
|
|
"Sys.Audit": 1,
|
|
"VM.GuestAgent.Audit": 1,
|
|
"VM.Audit": 1,
|
|
},
|
|
"/": {
|
|
"VM.Audit": 1,
|
|
"VM.GuestAgent.Audit": 1,
|
|
"Sys.Audit": 1,
|
|
},
|
|
}
|
|
|
|
POWER_PERMISSIONS = {
|
|
"/": {"VM.PowerMgmt": 1},
|
|
"/nodes": {"VM.PowerMgmt": 1},
|
|
"/vms": {"VM.PowerMgmt": 1},
|
|
"/vms/101": {"VM.PowerMgmt": 0},
|
|
}
|
|
|
|
MERGED_PERMISSIONS = {
|
|
key: {**AUDIT_PERMISSIONS.get(key, {}), **POWER_PERMISSIONS.get(key, {})}
|
|
for key in set(AUDIT_PERMISSIONS) | set(POWER_PERMISSIONS)
|
|
}
|
|
|
|
|
|
async def setup_integration(
|
|
hass: HomeAssistant,
|
|
config_entry: MockConfigEntry,
|
|
) -> None:
|
|
"""Set up the Proxmox VE integration for testing and enable all entities."""
|
|
config_entry.add_to_hass(hass)
|
|
await hass.config_entries.async_setup(config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
entity_registry = er.async_get(hass)
|
|
|
|
for entry in er.async_entries_for_config_entry(
|
|
entity_registry, config_entry.entry_id
|
|
):
|
|
if entry.disabled_by is not None:
|
|
entity_registry.async_update_entity(entry.entity_id, disabled_by=None)
|
|
|
|
await hass.async_block_till_done()
|