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
8b04d48f
Unverified
Commit
8b04d48f
authored
6 years ago
by
Paulus Schoutsen
Committed by
GitHub
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Update config entry id in entity registry (#15531)
parent
2a76a085
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/helpers/entity_registry.py
+16
-0
16 additions, 0 deletions
homeassistant/helpers/entity_registry.py
tests/helpers/test_entity_registry.py
+12
-1
12 additions, 1 deletion
tests/helpers/test_entity_registry.py
with
28 additions
and
1 deletion
homeassistant/helpers/entity_registry.py
+
16
−
0
View file @
8b04d48f
...
@@ -109,6 +109,12 @@ class EntityRegistry:
...
@@ -109,6 +109,12 @@ class EntityRegistry:
"""
Get entity. Create if it doesn
'
t exist.
"""
"""
Get entity. Create if it doesn
'
t exist.
"""
entity_id
=
self
.
async_get_entity_id
(
domain
,
platform
,
unique_id
)
entity_id
=
self
.
async_get_entity_id
(
domain
,
platform
,
unique_id
)
if
entity_id
:
if
entity_id
:
entry
=
self
.
entities
[
entity_id
]
if
entry
.
config_entry_id
==
config_entry_id
:
return
entry
self
.
_async_update_entity
(
entity_id
,
config_entry_id
=
config_entry_id
)
return
self
.
entities
[
entity_id
]
return
self
.
entities
[
entity_id
]
entity_id
=
self
.
async_generate_entity_id
(
entity_id
=
self
.
async_generate_entity_id
(
...
@@ -129,6 +135,12 @@ class EntityRegistry:
...
@@ -129,6 +135,12 @@ class EntityRegistry:
@callback
@callback
def
async_update_entity
(
self
,
entity_id
,
*
,
name
=
_UNDEF
):
def
async_update_entity
(
self
,
entity_id
,
*
,
name
=
_UNDEF
):
"""
Update properties of an entity.
"""
"""
Update properties of an entity.
"""
return
self
.
_async_update_entity
(
entity_id
,
name
=
name
)
@callback
def
_async_update_entity
(
self
,
entity_id
,
*
,
name
=
_UNDEF
,
config_entry_id
=
_UNDEF
):
"""
Private facing update properties method.
"""
old
=
self
.
entities
[
entity_id
]
old
=
self
.
entities
[
entity_id
]
changes
=
{}
changes
=
{}
...
@@ -136,6 +148,10 @@ class EntityRegistry:
...
@@ -136,6 +148,10 @@ class EntityRegistry:
if
name
is
not
_UNDEF
and
name
!=
old
.
name
:
if
name
is
not
_UNDEF
and
name
!=
old
.
name
:
changes
[
'
name
'
]
=
name
changes
[
'
name
'
]
=
name
if
(
config_entry_id
is
not
_UNDEF
and
config_entry_id
!=
old
.
config_entry_id
):
changes
[
'
config_entry_id
'
]
=
config_entry_id
if
not
changes
:
if
not
changes
:
return
old
return
old
...
...
This diff is collapsed.
Click to expand it.
tests/helpers/test_entity_registry.py
+
12
−
1
View file @
8b04d48f
...
@@ -107,7 +107,8 @@ def test_loading_saving_data(hass, registry):
...
@@ -107,7 +107,8 @@ def test_loading_saving_data(hass, registry):
# Ensure same order
# Ensure same order
assert
list
(
registry
.
entities
)
==
list
(
registry2
.
entities
)
assert
list
(
registry
.
entities
)
==
list
(
registry2
.
entities
)
new_entry1
=
registry
.
async_get_or_create
(
'
light
'
,
'
hue
'
,
'
1234
'
)
new_entry1
=
registry
.
async_get_or_create
(
'
light
'
,
'
hue
'
,
'
1234
'
)
new_entry2
=
registry
.
async_get_or_create
(
'
light
'
,
'
hue
'
,
'
5678
'
)
new_entry2
=
registry
.
async_get_or_create
(
'
light
'
,
'
hue
'
,
'
5678
'
,
config_entry_id
=
'
mock-id
'
)
assert
orig_entry1
==
new_entry1
assert
orig_entry1
==
new_entry1
assert
orig_entry2
==
new_entry2
assert
orig_entry2
==
new_entry2
...
@@ -191,3 +192,13 @@ def test_async_get_entity_id(registry):
...
@@ -191,3 +192,13 @@ def test_async_get_entity_id(registry):
assert
registry
.
async_get_entity_id
(
assert
registry
.
async_get_entity_id
(
'
light
'
,
'
hue
'
,
'
1234
'
)
==
'
light.hue_1234
'
'
light
'
,
'
hue
'
,
'
1234
'
)
==
'
light.hue_1234
'
assert
registry
.
async_get_entity_id
(
'
light
'
,
'
hue
'
,
'
123
'
)
is
None
assert
registry
.
async_get_entity_id
(
'
light
'
,
'
hue
'
,
'
123
'
)
is
None
async
def
test_updating_config_entry_id
(
registry
):
"""
Test that we update config entry id in registry.
"""
entry
=
registry
.
async_get_or_create
(
'
light
'
,
'
hue
'
,
'
5678
'
,
config_entry_id
=
'
mock-id-1
'
)
entry2
=
registry
.
async_get_or_create
(
'
light
'
,
'
hue
'
,
'
5678
'
,
config_entry_id
=
'
mock-id-2
'
)
assert
entry
.
entity_id
==
entry2
.
entity_id
assert
entry2
.
config_entry_id
==
'
mock-id-2
'
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