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
fb5af9ac
Unverified
Commit
fb5af9ac
authored
1 month ago
by
Shay Levy
Committed by
GitHub
1 month ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix Shelly mock initialization for sleepy RPC device in tests (#139003)
parent
672df735
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/components/shelly/conftest.py
+8
-5
8 additions, 5 deletions
tests/components/shelly/conftest.py
with
8 additions
and
5 deletions
tests/components/shelly/conftest.py
+
8
−
5
View file @
fb5af9ac
"""
Test configuration for Shelly.
"""
from
copy
import
deepcopy
from
unittest.mock
import
AsyncMock
,
Mock
,
PropertyMock
,
patch
from
aioshelly.ble.const
import
(
...
...
@@ -592,8 +593,11 @@ def _mock_sleepy_not_initialized_rpc_device():
def
initialize_sleepy_rpc_device
(
device
):
"""
Initialize a sleepy RPC (Gen2+, Websocket) device.
"""
type
(
device
).
requires_auth
=
PropertyMock
()
type
(
device
).
status
=
PropertyMock
(
return_value
=
MOCK_STATUS_RPC
)
status
=
deepcopy
(
MOCK_STATUS_RPC
)
status
[
"
sys
"
][
"
wakeup_period
"
]
=
1000
type
(
device
).
requires_auth
=
PropertyMock
(
return_value
=
False
)
type
(
device
).
status
=
PropertyMock
(
return_value
=
status
)
type
(
device
).
event
=
PropertyMock
(
return_value
=
{})
type
(
device
).
config
=
PropertyMock
(
return_value
=
MOCK_CONFIG
)
type
(
device
).
shelly
=
PropertyMock
(
return_value
=
MOCK_SHELLY_RPC
)
...
...
@@ -601,14 +605,13 @@ def initialize_sleepy_rpc_device(device):
type
(
device
).
firmware_version
=
PropertyMock
(
return_value
=
"
20240425-141520/1.3.0-ga3fdd3d
"
)
type
(
device
).
version
=
PropertyMock
(
"
1.3.0
"
)
type
(
device
).
model
=
PropertyMock
(
"
SPSW-201PE16EU
"
)
type
(
device
).
version
=
PropertyMock
(
return_value
=
"
1.3.0
"
)
type
(
device
).
model
=
PropertyMock
(
return_value
=
"
SPSW-201PE16EU
"
)
type
(
device
).
xmod_info
=
PropertyMock
(
return_value
=
{})
type
(
device
).
hostname
=
PropertyMock
(
return_value
=
"
hostname
"
)
type
(
device
).
name
=
PropertyMock
(
return_value
=
"
Test Name
"
)
type
(
device
).
firmware_supported
=
PropertyMock
(
return_value
=
True
)
device
.
status
[
"
sys
"
][
"
wakeup_period
"
]
=
1000
device
.
connected
=
True
device
.
initialized
=
True
...
...
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