181 lines
5.5 KiB
Python
181 lines
5.5 KiB
Python
"""Test Lovelace resources."""
|
|
import copy
|
|
from unittest.mock import patch
|
|
import uuid
|
|
|
|
from homeassistant.components.lovelace import dashboard, resources
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.setup import async_setup_component
|
|
|
|
from tests.typing import WebSocketGenerator
|
|
|
|
RESOURCE_EXAMPLES = [
|
|
{"type": "js", "url": "/local/bla.js"},
|
|
{"type": "css", "url": "/local/bla.css"},
|
|
]
|
|
|
|
|
|
async def test_yaml_resources(
|
|
hass: HomeAssistant, hass_ws_client: WebSocketGenerator
|
|
) -> None:
|
|
"""Test defining resources in configuration.yaml."""
|
|
assert await async_setup_component(
|
|
hass, "lovelace", {"lovelace": {"mode": "yaml", "resources": RESOURCE_EXAMPLES}}
|
|
)
|
|
|
|
client = await hass_ws_client(hass)
|
|
|
|
# Fetch data
|
|
await client.send_json({"id": 5, "type": "lovelace/resources"})
|
|
response = await client.receive_json()
|
|
assert response["success"]
|
|
assert response["result"] == RESOURCE_EXAMPLES
|
|
|
|
|
|
async def test_yaml_resources_backwards(
|
|
hass: HomeAssistant, hass_ws_client: WebSocketGenerator
|
|
) -> None:
|
|
"""Test defining resources in YAML ll config (legacy)."""
|
|
with patch(
|
|
"homeassistant.components.lovelace.dashboard.load_yaml",
|
|
return_value={"resources": RESOURCE_EXAMPLES},
|
|
):
|
|
assert await async_setup_component(
|
|
hass, "lovelace", {"lovelace": {"mode": "yaml"}}
|
|
)
|
|
|
|
client = await hass_ws_client(hass)
|
|
|
|
# Fetch data
|
|
await client.send_json({"id": 5, "type": "lovelace/resources"})
|
|
response = await client.receive_json()
|
|
assert response["success"]
|
|
assert response["result"] == RESOURCE_EXAMPLES
|
|
|
|
|
|
async def test_storage_resources(hass, hass_ws_client, hass_storage):
|
|
"""Test defining resources in storage config."""
|
|
resource_config = [{**item, "id": uuid.uuid4().hex} for item in RESOURCE_EXAMPLES]
|
|
hass_storage[resources.RESOURCE_STORAGE_KEY] = {
|
|
"key": resources.RESOURCE_STORAGE_KEY,
|
|
"version": 1,
|
|
"data": {"items": resource_config},
|
|
}
|
|
assert await async_setup_component(hass, "lovelace", {})
|
|
|
|
client = await hass_ws_client(hass)
|
|
|
|
# Fetch data
|
|
await client.send_json({"id": 5, "type": "lovelace/resources"})
|
|
response = await client.receive_json()
|
|
assert response["success"]
|
|
assert response["result"] == resource_config
|
|
|
|
|
|
async def test_storage_resources_import(hass, hass_ws_client, hass_storage):
|
|
"""Test importing resources from storage config."""
|
|
assert await async_setup_component(hass, "lovelace", {})
|
|
hass_storage[dashboard.CONFIG_STORAGE_KEY_DEFAULT] = {
|
|
"key": "lovelace",
|
|
"version": 1,
|
|
"data": {"config": {"resources": copy.deepcopy(RESOURCE_EXAMPLES)}},
|
|
}
|
|
|
|
client = await hass_ws_client(hass)
|
|
|
|
# Fetch data
|
|
await client.send_json({"id": 5, "type": "lovelace/resources"})
|
|
response = await client.receive_json()
|
|
assert response["success"]
|
|
assert (
|
|
response["result"]
|
|
== hass_storage[resources.RESOURCE_STORAGE_KEY]["data"]["items"]
|
|
)
|
|
assert (
|
|
"resources"
|
|
not in hass_storage[dashboard.CONFIG_STORAGE_KEY_DEFAULT]["data"]["config"]
|
|
)
|
|
|
|
# Add a resource
|
|
await client.send_json(
|
|
{
|
|
"id": 6,
|
|
"type": "lovelace/resources/create",
|
|
"res_type": "module",
|
|
"url": "/local/yo.js",
|
|
}
|
|
)
|
|
response = await client.receive_json()
|
|
assert response["success"]
|
|
|
|
await client.send_json({"id": 7, "type": "lovelace/resources"})
|
|
response = await client.receive_json()
|
|
assert response["success"]
|
|
|
|
last_item = response["result"][-1]
|
|
assert last_item["type"] == "module"
|
|
assert last_item["url"] == "/local/yo.js"
|
|
|
|
# Update a resource
|
|
first_item = response["result"][0]
|
|
|
|
await client.send_json(
|
|
{
|
|
"id": 8,
|
|
"type": "lovelace/resources/update",
|
|
"resource_id": first_item["id"],
|
|
"res_type": "css",
|
|
"url": "/local/updated.css",
|
|
}
|
|
)
|
|
response = await client.receive_json()
|
|
assert response["success"]
|
|
|
|
await client.send_json({"id": 9, "type": "lovelace/resources"})
|
|
response = await client.receive_json()
|
|
assert response["success"]
|
|
|
|
first_item = response["result"][0]
|
|
assert first_item["type"] == "css"
|
|
assert first_item["url"] == "/local/updated.css"
|
|
|
|
# Delete resources
|
|
await client.send_json(
|
|
{
|
|
"id": 10,
|
|
"type": "lovelace/resources/delete",
|
|
"resource_id": first_item["id"],
|
|
}
|
|
)
|
|
response = await client.receive_json()
|
|
assert response["success"]
|
|
|
|
await client.send_json({"id": 11, "type": "lovelace/resources"})
|
|
response = await client.receive_json()
|
|
assert response["success"]
|
|
|
|
assert len(response["result"]) == 2
|
|
assert first_item["id"] not in (item["id"] for item in response["result"])
|
|
|
|
|
|
async def test_storage_resources_import_invalid(hass, hass_ws_client, hass_storage):
|
|
"""Test importing resources from storage config."""
|
|
assert await async_setup_component(hass, "lovelace", {})
|
|
hass_storage[dashboard.CONFIG_STORAGE_KEY_DEFAULT] = {
|
|
"key": "lovelace",
|
|
"version": 1,
|
|
"data": {"config": {"resources": [{"invalid": "resource"}]}},
|
|
}
|
|
|
|
client = await hass_ws_client(hass)
|
|
|
|
# Fetch data
|
|
await client.send_json({"id": 5, "type": "lovelace/resources"})
|
|
response = await client.receive_json()
|
|
assert response["success"]
|
|
assert response["result"] == []
|
|
assert (
|
|
"resources"
|
|
in hass_storage[dashboard.CONFIG_STORAGE_KEY_DEFAULT]["data"]["config"]
|
|
)
|