mirror of
https://github.com/home-assistant/core.git
synced 2025-07-23 21:27:38 +00:00
Add support for Alexa intent slot synonyms. (#10469)
This commit is contained in:
parent
7d9d299d5a
commit
16dd90ac78
@ -138,10 +138,28 @@ class AlexaResponse(object):
|
|||||||
# Intent is None if request was a LaunchRequest or SessionEndedRequest
|
# Intent is None if request was a LaunchRequest or SessionEndedRequest
|
||||||
if intent_info is not None:
|
if intent_info is not None:
|
||||||
for key, value in intent_info.get('slots', {}).items():
|
for key, value in intent_info.get('slots', {}).items():
|
||||||
if 'value' in value:
|
|
||||||
underscored_key = key.replace('.', '_')
|
underscored_key = key.replace('.', '_')
|
||||||
|
|
||||||
|
if 'value' in value:
|
||||||
self.variables[underscored_key] = value['value']
|
self.variables[underscored_key] = value['value']
|
||||||
|
|
||||||
|
if 'resolutions' in value:
|
||||||
|
self._populate_resolved_values(underscored_key, value)
|
||||||
|
|
||||||
|
def _populate_resolved_values(self, underscored_key, value):
|
||||||
|
for resolution in value['resolutions']['resolutionsPerAuthority']:
|
||||||
|
if 'values' not in resolution:
|
||||||
|
continue
|
||||||
|
|
||||||
|
for resolved in resolution['values']:
|
||||||
|
if 'value' not in resolved:
|
||||||
|
continue
|
||||||
|
|
||||||
|
if 'id' in resolved['value']:
|
||||||
|
self.variables[underscored_key] = resolved['value']['id']
|
||||||
|
elif 'name' in resolved['value']:
|
||||||
|
self.variables[underscored_key] = resolved['value']['name']
|
||||||
|
|
||||||
def add_card(self, card_type, title, content):
|
def add_card(self, card_type, title, content):
|
||||||
"""Add a card to the response."""
|
"""Add a card to the response."""
|
||||||
assert self.card is None
|
assert self.card is None
|
||||||
|
@ -13,6 +13,7 @@ from homeassistant.components.alexa import intent
|
|||||||
SESSION_ID = "amzn1.echo-api.session.0000000-0000-0000-0000-00000000000"
|
SESSION_ID = "amzn1.echo-api.session.0000000-0000-0000-0000-00000000000"
|
||||||
APPLICATION_ID = "amzn1.echo-sdk-ams.app.000000-d0ed-0000-ad00-000000d00ebe"
|
APPLICATION_ID = "amzn1.echo-sdk-ams.app.000000-d0ed-0000-ad00-000000d00ebe"
|
||||||
REQUEST_ID = "amzn1.echo-api.request.0000000-0000-0000-0000-00000000000"
|
REQUEST_ID = "amzn1.echo-api.request.0000000-0000-0000-0000-00000000000"
|
||||||
|
AUTHORITY_ID = "amzn1.er-authority.000000-d0ed-0000-ad00-000000d00ebe.ZODIAC"
|
||||||
|
|
||||||
# pylint: disable=invalid-name
|
# pylint: disable=invalid-name
|
||||||
calls = []
|
calls = []
|
||||||
@ -90,7 +91,7 @@ def alexa_client(loop, hass, test_client):
|
|||||||
"type": "plain",
|
"type": "plain",
|
||||||
"text": "LaunchRequest has been received.",
|
"text": "LaunchRequest has been received.",
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
}
|
}
|
||||||
}))
|
}))
|
||||||
return loop.run_until_complete(test_client(hass.http.app))
|
return loop.run_until_complete(test_client(hass.http.app))
|
||||||
@ -207,6 +208,131 @@ def test_intent_request_with_slots(alexa_client):
|
|||||||
assert text == "You told us your sign is virgo."
|
assert text == "You told us your sign is virgo."
|
||||||
|
|
||||||
|
|
||||||
|
@asyncio.coroutine
|
||||||
|
def test_intent_request_with_slots_and_id_resolution(alexa_client):
|
||||||
|
"""Test a request with slots and an id synonym."""
|
||||||
|
data = {
|
||||||
|
"version": "1.0",
|
||||||
|
"session": {
|
||||||
|
"new": False,
|
||||||
|
"sessionId": SESSION_ID,
|
||||||
|
"application": {
|
||||||
|
"applicationId": APPLICATION_ID
|
||||||
|
},
|
||||||
|
"attributes": {
|
||||||
|
"supportedHoroscopePeriods": {
|
||||||
|
"daily": True,
|
||||||
|
"weekly": False,
|
||||||
|
"monthly": False
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"user": {
|
||||||
|
"userId": "amzn1.account.AM3B00000000000000000000000"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"request": {
|
||||||
|
"type": "IntentRequest",
|
||||||
|
"requestId": REQUEST_ID,
|
||||||
|
"timestamp": "2015-05-13T12:34:56Z",
|
||||||
|
"intent": {
|
||||||
|
"name": "GetZodiacHoroscopeIntent",
|
||||||
|
"slots": {
|
||||||
|
"ZodiacSign": {
|
||||||
|
"name": "ZodiacSign",
|
||||||
|
"value": "virgo",
|
||||||
|
"resolutions": {
|
||||||
|
"resolutionsPerAuthority": [
|
||||||
|
{
|
||||||
|
"authority": AUTHORITY_ID,
|
||||||
|
"status": {
|
||||||
|
"code": "ER_SUCCESS_MATCH"
|
||||||
|
},
|
||||||
|
"values": [
|
||||||
|
{
|
||||||
|
"value": {
|
||||||
|
"name": "Virgo",
|
||||||
|
"id": "VIRGO"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
req = yield from _intent_req(alexa_client, data)
|
||||||
|
assert req.status == 200
|
||||||
|
data = yield from req.json()
|
||||||
|
text = data.get("response", {}).get("outputSpeech",
|
||||||
|
{}).get("text")
|
||||||
|
assert text == "You told us your sign is VIRGO."
|
||||||
|
|
||||||
|
|
||||||
|
@asyncio.coroutine
|
||||||
|
def test_intent_request_with_slots_and_name_resolution(alexa_client):
|
||||||
|
"""Test a request with slots and a name synonym."""
|
||||||
|
data = {
|
||||||
|
"version": "1.0",
|
||||||
|
"session": {
|
||||||
|
"new": False,
|
||||||
|
"sessionId": SESSION_ID,
|
||||||
|
"application": {
|
||||||
|
"applicationId": APPLICATION_ID
|
||||||
|
},
|
||||||
|
"attributes": {
|
||||||
|
"supportedHoroscopePeriods": {
|
||||||
|
"daily": True,
|
||||||
|
"weekly": False,
|
||||||
|
"monthly": False
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"user": {
|
||||||
|
"userId": "amzn1.account.AM3B00000000000000000000000"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"request": {
|
||||||
|
"type": "IntentRequest",
|
||||||
|
"requestId": REQUEST_ID,
|
||||||
|
"timestamp": "2015-05-13T12:34:56Z",
|
||||||
|
"intent": {
|
||||||
|
"name": "GetZodiacHoroscopeIntent",
|
||||||
|
"slots": {
|
||||||
|
"ZodiacSign": {
|
||||||
|
"name": "ZodiacSign",
|
||||||
|
"value": "virgo",
|
||||||
|
"resolutions": {
|
||||||
|
"resolutionsPerAuthority": [
|
||||||
|
{
|
||||||
|
"authority": AUTHORITY_ID,
|
||||||
|
"status": {
|
||||||
|
"code": "ER_SUCCESS_MATCH"
|
||||||
|
},
|
||||||
|
"values": [
|
||||||
|
{
|
||||||
|
"value": {
|
||||||
|
"name": "Virgo"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
req = yield from _intent_req(alexa_client, data)
|
||||||
|
assert req.status == 200
|
||||||
|
data = yield from req.json()
|
||||||
|
text = data.get("response", {}).get("outputSpeech",
|
||||||
|
{}).get("text")
|
||||||
|
assert text == "You told us your sign is Virgo."
|
||||||
|
|
||||||
|
|
||||||
@asyncio.coroutine
|
@asyncio.coroutine
|
||||||
def test_intent_request_with_slots_but_no_value(alexa_client):
|
def test_intent_request_with_slots_but_no_value(alexa_client):
|
||||||
"""Test a request with slots but no value."""
|
"""Test a request with slots but no value."""
|
||||||
|
Loading…
x
Reference in New Issue
Block a user