core/tests/components/twitch/test_twitch.py

206 lines
6.6 KiB
Python

"""The tests for an update of the Twitch component."""
from unittest.mock import patch
from homeassistant.components import sensor
from homeassistant.const import CONF_CLIENT_ID, CONF_CLIENT_SECRET
from homeassistant.core import HomeAssistant
from homeassistant.setup import async_setup_component
from . import (
TwitchAPIExceptionMock,
TwitchInvalidTokenMock,
TwitchInvalidUserMock,
TwitchMissingScopeMock,
TwitchMock,
TwitchUnauthorizedMock,
)
ENTITY_ID = "sensor.channel123"
CONFIG = {
sensor.DOMAIN: {
"platform": "twitch",
CONF_CLIENT_ID: "1234",
CONF_CLIENT_SECRET: " abcd",
"channels": ["channel123"],
}
}
CONFIG_WITH_OAUTH = {
sensor.DOMAIN: {
"platform": "twitch",
CONF_CLIENT_ID: "1234",
CONF_CLIENT_SECRET: "abcd",
"channels": ["channel123"],
"token": "9876",
}
}
async def test_init(hass: HomeAssistant) -> None:
"""Test initial config."""
with patch(
"homeassistant.components.twitch.sensor.Twitch",
return_value=TwitchMock(is_streaming=False),
):
assert await async_setup_component(hass, sensor.DOMAIN, CONFIG) is True
await hass.async_block_till_done()
sensor_state = hass.states.get(ENTITY_ID)
assert sensor_state.state == "offline"
assert sensor_state.name == "channel123"
assert sensor_state.attributes["icon"] == "mdi:twitch"
assert sensor_state.attributes["friendly_name"] == "channel123"
assert sensor_state.attributes["views"] == 42
assert sensor_state.attributes["followers"] == 24
async def test_offline(hass: HomeAssistant) -> None:
"""Test offline state."""
with patch(
"homeassistant.components.twitch.sensor.Twitch",
return_value=TwitchMock(is_streaming=False),
):
assert await async_setup_component(hass, sensor.DOMAIN, CONFIG) is True
await hass.async_block_till_done()
sensor_state = hass.states.get(ENTITY_ID)
assert sensor_state.state == "offline"
assert sensor_state.attributes["entity_picture"] == "logo.png"
async def test_streaming(hass: HomeAssistant) -> None:
"""Test streaming state."""
with patch(
"homeassistant.components.twitch.sensor.Twitch",
return_value=TwitchMock(),
):
assert await async_setup_component(hass, sensor.DOMAIN, CONFIG) is True
await hass.async_block_till_done()
sensor_state = hass.states.get(ENTITY_ID)
assert sensor_state.state == "streaming"
assert sensor_state.attributes["entity_picture"] == "stream-medium.png"
assert sensor_state.attributes["game"] == "Good game"
assert sensor_state.attributes["title"] == "Title"
async def test_oauth_without_sub_and_follow(hass: HomeAssistant) -> None:
"""Test state with oauth."""
with patch(
"homeassistant.components.twitch.sensor.Twitch",
return_value=TwitchMock(is_following=False),
):
assert await async_setup_component(hass, sensor.DOMAIN, CONFIG_WITH_OAUTH)
await hass.async_block_till_done()
sensor_state = hass.states.get(ENTITY_ID)
assert sensor_state.attributes["subscribed"] is False
assert sensor_state.attributes["following"] is False
async def test_oauth_with_sub(hass: HomeAssistant) -> None:
"""Test state with oauth and sub."""
with patch(
"homeassistant.components.twitch.sensor.Twitch",
return_value=TwitchMock(
is_subscribed=True, is_gifted=False, is_following=False
),
):
assert await async_setup_component(hass, sensor.DOMAIN, CONFIG_WITH_OAUTH)
await hass.async_block_till_done()
sensor_state = hass.states.get(ENTITY_ID)
assert sensor_state.attributes["subscribed"] is True
assert sensor_state.attributes["subscription_is_gifted"] is False
assert sensor_state.attributes["following"] is False
async def test_oauth_with_follow(hass: HomeAssistant) -> None:
"""Test state with oauth and follow."""
with patch(
"homeassistant.components.twitch.sensor.Twitch",
return_value=TwitchMock(),
):
assert await async_setup_component(hass, sensor.DOMAIN, CONFIG_WITH_OAUTH)
await hass.async_block_till_done()
sensor_state = hass.states.get(ENTITY_ID)
assert sensor_state.attributes["following"] is True
assert sensor_state.attributes["following_since"] == "2020-01-20T21:22:42"
async def test_auth_with_invalid_credentials(hass: HomeAssistant) -> None:
"""Test auth with invalid credentials."""
with patch(
"homeassistant.components.twitch.sensor.Twitch",
return_value=TwitchUnauthorizedMock(),
):
assert await async_setup_component(hass, sensor.DOMAIN, CONFIG_WITH_OAUTH)
await hass.async_block_till_done()
sensor_state = hass.states.get(ENTITY_ID)
assert sensor_state is None
async def test_auth_with_missing_scope(hass: HomeAssistant) -> None:
"""Test auth with invalid credentials."""
with patch(
"homeassistant.components.twitch.sensor.Twitch",
return_value=TwitchMissingScopeMock(),
):
assert await async_setup_component(hass, sensor.DOMAIN, CONFIG_WITH_OAUTH)
await hass.async_block_till_done()
sensor_state = hass.states.get(ENTITY_ID)
assert sensor_state is None
async def test_auth_with_invalid_token(hass: HomeAssistant) -> None:
"""Test auth with invalid credentials."""
with patch(
"homeassistant.components.twitch.sensor.Twitch",
return_value=TwitchInvalidTokenMock(),
):
assert await async_setup_component(hass, sensor.DOMAIN, CONFIG_WITH_OAUTH)
await hass.async_block_till_done()
sensor_state = hass.states.get(ENTITY_ID)
assert sensor_state is None
async def test_auth_with_invalid_user(hass: HomeAssistant) -> None:
"""Test auth with invalid user."""
with patch(
"homeassistant.components.twitch.sensor.Twitch",
return_value=TwitchInvalidUserMock(),
):
assert await async_setup_component(hass, sensor.DOMAIN, CONFIG_WITH_OAUTH)
await hass.async_block_till_done()
sensor_state = hass.states.get(ENTITY_ID)
assert "subscribed" not in sensor_state.attributes
async def test_auth_with_api_exception(hass: HomeAssistant) -> None:
"""Test auth with invalid user."""
with patch(
"homeassistant.components.twitch.sensor.Twitch",
return_value=TwitchAPIExceptionMock(),
):
assert await async_setup_component(hass, sensor.DOMAIN, CONFIG_WITH_OAUTH)
await hass.async_block_till_done()
sensor_state = hass.states.get(ENTITY_ID)
assert sensor_state.attributes["subscribed"] is False
assert "subscription_is_gifted" not in sensor_state.attributes