Fix missing Plex account mocks in tests (#37591)

pull/37529/head^2
jjlawren 2020-07-07 00:58:43 -05:00 committed by GitHub
parent 16ccf0affd
commit 7128092139
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 22 deletions

View File

@ -191,10 +191,6 @@ async def test_single_available_server(hass):
"plexapi.server.PlexServer", return_value=mock_plex_server
), patch("plexauth.PlexAuth.initiate_auth"), patch(
"plexauth.PlexAuth.token", return_value=MOCK_TOKEN
), patch(
"homeassistant.components.plex.async_setup_entry", return_value=True
), patch(
"homeassistant.components.plex.async_setup", return_value=True
):
result = await hass.config_entries.flow.async_configure(
result["flow_id"], user_input={}
@ -236,10 +232,6 @@ async def test_multiple_servers_with_selection(hass):
"plexauth.PlexAuth.initiate_auth"
), patch(
"plexauth.PlexAuth.token", return_value=MOCK_TOKEN
), patch(
"homeassistant.components.plex.async_setup_entry", return_value=True
), patch(
"homeassistant.components.plex.async_setup", return_value=True
):
result = await hass.config_entries.flow.async_configure(
result["flow_id"], user_input={}
@ -295,10 +287,6 @@ async def test_adding_last_unconfigured_server(hass):
"plexauth.PlexAuth.initiate_auth"
), patch(
"plexauth.PlexAuth.token", return_value=MOCK_TOKEN
), patch(
"homeassistant.components.plex.async_setup_entry", return_value=True
), patch(
"homeassistant.components.plex.async_setup", return_value=True
):
result = await hass.config_entries.flow.async_configure(
result["flow_id"], user_input={}
@ -685,11 +673,7 @@ async def test_manual_config(hass):
with patch("plexapi.server.PlexServer", return_value=mock_plex_server), patch(
"homeassistant.components.plex.PlexWebsocket", autospec=True
), patch(
"homeassistant.components.plex.async_setup_entry", return_value=True
), patch(
"homeassistant.components.plex.async_setup", return_value=True
):
), patch("plexapi.myplex.MyPlexAccount", return_value=MockPlexAccount()):
result = await hass.config_entries.flow.async_configure(
result["flow_id"], user_input=MANUAL_SERVER
)
@ -723,11 +707,7 @@ async def test_manual_config_with_token(hass):
with patch("plexapi.myplex.MyPlexAccount", return_value=MockPlexAccount()), patch(
"plexapi.server.PlexServer", return_value=mock_plex_server
), patch("homeassistant.components.plex.PlexWebsocket", autospec=True), patch(
"homeassistant.components.plex.async_setup_entry", return_value=True
), patch(
"homeassistant.components.plex.async_setup", return_value=True
):
), patch("homeassistant.components.plex.PlexWebsocket", autospec=True):
result = await hass.config_entries.flow.async_configure(
result["flow_id"], user_input={CONF_TOKEN: MOCK_TOKEN}
)