Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions homeassistant/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,10 +311,7 @@ async def async_get_or_create_user(self, credentials):
if not credentials.is_new:
for user in await self._store.async_get_users():
for creds in user.credentials:
if (creds.auth_provider_type ==
credentials.auth_provider_type
and creds.auth_provider_id ==
credentials.auth_provider_id):
if creds.id == credentials.id:
return user

raise ValueError('Unable to find the user.')
Expand Down
15 changes: 15 additions & 0 deletions tests/test_auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,21 @@ async def test_login_as_existing_user(mock_hass):
}])
ensure_auth_manager_loaded(manager)

# Add a fake user that we're not going to log in with
user = MockUser(
id='mock-user2',
is_owner=False,
is_active=False,
name='Not user',
).add_to_auth_manager(manager)
user.credentials.append(auth.Credentials(
id='mock-id2',
auth_provider_type='insecure_example',
auth_provider_id=None,
data={'username': 'other-user'},
is_new=False,
))

# Add fake user with credentials for example auth provider.
user = MockUser(
id='mock-user',
Expand Down