async def test_full_flow_implementation(hass): """Test registering an implementation and finishing flow works.""" gen_authorize_url = Mock(return_value=mock_coro('https://example.com')) convert_code = Mock(return_value=mock_coro({'access_token': 'yoo'})) config_flow.register_flow_implementation(hass, 'test', 'Test', gen_authorize_url, convert_code) config_flow.register_flow_implementation(hass, 'test-other', 'Test Other', None, None) flow = config_flow.NestFlowHandler() flow.hass = hass result = await flow.async_step_init() assert result['type'] == data_entry_flow.RESULT_TYPE_FORM assert result['step_id'] == 'init' result = await flow.async_step_init({'flow_impl': 'test'}) assert result['type'] == data_entry_flow.RESULT_TYPE_FORM assert result['step_id'] == 'link' assert result['description_placeholders'] == { 'url': 'https://example.com', } result = await flow.async_step_link({'code': '123ABC'}) assert result['type'] == data_entry_flow.RESULT_TYPE_CREATE_ENTRY assert result['data']['tokens'] == {'access_token': 'yoo'} assert result['data']['impl_domain'] == 'test' assert result['title'] == 'Nest (via Test)'
async def test_full_flow_implementation(hass): """Test registering an implementation and finishing flow works.""" gen_authorize_url = AsyncMock(return_value="https://example.com") convert_code = AsyncMock(return_value={"access_token": "yoo"}) config_flow.register_flow_implementation(hass, "test", "Test", gen_authorize_url, convert_code) config_flow.register_flow_implementation(hass, "test-other", "Test Other", None, None) flow = config_flow.NestFlowHandler() flow.hass = hass result = await flow.async_step_init() assert result["type"] == data_entry_flow.RESULT_TYPE_FORM assert result["step_id"] == "init" result = await flow.async_step_init({"flow_impl": "test"}) assert result["type"] == data_entry_flow.RESULT_TYPE_FORM assert result["step_id"] == "link" assert result["description_placeholders"] == {"url": "https://example.com"} result = await flow.async_step_link({"code": "123ABC"}) assert result["type"] == data_entry_flow.RESULT_TYPE_CREATE_ENTRY assert result["data"]["tokens"] == {"access_token": "yoo"} assert result["data"]["impl_domain"] == "test" assert result["title"] == "Nest (via Test)"
async def test_abort_if_no_implementation_registered(hass): """Test we abort if no implementation is registered.""" flow = config_flow.NestFlowHandler() flow.hass = hass result = await flow.async_step_init() assert result['type'] == data_entry_flow.RESULT_TYPE_ABORT assert result['reason'] == 'no_flows'
async def test_abort_if_already_setup(hass): """Test we abort if Nest is already setup.""" flow = config_flow.NestFlowHandler() flow.hass = hass with patch.object(hass.config_entries, 'async_entries', return_value=[{}]): result = await flow.async_step_init() assert result['type'] == data_entry_flow.RESULT_TYPE_ABORT assert result['reason'] == 'already_setup'
async def test_abort_if_single_instance_allowed(hass): """Test we abort if Nest is already setup.""" flow = config_flow.NestFlowHandler() flow.hass = hass with patch.object(hass.config_entries, "async_entries", return_value=[{}]): result = await flow.async_step_init() assert result["type"] == data_entry_flow.RESULT_TYPE_ABORT assert result["reason"] == "single_instance_allowed"
async def test_abort_if_exception_generating_auth_url(hass): """Test we abort if generating authorize url blows up.""" gen_authorize_url = Mock(side_effect=ValueError) config_flow.register_flow_implementation(hass, 'test', 'Test', gen_authorize_url, None) flow = config_flow.NestFlowHandler() flow.hass = hass result = await flow.async_step_init() assert result['type'] == data_entry_flow.RESULT_TYPE_ABORT assert result['reason'] == 'authorize_url_fail'
async def test_not_pick_implementation_if_only_one(hass): """Test we allow picking implementation if we have two.""" gen_authorize_url = Mock(return_value=mock_coro('https://example.com')) config_flow.register_flow_implementation(hass, 'test', 'Test', gen_authorize_url, None) flow = config_flow.NestFlowHandler() flow.hass = hass result = await flow.async_step_init() assert result['type'] == data_entry_flow.RESULT_TYPE_FORM assert result['step_id'] == 'link'
async def test_abort_if_timeout_generating_auth_url(hass): """Test we abort if generating authorize url fails.""" gen_authorize_url = Mock(side_effect=asyncio.TimeoutError) config_flow.register_flow_implementation(hass, "test", "Test", gen_authorize_url, None) flow = config_flow.NestFlowHandler() flow.hass = hass result = await flow.async_step_init() assert result["type"] == data_entry_flow.RESULT_TYPE_ABORT assert result["reason"] == "authorize_url_timeout"
async def test_not_pick_implementation_if_only_one(hass): """Test we allow picking implementation if we have two.""" gen_authorize_url = AsyncMock(return_value="https://example.com") config_flow.register_flow_implementation(hass, "test", "Test", gen_authorize_url, None) flow = config_flow.NestFlowHandler() flow.hass = hass result = await flow.async_step_init() assert result["type"] == data_entry_flow.RESULT_TYPE_FORM assert result["step_id"] == "link"
async def test_verify_code_exception(hass): """Test verify code blows up.""" gen_authorize_url = Mock(return_value=mock_coro('https://example.com')) convert_code = Mock(side_effect=ValueError) config_flow.register_flow_implementation(hass, 'test', 'Test', gen_authorize_url, convert_code) flow = config_flow.NestFlowHandler() flow.hass = hass result = await flow.async_step_init() assert result['type'] == data_entry_flow.RESULT_TYPE_FORM assert result['step_id'] == 'link' result = await flow.async_step_link({'code': '123ABC'}) assert result['type'] == data_entry_flow.RESULT_TYPE_FORM assert result['step_id'] == 'link' assert result['errors'] == {'code': 'internal_error'}
async def test_verify_code_exception(hass): """Test verify code blows up.""" gen_authorize_url = AsyncMock(return_value="https://example.com") convert_code = Mock(side_effect=ValueError) config_flow.register_flow_implementation(hass, "test", "Test", gen_authorize_url, convert_code) flow = config_flow.NestFlowHandler() flow.hass = hass result = await flow.async_step_init() assert result["type"] == data_entry_flow.RESULT_TYPE_FORM assert result["step_id"] == "link" result = await flow.async_step_link({"code": "123ABC"}) assert result["type"] == data_entry_flow.RESULT_TYPE_FORM assert result["step_id"] == "link" assert result["errors"] == {"code": "internal_error"}
async def test_verify_code_timeout(hass): """Test verify code timing out.""" gen_authorize_url = Mock(return_value=mock_coro("https://example.com")) convert_code = Mock(side_effect=asyncio.TimeoutError) config_flow.register_flow_implementation(hass, "test", "Test", gen_authorize_url, convert_code) flow = config_flow.NestFlowHandler() flow.hass = hass result = await flow.async_step_init() assert result["type"] == data_entry_flow.RESULT_TYPE_FORM assert result["step_id"] == "link" result = await flow.async_step_link({"code": "123ABC"}) assert result["type"] == data_entry_flow.RESULT_TYPE_FORM assert result["step_id"] == "link" assert result["errors"] == {"code": "timeout"}