mirror of
https://github.com/home-assistant/core.git
synced 2025-08-12 23:10:05 +00:00
.github
docs
homeassistant
script
tests
auth
components
air_quality
alarm_control_panel
alert
alexa
ambient_station
api
arlo
auth
automation
binary_sensor
calendar
camera
canary
cast
climate
cloud
config
configurator
conversation
counter
cover
daikin
datadog
deconz
default_config
demo
device_sun_light_trigger
device_tracker
dialogflow
discovery
duckdns
dyson
ecobee
emulated_hue
emulated_roku
esphome
fan
feedreader
ffmpeg
folder_watcher
freedns
fritzbox
frontend
geo_location
geofency
google
google_assistant
google_domains
google_pubsub
gpslogger
graphite
group
hangouts
hassio
history
history_graph
homekit
homekit_controller
homematicip_cloud
http
huawei_lte
hue
ifttt
image_processing
influxdb
init
input_boolean
input_datetime
input_number
input_select
input_text
intent_script
introduction
ios
ipma
kira
light
litejet
locative
lock
logbook
logentries
logger
lovelace
luftdaten
mailbox
mailgun
media_player
melissa
microsoft_face
mochad
mqtt
mqtt_eventstream
mqtt_statestream
mythicbeastsdns
namecheapdns
ness_alarm
nest
no_ip
notify
nuheat
onboarding
openuv
owntracks
panel_custom
panel_iframe
persistent_notification
person
pilight
plant
point
prometheus
proximity
ps4
python_script
qwikswitch
rainmachine
recorder
remember_the_milk
remote
rest_command
rflink
rfxtrx
ring
rss_feed_template
scene
script
sensor
shell_command
shopping_list
simplisafe
sleepiq
smartthings
smhi
snips
sonos
spaceapi
spc
splunk
statsd
sun
switch
system_health
system_log
tellduslive
timer
toon
tplink
tradfri
tts
twilio
unifi
updater
upnp
utility_meter
vacuum
verisure
vultr
wake_on_lan
water_heater
weather
webhook
weblink
webostv
websocket_api
xiaomi_miio
zha
zone
__init__.py
test_config_flow.py
test_init.py
zwave
__init__.py
conftest.py
fixtures
helpers
mock
resources
scripts
test_util
testing_config
util
__init__.py
common.py
conftest.py
test_bootstrap.py
test_config.py
test_config_entries.py
test_core.py
test_data_entry_flow.py
test_loader.py
test_main.py
test_requirements.py
test_setup.py
virtualization
.coveragerc
.dockerignore
.gitattributes
.gitignore
.hound.yml
.ignore
.readthedocs.yml
.travis.yml
CLA.md
CODEOWNERS
CODE_OF_CONDUCT.md
CONTRIBUTING.md
Dockerfile
LICENSE.md
MANIFEST.in
README.rst
mypy.ini
pylintrc
requirements_all.txt
requirements_docs.txt
requirements_test.txt
requirements_test_all.txt
setup.cfg
setup.py
tox.ini

* Initial commit * Add error handling to config flow Change unique identifyer to name Clean up hound comments * Ensure hass home zone is created with correct entity id Fix failing tests * Fix rest of tests * Move zone tests to zone folder Create config flow tests * Add possibility to unload entry * Use hass.data instead of globas * Don't calculate configures zones every loop iteration * No need to know about home zone during setup of entry * Only use name as title * Don't cache hass home zone * Add new tests for setup and setup entry * Break out functionality from init to zone.py * Make hass home zone be created directly * Make sure that config flow doesn't override hass home zone * A newline was missing in const * Configured zones shall not be imported Removed config flow import functionality Improved tests
56 lines
1.7 KiB
Python
56 lines
1.7 KiB
Python
"""Tests for zone config flow."""
|
|
|
|
from homeassistant.components.zone import config_flow
|
|
from homeassistant.components.zone.const import CONF_PASSIVE, DOMAIN, HOME_ZONE
|
|
from homeassistant.const import (
|
|
CONF_NAME, CONF_LATITUDE, CONF_LONGITUDE, CONF_ICON, CONF_RADIUS)
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
async def test_flow_works(hass):
|
|
"""Test that config flow works."""
|
|
flow = config_flow.ZoneFlowHandler()
|
|
flow.hass = hass
|
|
|
|
result = await flow.async_step_init(user_input={
|
|
CONF_NAME: 'Name',
|
|
CONF_LATITUDE: '1.1',
|
|
CONF_LONGITUDE: '2.2',
|
|
CONF_RADIUS: '100',
|
|
CONF_ICON: 'mdi:home',
|
|
CONF_PASSIVE: True
|
|
})
|
|
|
|
assert result['type'] == 'create_entry'
|
|
assert result['title'] == 'Name'
|
|
assert result['data'] == {
|
|
CONF_NAME: 'Name',
|
|
CONF_LATITUDE: '1.1',
|
|
CONF_LONGITUDE: '2.2',
|
|
CONF_RADIUS: '100',
|
|
CONF_ICON: 'mdi:home',
|
|
CONF_PASSIVE: True
|
|
}
|
|
|
|
|
|
async def test_flow_requires_unique_name(hass):
|
|
"""Test that config flow verifies that each zones name is unique."""
|
|
MockConfigEntry(domain=DOMAIN, data={
|
|
CONF_NAME: 'Name'
|
|
}).add_to_hass(hass)
|
|
flow = config_flow.ZoneFlowHandler()
|
|
flow.hass = hass
|
|
|
|
result = await flow.async_step_init(user_input={CONF_NAME: 'Name'})
|
|
assert result['errors'] == {'base': 'name_exists'}
|
|
|
|
|
|
async def test_flow_requires_name_different_from_home(hass):
|
|
"""Test that config flow verifies that each zones name is unique."""
|
|
flow = config_flow.ZoneFlowHandler()
|
|
flow.hass = hass
|
|
|
|
result = await flow.async_step_init(user_input={CONF_NAME: HOME_ZONE})
|
|
assert result['errors'] == {'base': 'name_exists'}
|