1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 12:59:34 +00:00

Refactor Netatmo test (#48097)

* Refactor webhook simulate

* Update test_climate.py
This commit is contained in:
Tobias Sauerwein
2021-03-19 09:57:11 +01:00
committed by GitHub
parent d77a28b8a1
commit 2f15957707
2 changed files with 290 additions and 139 deletions

View File

@@ -1,6 +1,9 @@
"""Common methods used across tests for Netatmo."""
import json
from homeassistant.components.webhook import async_handle_webhook
from homeassistant.util.aiohttp import MockRequest
from tests.common import load_fixture
CLIENT_ID = "1234"
@@ -19,6 +22,13 @@ ALL_SCOPES = [
"write_thermostat",
]
COMMON_RESPONSE = {
"user_id": "91763b24c43d3e344f424e8d",
"home_id": "91763b24c43d3e344f424e8b",
"home_name": "MYHOME",
"user": {"id": "91763b24c43d3e344f424e8b", "email": "john@doe.com"},
}
def fake_post_request(**args):
"""Return fake data."""
@@ -42,3 +52,13 @@ def fake_post_request(**args):
def fake_post_request_no_data(**args):
"""Fake error during requesting backend data."""
return "{}"
async def simulate_webhook(hass, webhook_id, response):
"""Simulate a webhook event."""
request = MockRequest(
content=bytes(json.dumps({**COMMON_RESPONSE, **response}), "utf-8"),
mock_source="test",
)
await async_handle_webhook(hass, webhook_id, request)
await hass.async_block_till_done()