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
8dd5f25d
Unverified
Commit
8dd5f25d
authored
2 years ago
by
Guido Schmitz
Committed by
GitHub
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Add cover tests for devolo_home_control (#72428)
parent
8905e6f7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.coveragerc
+0
-1
0 additions, 1 deletion
.coveragerc
tests/components/devolo_home_control/mocks.py
+25
-1
25 additions, 1 deletion
tests/components/devolo_home_control/mocks.py
tests/components/devolo_home_control/test_cover.py
+103
-0
103 additions, 0 deletions
tests/components/devolo_home_control/test_cover.py
with
128 additions
and
2 deletions
.coveragerc
+
0
−
1
View file @
8dd5f25d
...
...
@@ -210,7 +210,6 @@ omit =
homeassistant/components/denonavr/media_player.py
homeassistant/components/denonavr/receiver.py
homeassistant/components/deutsche_bahn/sensor.py
homeassistant/components/devolo_home_control/cover.py
homeassistant/components/devolo_home_control/light.py
homeassistant/components/devolo_home_control/sensor.py
homeassistant/components/devolo_home_control/switch.py
...
...
This diff is collapsed.
Click to expand it.
tests/components/devolo_home_control/mocks.py
+
25
−
1
View file @
8dd5f25d
...
...
@@ -51,7 +51,6 @@ class MultiLevelSwitchPropertyMock(MultiLevelSwitchProperty):
self
.
element_uid
=
"
Test
"
self
.
min
=
4
self
.
max
=
24
self
.
switch_type
=
"
temperature
"
self
.
_value
=
20
self
.
_logger
=
MagicMock
()
...
...
@@ -120,9 +119,21 @@ class ClimateMock(DeviceMock):
super
().
__init__
()
self
.
device_model_uid
=
"
devolo.model.Room:Thermostat
"
self
.
multi_level_switch_property
=
{
"
Test
"
:
MultiLevelSwitchPropertyMock
()}
self
.
multi_level_switch_property
[
"
Test
"
].
switch_type
=
"
temperature
"
self
.
multi_level_sensor_property
=
{
"
Test
"
:
MultiLevelSensorPropertyMock
()}
class
CoverMock
(
DeviceMock
):
"""
devolo Home Control cover device mock.
"""
def
__init__
(
self
)
->
None
:
"""
Initialize the mock.
"""
super
().
__init__
()
self
.
multi_level_switch_property
=
{
"
devolo.Blinds
"
:
MultiLevelSwitchPropertyMock
()
}
class
RemoteControlMock
(
DeviceMock
):
"""
devolo Home Control remote control device mock.
"""
...
...
@@ -195,6 +206,19 @@ class HomeControlMockClimate(HomeControlMock):
self
.
publisher
.
unregister
=
MagicMock
()
class
HomeControlMockCover
(
HomeControlMock
):
"""
devolo Home Control gateway mock with cover devices.
"""
def
__init__
(
self
,
**
kwargs
:
Any
)
->
None
:
"""
Initialize the mock.
"""
super
().
__init__
()
self
.
devices
=
{
"
Test
"
:
CoverMock
(),
}
self
.
publisher
=
Publisher
(
self
.
devices
.
keys
())
self
.
publisher
.
unregister
=
MagicMock
()
class
HomeControlMockRemoteControl
(
HomeControlMock
):
"""
devolo Home Control gateway mock with remote control device.
"""
...
...
This diff is collapsed.
Click to expand it.
tests/components/devolo_home_control/test_cover.py
0 → 100644
+
103
−
0
View file @
8dd5f25d
"""
Tests for the devolo Home Control cover platform.
"""
from
unittest.mock
import
patch
from
homeassistant.components.cover
import
ATTR_CURRENT_POSITION
,
ATTR_POSITION
,
DOMAIN
from
homeassistant.const
import
(
ATTR_ENTITY_ID
,
SERVICE_CLOSE_COVER
,
SERVICE_OPEN_COVER
,
SERVICE_SET_COVER_POSITION
,
STATE_CLOSED
,
STATE_OPEN
,
STATE_UNAVAILABLE
,
)
from
homeassistant.core
import
HomeAssistant
from
.
import
configure_integration
from
.mocks
import
HomeControlMock
,
HomeControlMockCover
async
def
test_cover
(
hass
:
HomeAssistant
):
"""
Test setup and state change of a cover device.
"""
entry
=
configure_integration
(
hass
)
test_gateway
=
HomeControlMockCover
()
test_gateway
.
devices
[
"
Test
"
].
multi_level_switch_property
[
"
devolo.Blinds
"
].
value
=
20
with
patch
(
"
homeassistant.components.devolo_home_control.HomeControl
"
,
side_effect
=
[
test_gateway
,
HomeControlMock
()],
):
await
hass
.
config_entries
.
async_setup
(
entry
.
entry_id
)
await
hass
.
async_block_till_done
()
state
=
hass
.
states
.
get
(
f
"
{
DOMAIN
}
.test
"
)
assert
state
is
not
None
assert
state
.
state
==
STATE_OPEN
assert
(
state
.
attributes
[
ATTR_CURRENT_POSITION
]
==
test_gateway
.
devices
[
"
Test
"
]
.
multi_level_switch_property
[
"
devolo.Blinds
"
]
.
value
)
# Emulate websocket message: position changed
test_gateway
.
publisher
.
dispatch
(
"
Test
"
,
(
"
devolo.Blinds
"
,
0.0
))
await
hass
.
async_block_till_done
()
state
=
hass
.
states
.
get
(
f
"
{
DOMAIN
}
.test
"
)
assert
state
.
state
==
STATE_CLOSED
assert
state
.
attributes
[
ATTR_CURRENT_POSITION
]
==
0.0
# Test setting position
with
patch
(
"
devolo_home_control_api.properties.multi_level_switch_property.MultiLevelSwitchProperty.set
"
)
as
set_value
:
await
hass
.
services
.
async_call
(
DOMAIN
,
SERVICE_OPEN_COVER
,
{
ATTR_ENTITY_ID
:
f
"
{
DOMAIN
}
.test
"
},
blocking
=
True
,
)
# In reality, this leads to a websocket message like already tested above
set_value
.
assert_called_once_with
(
100
)
set_value
.
reset_mock
()
await
hass
.
services
.
async_call
(
DOMAIN
,
SERVICE_CLOSE_COVER
,
{
ATTR_ENTITY_ID
:
f
"
{
DOMAIN
}
.test
"
},
blocking
=
True
,
)
# In reality, this leads to a websocket message like already tested above
set_value
.
assert_called_once_with
(
0
)
set_value
.
reset_mock
()
await
hass
.
services
.
async_call
(
DOMAIN
,
SERVICE_SET_COVER_POSITION
,
{
ATTR_ENTITY_ID
:
f
"
{
DOMAIN
}
.test
"
,
ATTR_POSITION
:
50
},
blocking
=
True
,
)
# In reality, this leads to a websocket message like already tested above
set_value
.
assert_called_once_with
(
50
)
# Emulate websocket message: device went offline
test_gateway
.
devices
[
"
Test
"
].
status
=
1
test_gateway
.
publisher
.
dispatch
(
"
Test
"
,
(
"
Status
"
,
False
,
"
status
"
))
await
hass
.
async_block_till_done
()
assert
hass
.
states
.
get
(
f
"
{
DOMAIN
}
.test
"
).
state
==
STATE_UNAVAILABLE
async
def
test_remove_from_hass
(
hass
:
HomeAssistant
):
"""
Test removing entity.
"""
entry
=
configure_integration
(
hass
)
test_gateway
=
HomeControlMockCover
()
with
patch
(
"
homeassistant.components.devolo_home_control.HomeControl
"
,
side_effect
=
[
test_gateway
,
HomeControlMock
()],
):
await
hass
.
config_entries
.
async_setup
(
entry
.
entry_id
)
await
hass
.
async_block_till_done
()
state
=
hass
.
states
.
get
(
f
"
{
DOMAIN
}
.test
"
)
assert
state
is
not
None
await
hass
.
config_entries
.
async_remove
(
entry
.
entry_id
)
await
hass
.
async_block_till_done
()
assert
len
(
hass
.
states
.
async_all
())
==
0
assert
test_gateway
.
publisher
.
unregister
.
call_count
==
1
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