mirror of
https://github.com/home-assistant/core.git
synced 2025-09-22 19:39:36 +00:00
.github
docs
homeassistant
script
tests
auth
components
air_quality
alarm_control_panel
alexa
ambient_station
auth
automation
binary_sensor
calendar
camera
cast
climate
cloud
config
counter
cover
daikin
deconz
device_tracker
dialogflow
emulated_hue
emulated_roku
esphome
fan
frontend
geo_location
geofency
google_assistant
gpslogger
group
hangouts
hassio
homekit
homekit_controller
homematicip_cloud
http
hue
ifttt
image_processing
ios
light
locative
lock
lovelace
luftdaten
mailbox
mailgun
media_player
mqtt
nest
notify
onboarding
openuv
owntracks
persistent_notification
point
rainmachine
recorder
remote
scene
sensor
simplisafe
smartthings
smhi
sonos
switch
system_health
tellduslive
timer
tradfri
tts
__init__.py
test_google.py
test_init.py
test_marytts.py
test_voicerss.py
test_yandextts.py
twilio
unifi
upnp
utility_meter
vacuum
water_heater
weather
websocket_api
zha
zone
zwave
__init__.py
conftest.py
test_alert.py
test_api.py
test_canary.py
test_configurator.py
test_conversation.py
test_datadog.py
test_demo.py
test_device_sun_light_trigger.py
test_discovery.py
test_duckdns.py
test_dyson.py
test_feedreader.py
test_ffmpeg.py
test_folder_watcher.py
test_freedns.py
test_google.py
test_google_domains.py
test_graphite.py
test_history.py
test_history_graph.py
test_huawei_lte.py
test_influxdb.py
test_init.py
test_input_boolean.py
test_input_datetime.py
test_input_number.py
test_input_select.py
test_input_text.py
test_intent_script.py
test_introduction.py
test_kira.py
test_litejet.py
test_logbook.py
test_logentries.py
test_logger.py
test_melissa.py
test_microsoft_face.py
test_mqtt_eventstream.py
test_mqtt_statestream.py
test_mythicbeastsdns.py
test_namecheapdns.py
test_ness_alarm.py
test_no_ip.py
test_nuheat.py
test_panel_custom.py
test_panel_iframe.py
test_pilight.py
test_plant.py
test_prometheus.py
test_proximity.py
test_python_script.py
test_qwikswitch.py
test_remember_the_milk.py
test_rest_command.py
test_rflink.py
test_rfxtrx.py
test_ring.py
test_rss_feed_template.py
test_script.py
test_shell_command.py
test_shopping_list.py
test_sleepiq.py
test_snips.py
test_spaceapi.py
test_spc.py
test_splunk.py
test_statsd.py
test_sun.py
test_system_log.py
test_updater.py
test_vultr.py
test_wake_on_lan.py
test_webhook.py
test_weblink.py
fixtures
helpers
mock
resources
scripts
test_util
testing_config
util
__init__.py
common.py
conftest.py
test_bootstrap.py
test_config.py
test_config_entries.py
test_core.py
test_data_entry_flow.py
test_loader.py
test_main.py
test_requirements.py
test_setup.py
virtualization
.coveragerc
.dockerignore
.gitattributes
.gitignore
.hound.yml
.ignore
.readthedocs.yml
.travis.yml
CLA.md
CODEOWNERS
CODE_OF_CONDUCT.md
CONTRIBUTING.md
Dockerfile
LICENSE.md
MANIFEST.in
README.rst
mypy.ini
pylintrc
requirements_all.txt
requirements_docs.txt
requirements_test.txt
requirements_test_all.txt
setup.cfg
setup.py
tox.ini
231 lines
7.8 KiB
Python
231 lines
7.8 KiB
Python
"""The tests for the Google speech platform."""
|
|
import asyncio
|
|
import os
|
|
import shutil
|
|
from unittest.mock import patch
|
|
|
|
import homeassistant.components.tts as tts
|
|
from homeassistant.components.media_player import (
|
|
SERVICE_PLAY_MEDIA, ATTR_MEDIA_CONTENT_ID, DOMAIN as DOMAIN_MP)
|
|
from homeassistant.setup import setup_component
|
|
|
|
from tests.common import (
|
|
get_test_home_assistant, assert_setup_component, mock_service)
|
|
|
|
from .test_init import mutagen_mock # noqa
|
|
|
|
|
|
class TestTTSGooglePlatform:
|
|
"""Test the Google speech component."""
|
|
|
|
def setup_method(self):
|
|
"""Set up things to be run when tests are started."""
|
|
self.hass = get_test_home_assistant()
|
|
|
|
self.url = "https://translate.google.com/translate_tts"
|
|
self.url_param = {
|
|
'tl': 'en',
|
|
'q':
|
|
'90%25%20of%20I%20person%20is%20on%20front%20of%20your%20door.',
|
|
'tk': 5,
|
|
'client': 'tw-ob',
|
|
'textlen': 41,
|
|
'total': 1,
|
|
'idx': 0,
|
|
'ie': 'UTF-8',
|
|
}
|
|
|
|
def teardown_method(self):
|
|
"""Stop everything that was started."""
|
|
default_tts = self.hass.config.path(tts.DEFAULT_CACHE_DIR)
|
|
if os.path.isdir(default_tts):
|
|
shutil.rmtree(default_tts)
|
|
|
|
self.hass.stop()
|
|
|
|
def test_setup_component(self):
|
|
"""Test setup component."""
|
|
config = {
|
|
tts.DOMAIN: {
|
|
'platform': 'google',
|
|
}
|
|
}
|
|
|
|
with assert_setup_component(1, tts.DOMAIN):
|
|
setup_component(self.hass, tts.DOMAIN, config)
|
|
|
|
@patch('gtts_token.gtts_token.Token.calculate_token', autospec=True,
|
|
return_value=5)
|
|
def test_service_say(self, mock_calculate, aioclient_mock):
|
|
"""Test service call say."""
|
|
calls = mock_service(self.hass, DOMAIN_MP, SERVICE_PLAY_MEDIA)
|
|
|
|
aioclient_mock.get(
|
|
self.url, params=self.url_param, status=200, content=b'test')
|
|
|
|
config = {
|
|
tts.DOMAIN: {
|
|
'platform': 'google',
|
|
}
|
|
}
|
|
|
|
with assert_setup_component(1, tts.DOMAIN):
|
|
setup_component(self.hass, tts.DOMAIN, config)
|
|
|
|
self.hass.services.call(tts.DOMAIN, 'google_say', {
|
|
tts.ATTR_MESSAGE: "90% of I person is on front of your door.",
|
|
})
|
|
self.hass.block_till_done()
|
|
|
|
assert len(calls) == 1
|
|
assert len(aioclient_mock.mock_calls) == 1
|
|
assert calls[0].data[ATTR_MEDIA_CONTENT_ID].find(".mp3") != -1
|
|
|
|
@patch('gtts_token.gtts_token.Token.calculate_token', autospec=True,
|
|
return_value=5)
|
|
def test_service_say_german_config(self, mock_calculate, aioclient_mock):
|
|
"""Test service call say with german code in the config."""
|
|
calls = mock_service(self.hass, DOMAIN_MP, SERVICE_PLAY_MEDIA)
|
|
|
|
self.url_param['tl'] = 'de'
|
|
aioclient_mock.get(
|
|
self.url, params=self.url_param, status=200, content=b'test')
|
|
|
|
config = {
|
|
tts.DOMAIN: {
|
|
'platform': 'google',
|
|
'language': 'de',
|
|
}
|
|
}
|
|
|
|
with assert_setup_component(1, tts.DOMAIN):
|
|
setup_component(self.hass, tts.DOMAIN, config)
|
|
|
|
self.hass.services.call(tts.DOMAIN, 'google_say', {
|
|
tts.ATTR_MESSAGE: "90% of I person is on front of your door.",
|
|
})
|
|
self.hass.block_till_done()
|
|
|
|
assert len(calls) == 1
|
|
assert len(aioclient_mock.mock_calls) == 1
|
|
|
|
@patch('gtts_token.gtts_token.Token.calculate_token', autospec=True,
|
|
return_value=5)
|
|
def test_service_say_german_service(self, mock_calculate, aioclient_mock):
|
|
"""Test service call say with german code in the service."""
|
|
calls = mock_service(self.hass, DOMAIN_MP, SERVICE_PLAY_MEDIA)
|
|
|
|
self.url_param['tl'] = 'de'
|
|
aioclient_mock.get(
|
|
self.url, params=self.url_param, status=200, content=b'test')
|
|
|
|
config = {
|
|
tts.DOMAIN: {
|
|
'platform': 'google',
|
|
}
|
|
}
|
|
|
|
with assert_setup_component(1, tts.DOMAIN):
|
|
setup_component(self.hass, tts.DOMAIN, config)
|
|
|
|
self.hass.services.call(tts.DOMAIN, 'google_say', {
|
|
tts.ATTR_MESSAGE: "90% of I person is on front of your door.",
|
|
tts.ATTR_LANGUAGE: "de"
|
|
})
|
|
self.hass.block_till_done()
|
|
|
|
assert len(calls) == 1
|
|
assert len(aioclient_mock.mock_calls) == 1
|
|
|
|
@patch('gtts_token.gtts_token.Token.calculate_token', autospec=True,
|
|
return_value=5)
|
|
def test_service_say_error(self, mock_calculate, aioclient_mock):
|
|
"""Test service call say with http response 400."""
|
|
calls = mock_service(self.hass, DOMAIN_MP, SERVICE_PLAY_MEDIA)
|
|
|
|
aioclient_mock.get(
|
|
self.url, params=self.url_param, status=400, content=b'test')
|
|
|
|
config = {
|
|
tts.DOMAIN: {
|
|
'platform': 'google',
|
|
}
|
|
}
|
|
|
|
with assert_setup_component(1, tts.DOMAIN):
|
|
setup_component(self.hass, tts.DOMAIN, config)
|
|
|
|
self.hass.services.call(tts.DOMAIN, 'google_say', {
|
|
tts.ATTR_MESSAGE: "90% of I person is on front of your door.",
|
|
})
|
|
self.hass.block_till_done()
|
|
|
|
assert len(calls) == 0
|
|
assert len(aioclient_mock.mock_calls) == 1
|
|
|
|
@patch('gtts_token.gtts_token.Token.calculate_token', autospec=True,
|
|
return_value=5)
|
|
def test_service_say_timeout(self, mock_calculate, aioclient_mock):
|
|
"""Test service call say with http timeout."""
|
|
calls = mock_service(self.hass, DOMAIN_MP, SERVICE_PLAY_MEDIA)
|
|
|
|
aioclient_mock.get(
|
|
self.url, params=self.url_param, exc=asyncio.TimeoutError())
|
|
|
|
config = {
|
|
tts.DOMAIN: {
|
|
'platform': 'google',
|
|
}
|
|
}
|
|
|
|
with assert_setup_component(1, tts.DOMAIN):
|
|
setup_component(self.hass, tts.DOMAIN, config)
|
|
|
|
self.hass.services.call(tts.DOMAIN, 'google_say', {
|
|
tts.ATTR_MESSAGE: "90% of I person is on front of your door.",
|
|
})
|
|
self.hass.block_till_done()
|
|
|
|
assert len(calls) == 0
|
|
assert len(aioclient_mock.mock_calls) == 1
|
|
|
|
@patch('gtts_token.gtts_token.Token.calculate_token', autospec=True,
|
|
return_value=5)
|
|
def test_service_say_long_size(self, mock_calculate, aioclient_mock):
|
|
"""Test service call say with a lot of text."""
|
|
calls = mock_service(self.hass, DOMAIN_MP, SERVICE_PLAY_MEDIA)
|
|
|
|
self.url_param['total'] = 9
|
|
self.url_param['q'] = "I%20person%20is%20on%20front%20of%20your%20door"
|
|
self.url_param['textlen'] = 33
|
|
for idx in range(0, 9):
|
|
self.url_param['idx'] = idx
|
|
aioclient_mock.get(
|
|
self.url, params=self.url_param, status=200, content=b'test')
|
|
|
|
config = {
|
|
tts.DOMAIN: {
|
|
'platform': 'google',
|
|
}
|
|
}
|
|
|
|
with assert_setup_component(1, tts.DOMAIN):
|
|
setup_component(self.hass, tts.DOMAIN, config)
|
|
|
|
self.hass.services.call(tts.DOMAIN, 'google_say', {
|
|
tts.ATTR_MESSAGE: ("I person is on front of your door."
|
|
"I person is on front of your door."
|
|
"I person is on front of your door."
|
|
"I person is on front of your door."
|
|
"I person is on front of your door."
|
|
"I person is on front of your door."
|
|
"I person is on front of your door."
|
|
"I person is on front of your door."
|
|
"I person is on front of your door."),
|
|
})
|
|
self.hass.block_till_done()
|
|
|
|
assert len(calls) == 1
|
|
assert len(aioclient_mock.mock_calls) == 9
|
|
assert calls[0].data[ATTR_MEDIA_CONTENT_ID].find(".mp3") != -1
|