* Add language to conversation and intent response * Move language to intent response instead of speech * Extend intent response for voice MVP * Add tests for error conditions in conversation/process * Move intent response type data into "data" field * Move intent response error message back to speech * Remove "success" from intent response * Add id to target in intent response * target defaults to None * Update homeassistant/helpers/intent.py * Fix test * Return conversation_id and multiple targets * Clean up git mess * Fix linting errors * Fix more async_handle signatures * Separate conversation_id and IntentResponse * Add unknown error code * Add ConversationResult * Don't set domain on single entity * Language is required for intent response * Add partial_action_done * Default language in almond agent * Remove partial_action_done * Fix linting * Rename success/fail targets Co-authored-by: Paulus Schoutsen <balloob@gmail.com>
180 lines
5.9 KiB
Python
180 lines
5.9 KiB
Python
"""Tests for Intent component."""
|
|
import pytest
|
|
|
|
from homeassistant.components.cover import SERVICE_OPEN_COVER
|
|
from homeassistant.const import SERVICE_TOGGLE, SERVICE_TURN_OFF, SERVICE_TURN_ON
|
|
from homeassistant.helpers import intent
|
|
from homeassistant.setup import async_setup_component
|
|
|
|
from tests.common import async_mock_service
|
|
|
|
|
|
async def test_http_handle_intent(hass, hass_client, hass_admin_user):
|
|
"""Test handle intent via HTTP API."""
|
|
|
|
class TestIntentHandler(intent.IntentHandler):
|
|
"""Test Intent Handler."""
|
|
|
|
intent_type = "OrderBeer"
|
|
|
|
async def async_handle(self, intent):
|
|
"""Handle the intent."""
|
|
assert intent.context.user_id == hass_admin_user.id
|
|
response = intent.create_response()
|
|
response.async_set_speech(
|
|
"I've ordered a {}!".format(intent.slots["type"]["value"])
|
|
)
|
|
response.async_set_card(
|
|
"Beer ordered", "You chose a {}.".format(intent.slots["type"]["value"])
|
|
)
|
|
return response
|
|
|
|
intent.async_register(hass, TestIntentHandler())
|
|
|
|
result = await async_setup_component(hass, "intent", {})
|
|
assert result
|
|
|
|
client = await hass_client()
|
|
resp = await client.post(
|
|
"/api/intent/handle", json={"name": "OrderBeer", "data": {"type": "Belgian"}}
|
|
)
|
|
|
|
assert resp.status == 200
|
|
data = await resp.json()
|
|
|
|
assert data == {
|
|
"card": {
|
|
"simple": {"content": "You chose a Belgian.", "title": "Beer ordered"}
|
|
},
|
|
"speech": {
|
|
"plain": {
|
|
"extra_data": None,
|
|
"speech": "I've ordered a Belgian!",
|
|
}
|
|
},
|
|
"language": hass.config.language,
|
|
"response_type": "action_done",
|
|
"data": {"targets": [], "success": [], "failed": []},
|
|
}
|
|
|
|
|
|
async def test_cover_intents_loading(hass):
|
|
"""Test Cover Intents Loading."""
|
|
assert await async_setup_component(hass, "intent", {})
|
|
|
|
with pytest.raises(intent.UnknownIntent):
|
|
await intent.async_handle(
|
|
hass, "test", "HassOpenCover", {"name": {"value": "garage door"}}
|
|
)
|
|
|
|
assert await async_setup_component(hass, "cover", {})
|
|
await hass.async_block_till_done()
|
|
|
|
hass.states.async_set("cover.garage_door", "closed")
|
|
calls = async_mock_service(hass, "cover", SERVICE_OPEN_COVER)
|
|
|
|
response = await intent.async_handle(
|
|
hass, "test", "HassOpenCover", {"name": {"value": "garage door"}}
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
assert response.speech["plain"]["speech"] == "Opened garage door"
|
|
assert len(calls) == 1
|
|
call = calls[0]
|
|
assert call.domain == "cover"
|
|
assert call.service == "open_cover"
|
|
assert call.data == {"entity_id": "cover.garage_door"}
|
|
|
|
|
|
async def test_turn_on_intent(hass):
|
|
"""Test HassTurnOn intent."""
|
|
result = await async_setup_component(hass, "homeassistant", {})
|
|
result = await async_setup_component(hass, "intent", {})
|
|
await hass.async_block_till_done()
|
|
assert result
|
|
|
|
hass.states.async_set("light.test_light", "off")
|
|
calls = async_mock_service(hass, "light", SERVICE_TURN_ON)
|
|
|
|
response = await intent.async_handle(
|
|
hass, "test", "HassTurnOn", {"name": {"value": "test light"}}
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
assert response.speech["plain"]["speech"] == "Turned test light on"
|
|
assert len(calls) == 1
|
|
call = calls[0]
|
|
assert call.domain == "light"
|
|
assert call.service == "turn_on"
|
|
assert call.data == {"entity_id": ["light.test_light"]}
|
|
|
|
|
|
async def test_turn_off_intent(hass):
|
|
"""Test HassTurnOff intent."""
|
|
result = await async_setup_component(hass, "homeassistant", {})
|
|
result = await async_setup_component(hass, "intent", {})
|
|
assert result
|
|
|
|
hass.states.async_set("light.test_light", "on")
|
|
calls = async_mock_service(hass, "light", SERVICE_TURN_OFF)
|
|
|
|
response = await intent.async_handle(
|
|
hass, "test", "HassTurnOff", {"name": {"value": "test light"}}
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
assert response.speech["plain"]["speech"] == "Turned test light off"
|
|
assert len(calls) == 1
|
|
call = calls[0]
|
|
assert call.domain == "light"
|
|
assert call.service == "turn_off"
|
|
assert call.data == {"entity_id": ["light.test_light"]}
|
|
|
|
|
|
async def test_toggle_intent(hass):
|
|
"""Test HassToggle intent."""
|
|
result = await async_setup_component(hass, "homeassistant", {})
|
|
result = await async_setup_component(hass, "intent", {})
|
|
assert result
|
|
|
|
hass.states.async_set("light.test_light", "off")
|
|
calls = async_mock_service(hass, "light", SERVICE_TOGGLE)
|
|
|
|
response = await intent.async_handle(
|
|
hass, "test", "HassToggle", {"name": {"value": "test light"}}
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
assert response.speech["plain"]["speech"] == "Toggled test light"
|
|
assert len(calls) == 1
|
|
call = calls[0]
|
|
assert call.domain == "light"
|
|
assert call.service == "toggle"
|
|
assert call.data == {"entity_id": ["light.test_light"]}
|
|
|
|
|
|
async def test_turn_on_multiple_intent(hass):
|
|
"""Test HassTurnOn intent with multiple similar entities.
|
|
|
|
This tests that matching finds the proper entity among similar names.
|
|
"""
|
|
result = await async_setup_component(hass, "homeassistant", {})
|
|
result = await async_setup_component(hass, "intent", {})
|
|
assert result
|
|
|
|
hass.states.async_set("light.test_light", "off")
|
|
hass.states.async_set("light.test_lights_2", "off")
|
|
hass.states.async_set("light.test_lighter", "off")
|
|
calls = async_mock_service(hass, "light", SERVICE_TURN_ON)
|
|
|
|
response = await intent.async_handle(
|
|
hass, "test", "HassTurnOn", {"name": {"value": "test lights"}}
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
assert response.speech["plain"]["speech"] == "Turned test lights 2 on"
|
|
assert len(calls) == 1
|
|
call = calls[0]
|
|
assert call.domain == "light"
|
|
assert call.service == "turn_on"
|
|
assert call.data == {"entity_id": ["light.test_lights_2"]}
|