Add ability to re-auth Notion (#55616)
This commit is contained in:
parent
a7d56d1c3f
commit
0ea5f25594
5 changed files with 186 additions and 64 deletions
|
@ -1,29 +1,31 @@
|
|||
"""Define tests for the Notion config flow."""
|
||||
from unittest.mock import AsyncMock, patch
|
||||
|
||||
import aionotion
|
||||
from aionotion.errors import InvalidCredentialsError, NotionError
|
||||
import pytest
|
||||
|
||||
from homeassistant import data_entry_flow
|
||||
from homeassistant.components.notion import DOMAIN, config_flow
|
||||
from homeassistant.config_entries import SOURCE_USER
|
||||
from homeassistant.components.notion import DOMAIN
|
||||
from homeassistant.config_entries import SOURCE_REAUTH, SOURCE_USER
|
||||
from homeassistant.const import CONF_PASSWORD, CONF_USERNAME
|
||||
|
||||
from tests.common import MockConfigEntry
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
def mock_client():
|
||||
"""Define a fixture for a client creation coroutine."""
|
||||
@pytest.fixture(name="client")
|
||||
def client_fixture():
|
||||
"""Define a fixture for an aionotion client."""
|
||||
return AsyncMock(return_value=None)
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
def mock_aionotion(mock_client):
|
||||
"""Mock the aionotion library."""
|
||||
with patch("homeassistant.components.notion.config_flow.async_get_client") as mock_:
|
||||
mock_.side_effect = mock_client
|
||||
yield mock_
|
||||
@pytest.fixture(name="client_login")
|
||||
def client_login_fixture(client):
|
||||
"""Define a fixture for patching the aiowatttime coroutine to get a client."""
|
||||
with patch(
|
||||
"homeassistant.components.notion.config_flow.async_get_client"
|
||||
) as mock_client:
|
||||
mock_client.side_effect = client
|
||||
yield mock_client
|
||||
|
||||
|
||||
async def test_duplicate_error(hass):
|
||||
|
@ -37,47 +39,90 @@ async def test_duplicate_error(hass):
|
|||
result = await hass.config_entries.flow.async_init(
|
||||
DOMAIN, context={"source": SOURCE_USER}, data=conf
|
||||
)
|
||||
await hass.async_block_till_done()
|
||||
|
||||
assert result["type"] == data_entry_flow.RESULT_TYPE_ABORT
|
||||
assert result["reason"] == "already_configured"
|
||||
|
||||
|
||||
@pytest.mark.parametrize(
|
||||
"mock_client", [AsyncMock(side_effect=aionotion.errors.NotionError)]
|
||||
)
|
||||
async def test_invalid_credentials(hass, mock_aionotion):
|
||||
"""Test that an invalid API/App Key throws an error."""
|
||||
@pytest.mark.parametrize("client", [AsyncMock(side_effect=NotionError)])
|
||||
async def test_generic_notion_error(client_login, hass):
|
||||
"""Test that a generic aionotion error is handled correctly."""
|
||||
conf = {CONF_USERNAME: "user@host.com", CONF_PASSWORD: "password123"}
|
||||
|
||||
flow = config_flow.NotionFlowHandler()
|
||||
flow.hass = hass
|
||||
flow.context = {"source": SOURCE_USER}
|
||||
result = await hass.config_entries.flow.async_init(
|
||||
DOMAIN, context={"source": SOURCE_USER}, data=conf
|
||||
)
|
||||
|
||||
assert result["errors"] == {"base": "unknown"}
|
||||
|
||||
|
||||
@pytest.mark.parametrize("client", [AsyncMock(side_effect=InvalidCredentialsError)])
|
||||
async def test_invalid_credentials(client_login, hass):
|
||||
"""Test that invalid credentials throw an error."""
|
||||
conf = {CONF_USERNAME: "user@host.com", CONF_PASSWORD: "password123"}
|
||||
|
||||
result = await hass.config_entries.flow.async_init(
|
||||
DOMAIN, context={"source": SOURCE_USER}, data=conf
|
||||
)
|
||||
await hass.async_block_till_done()
|
||||
|
||||
result = await flow.async_step_user(user_input=conf)
|
||||
assert result["errors"] == {"base": "invalid_auth"}
|
||||
|
||||
|
||||
async def test_show_form(hass):
|
||||
"""Test that the form is served with no input."""
|
||||
flow = config_flow.NotionFlowHandler()
|
||||
flow.hass = hass
|
||||
flow.context = {"source": SOURCE_USER}
|
||||
async def test_step_reauth(client_login, hass):
|
||||
"""Test that the reauth step works."""
|
||||
MockConfigEntry(
|
||||
domain=DOMAIN,
|
||||
unique_id="user@email.com",
|
||||
data={CONF_USERNAME: "user@email.com", CONF_PASSWORD: "password"},
|
||||
).add_to_hass(hass)
|
||||
|
||||
result = await flow.async_step_user(user_input=None)
|
||||
result = await hass.config_entries.flow.async_init(
|
||||
DOMAIN,
|
||||
context={"source": SOURCE_REAUTH},
|
||||
data={CONF_USERNAME: "user@email.com", CONF_PASSWORD: "password"},
|
||||
)
|
||||
assert result["step_id"] == "reauth_confirm"
|
||||
|
||||
result = await hass.config_entries.flow.async_configure(result["flow_id"])
|
||||
assert result["type"] == data_entry_flow.RESULT_TYPE_FORM
|
||||
assert result["step_id"] == "reauth_confirm"
|
||||
|
||||
with patch(
|
||||
"homeassistant.components.notion.async_setup_entry", return_value=True
|
||||
), patch("homeassistant.config_entries.ConfigEntries.async_reload"):
|
||||
result = await hass.config_entries.flow.async_configure(
|
||||
result["flow_id"], user_input={CONF_PASSWORD: "password"}
|
||||
)
|
||||
await hass.async_block_till_done()
|
||||
|
||||
assert result["type"] == data_entry_flow.RESULT_TYPE_ABORT
|
||||
assert result["reason"] == "reauth_successful"
|
||||
assert len(hass.config_entries.async_entries()) == 1
|
||||
|
||||
|
||||
async def test_show_form(client_login, hass):
|
||||
"""Test that the form is served with no input."""
|
||||
result = await hass.config_entries.flow.async_init(
|
||||
DOMAIN, context={"source": SOURCE_USER}
|
||||
)
|
||||
await hass.async_block_till_done()
|
||||
|
||||
assert result["type"] == data_entry_flow.RESULT_TYPE_FORM
|
||||
assert result["step_id"] == "user"
|
||||
|
||||
|
||||
async def test_step_user(hass, mock_aionotion):
|
||||
async def test_step_user(client_login, hass):
|
||||
"""Test that the user step works."""
|
||||
conf = {CONF_USERNAME: "user@host.com", CONF_PASSWORD: "password123"}
|
||||
|
||||
flow = config_flow.NotionFlowHandler()
|
||||
flow.hass = hass
|
||||
flow.context = {"source": SOURCE_USER}
|
||||
with patch("homeassistant.components.notion.async_setup_entry", return_value=True):
|
||||
result = await hass.config_entries.flow.async_init(
|
||||
DOMAIN, context={"source": SOURCE_USER}, data=conf
|
||||
)
|
||||
await hass.async_block_till_done()
|
||||
|
||||
result = await flow.async_step_user(user_input=conf)
|
||||
assert result["type"] == data_entry_flow.RESULT_TYPE_CREATE_ENTRY
|
||||
assert result["title"] == "user@host.com"
|
||||
assert result["data"] == {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue