* Moved climate components with tests into platform dirs. * Updated tests from climate component. * Moved binary_sensor components with tests into platform dirs. * Updated tests from binary_sensor component. * Moved calendar components with tests into platform dirs. * Updated tests from calendar component. * Moved camera components with tests into platform dirs. * Updated tests from camera component. * Moved cover components with tests into platform dirs. * Updated tests from cover component. * Moved device_tracker components with tests into platform dirs. * Updated tests from device_tracker component. * Moved fan components with tests into platform dirs. * Updated tests from fan component. * Moved geo_location components with tests into platform dirs. * Updated tests from geo_location component. * Moved image_processing components with tests into platform dirs. * Updated tests from image_processing component. * Moved light components with tests into platform dirs. * Updated tests from light component. * Moved lock components with tests into platform dirs. * Moved media_player components with tests into platform dirs. * Updated tests from media_player component. * Moved scene components with tests into platform dirs. * Moved sensor components with tests into platform dirs. * Updated tests from sensor component. * Moved switch components with tests into platform dirs. * Updated tests from sensor component. * Moved vacuum components with tests into platform dirs. * Updated tests from vacuum component. * Moved weather components with tests into platform dirs. * Fixed __init__.py files * Fixes for stuff moved as part of this branch. * Fix stuff needed to merge with balloob's branch. * Formatting issues. * Missing __init__.py files. * Fix-ups * Fixup * Regenerated requirements. * Linting errors fixed. * Fixed more broken tests. * Missing init files. * Fix broken tests. * More broken tests * There seems to be a thread race condition. I suspect the logger stuff is running in another thread, which means waiting until the aio loop is done is missing the log messages. Used sleep instead because that allows the logger thread to run. I think the api_streams sensor might not be thread safe. * Disabled tests, will remove sensor in #22147 * Updated coverage and codeowners.
165 lines
5.5 KiB
Python
165 lines
5.5 KiB
Python
"""The tests for the Vultr sensor platform."""
|
|
import json
|
|
import unittest
|
|
from unittest.mock import patch
|
|
|
|
import pytest
|
|
import requests_mock
|
|
import voluptuous as vol
|
|
|
|
import homeassistant.components.vultr.sensor as vultr
|
|
from homeassistant.components import vultr as base_vultr
|
|
from homeassistant.components.vultr import CONF_SUBSCRIPTION
|
|
from homeassistant.const import (
|
|
CONF_NAME, CONF_MONITORED_CONDITIONS, CONF_PLATFORM)
|
|
|
|
from tests.components.vultr.test_init import VALID_CONFIG
|
|
from tests.common import (
|
|
get_test_home_assistant, load_fixture)
|
|
|
|
|
|
class TestVultrSensorSetup(unittest.TestCase):
|
|
"""Test the Vultr platform."""
|
|
|
|
DEVICES = []
|
|
|
|
def add_entities(self, devices, action):
|
|
"""Mock add devices."""
|
|
for device in devices:
|
|
self.DEVICES.append(device)
|
|
|
|
def setUp(self):
|
|
"""Initialize values for this testcase class."""
|
|
self.hass = get_test_home_assistant()
|
|
self.configs = [
|
|
{
|
|
CONF_NAME: vultr.DEFAULT_NAME,
|
|
CONF_SUBSCRIPTION: '576965',
|
|
CONF_MONITORED_CONDITIONS: vultr.MONITORED_CONDITIONS
|
|
},
|
|
{
|
|
CONF_NAME: 'Server {}',
|
|
CONF_SUBSCRIPTION: '123456',
|
|
CONF_MONITORED_CONDITIONS: vultr.MONITORED_CONDITIONS
|
|
},
|
|
{
|
|
CONF_NAME: 'VPS Charges',
|
|
CONF_SUBSCRIPTION: '555555',
|
|
CONF_MONITORED_CONDITIONS: [
|
|
'pending_charges'
|
|
]
|
|
}
|
|
]
|
|
|
|
def tearDown(self):
|
|
"""Stop everything that was started."""
|
|
self.hass.stop()
|
|
|
|
@requests_mock.Mocker()
|
|
def test_sensor(self, mock):
|
|
"""Test the Vultr sensor class and methods."""
|
|
mock.get(
|
|
'https://api.vultr.com/v1/account/info?api_key=ABCDEFG1234567',
|
|
text=load_fixture('vultr_account_info.json'))
|
|
|
|
with patch(
|
|
'vultr.Vultr.server_list',
|
|
return_value=json.loads(
|
|
load_fixture('vultr_server_list.json'))):
|
|
# Setup hub
|
|
base_vultr.setup(self.hass, VALID_CONFIG)
|
|
|
|
for config in self.configs:
|
|
setup = vultr.setup_platform(
|
|
self.hass, config, self.add_entities, None)
|
|
|
|
assert setup is None
|
|
|
|
assert 5 == len(self.DEVICES)
|
|
|
|
tested = 0
|
|
|
|
for device in self.DEVICES:
|
|
|
|
# Test pre update
|
|
if device.subscription == '576965':
|
|
assert vultr.DEFAULT_NAME == device.name
|
|
|
|
device.update()
|
|
|
|
if device.unit_of_measurement == 'GB': # Test Bandwidth Used
|
|
if device.subscription == '576965':
|
|
assert 'Vultr my new server Current Bandwidth Used' == \
|
|
device.name
|
|
assert 'mdi:chart-histogram' == device.icon
|
|
assert 131.51 == device.state
|
|
assert 'mdi:chart-histogram' == device.icon
|
|
tested += 1
|
|
|
|
elif device.subscription == '123456':
|
|
assert 'Server Current Bandwidth Used' == \
|
|
device.name
|
|
assert 957.46 == device.state
|
|
tested += 1
|
|
|
|
elif device.unit_of_measurement == 'US$': # Test Pending Charges
|
|
|
|
if device.subscription == '576965': # Default 'Vultr {} {}'
|
|
assert 'Vultr my new server Pending Charges' == \
|
|
device.name
|
|
assert 'mdi:currency-usd' == device.icon
|
|
assert 46.67 == device.state
|
|
assert 'mdi:currency-usd' == device.icon
|
|
tested += 1
|
|
|
|
elif device.subscription == '123456': # Custom name with 1 {}
|
|
assert 'Server Pending Charges' == device.name
|
|
assert 'not a number' == device.state
|
|
tested += 1
|
|
|
|
elif device.subscription == '555555': # No {} in name
|
|
assert 'VPS Charges' == device.name
|
|
assert 5.45 == device.state
|
|
tested += 1
|
|
|
|
assert tested == 5
|
|
|
|
def test_invalid_sensor_config(self):
|
|
"""Test config type failures."""
|
|
with pytest.raises(vol.Invalid): # No subscription
|
|
vultr.PLATFORM_SCHEMA({
|
|
CONF_PLATFORM: base_vultr.DOMAIN,
|
|
CONF_MONITORED_CONDITIONS: vultr.MONITORED_CONDITIONS
|
|
})
|
|
with pytest.raises(vol.Invalid): # Bad monitored_conditions
|
|
vultr.PLATFORM_SCHEMA({
|
|
CONF_PLATFORM: base_vultr.DOMAIN,
|
|
CONF_SUBSCRIPTION: '123456',
|
|
CONF_MONITORED_CONDITIONS: [
|
|
'non-existent-condition',
|
|
]
|
|
})
|
|
|
|
@requests_mock.Mocker()
|
|
def test_invalid_sensors(self, mock):
|
|
"""Test the VultrSensor fails."""
|
|
mock.get(
|
|
'https://api.vultr.com/v1/account/info?api_key=ABCDEFG1234567',
|
|
text=load_fixture('vultr_account_info.json'))
|
|
|
|
with patch(
|
|
'vultr.Vultr.server_list',
|
|
return_value=json.loads(
|
|
load_fixture('vultr_server_list.json'))):
|
|
# Setup hub
|
|
base_vultr.setup(self.hass, VALID_CONFIG)
|
|
|
|
bad_conf = {
|
|
CONF_MONITORED_CONDITIONS: vultr.MONITORED_CONDITIONS,
|
|
} # No subs at all
|
|
|
|
no_sub_setup = vultr.setup_platform(
|
|
self.hass, bad_conf, self.add_entities, None)
|
|
|
|
assert no_sub_setup is None
|
|
assert 0 == len(self.DEVICES)
|