
* Support rendering multiple templates at once * Only catch TemplateError and dont log the error
90 lines
2.8 KiB
Python
90 lines
2.8 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, RENDER_TEMPLATE
|
|
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(RENDER_TEMPLATE['data']).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 'encrypted_data' in webhook_json
|
|
|
|
decrypted_data = SecretBox(key).decrypt(webhook_json['encrypted_data'],
|
|
encoder=Base64Encoder)
|
|
decrypted_data = decrypted_data.decode("utf-8")
|
|
|
|
assert json.loads(decrypted_data) == {'one': 'Hello world'}
|
|
|
|
|
|
async def test_register_invalid_component(authed_api_client): # noqa: F811
|
|
"""Test that registration with invalid component fails."""
|
|
resp = await authed_api_client.post(
|
|
'/api/mobile_app/registrations', json={
|
|
'app_component': 'will_never_be_valid',
|
|
'app_data': {'foo': 'bar'},
|
|
'app_id': 'io.homeassistant.mobile_app_test',
|
|
'app_name': 'Mobile App Tests',
|
|
'app_version': '1.0.0',
|
|
'device_name': 'Test 1',
|
|
'manufacturer': 'mobile_app',
|
|
'model': 'Test',
|
|
'os_name': 'Linux',
|
|
'os_version': '1.0',
|
|
'supports_encryption': True
|
|
}
|
|
)
|
|
|
|
assert resp.status == 400
|
|
register_json = await resp.json()
|
|
assert 'error' in register_json
|
|
assert register_json['success'] is False
|
|
assert register_json['error']['code'] == 'invalid_component'
|