Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mirrored_repos
HomeAssistant
Core
Commits
715f4bd2
Unverified
Commit
715f4bd2
authored
7 months ago
by
Erik Montnemery
Committed by
GitHub
7 months ago
Browse files
Options
Downloads
Patches
Plain Diff
Set deprecated flag on TTS engines replaced by entities in WS list (#124676)
parent
74a12bb8
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
homeassistant/components/tts/__init__.py
+5
-0
5 additions, 0 deletions
homeassistant/components/tts/__init__.py
tests/components/tts/test_init.py
+55
-1
55 additions, 1 deletion
tests/components/tts/test_init.py
with
60 additions
and
1 deletion
homeassistant/components/tts/__init__.py
+
5
−
0
View file @
715f4bd2
...
...
@@ -1086,6 +1086,7 @@ def websocket_list_engines(
language
=
msg
.
get
(
"
language
"
)
providers
=
[]
provider_info
:
dict
[
str
,
Any
]
entity_domains
:
set
[
str
]
=
set
()
for
entity
in
component
.
entities
:
provider_info
=
{
...
...
@@ -1097,6 +1098,8 @@ def websocket_list_engines(
language
,
entity
.
supported_languages
,
country
)
providers
.
append
(
provider_info
)
if
entity
.
platform
:
entity_domains
.
add
(
entity
.
platform
.
platform_name
)
for
engine_id
,
provider
in
manager
.
providers
.
items
():
provider_info
=
{
"
engine_id
"
:
engine_id
,
...
...
@@ -1106,6 +1109,8 @@ def websocket_list_engines(
provider_info
[
"
supported_languages
"
]
=
language_util
.
matches
(
language
,
provider
.
supported_languages
,
country
)
if
engine_id
in
entity_domains
:
provider_info
[
"
deprecated
"
]
=
True
providers
.
append
(
provider_info
)
connection
.
send_message
(
...
...
This diff is collapsed.
Click to expand it.
tests/components/tts/test_init.py
+
55
−
1
View file @
715f4bd2
...
...
@@ -31,6 +31,7 @@ from .common import (
SUPPORT_LANGUAGES
,
TEST_DOMAIN
,
MockProvider
,
MockTTS
,
MockTTSEntity
,
get_media_source_url
,
mock_config_entry_setup
,
...
...
@@ -38,7 +39,13 @@ from .common import (
retrieve_media
,
)
from
tests.common
import
async_mock_service
,
mock_restore_cache
from
tests.common
import
(
MockModule
,
async_mock_service
,
mock_integration
,
mock_platform
,
mock_restore_cache
,
)
from
tests.typing
import
ClientSessionGenerator
,
WebSocketGenerator
ORIG_WRITE_TAGS
=
tts
.
SpeechManager
.
write_tags
...
...
@@ -1635,6 +1642,53 @@ async def test_ws_list_engines(
}
async
def
test_ws_list_engines_deprecated
(
hass
:
HomeAssistant
,
hass_ws_client
:
WebSocketGenerator
,
mock_tts_entity
:
MockTTSEntity
,
)
->
None
:
"""
Test listing tts engines.
This test asserts the deprecated flag is set on a legacy engine whose integration
also provides tts entities.
"""
mock_provider
=
MockProvider
(
DEFAULT_LANG
)
mock_provider_2
=
MockProvider
(
DEFAULT_LANG
)
mock_integration
(
hass
,
MockModule
(
domain
=
"
test
"
))
mock_platform
(
hass
,
"
test.tts
"
,
MockTTS
(
mock_provider
))
mock_integration
(
hass
,
MockModule
(
domain
=
"
test_2
"
))
mock_platform
(
hass
,
"
test_2.tts
"
,
MockTTS
(
mock_provider_2
))
await
async_setup_component
(
hass
,
"
tts
"
,
{
"
tts
"
:
[{
"
platform
"
:
"
test
"
},
{
"
platform
"
:
"
test_2
"
}]}
)
await
mock_config_entry_setup
(
hass
,
mock_tts_entity
)
client
=
await
hass_ws_client
()
await
client
.
send_json_auto_id
({
"
type
"
:
"
tts/engine/list
"
})
msg
=
await
client
.
receive_json
()
assert
msg
[
"
success
"
]
assert
msg
[
"
result
"
]
==
{
"
providers
"
:
[
{
"
engine_id
"
:
"
tts.test
"
,
"
supported_languages
"
:
[
"
de_CH
"
,
"
de_DE
"
,
"
en_GB
"
,
"
en_US
"
],
},
{
"
deprecated
"
:
True
,
"
engine_id
"
:
"
test
"
,
"
supported_languages
"
:
[
"
de_CH
"
,
"
de_DE
"
,
"
en_GB
"
,
"
en_US
"
],
},
{
"
engine_id
"
:
"
test_2
"
,
"
supported_languages
"
:
[
"
de_CH
"
,
"
de_DE
"
,
"
en_GB
"
,
"
en_US
"
],
},
]
}
@pytest.mark.parametrize
(
(
"
setup
"
,
"
engine_id
"
),
[
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment