2018-05-10 18:09:22 +00:00
|
|
|
"""Test the Home Assistant local auth provider."""
|
2018-07-13 13:31:20 +00:00
|
|
|
from unittest.mock import Mock
|
|
|
|
|
2018-05-10 18:09:22 +00:00
|
|
|
import pytest
|
2018-08-28 18:54:01 +00:00
|
|
|
import voluptuous as vol
|
2018-05-10 18:09:22 +00:00
|
|
|
|
|
|
|
from homeassistant import data_entry_flow
|
2018-08-21 18:03:38 +00:00
|
|
|
from homeassistant.auth import auth_manager_from_config, auth_store
|
2018-07-13 13:31:20 +00:00
|
|
|
from homeassistant.auth.providers import (
|
|
|
|
auth_provider_from_config, homeassistant as hass_auth)
|
2018-05-10 18:09:22 +00:00
|
|
|
|
|
|
|
|
2018-06-29 04:02:45 +00:00
|
|
|
@pytest.fixture
|
|
|
|
def data(hass):
|
|
|
|
"""Create a loaded data class."""
|
|
|
|
data = hass_auth.Data(hass)
|
|
|
|
hass.loop.run_until_complete(data.async_load())
|
|
|
|
return data
|
2018-05-10 18:09:22 +00:00
|
|
|
|
|
|
|
|
2018-06-29 04:02:45 +00:00
|
|
|
async def test_adding_user(data, hass):
|
2018-05-10 18:09:22 +00:00
|
|
|
"""Test adding a user."""
|
2018-07-13 13:31:20 +00:00
|
|
|
data.add_auth('test-user', 'test-pass')
|
2018-05-10 18:09:22 +00:00
|
|
|
data.validate_login('test-user', 'test-pass')
|
|
|
|
|
|
|
|
|
2018-06-29 04:02:45 +00:00
|
|
|
async def test_adding_user_duplicate_username(data, hass):
|
2018-08-21 18:03:38 +00:00
|
|
|
"""Test adding a user with duplicate username."""
|
2018-07-13 13:31:20 +00:00
|
|
|
data.add_auth('test-user', 'test-pass')
|
2018-05-10 18:09:22 +00:00
|
|
|
with pytest.raises(hass_auth.InvalidUser):
|
2018-07-13 13:31:20 +00:00
|
|
|
data.add_auth('test-user', 'other-pass')
|
2018-05-10 18:09:22 +00:00
|
|
|
|
|
|
|
|
2018-06-29 04:02:45 +00:00
|
|
|
async def test_validating_password_invalid_user(data, hass):
|
2018-05-10 18:09:22 +00:00
|
|
|
"""Test validating an invalid user."""
|
|
|
|
with pytest.raises(hass_auth.InvalidAuth):
|
|
|
|
data.validate_login('non-existing', 'pw')
|
|
|
|
|
|
|
|
|
2018-06-29 04:02:45 +00:00
|
|
|
async def test_validating_password_invalid_password(data, hass):
|
2018-08-21 18:03:38 +00:00
|
|
|
"""Test validating an invalid password."""
|
2018-07-13 13:31:20 +00:00
|
|
|
data.add_auth('test-user', 'test-pass')
|
2018-05-10 18:09:22 +00:00
|
|
|
|
|
|
|
with pytest.raises(hass_auth.InvalidAuth):
|
|
|
|
data.validate_login('test-user', 'invalid-pass')
|
|
|
|
|
|
|
|
|
2018-06-29 04:02:45 +00:00
|
|
|
async def test_changing_password(data, hass):
|
2018-05-10 18:09:22 +00:00
|
|
|
"""Test adding a user."""
|
|
|
|
user = 'test-user'
|
2018-07-13 13:31:20 +00:00
|
|
|
data.add_auth(user, 'test-pass')
|
2018-05-10 18:09:22 +00:00
|
|
|
data.change_password(user, 'new-pass')
|
|
|
|
|
|
|
|
with pytest.raises(hass_auth.InvalidAuth):
|
|
|
|
data.validate_login(user, 'test-pass')
|
|
|
|
|
|
|
|
data.validate_login(user, 'new-pass')
|
|
|
|
|
|
|
|
|
2018-06-29 04:02:45 +00:00
|
|
|
async def test_changing_password_raises_invalid_user(data, hass):
|
2018-05-10 18:09:22 +00:00
|
|
|
"""Test that we initialize an empty config."""
|
|
|
|
with pytest.raises(hass_auth.InvalidUser):
|
|
|
|
data.change_password('non-existing', 'pw')
|
|
|
|
|
|
|
|
|
2018-06-29 04:02:45 +00:00
|
|
|
async def test_login_flow_validates(data, hass):
|
2018-05-10 18:09:22 +00:00
|
|
|
"""Test login flow."""
|
2018-07-13 13:31:20 +00:00
|
|
|
data.add_auth('test-user', 'test-pass')
|
2018-06-29 04:02:45 +00:00
|
|
|
await data.async_save()
|
2018-05-10 18:09:22 +00:00
|
|
|
|
2018-08-21 18:03:38 +00:00
|
|
|
provider = hass_auth.HassAuthProvider(hass, auth_store.AuthStore(hass),
|
|
|
|
{'type': 'homeassistant'})
|
|
|
|
flow = await provider.async_login_flow({})
|
2018-05-10 18:09:22 +00:00
|
|
|
result = await flow.async_step_init()
|
|
|
|
assert result['type'] == data_entry_flow.RESULT_TYPE_FORM
|
|
|
|
|
2018-06-29 04:02:45 +00:00
|
|
|
result = await flow.async_step_init({
|
|
|
|
'username': 'incorrect-user',
|
|
|
|
'password': 'test-pass',
|
|
|
|
})
|
|
|
|
assert result['type'] == data_entry_flow.RESULT_TYPE_FORM
|
|
|
|
assert result['errors']['base'] == 'invalid_auth'
|
|
|
|
|
|
|
|
result = await flow.async_step_init({
|
|
|
|
'username': 'test-user',
|
|
|
|
'password': 'incorrect-pass',
|
|
|
|
})
|
|
|
|
assert result['type'] == data_entry_flow.RESULT_TYPE_FORM
|
|
|
|
assert result['errors']['base'] == 'invalid_auth'
|
2018-05-10 18:09:22 +00:00
|
|
|
|
2018-06-29 04:02:45 +00:00
|
|
|
result = await flow.async_step_init({
|
|
|
|
'username': 'test-user',
|
|
|
|
'password': 'test-pass',
|
|
|
|
})
|
|
|
|
assert result['type'] == data_entry_flow.RESULT_TYPE_CREATE_ENTRY
|
2018-08-21 18:03:38 +00:00
|
|
|
assert result['data']['username'] == 'test-user'
|
2018-05-10 18:09:22 +00:00
|
|
|
|
|
|
|
|
2018-06-29 04:02:45 +00:00
|
|
|
async def test_saving_loading(data, hass):
|
|
|
|
"""Test saving and loading JSON."""
|
2018-07-13 13:31:20 +00:00
|
|
|
data.add_auth('test-user', 'test-pass')
|
|
|
|
data.add_auth('second-user', 'second-pass')
|
2018-06-29 04:02:45 +00:00
|
|
|
await data.async_save()
|
2018-05-10 18:09:22 +00:00
|
|
|
|
2018-06-29 04:02:45 +00:00
|
|
|
data = hass_auth.Data(hass)
|
|
|
|
await data.async_load()
|
2018-05-10 18:09:22 +00:00
|
|
|
data.validate_login('test-user', 'test-pass')
|
|
|
|
data.validate_login('second-user', 'second-pass')
|
2018-07-13 13:31:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
async def test_not_allow_set_id():
|
|
|
|
"""Test we are not allowed to set an ID in config."""
|
|
|
|
hass = Mock()
|
2018-08-28 18:54:01 +00:00
|
|
|
with pytest.raises(vol.Invalid):
|
|
|
|
await auth_provider_from_config(hass, None, {
|
|
|
|
'type': 'homeassistant',
|
|
|
|
'id': 'invalid',
|
|
|
|
})
|
2018-07-19 20:10:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
async def test_new_users_populate_values(hass, data):
|
|
|
|
"""Test that we populate data for new users."""
|
|
|
|
data.add_auth('hello', 'test-pass')
|
|
|
|
await data.async_save()
|
|
|
|
|
|
|
|
manager = await auth_manager_from_config(hass, [{
|
|
|
|
'type': 'homeassistant'
|
2018-08-22 07:52:34 +00:00
|
|
|
}], [])
|
2018-07-19 20:10:36 +00:00
|
|
|
provider = manager.auth_providers[0]
|
|
|
|
credentials = await provider.async_get_or_create_credentials({
|
|
|
|
'username': 'hello'
|
|
|
|
})
|
|
|
|
user = await manager.async_get_or_create_user(credentials)
|
|
|
|
assert user.name == 'hello'
|
|
|
|
assert user.is_active
|