
* First webhook commands for getting and deleting single registrations * Keep a list of deleted webhook IDs so we can 410 if the webhook receives traffic in the future * Return a empty JSON object instead of None * Split up mobile_app bits into individual files * Add typing * Sort keys * Remove unused async_setup_entry * New decorator method of registering webhooks * Add tests for cloud hook forwarding and improve error handling for cloud hooks * Initial implementation of platform specific logic * Add get registrations by user ID websocket call, minor style fixes * Stop using resp dictionary during registration * Move mobile_app/ios.py to ios/mobile_app.py * Log any errors encountered during webhook * Improve update registration call * Split up mobile_app tests to match split up component * Fix tests * Remove integration_map in favor of component name in registration * Add a few helper functions for custom logic components to use * Load the app_component platform at device registration or component setup time * Remove extraneous function * Use guard function for checking if component is in device * Inline websocket schemas * Rename ATTR_s used in storage to DATA_ prefix * squash flake8 and pylint issues * Remove ios.mobile_app platform * Dont mark websocket_api as a dependency * Return standard empty_okay_response with 400 if no JSON sent * Ensure deleted webhook IDs are registered at launch * Remove the creation of cloudhooks during handle_webhook * Rename device to registration everywhere applicable * Dont check if cloud is logged in, just check if cloud is in components * Dont ever use cloudhook_id * Remove component loading logic for a later PR * Cast exception to string * Remove unused functions
59 lines
1.7 KiB
Python
59 lines
1.7 KiB
Python
"""Tests for the mobile_app HTTP API."""
|
|
# pylint: disable=redefined-outer-name,unused-import
|
|
import pytest
|
|
|
|
from homeassistant.components.mobile_app.const import CONF_SECRET
|
|
from homeassistant.const import CONF_WEBHOOK_ID
|
|
|
|
from .const import REGISTER
|
|
from . import authed_api_client # noqa: F401
|
|
|
|
|
|
async def test_registration(hass_client, authed_api_client): # noqa: F811
|
|
"""Test that registrations happen."""
|
|
try:
|
|
# pylint: disable=unused-import
|
|
from nacl.secret import SecretBox # noqa: F401
|
|
from nacl.encoding import Base64Encoder # noqa: F401
|
|
except (ImportError, OSError):
|
|
pytest.skip("libnacl/libsodium is not installed")
|
|
return
|
|
|
|
import json
|
|
|
|
resp = await authed_api_client.post(
|
|
'/api/mobile_app/registrations', json=REGISTER
|
|
)
|
|
|
|
assert resp.status == 201
|
|
register_json = await resp.json()
|
|
assert CONF_WEBHOOK_ID in register_json
|
|
assert CONF_SECRET in register_json
|
|
|
|
keylen = SecretBox.KEY_SIZE
|
|
key = register_json[CONF_SECRET].encode("utf-8")
|
|
key = key[:keylen]
|
|
key = key.ljust(keylen, b'\0')
|
|
|
|
payload = json.dumps({'template': 'Hello world'}).encode("utf-8")
|
|
|
|
data = SecretBox(key).encrypt(payload,
|
|
encoder=Base64Encoder).decode("utf-8")
|
|
|
|
container = {
|
|
'type': 'render_template',
|
|
'encrypted': True,
|
|
'encrypted_data': data,
|
|
}
|
|
|
|
webhook_client = await hass_client()
|
|
|
|
resp = await webhook_client.post(
|
|
'/api/webhook/{}'.format(register_json[CONF_WEBHOOK_ID]),
|
|
json=container
|
|
)
|
|
|
|
assert resp.status == 200
|
|
|
|
webhook_json = await resp.json()
|
|
assert webhook_json == {'rendered': 'Hello world'}
|