99 lines
3.1 KiB
Python
99 lines
3.1 KiB
Python
"""The tests for the Alexa component."""
|
|
# pylint: disable=protected-access
|
|
import asyncio
|
|
import datetime
|
|
|
|
import pytest
|
|
|
|
from homeassistant.core import callback
|
|
from homeassistant.setup import async_setup_component
|
|
from homeassistant.components import alexa
|
|
from homeassistant.components.alexa import const
|
|
|
|
SESSION_ID = "amzn1.echo-api.session.0000000-0000-0000-0000-00000000000"
|
|
APPLICATION_ID = "amzn1.echo-sdk-ams.app.000000-d0ed-0000-ad00-000000d00ebe"
|
|
REQUEST_ID = "amzn1.echo-api.request.0000000-0000-0000-0000-00000000000"
|
|
|
|
# pylint: disable=invalid-name
|
|
calls = []
|
|
|
|
NPR_NEWS_MP3_URL = "https://pd.npr.org/anon.npr-mp3/npr/news/newscast.mp3"
|
|
|
|
|
|
@pytest.fixture
|
|
def alexa_client(loop, hass, hass_client):
|
|
"""Initialize a Home Assistant server for testing this module."""
|
|
@callback
|
|
def mock_service(call):
|
|
calls.append(call)
|
|
|
|
hass.services.async_register("test", "alexa", mock_service)
|
|
|
|
assert loop.run_until_complete(async_setup_component(hass, alexa.DOMAIN, {
|
|
# Key is here to verify we allow other keys in config too
|
|
"homeassistant": {},
|
|
"alexa": {
|
|
"flash_briefings": {
|
|
"weather": [
|
|
{"title": "Weekly forecast",
|
|
"text": "This week it will be sunny."},
|
|
{"title": "Current conditions",
|
|
"text": "Currently it is 80 degrees fahrenheit."}
|
|
],
|
|
"news_audio": {
|
|
"title": "NPR",
|
|
"audio": NPR_NEWS_MP3_URL,
|
|
"display_url": "https://npr.org",
|
|
"uid": "uuid"
|
|
}
|
|
},
|
|
}
|
|
}))
|
|
return loop.run_until_complete(hass_client())
|
|
|
|
|
|
def _flash_briefing_req(client, briefing_id):
|
|
return client.get(
|
|
"/api/alexa/flash_briefings/{}".format(briefing_id))
|
|
|
|
|
|
@asyncio.coroutine
|
|
def test_flash_briefing_invalid_id(alexa_client):
|
|
"""Test an invalid Flash Briefing ID."""
|
|
req = yield from _flash_briefing_req(alexa_client, 10000)
|
|
assert req.status == 404
|
|
text = yield from req.text()
|
|
assert text == ''
|
|
|
|
|
|
@asyncio.coroutine
|
|
def test_flash_briefing_date_from_str(alexa_client):
|
|
"""Test the response has a valid date parsed from string."""
|
|
req = yield from _flash_briefing_req(alexa_client, "weather")
|
|
assert req.status == 200
|
|
data = yield from req.json()
|
|
assert isinstance(datetime.datetime.strptime(data[0].get(
|
|
const.ATTR_UPDATE_DATE), const.DATE_FORMAT), datetime.datetime)
|
|
|
|
|
|
@asyncio.coroutine
|
|
def test_flash_briefing_valid(alexa_client):
|
|
"""Test the response is valid."""
|
|
data = [{
|
|
"titleText": "NPR",
|
|
"redirectionURL": "https://npr.org",
|
|
"streamUrl": NPR_NEWS_MP3_URL,
|
|
"mainText": "",
|
|
"uid": "uuid",
|
|
"updateDate": '2016-10-10T19:51:42.0Z'
|
|
}]
|
|
|
|
req = yield from _flash_briefing_req(alexa_client, "news_audio")
|
|
assert req.status == 200
|
|
json = yield from req.json()
|
|
assert isinstance(datetime.datetime.strptime(json[0].get(
|
|
const.ATTR_UPDATE_DATE), const.DATE_FORMAT), datetime.datetime)
|
|
json[0].pop(const.ATTR_UPDATE_DATE)
|
|
data[0].pop(const.ATTR_UPDATE_DATE)
|
|
assert json == data
|